[
  {
    "path": ".gitignore",
    "content": "*build*/\nCMakeLists.txt.user\n*~\n/**/*.xcodeproj/**/xcuserdata/\n/**/*.xcodeproj/**/xcshareddata/\n/extern/\n*.pyc\n*.log\n"
  },
  {
    "path": "CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.1)\nproject(CMakeDemo)\n\n# Write demo-config.h\nmessage(\"Generating header file: ${CMAKE_BINARY_DIR}/demo-config.h\")\nset(DEMO_ENABLE_MULTISAMPLE 0 CACHE BOOL \"Enable multisample anti-aliasing\")\nconfigure_file(demo-config.h.in \"${CMAKE_BINARY_DIR}/demo-config.h\")\n\n# Find SDL2 and OpenGL\nset(CMAKE_MODULE_PATH \"${CMAKE_SOURCE_DIR}/modules\")\nfind_package(SDL2 REQUIRED COMPONENTS main)\nif(NOT WIN32)\n    find_package(OpenGL REQUIRED)\nendif()\n\n# Define executable target\ninclude_directories(${SDL2_INCLUDE_DIRS} ${SDL2main_INCLUDE_DIRS} ${OPENGL_INCLUDE_DIR} ${CMAKE_BINARY_DIR})\nadd_executable(CMakeDemo Main.cpp gl2/Context.cpp)\ntarget_link_libraries(CMakeDemo ${SDL2_LIBS} ${OPENGL_LIBRARIES})\n\n# Copy SDL2 DLLs to output folder on Windows\nif(WIN32)\n    foreach(DLL ${SDL2_DLLS})\n        add_custom_command(TARGET CMakeDemo POST_BUILD COMMAND\n            ${CMAKE_COMMAND} -E copy_if_different ${DLL} $<TARGET_FILE_DIR:CMakeDemo>)\n    endforeach()\nendif()\n"
  },
  {
    "path": "LICENSE",
    "content": "Some files in the gl2 folder, used only on Windows, are licensed under\nthe SGI Free Software B License Version 2.0. For details, see\nhttp://oss.sgi.com/projects/FreeB/\n\n    SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) Copyright\n    (C) Silicon Graphics, Inc. All Rights Reserved.\n    Permission is hereby granted, free of charge, to any person\n    obtaining a copy of this software and associated documentation files\n    (the \"Software\"), to deal in the Software without restriction,\n    including without limitation the rights to use, copy, modify, merge,\n    publish, distribute, sublicense, and/or sell copies of the Software,\n    and to permit persons to whom the Software is furnished to do so,\n    subject to the following conditions: \n\n    The above copyright notice including the dates of first publication\n    and either this permission notice or a reference to\n    http://oss.sgi.com/projects/FreeB/ shall be included in all copies or\n    substantial portions of the Software.  \n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n    NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE\n    FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\n    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n    Except as contained in this notice, the name of Silicon Graphics,\n    Inc. shall not be used in advertising or otherwise to promote the\n    sale, use or other dealings in this Software without prior written\n    authorization from Silicon Graphics, Inc.\n\n-----------------\n\nSome files in the gl2 folder, used only on Windows, were adapted from SDL2\n(src/render/opengles2/SDL_gles2funcs.h).\n\n  Simple DirectMedia Layer\n  Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>\n\n  This software is provided 'as-is', without any express or implied\n  warranty.  In no event will the authors be held liable for any damages\n  arising from the use of this software.\n\n  Permission is granted to anyone to use this software for any purpose,\n  including commercial applications, and to alter it and redistribute it\n  freely, subject to the following restrictions:\n\n  1. The origin of this software must not be misrepresented; you must not\n     claim that you wrote the original software. If you use this software\n     in a product, an acknowledgment in the product documentation would be\n     appreciated but is not required.\n  2. Altered source versions must be plainly marked as such, and must not be\n     misrepresented as being the original software.\n  3. This notice may not be removed or altered from any source distribution.\n\n-----------------\n\nThe rest of the code is free and unencumbered software released into the\npublic domain.\n\n    Anyone is free to copy, modify, publish, use, compile, sell, or\n    distribute this software, either in source code form or as a compiled\n    binary, for any purpose, commercial or non-commercial, and by any\n    means.\n\n    In jurisdictions that recognize copyright laws, the author or authors\n    of this software dedicate any and all copyright interest in the\n    software to the public domain. We make this dedication for the benefit\n    of the public at large and to the detriment of our heirs and\n    successors. We intend this dedication to be an overt act of\n    relinquishment in perpetuity of all present and future rights to this\n    software under copyright law.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n    IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\n    OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n    ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n    OTHER DEALINGS IN THE SOFTWARE.\n\n    For more information, please refer to <http://unlicense.org>\n"
  },
  {
    "path": "Main.cpp",
    "content": "#include <SDL.h>\n#include <math.h>\n#include <assert.h>\n#include <vector>\n#include <algorithm>\n#include \"gl2/Context.h\"\n#include <demo-config.h>\n\nstatic const float Pi = 3.14159265358979323846f;\n\n\n//---------------------------------------------------------------------------\n//  Data structures for the 3D model defined at the end of this file\n//---------------------------------------------------------------------------\nstruct VertexPN {\n    GLfloat pos[3];\n    GLfloat normal[3];\n};\n\nstruct VertexGroup {\n    GLfloat color[3];\n    VertexPN* vertices;\n    GLsizeiptr numVertices;\n    GLushort* indices;\n    GLsizeiptr numIndices;\n};\n\nextern VertexGroup vertexGroups[];\n\nstruct IndexedVBO {\n    const VertexGroup* group;\n    GLuint vboID;\n    GLuint indexBufferID;\n};\n\n\n//---------------------------------------------------------------------------\n//  Bare bones matrix class\n//---------------------------------------------------------------------------\nstruct Float4x4 {\n    GLfloat col[4][4];\n\n    Float4x4 operator*(const Float4x4& arg) const {\n        Float4x4 result;\n        for (int c = 0; c < 4; c++) {\n            for (int r = 0; r < 4; r++) {\n                result.col[c][r] = 0;\n                for (int i = 0; i < 4; i++) {\n                    result.col[c][r] += col[i][r] * arg.col[c][i];\n                }\n            }\n        }\n        return result;\n    }\n};\n\nFloat4x4 makeProjection(float width, float height, float fovY, float near, float far) {\n    Float4x4 result;\n    memset(&result, 0, sizeof(result));\n    float ooZRange = 1 / (near - far);\n    float linearHalfFovy = tan(fovY * 0.5f);\n    float linearHalfFovx = linearHalfFovy * width / height;\n    result.col[0][0] = 1.f / linearHalfFovx;\n    result.col[1][1] = 1.f / linearHalfFovy;\n    result.col[2][2] = (near + far) * ooZRange;\n    result.col[2][3] = -1.f;\n    result.col[3][2] = (2 * near * far) * ooZRange;\n    return result;\n}\n\n\n//---------------------------------------------------------------------------\n//  AppState: Initializes & shuts down SDL\n//---------------------------------------------------------------------------\nclass AppState {\npublic:\n    SDL_Window* m_sdlWindow;\n    SDL_GLContext m_sdlGLContextDrawing;\n    int m_renderWidth;\n    int m_renderHeight;\n\n    AppState() {\n        // Initial values\n        m_sdlWindow = NULL;\n        m_sdlGLContextDrawing = NULL;\n        m_renderWidth = 0;\n        m_renderHeight = 0;\n\n        // Initialize SDL\n        int rc = SDL_Init(SDL_INIT_VIDEO);\n        assert(rc >= 0);\n        (void) rc;\n\n        // Set SDL GL attributes\n        SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);\n        SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 0);\n        SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, SDL_GL_CONTEXT_DEBUG_FLAG);\n#if DEMO_ENABLE_MULTISAMPLE\n        SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 1);\n        SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 2);\n#endif\n    \n        // Create SDL window\n        m_sdlWindow = SDL_CreateWindow(\"CMakeDemo\", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 440, SDL_WINDOW_OPENGL);\n        assert(m_sdlWindow);\n        SDL_ShowWindow(m_sdlWindow);\n\n        // Create SDL GL context\n        m_sdlGLContextDrawing = SDL_GL_CreateContext(m_sdlWindow);\n        assert(m_sdlGLContextDrawing);\n        SDL_GL_MakeCurrent(m_sdlWindow, m_sdlGLContextDrawing);\n        SDL_GL_SetSwapInterval(1);\n\n#ifdef _WIN32\n        // Initialize GLES2 function table\n        glFuncTable.initialize();\n#endif\n\n        // Get render buffer width/height\n        SDL_GL_GetDrawableSize(m_sdlWindow, &m_renderWidth, &m_renderHeight);\n\n        // Log GL driver info\n        SDL_Log(\"Vendor     : %s\\n\", GL_NO_CHECK(GetString(GL_VENDOR)));\n        SDL_Log(\"Renderer   : %s\\n\", GL_NO_CHECK(GetString(GL_RENDERER)));\n        SDL_Log(\"Version    : %s\\n\", GL_NO_CHECK(GetString(GL_VERSION)));\n        SDL_Log(\"Extensions : %s\\n\", GL_NO_CHECK(GetString(GL_EXTENSIONS)));\n        SDL_Log(\"\\n\");\n    }\n\n    ~AppState() {\n        SDL_GL_MakeCurrent(NULL, NULL);\n        SDL_DestroyWindow(m_sdlWindow);\n        SDL_GL_DeleteContext(m_sdlGLContextDrawing);\n        SDL_Quit();\n    }\n};\n\n\n//---------------------------------------------------------------------------\n//  View: Manages the stuff to be rendered\n//---------------------------------------------------------------------------\nclass View {\npublic:\n    AppState* m_appState;\n\n    // GL resources\n    GLuint m_shaderID;\n    GLint m_vertPositionAttrib;\n    GLint m_vertNormalAttrib;\n    GLint m_modelToCameraAttrib;\n    GLint m_cameraToViewportAttrib;\n    GLint m_colorAttrib;\n    std::vector<IndexedVBO> m_indexedVBOs;\n\n    // Runtime state\n    float m_pitch;\n    float m_yaw;\n    float m_rotationRate;\n    float m_rotationRateTarget;\n\n    View(AppState *appState) : m_appState(appState) {\n        // Initial values\n        m_shaderID = 0;\n        m_vertPositionAttrib = 0;\n        m_vertNormalAttrib = 0;\n        m_modelToCameraAttrib = 0;\n        m_cameraToViewportAttrib = 0;\n        m_colorAttrib = 0;\n\n        m_pitch = -0.23f;\n        m_yaw = -0.18f;\n        m_rotationRate = 0;\n        m_rotationRateTarget = 0.8f;\n\n        // Compile vertex shader\n        GLuint vertexShader = GL_NO_CHECK(CreateShader(GL_VERTEX_SHADER));\n        assert(GL_NO_CHECK(GetError()) == GL_NO_ERROR);\n        const GLchar* vertexShaderSource =\n            \"attribute vec3 vertPosition;\\n\"\n            \"attribute vec3 vertNormal;\\n\"\n            \"uniform mat4 modelToCamera;\\n\"\n            \"uniform mat4 cameraToViewport;\\n\"\n            \"varying vec3 fragNormal\\n;\"\n            \"\\n\"\n            \"void main() {\\n\"\n            \"    fragNormal = vec3(modelToCamera * vec4(vertNormal, 0.0));\\n\"\n            \"    gl_Position = cameraToViewport * (modelToCamera * vec4(vertPosition, 1.0));\\n\"\n            \"}\\n\";\n        GL_CHECK(ShaderSource(vertexShader, 1, &vertexShaderSource, NULL));\n        GL_CHECK(CompileShader(vertexShader));\n        GLint status;\n        GL_CHECK(GetShaderiv(vertexShader, GL_COMPILE_STATUS, &status));\n        if (status != GL_TRUE) {\n            GLint lengthIncludingNullTerm;\n            GL_CHECK(GetShaderiv(vertexShader, GL_INFO_LOG_LENGTH, &lengthIncludingNullTerm));\n            if (lengthIncludingNullTerm > 0) {\n                char* buf = new char[lengthIncludingNullTerm];\n                GL_CHECK(GetShaderInfoLog(vertexShader, lengthIncludingNullTerm, NULL, buf));\n                SDL_Log(\"Error compiling vertex shader:\\n%s\\n\", buf);\n                delete[] buf;\n            }\n            abort();\n        }\n\n        // Compile fragment shader\n        GLuint fragmentShader = GL_NO_CHECK(CreateShader(GL_FRAGMENT_SHADER));\n        assert(GL_NO_CHECK(GetError()) == GL_NO_ERROR);\n        const GLchar* fragmentShaderSource =\n            \"varying vec3 fragNormal;\\n\"\n            \"uniform vec3 color;\\n\"\n            \"vec3 lightDir = normalize(vec3(1.0, -1.0, -0.5));\\n\"\n            \"\\n\"\n            \"void main() {\\n\"\n            \"    vec3 fn = normalize(fragNormal);\\n\"\n            \"    float d = (dot(-fn, lightDir) * 0.5 + 0.5) * 1.8 + 0.07;\\n\"\n            \"    vec3 reflect = lightDir - fn * (dot(fn, lightDir) * 2.0);\\n\"\n            \"    float spec = pow(max(reflect.z, 0.0), 15.0) * 5.0;\\n\"\n            \"    vec3 linear = color * d + vec3(spec);\\n\"\n            \"    vec3 toneMapped = linear / (vec3(1.0) + linear);\\n\"\n            \"    vec3 sRGB = pow(toneMapped, vec3(0.4545454545));\\n\"\n            \"    gl_FragColor = vec4(sRGB, 1.0);\\n\"\n            \"}\\n\";\n        GL_CHECK(ShaderSource(fragmentShader, 1, &fragmentShaderSource, NULL));\n        GL_CHECK(CompileShader(fragmentShader));\n        GL_CHECK(GetShaderiv(fragmentShader, GL_COMPILE_STATUS, &status));\n        if (status != GL_TRUE) {\n            GLint lengthIncludingNullTerm;\n            GL_CHECK(GetShaderiv(fragmentShader, GL_INFO_LOG_LENGTH, &lengthIncludingNullTerm));\n            if (lengthIncludingNullTerm > 0) {\n                char* buf = new char[lengthIncludingNullTerm];\n                GL_CHECK(GetShaderInfoLog(fragmentShader, lengthIncludingNullTerm, NULL, buf));\n                SDL_Log(\"Error compiling fragment shader:\\n%s\\n\", buf);\n                delete[] buf;\n            }\n            abort();\n        }\n\n        // Link shader program\n        m_shaderID = GL_NO_CHECK(CreateProgram());\n        GL_CHECK(AttachShader(m_shaderID, vertexShader));\n        GL_CHECK(AttachShader(m_shaderID, fragmentShader));\n        GL_CHECK(LinkProgram(m_shaderID));\n        GL_CHECK(ValidateProgram(m_shaderID));\n        GL_CHECK(GetProgramiv(m_shaderID, GL_VALIDATE_STATUS, &status));\n        assert(status == GL_TRUE);\n\n        // Destroy intermediate compiled shaders\n        GL_CHECK(DetachShader(m_shaderID, vertexShader));\n        GL_CHECK(DetachShader(m_shaderID, fragmentShader));\n        GL_CHECK(DeleteShader(vertexShader));\n        GL_CHECK(DeleteShader(fragmentShader));\n\n        // Get shader program's vertex attribute and uniform locations\n        m_vertPositionAttrib = GL_NO_CHECK(GetAttribLocation(m_shaderID, \"vertPosition\"));\n        assert(m_vertPositionAttrib >= 0);\n        m_vertNormalAttrib = GL_NO_CHECK(GetAttribLocation(m_shaderID, \"vertNormal\"));\n        assert(m_vertNormalAttrib >= 0);\n        m_modelToCameraAttrib = GL_NO_CHECK(GetUniformLocation(m_shaderID, \"modelToCamera\"));\n        assert(m_modelToCameraAttrib >= 0);\n        m_cameraToViewportAttrib = GL_NO_CHECK(GetUniformLocation(m_shaderID, \"cameraToViewport\"));\n        assert(m_cameraToViewportAttrib >= 0);\n        m_colorAttrib = GL_NO_CHECK(GetUniformLocation(m_shaderID, \"color\"));\n        assert(m_colorAttrib >= 0);\n\n        // Create VBOs and index buffers\n        for (const VertexGroup* g = vertexGroups; g->vertices != NULL; g++) {\n            IndexedVBO indexedVBO;\n            indexedVBO.group = g;\n\n            // Create VBO\n            GL_CHECK(GenBuffers(1, &indexedVBO.vboID));\n            GL_CHECK(BindBuffer(GL_ARRAY_BUFFER, indexedVBO.vboID));\n            GL_CHECK(BufferData(GL_ARRAY_BUFFER, g->numVertices * sizeof(VertexPN), g->vertices, GL_STATIC_DRAW));\n\n            // Create index buffer\n            GL_CHECK(GenBuffers(1, &indexedVBO.indexBufferID));\n            GL_CHECK(BindBuffer(GL_ARRAY_BUFFER, indexedVBO.indexBufferID));\n            GL_CHECK(BufferData(GL_ARRAY_BUFFER, g->numIndices * sizeof(GLushort), g->indices, GL_STATIC_DRAW));\n\n            m_indexedVBOs.push_back(indexedVBO);\n        }\n    }\n\n    ~View() {\n        for (size_t i = 0; i < m_indexedVBOs.size(); i++) {\n            GL_CHECK(DeleteBuffers(1, &m_indexedVBOs[i].indexBufferID));\n            GL_CHECK(DeleteBuffers(1, &m_indexedVBOs[i].vboID));\n        }\n        GL_CHECK(DeleteProgram(m_shaderID));\n    }\n\n    void update() {\n        // Increment rotation\n        m_rotationRate = 0.8f * m_rotationRate + 0.2f * m_rotationRateTarget;\n        m_yaw += m_rotationRate / 60.f;\n\n        // Clear viewport\n        GL_CHECK(Viewport(0, 0, (GLsizei) m_appState->m_renderWidth, (GLsizei) m_appState->m_renderHeight));\n        GL_CHECK(ClearColor(0.9f, 0.9f, 0.9f, 1));\n        GL_CHECK(Clear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT));\n\n        // Disable alpha blend\n        GL_CHECK(Disable(GL_BLEND));\n\n        // Enable depth test\n        GL_CHECK(Enable(GL_DEPTH_TEST));\n        GL_CHECK(DepthMask(GL_TRUE));\n\n        // Enable face culling\n        GL_CHECK(Enable(GL_CULL_FACE));\n        GL_CHECK(CullFace(GL_BACK));\n        GL_CHECK(FrontFace(GL_CCW));\n\n        // Calculate transformation matrics\n        Float4x4 w2c = {{{1, 0, 0, 0},\n                         {0, 0, -1, 0},\n                         {0, 1, 0, 0},\n                         {0, 0, 0, 1}}};\n        Float4x4 yRot = {{{cosf(m_yaw), sinf(m_yaw), 0, 0},\n                          {-sinf(m_yaw), cosf(m_yaw), 0, 0},\n                          {0, 0, 1, 0},\n                          {0, 0, 0, 1}}};\n        Float4x4 xRot = {{{1, 0, 0, 0},\n                          {0, cosf(m_pitch), sinf(m_pitch), 0},\n                          {0, -sinf(m_pitch), cosf(m_pitch), 0},\n                          {0, 0, 0, 1}}};\n        Float4x4 m2w = xRot * yRot;\n        m2w.col[3][1] = 3.5f;           // Set translation\n        Float4x4 modelToCamera = w2c * m2w;\n        Float4x4 cameraToViewport = makeProjection((float) m_appState->m_renderWidth, (float) m_appState->m_renderHeight, 30.f * Pi / 180.f, 0.1f, 10.f);\n\n        // Set shader and common uniforms\n        GL_CHECK(UseProgram(m_shaderID));\n        GL_CHECK(UniformMatrix4fv(m_modelToCameraAttrib, 1, GL_FALSE, (GLfloat*) &modelToCamera));\n        GL_CHECK(UniformMatrix4fv(m_cameraToViewportAttrib, 1, GL_FALSE, (GLfloat*) &cameraToViewport));\n\n        // Iterate over VBOs\n        for (size_t i = 0; i < m_indexedVBOs.size(); i++) {\n\n            // Set remaining uniforms and vertex attributes\n            const IndexedVBO& indexedVBO = m_indexedVBOs[i];\n            GL_CHECK(Uniform3fv(m_colorAttrib, 1, indexedVBO.group->color));\n            GL_CHECK(BindBuffer(GL_ARRAY_BUFFER, indexedVBO.vboID));\n            GL_CHECK(EnableVertexAttribArray(m_vertPositionAttrib));\n            GL_CHECK(VertexAttribPointer(m_vertPositionAttrib, 3, GL_FLOAT, GL_FALSE, (GLsizei) sizeof(VertexPN), (GLvoid*) offsetof(VertexPN, pos)));\n            GL_CHECK(EnableVertexAttribArray(m_vertNormalAttrib));\n            GL_CHECK(VertexAttribPointer(m_vertNormalAttrib, 3, GL_FLOAT, GL_FALSE, (GLsizei) sizeof(VertexPN), (GLvoid*) offsetof(VertexPN, normal)));\n\n            // Draw this VBO\n            GL_CHECK(BindBuffer(GL_ELEMENT_ARRAY_BUFFER, indexedVBO.indexBufferID));\n            GL_CHECK(DrawElements(GL_TRIANGLES, (GLsizei) indexedVBO.group->numIndices, GL_UNSIGNED_SHORT, (void*) 0));\n        }\n\n        // Present framebuffer\n        SDL_GL_SwapWindow(m_appState->m_sdlWindow);\n    }\n};\n\n\n//---------------------------------------------------------------------------\n//  Main loop\n//---------------------------------------------------------------------------\nint main(int argc, char *argv[]) {\n    // Initialize\n    AppState* appState = new AppState;\n    View* view = new View(appState);\n\n    // Main loop\n    Uint32 lastTick = SDL_GetTicks();\n    bool running = true;\n    while (running) {\n        Uint32 now = SDL_GetTicks();\n        if (now - lastTick < 16) {\n            SDL_Delay(16 - (now - lastTick));\n            now = SDL_GetTicks();\n        }\n        lastTick = now;\n\n        // Handle SDL events\n        SDL_Event event;\n        while (SDL_PollEvent(&event)) {\n            switch (event.type) {\n                case SDL_MOUSEBUTTONDOWN:\n                case SDL_MOUSEBUTTONUP: {\n                    if (event.button.button == SDL_BUTTON_LEFT) {\n                        view->m_rotationRateTarget = (event.type == SDL_MOUSEBUTTONDOWN) ? 0.f : 0.8f;\n                    }\n                    break;\n                }\n\n                case SDL_MOUSEMOTION: {\n                    if ((event.motion.state & SDL_BUTTON_LMASK) != 0) {\n                        view->m_yaw += event.motion.xrel * 0.01f;\n                        view->m_pitch += event.motion.yrel * 0.01f;\n                        view->m_pitch = std::max(std::min(view->m_pitch, Pi / 2), -Pi / 2);\n                    }\n                    break;\n                }\n\n                case SDL_WINDOWEVENT: {\n                    if (event.window.event == SDL_WINDOWEVENT_CLOSE) {\n                        running = false;\n                    }\n                    break;\n                }\n            }\n        }\n\n        // Update the view\n        if (running) {\n            view->update();\n        }\n    }\n\n    // Shutdown\n    delete view;\n    delete appState;\n    return 0;\n}\n\n\n//---------------------------------------------------------------------------\n//  3D model data\n//---------------------------------------------------------------------------\nVertexPN vertexList0[] = {\n    {{0.65209f, -0.04406f, 0.02708f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{0.70355f, -0.04406f, 0.03111f}, {0.00001f, -1.00000f, -0.00000f}},\n    {{0.65388f, -0.04406f, 0.03008f}, {-0.00001f, -1.00000f, 0.00003f}},\n    {{0.92321f, -0.04406f, 0.06568f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{0.86943f, -0.04406f, 0.04357f}, {0.00002f, -1.00000f, 0.00000f}},\n    {{0.91667f, -0.04406f, 0.04581f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{0.28724f, 0.04406f, 0.00231f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{0.30123f, 0.04406f, 0.01810f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{0.32611f, 0.04406f, -0.00809f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{1.06237f, -0.04406f, 0.08410f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{1.06330f, -0.04406f, 0.07408f}, {0.00000f, -1.00000f, -0.00001f}},\n    {{1.10665f, -0.04406f, 0.08939f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{0.92321f, 0.04406f, 0.06568f}, {-0.00001f, 1.00000f, -0.00000f}},\n    {{0.86943f, 0.04406f, 0.04357f}, {0.00001f, 1.00000f, 0.00000f}},\n    {{0.87534f, 0.04406f, 0.06245f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{1.06330f, 0.04406f, 0.07408f}, {0.00000f, 1.00000f, -0.00001f}},\n    {{1.10665f, 0.04406f, 0.08939f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{1.10824f, 0.04406f, 0.07248f}, {0.00001f, 1.00000f, -0.00000f}},\n    {{-0.51318f, 0.04406f, 0.07805f}, {0.00000f, 1.00000f, 0.00000f}},\n    {{-0.51534f, 0.04406f, 0.05663f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{-0.56726f, 0.04406f, 0.07270f}, {0.00002f, 1.00000f, -0.00000f}},\n    {{0.42895f, 0.04406f, -0.04959f}, {0.00001f, 1.00000f, -0.00003f}},\n    {{0.42827f, 0.04406f, -0.06299f}, {-0.00002f, 1.00000f, 0.00002f}},\n    {{0.42158f, 0.04406f, -0.05718f}, {-0.00002f, 1.00000f, 0.00002f}},\n    {{0.70355f, 0.04406f, 0.03111f}, {-0.00000f, 1.00000f, -0.00000f}},\n    {{0.74005f, 0.04406f, -0.10639f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{0.65209f, 0.04406f, 0.02708f}, {-0.00001f, 1.00000f, -0.00001f}},\n    {{0.01927f, 0.04406f, 0.01418f}, {-0.00001f, 1.00000f, 0.00001f}},\n    {{0.15078f, 0.04406f, 0.18074f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{-0.00693f, 0.04406f, -0.10639f}, {-0.00003f, 1.00000f, 0.00001f}},\n    {{-0.29899f, 0.03890f, -0.10095f}, {0.57682f, 0.68457f, -0.44570f}},\n    {{-0.30398f, 0.04406f, -0.05022f}, {-0.00004f, 1.00000f, 0.00001f}},\n    {{-0.28800f, 0.03890f, -0.02770f}, {0.35328f, 0.79194f, 0.49802f}},\n    {{-0.29431f, 0.02644f, -0.10457f}, {0.77428f, 0.20630f, -0.59828f}},\n    {{-0.28138f, 0.02644f, -0.01836f}, {0.97860f, 0.14421f, -0.14679f}},\n    {{-0.31827f, 0.03890f, -0.10920f}, {0.25158f, 0.70216f, -0.66610f}},\n    {{-0.31028f, 0.04406f, -0.09223f}, {0.00000f, 1.00000f, 0.00003f}},\n    {{-0.31645f, 0.02644f, -0.11403f}, {0.34660f, 0.19424f, -0.91768f}},\n    {{-0.33599f, 0.03890f, -0.11503f}, {0.19532f, 0.70243f, -0.68443f}},\n    {{-0.32268f, 0.04406f, -0.09753f}, {0.00001f, 1.00000f, 0.00003f}},\n    {{-0.33457f, 0.02644f, -0.12000f}, {0.26919f, 0.19428f, -0.94329f}},\n    {{-0.35469f, 0.03890f, -0.11956f}, {0.14144f, 0.70274f, -0.69724f}},\n    {{-0.33941f, 0.04406f, -0.10304f}, {0.00003f, 1.00000f, -0.00002f}},\n    {{-0.35366f, 0.02644f, -0.12463f}, {0.19502f, 0.19433f, -0.96136f}},\n    {{-0.37437f, 0.03890f, -0.12279f}, {0.09075f, 0.70306f, -0.70532f}},\n    {{-0.35717f, 0.04406f, -0.10734f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{-0.37371f, 0.02644f, -0.12792f}, {0.12518f, 0.19438f, -0.97291f}},\n    {{-0.39502f, 0.03890f, -0.12473f}, {0.04370f, 0.70338f, -0.70947f}},\n    {{-0.37596f, 0.04406f, -0.11043f}, {0.00005f, 1.00000f, 0.00002f}},\n    {{-0.39470f, 0.02644f, -0.12988f}, {0.06030f, 0.19443f, -0.97906f}},\n    {{-0.41671f, 0.03890f, -0.12537f}, {-0.00893f, 0.70222f, -0.71191f}},\n    {{-0.39579f, 0.04406f, -0.11228f}, {0.00006f, 1.00000f, 0.00001f}},\n    {{-0.41678f, 0.02644f, -0.13054f}, {-0.01231f, 0.19425f, -0.98088f}},\n    {{-0.44433f, 0.03890f, -0.12385f}, {-0.08296f, 0.70015f, -0.70916f}},\n    {{-0.41656f, 0.04406f, -0.11290f}, {-0.00006f, 1.00000f, 0.00001f}},\n    {{-0.44493f, 0.02644f, -0.12899f}, {-0.11398f, 0.19397f, -0.97436f}},\n    {{-0.46978f, 0.03890f, -0.11927f}, {-0.17607f, 0.69922f, -0.69289f}},\n    {{-0.44288f, 0.04406f, -0.11145f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{-0.47106f, 0.02644f, -0.12429f}, {-0.24162f, 0.19386f, -0.95081f}},\n    {{-0.49298f, 0.03890f, -0.11160f}, {-0.27754f, 0.69843f, -0.65967f}},\n    {{-0.46671f, 0.04406f, -0.10717f}, {0.00002f, 1.00000f, -0.00000f}},\n    {{-0.49499f, 0.02644f, -0.11637f}, {-0.38045f, 0.19378f, -0.90427f}},\n    {{-0.51388f, 0.03890f, -0.10080f}, {-0.38064f, 0.69795f, -0.60661f}},\n    {{-0.48813f, 0.04406f, -0.10007f}, {0.00002f, 1.00000f, -0.00000f}},\n    {{-0.51663f, 0.02644f, -0.10519f}, {-0.52144f, 0.19373f, -0.83100f}},\n    {{-0.53240f, 0.03890f, -0.08689f}, {-0.47649f, 0.69790f, -0.53468f}},\n    {{-0.50723f, 0.04406f, -0.09021f}, {0.00001f, 1.00000f, -0.00003f}},\n    {{-0.53585f, 0.02644f, -0.09076f}, {-0.65271f, 0.19373f, -0.73242f}},\n    {{-0.54850f, 0.03890f, -0.06992f}, {-0.55727f, 0.69827f, -0.44930f}},\n    {{-0.52408f, 0.04406f, -0.07756f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.55253f, 0.02644f, -0.07317f}, {-0.76374f, 0.19376f, -0.61576f}},\n    {{-0.56177f, 0.03890f, -0.05046f}, {-0.62174f, 0.69832f, -0.35468f}},\n    {{-0.53877f, 0.04406f, -0.06207f}, {0.00004f, 1.00000f, -0.00004f}},\n    {{-0.56626f, 0.02644f, -0.05302f}, {-0.85214f, 0.19377f, -0.48612f}},\n    {{-0.57179f, 0.03890f, -0.02909f}, {-0.66937f, 0.69856f, -0.25291f}},\n    {{-0.55091f, 0.04406f, -0.04426f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.57663f, 0.02644f, -0.03092f}, {-0.91772f, 0.19379f, -0.34674f}},\n    {{-0.57857f, 0.03890f, -0.00586f}, {-0.69896f, 0.69912f, -0.15059f}},\n    {{-0.56010f, 0.04406f, -0.02467f}, {0.00000f, 1.00000f, -0.00006f}},\n    {{-0.58362f, 0.02644f, -0.00695f}, {-0.95903f, 0.19385f, -0.20663f}},\n    {{-0.58211f, 0.03890f, 0.01917f}, {-0.71214f, 0.69991f, -0.05460f}},\n    {{-0.56635f, 0.04406f, -0.00323f}, {0.00001f, 1.00000f, -0.00010f}},\n    {{-0.58726f, 0.02644f, 0.01877f}, {-0.97814f, 0.19394f, -0.07499f}},\n    {{-0.58244f, 0.03890f, 0.04597f}, {-0.71272f, 0.70076f, 0.03088f}},\n    {{-0.56966f, 0.04406f, 0.02012f}, {-0.00000f, 1.00000f, -0.00002f}},\n    {{-0.58761f, 0.02644f, 0.04620f}, {-0.98007f, 0.19404f, 0.04247f}},\n    {{-0.57960f, 0.03890f, 0.07456f}, {-0.70488f, 0.70132f, 0.10628f}},\n    {{-0.56997f, 0.04406f, 0.04543f}, {-0.00000f, 1.00000f, -0.00002f}},\n    {{-0.58471f, 0.02644f, 0.07533f}, {-0.97001f, 0.19412f, 0.14626f}},\n    {{-0.57338f, 0.03890f, 0.10523f}, {-0.69023f, 0.70087f, 0.17990f}},\n    {{-0.57838f, 0.02643f, 0.10654f}, {-0.94928f, 0.19406f, 0.24742f}},\n    {{-0.56419f, 0.03890f, 0.13394f}, {-0.66582f, 0.70047f, 0.25697f}},\n    {{-0.56130f, 0.04406f, 0.10208f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{-0.56901f, 0.02643f, 0.13580f}, {-0.91520f, 0.19401f, 0.35322f}},\n    {{-0.55203f, 0.03890f, 0.16067f}, {-0.63057f, 0.70020f, 0.33480f}},\n    {{-0.55254f, 0.04406f, 0.12945f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.55660f, 0.02643f, 0.16309f}, {-0.86645f, 0.19397f, 0.46004f}},\n    {{-0.53690f, 0.03890f, 0.18538f}, {-0.58475f, 0.70012f, 0.40975f}},\n    {{-0.54100f, 0.04406f, 0.15481f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{-0.54114f, 0.02643f, 0.18835f}, {-0.80340f, 0.19396f, 0.56297f}},\n    {{-0.51882f, 0.03890f, 0.20806f}, {-0.53004f, 0.70023f, 0.47826f}},\n    {{-0.52668f, 0.04406f, 0.17822f}, {-0.00002f, 1.00000f, -0.00006f}},\n    {{-0.52266f, 0.02643f, 0.21152f}, {-0.72834f, 0.19398f, 0.65719f}},\n    {{-0.49780f, 0.03890f, 0.22867f}, {-0.46962f, 0.70059f, 0.53724f}},\n    {{-0.50955f, 0.04406f, 0.19969f}, {-0.00002f, 1.00000f, -0.00000f}},\n    {{-0.50121f, 0.02643f, 0.23257f}, {-0.64563f, 0.19402f, 0.73859f}},\n    {{-0.47470f, 0.03890f, 0.24663f}, {-0.40424f, 0.70045f, 0.58818f}},\n    {{-0.48959f, 0.04406f, 0.21928f}, {-0.00002f, 1.00000f, -0.00000f}},\n    {{-0.47763f, 0.02643f, 0.25089f}, {-0.55564f, 0.19400f, 0.80847f}},\n    {{-0.45034f, 0.03890f, 0.26135f}, {-0.33095f, 0.70018f, 0.63263f}},\n    {{-0.46763f, 0.04406f, 0.23635f}, {-0.00000f, 1.00000f, -0.00003f}},\n    {{-0.45274f, 0.02643f, 0.26593f}, {-0.45473f, 0.19397f, 0.86925f}},\n    {{-0.42473f, 0.03890f, 0.27281f}, {-0.25035f, 0.70008f, 0.66874f}},\n    {{-0.44456f, 0.04406f, 0.25029f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{-0.42654f, 0.02643f, 0.27765f}, {-0.34394f, 0.19396f, 0.91874f}},\n    {{-0.39788f, 0.03890f, 0.28099f}, {-0.16589f, 0.70018f, 0.69443f}},\n    {{-0.42035f, 0.04406f, 0.26111f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{-0.39908f, 0.02643f, 0.28602f}, {-0.22794f, 0.19397f, 0.95416f}},\n    {{-0.36983f, 0.03890f, 0.28589f}, {-0.08151f, 0.70046f, 0.70902f}},\n    {{-0.39498f, 0.04406f, 0.26885f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{-0.37042f, 0.02643f, 0.29103f}, {-0.11204f, 0.19401f, 0.97458f}},\n    {{-0.34069f, 0.03890f, 0.28752f}, {-0.01116f, 0.70246f, 0.71164f}},\n    {{-0.36840f, 0.04406f, 0.27349f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{-0.34077f, 0.02643f, 0.29269f}, {-0.01539f, 0.19428f, 0.98082f}},\n    {{-0.32212f, 0.03890f, 0.28707f}, {0.03645f, 0.70393f, 0.70933f}},\n    {{-0.34049f, 0.04406f, 0.27505f}, {-0.00002f, 1.00000f, -0.00002f}},\n    {{-0.32185f, 0.02643f, 0.29223f}, {0.05035f, 0.19452f, 0.97961f}},\n    {{-0.30480f, 0.03890f, 0.28571f}, {0.07733f, 0.70350f, 0.70648f}},\n    {{-0.32276f, 0.04406f, 0.27462f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{-0.30424f, 0.02643f, 0.29084f}, {0.10674f, 0.19445f, 0.97509f}},\n    {{-0.28865f, 0.03890f, 0.28344f}, {0.12377f, 0.70301f, 0.70033f}},\n    {{-0.30616f, 0.04406f, 0.27332f}, {0.00006f, 1.00000f, 0.00001f}},\n    {{-0.28775f, 0.02643f, 0.28852f}, {0.17071f, 0.19437f, 0.96596f}},\n    {{-0.27365f, 0.03890f, 0.28024f}, {0.17622f, 0.70245f, 0.68957f}},\n    {{-0.29082f, 0.04406f, 0.27116f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{-0.27237f, 0.02643f, 0.28525f}, {0.24287f, 0.19428f, 0.95040f}},\n    {{-0.25981f, 0.03890f, 0.27611f}, {0.23481f, 0.70185f, 0.67250f}},\n    {{-0.27674f, 0.04406f, 0.26816f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{-0.25811f, 0.02643f, 0.28098f}, {0.32337f, 0.19419f, 0.92613f}},\n    {{-0.24342f, 0.03890f, 0.26953f}, {0.62333f, 0.69569f, 0.35705f}},\n    {{-0.26392f, 0.04406f, 0.26433f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{-0.23771f, 0.02643f, 0.27280f}, {0.84629f, 0.22090f, 0.48476f}},\n    {{-0.25484f, 0.03890f, 0.19339f}, {0.28614f, 0.75047f, -0.59574f}},\n    {{-0.25720f, 0.04406f, 0.26163f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{-0.25086f, 0.02643f, 0.18511f}, {0.97669f, 0.15689f, -0.14650f}},\n    {{-0.27376f, 0.03890f, 0.20438f}, {-0.32051f, 0.71371f, -0.62281f}},\n    {{-0.26444f, 0.04406f, 0.21338f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{-0.27612f, 0.02643f, 0.19979f}, {-0.44866f, 0.19654f, -0.87182f}},\n    {{-0.25086f, 0.02643f, 0.18511f}, {-0.49617f, 0.15689f, -0.85393f}},\n    {{-0.28617f, 0.03890f, 0.20999f}, {-0.25559f, 0.71365f, -0.65221f}},\n    {{-0.26805f, 0.04406f, 0.21548f}, {0.00001f, 1.00000f, -0.00003f}},\n    {{-0.28806f, 0.02643f, 0.20518f}, {-0.35775f, 0.19653f, -0.91290f}},\n    {{-0.29922f, 0.03890f, 0.21435f}, {-0.18927f, 0.71346f, -0.67465f}},\n    {{-0.28162f, 0.04406f, 0.22161f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.30062f, 0.02643f, 0.20938f}, {-0.26485f, 0.19648f, -0.94406f}},\n    {{-0.31292f, 0.03890f, 0.21748f}, {-0.12355f, 0.71316f, -0.69003f}},\n    {{-0.29585f, 0.04406f, 0.22637f}, {0.00009f, 1.00000f, -0.00002f}},\n    {{-0.31383f, 0.02643f, 0.21239f}, {-0.17282f, 0.19641f, -0.96517f}},\n    {{-0.32729f, 0.03890f, 0.21936f}, {-0.06022f, 0.71277f, -0.69881f}},\n    {{-0.31072f, 0.04406f, 0.22976f}, {0.00002f, 1.00000f, -0.00000f}},\n    {{-0.32773f, 0.02643f, 0.21421f}, {-0.08418f, 0.19632f, -0.97692f}},\n    {{-0.34229f, 0.03890f, 0.21999f}, {0.00447f, 0.71331f, -0.70084f}},\n    {{-0.32622f, 0.04406f, 0.23179f}, {0.00002f, 1.00000f, -0.00000f}},\n    {{-0.34226f, 0.02643f, 0.21482f}, {0.00625f, 0.19645f, -0.98049f}},\n    {{-0.36229f, 0.03890f, 0.21890f}, {0.07851f, 0.71465f, -0.69506f}},\n    {{-0.34237f, 0.04406f, 0.23246f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{-0.36171f, 0.02643f, 0.21376f}, {0.11004f, 0.19678f, -0.97425f}},\n    {{-0.38123f, 0.03890f, 0.21564f}, {0.16067f, 0.71515f, -0.68025f}},\n    {{-0.36369f, 0.04406f, 0.23130f}, {0.00002f, 1.00000f, 0.00003f}},\n    {{-0.38004f, 0.02643f, 0.21060f}, {0.22537f, 0.19690f, -0.95417f}},\n    {{-0.39915f, 0.03890f, 0.21022f}, {0.24413f, 0.71542f, -0.65465f}},\n    {{-0.38410f, 0.04406f, 0.22779f}, {0.00002f, 1.00000f, -0.00002f}},\n    {{-0.39735f, 0.02643f, 0.20537f}, {0.34257f, 0.19697f, -0.91861f}},\n    {{-0.41611f, 0.03890f, 0.20264f}, {0.32503f, 0.71542f, -0.61850f}},\n    {{-0.40352f, 0.04406f, 0.22192f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{-0.41370f, 0.02643f, 0.19806f}, {0.45607f, 0.19697f, -0.86787f}},\n    {{-0.43211f, 0.03890f, 0.19289f}, {0.39968f, 0.71513f, -0.57345f}},\n    {{-0.42192f, 0.04406f, 0.21369f}, {0.00000f, 1.00000f, 0.00003f}},\n    {{-0.42916f, 0.02643f, 0.18864f}, {0.56060f, 0.19690f, -0.80434f}},\n    {{-0.44719f, 0.03890f, 0.18094f}, {0.46619f, 0.71489f, -0.52115f}},\n    {{-0.43925f, 0.04406f, 0.20313f}, {0.00003f, 1.00000f, -0.00001f}},\n    {{-0.44374f, 0.02643f, 0.17709f}, {0.65367f, 0.19684f, -0.73074f}},\n    {{-0.46084f, 0.03890f, 0.16718f}, {0.52564f, 0.71517f, -0.46069f}},\n    {{-0.45551f, 0.04406f, 0.19025f}, {0.00002f, 1.00000f, -0.00000f}},\n    {{-0.45695f, 0.02643f, 0.16377f}, {0.73732f, 0.19691f, -0.64621f}},\n    {{-0.47259f, 0.03890f, 0.15197f}, {0.57834f, 0.71517f, -0.39250f}},\n    {{-0.47023f, 0.04406f, 0.17541f}, {-0.00001f, 1.00000f, 0.00003f}},\n    {{-0.46831f, 0.02643f, 0.14907f}, {0.81124f, 0.19691f, -0.55057f}},\n    {{-0.48246f, 0.03890f, 0.13530f}, {0.62189f, 0.71492f, -0.31959f}},\n    {{-0.48292f, 0.04406f, 0.15899f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{-0.47786f, 0.02643f, 0.13294f}, {0.87202f, 0.19684f, -0.44814f}},\n    {{-0.49046f, 0.03890f, 0.11713f}, {0.65525f, 0.71446f, -0.24537f}},\n    {{-0.49357f, 0.04406f, 0.14100f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{-0.48562f, 0.02643f, 0.11531f}, {0.91819f, 0.19673f, -0.34383f}},\n    {{-0.49660f, 0.03890f, 0.09743f}, {0.67859f, 0.71386f, -0.17298f}},\n    {{-0.50215f, 0.04406f, 0.12150f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{-0.49159f, 0.02643f, 0.09616f}, {0.95010f, 0.19658f, -0.24219f}},\n    {{-0.50084f, 0.03890f, 0.07620f}, {0.69305f, 0.71335f, -0.10402f}},\n    {{-0.50869f, 0.04406f, 0.10051f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{-0.49573f, 0.02644f, 0.07544f}, {0.96965f, 0.19646f, -0.14553f}},\n    {{-0.50287f, 0.03890f, 0.05605f}, {0.69922f, 0.71418f, -0.03218f}},\n    {{-0.49771f, 0.02644f, 0.05581f}, {0.97943f, 0.19666f, -0.04508f}},\n    {{-0.50272f, 0.03890f, 0.03744f}, {0.69693f, 0.71539f, 0.05011f}},\n    {{-0.49756f, 0.02644f, 0.03781f}, {0.97789f, 0.19696f, 0.07031f}},\n    {{-0.50040f, 0.03890f, 0.02037f}, {0.68266f, 0.71658f, 0.14314f}},\n    {{-0.51517f, 0.04406f, 0.03654f}, {-0.00001f, 1.00000f, 0.00002f}},\n    {{-0.49533f, 0.02644f, 0.02143f}, {0.95948f, 0.19727f, 0.20119f}},\n    {{-0.49595f, 0.03890f, 0.00481f}, {0.65263f, 0.71755f, 0.24329f}},\n    {{-0.51262f, 0.04406f, 0.01780f}, {-0.00003f, 1.00000f, 0.00001f}},\n    {{-0.49110f, 0.02644f, 0.00662f}, {0.91855f, 0.19752f, 0.34242f}},\n    {{-0.48939f, 0.03890f, -0.00929f}, {0.60492f, 0.71807f, 0.34418f}},\n    {{-0.50766f, 0.04406f, 0.00044f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{-0.48489f, 0.02644f, -0.00673f}, {0.85201f, 0.19766f, 0.48477f}},\n    {{-0.48072f, 0.03890f, -0.02199f}, {0.54112f, 0.71793f, 0.43791f}},\n    {{-0.50026f, 0.04406f, -0.01547f}, {-0.00001f, 1.00000f, 0.00001f}},\n    {{-0.47669f, 0.02644f, -0.01873f}, {0.76201f, 0.19763f, 0.61667f}},\n    {{-0.47023f, 0.03890f, -0.03299f}, {0.46224f, 0.71819f, 0.52014f}},\n    {{-0.49044f, 0.04406f, -0.02986f}, {-0.00001f, 1.00000f, 0.00001f}},\n    {{-0.46679f, 0.02644f, -0.02912f}, {0.65116f, 0.19769f, 0.73274f}},\n    {{-0.45825f, 0.03890f, -0.04198f}, {0.37019f, 0.71817f, 0.58922f}},\n    {{-0.47853f, 0.04406f, -0.04234f}, {-0.00007f, 1.00000f, 0.00005f}},\n    {{-0.45549f, 0.02644f, -0.03760f}, {0.52149f, 0.19769f, 0.83004f}},\n    {{-0.44472f, 0.03890f, -0.04899f}, {0.27112f, 0.71754f, 0.64158f}},\n    {{-0.46490f, 0.04406f, -0.05257f}, {-0.00002f, 1.00000f, -0.00000f}},\n    {{-0.44271f, 0.02644f, -0.04422f}, {0.38159f, 0.19752f, 0.90298f}},\n    {{-0.42959f, 0.03890f, -0.05403f}, {0.17294f, 0.71647f, 0.67584f}},\n    {{-0.44959f, 0.04406f, -0.06051f}, {-0.00001f, 1.00000f, 0.00003f}},\n    {{-0.42831f, 0.02644f, -0.04902f}, {0.24304f, 0.19724f, 0.94975f}},\n    {{-0.41281f, 0.03890f, -0.05708f}, {0.08192f, 0.71523f, 0.69407f}},\n    {{-0.43269f, 0.04406f, -0.06614f}, {-0.00005f, 1.00000f, 0.00002f}},\n    {{-0.41220f, 0.02644f, -0.05194f}, {0.11492f, 0.19692f, 0.97366f}},\n    {{-0.39430f, 0.03890f, -0.05811f}, {0.00538f, 0.71325f, 0.70089f}},\n    {{-0.41427f, 0.04406f, -0.06948f}, {-0.00002f, 1.00000f, -0.00002f}},\n    {{-0.39426f, 0.02644f, -0.05294f}, {0.00753f, 0.19643f, 0.98049f}},\n    {{-0.37673f, 0.03890f, -0.05740f}, {-0.05737f, 0.71245f, 0.69937f}},\n    {{-0.39440f, 0.04406f, -0.07058f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{-0.37715f, 0.02644f, -0.05225f}, {-0.08017f, 0.19624f, 0.97727f}},\n    {{-0.35973f, 0.03890f, -0.05529f}, {-0.11692f, 0.71272f, 0.69163f}},\n    {{-0.37571f, 0.04406f, -0.06983f}, {0.00005f, 1.00000f, 0.00001f}},\n    {{-0.36059f, 0.02644f, -0.05019f}, {-0.16344f, 0.19631f, 0.96683f}},\n    {{-0.34333f, 0.03890f, -0.05177f}, {-0.17792f, 0.71292f, 0.67830f}},\n    {{-0.35765f, 0.04406f, -0.06759f}, {0.00005f, 1.00000f, 0.00000f}},\n    {{-0.34464f, 0.02644f, -0.04677f}, {-0.24878f, 0.19635f, 0.94845f}},\n    {{-0.32754f, 0.03890f, -0.04686f}, {-0.23895f, 0.71302f, 0.65917f}},\n    {{-0.34017f, 0.04406f, -0.06384f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{-0.32930f, 0.02644f, -0.04200f}, {-0.33417f, 0.19638f, 0.92183f}},\n    {{-0.31232f, 0.03890f, -0.04054f}, {-0.29848f, 0.71301f, 0.63444f}},\n    {{-0.32328f, 0.04406f, -0.05858f}, {-0.00002f, 1.00000f, -0.00000f}},\n    {{-0.31452f, 0.02644f, -0.03586f}, {-0.41742f, 0.19638f, 0.88724f}},\n    {{-0.30701f, 0.04406f, -0.05182f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{-0.28138f, 0.02644f, -0.01836f}, {-0.46196f, 0.14421f, 0.87510f}},\n    {{-0.29431f, -0.02643f, -0.10457f}, {0.77428f, -0.20630f, -0.59828f}},\n    {{-0.28138f, -0.02643f, -0.01836f}, {0.97860f, -0.14421f, -0.14679f}},\n    {{-0.31645f, -0.02643f, -0.11403f}, {0.34660f, -0.19424f, -0.91768f}},\n    {{-0.33457f, -0.02643f, -0.12000f}, {0.26919f, -0.19428f, -0.94329f}},\n    {{-0.35366f, -0.02643f, -0.12463f}, {0.19502f, -0.19433f, -0.96136f}},\n    {{-0.37371f, -0.02643f, -0.12792f}, {0.12518f, -0.19438f, -0.97291f}},\n    {{-0.39470f, -0.02643f, -0.12988f}, {0.06030f, -0.19443f, -0.97906f}},\n    {{-0.41678f, -0.02643f, -0.13054f}, {-0.01231f, -0.19425f, -0.98088f}},\n    {{-0.44493f, -0.02643f, -0.12899f}, {-0.11398f, -0.19397f, -0.97436f}},\n    {{-0.47106f, -0.02643f, -0.12429f}, {-0.24162f, -0.19386f, -0.95081f}},\n    {{-0.49499f, -0.02643f, -0.11637f}, {-0.38045f, -0.19378f, -0.90427f}},\n    {{-0.51663f, -0.02643f, -0.10519f}, {-0.52144f, -0.19373f, -0.83100f}},\n    {{-0.53585f, -0.02643f, -0.09076f}, {-0.65271f, -0.19373f, -0.73242f}},\n    {{-0.55253f, -0.02643f, -0.07317f}, {-0.76374f, -0.19376f, -0.61576f}},\n    {{-0.56626f, -0.02643f, -0.05302f}, {-0.85214f, -0.19376f, -0.48612f}},\n    {{-0.57663f, -0.02643f, -0.03092f}, {-0.91772f, -0.19379f, -0.34674f}},\n    {{-0.58362f, -0.02643f, -0.00695f}, {-0.95903f, -0.19385f, -0.20663f}},\n    {{-0.58726f, -0.02643f, 0.01877f}, {-0.97814f, -0.19394f, -0.07499f}},\n    {{-0.58761f, -0.02643f, 0.04620f}, {-0.98007f, -0.19404f, 0.04247f}},\n    {{-0.58471f, -0.02643f, 0.07533f}, {-0.97001f, -0.19412f, 0.14626f}},\n    {{-0.57838f, -0.02643f, 0.10654f}, {-0.94928f, -0.19406f, 0.24742f}},\n    {{-0.56901f, -0.02643f, 0.13580f}, {-0.91520f, -0.19401f, 0.35322f}},\n    {{-0.55660f, -0.02643f, 0.16309f}, {-0.86645f, -0.19397f, 0.46004f}},\n    {{-0.54114f, -0.02643f, 0.18835f}, {-0.80340f, -0.19396f, 0.56297f}},\n    {{-0.52266f, -0.02643f, 0.21152f}, {-0.72834f, -0.19398f, 0.65719f}},\n    {{-0.50121f, -0.02643f, 0.23257f}, {-0.64563f, -0.19402f, 0.73859f}},\n    {{-0.47763f, -0.02643f, 0.25089f}, {-0.55564f, -0.19401f, 0.80847f}},\n    {{-0.45274f, -0.02643f, 0.26593f}, {-0.45473f, -0.19397f, 0.86925f}},\n    {{-0.42654f, -0.02643f, 0.27765f}, {-0.34394f, -0.19396f, 0.91874f}},\n    {{-0.39908f, -0.02643f, 0.28602f}, {-0.22794f, -0.19397f, 0.95416f}},\n    {{-0.37042f, -0.02643f, 0.29103f}, {-0.11204f, -0.19401f, 0.97458f}},\n    {{-0.34077f, -0.02643f, 0.29269f}, {-0.01539f, -0.19428f, 0.98082f}},\n    {{-0.32185f, -0.02643f, 0.29223f}, {0.05035f, -0.19452f, 0.97961f}},\n    {{-0.30424f, -0.02643f, 0.29084f}, {0.10674f, -0.19445f, 0.97509f}},\n    {{-0.28775f, -0.02643f, 0.28852f}, {0.17071f, -0.19437f, 0.96596f}},\n    {{-0.27237f, -0.02643f, 0.28525f}, {0.24287f, -0.19428f, 0.95040f}},\n    {{-0.25811f, -0.02643f, 0.28098f}, {0.32337f, -0.19419f, 0.92613f}},\n    {{-0.23771f, -0.02643f, 0.27280f}, {0.84629f, -0.22090f, 0.48476f}},\n    {{-0.25086f, -0.02643f, 0.18511f}, {0.97669f, -0.15689f, -0.14650f}},\n    {{-0.27612f, -0.02643f, 0.19979f}, {-0.44866f, -0.19655f, -0.87182f}},\n    {{-0.25086f, -0.02643f, 0.18511f}, {-0.49617f, -0.15689f, -0.85393f}},\n    {{-0.28806f, -0.02643f, 0.20518f}, {-0.35775f, -0.19653f, -0.91290f}},\n    {{-0.30062f, -0.02643f, 0.20938f}, {-0.26485f, -0.19648f, -0.94406f}},\n    {{-0.31383f, -0.02643f, 0.21239f}, {-0.17282f, -0.19641f, -0.96517f}},\n    {{-0.32773f, -0.02643f, 0.21421f}, {-0.08418f, -0.19632f, -0.97692f}},\n    {{-0.34226f, -0.02643f, 0.21482f}, {0.00625f, -0.19645f, -0.98049f}},\n    {{-0.36171f, -0.02643f, 0.21376f}, {0.11004f, -0.19678f, -0.97425f}},\n    {{-0.38004f, -0.02643f, 0.21060f}, {0.22537f, -0.19690f, -0.95417f}},\n    {{-0.39735f, -0.02643f, 0.20537f}, {0.34257f, -0.19697f, -0.91861f}},\n    {{-0.41370f, -0.02643f, 0.19806f}, {0.45608f, -0.19697f, -0.86787f}},\n    {{-0.42916f, -0.02643f, 0.18864f}, {0.56060f, -0.19690f, -0.80434f}},\n    {{-0.44374f, -0.02643f, 0.17709f}, {0.65367f, -0.19684f, -0.73074f}},\n    {{-0.45695f, -0.02643f, 0.16377f}, {0.73732f, -0.19691f, -0.64621f}},\n    {{-0.46831f, -0.02643f, 0.14907f}, {0.81124f, -0.19691f, -0.55057f}},\n    {{-0.47786f, -0.02643f, 0.13294f}, {0.87202f, -0.19684f, -0.44814f}},\n    {{-0.48562f, -0.02643f, 0.11531f}, {0.91819f, -0.19673f, -0.34383f}},\n    {{-0.49159f, -0.02643f, 0.09616f}, {0.95010f, -0.19658f, -0.24219f}},\n    {{-0.49573f, -0.02643f, 0.07544f}, {0.96965f, -0.19646f, -0.14553f}},\n    {{-0.49771f, -0.02643f, 0.05581f}, {0.97944f, -0.19666f, -0.04508f}},\n    {{-0.49756f, -0.02643f, 0.03781f}, {0.97789f, -0.19696f, 0.07031f}},\n    {{-0.49533f, -0.02643f, 0.02143f}, {0.95948f, -0.19727f, 0.20119f}},\n    {{-0.49110f, -0.02643f, 0.00662f}, {0.91855f, -0.19752f, 0.34242f}},\n    {{-0.48489f, -0.02643f, -0.00673f}, {0.85201f, -0.19766f, 0.48477f}},\n    {{-0.47669f, -0.02643f, -0.01873f}, {0.76201f, -0.19763f, 0.61667f}},\n    {{-0.46679f, -0.02643f, -0.02912f}, {0.65116f, -0.19769f, 0.73274f}},\n    {{-0.45549f, -0.02643f, -0.03760f}, {0.52149f, -0.19769f, 0.83004f}},\n    {{-0.44271f, -0.02643f, -0.04422f}, {0.38159f, -0.19752f, 0.90298f}},\n    {{-0.42831f, -0.02643f, -0.04902f}, {0.24304f, -0.19724f, 0.94975f}},\n    {{-0.41220f, -0.02643f, -0.05194f}, {0.11492f, -0.19692f, 0.97366f}},\n    {{-0.39426f, -0.02643f, -0.05294f}, {0.00753f, -0.19643f, 0.98049f}},\n    {{-0.37715f, -0.02643f, -0.05225f}, {-0.08017f, -0.19624f, 0.97727f}},\n    {{-0.36059f, -0.02643f, -0.05019f}, {-0.16344f, -0.19631f, 0.96683f}},\n    {{-0.34464f, -0.02643f, -0.04677f}, {-0.24878f, -0.19635f, 0.94845f}},\n    {{-0.32930f, -0.02643f, -0.04200f}, {-0.33417f, -0.19638f, 0.92183f}},\n    {{-0.31452f, -0.02643f, -0.03586f}, {-0.41742f, -0.19638f, 0.88724f}},\n    {{-0.28138f, -0.02643f, -0.01836f}, {-0.46196f, -0.14421f, 0.87510f}},\n    {{-0.29899f, -0.03890f, -0.10095f}, {0.57682f, -0.68457f, -0.44570f}},\n    {{-0.28800f, -0.03890f, -0.02770f}, {0.35328f, -0.79194f, 0.49802f}},\n    {{-0.31028f, -0.04406f, -0.09223f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{-0.30398f, -0.04406f, -0.05022f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{-0.31827f, -0.03890f, -0.10920f}, {0.25158f, -0.70216f, -0.66610f}},\n    {{-0.32268f, -0.04406f, -0.09753f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{-0.33599f, -0.03890f, -0.11503f}, {0.19532f, -0.70243f, -0.68443f}},\n    {{-0.33941f, -0.04406f, -0.10304f}, {0.00000f, -1.00000f, 0.00002f}},\n    {{-0.35469f, -0.03890f, -0.11956f}, {0.14144f, -0.70274f, -0.69724f}},\n    {{-0.35717f, -0.04406f, -0.10734f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{-0.37437f, -0.03890f, -0.12279f}, {0.09075f, -0.70306f, -0.70532f}},\n    {{-0.37596f, -0.04406f, -0.11043f}, {0.00001f, -1.00000f, 0.00002f}},\n    {{-0.39502f, -0.03890f, -0.12473f}, {0.04370f, -0.70338f, -0.70947f}},\n    {{-0.39579f, -0.04406f, -0.11228f}, {-0.00002f, -1.00000f, 0.00002f}},\n    {{-0.41671f, -0.03890f, -0.12537f}, {-0.00893f, -0.70222f, -0.71191f}},\n    {{-0.41656f, -0.04406f, -0.11290f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{-0.44433f, -0.03890f, -0.12385f}, {-0.08296f, -0.70015f, -0.70916f}},\n    {{-0.44288f, -0.04406f, -0.11145f}, {0.00002f, -1.00000f, -0.00000f}},\n    {{-0.46978f, -0.03890f, -0.11927f}, {-0.17607f, -0.69922f, -0.69289f}},\n    {{-0.46671f, -0.04406f, -0.10717f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{-0.49298f, -0.03890f, -0.11160f}, {-0.27754f, -0.69843f, -0.65967f}},\n    {{-0.48813f, -0.04406f, -0.10007f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{-0.51388f, -0.03890f, -0.10080f}, {-0.38064f, -0.69795f, -0.60661f}},\n    {{-0.50723f, -0.04406f, -0.09021f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{-0.53240f, -0.03890f, -0.08689f}, {-0.47649f, -0.69790f, -0.53468f}},\n    {{-0.52408f, -0.04406f, -0.07756f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{-0.54850f, -0.03890f, -0.06992f}, {-0.55727f, -0.69827f, -0.44930f}},\n    {{-0.53877f, -0.04406f, -0.06207f}, {0.00000f, -1.00000f, 0.00002f}},\n    {{-0.56177f, -0.03890f, -0.05046f}, {-0.62174f, -0.69832f, -0.35468f}},\n    {{-0.55091f, -0.04406f, -0.04426f}, {0.00001f, -1.00000f, 0.00000f}},\n    {{-0.57179f, -0.03890f, -0.02909f}, {-0.66937f, -0.69856f, -0.25291f}},\n    {{-0.56010f, -0.04406f, -0.02467f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{-0.57857f, -0.03890f, -0.00586f}, {-0.69896f, -0.69913f, -0.15059f}},\n    {{-0.56635f, -0.04406f, -0.00323f}, {0.00000f, -1.00000f, 0.00000f}},\n    {{-0.58211f, -0.03890f, 0.01917f}, {-0.71215f, -0.69991f, -0.05460f}},\n    {{-0.56966f, -0.04406f, 0.02012f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{-0.58244f, -0.03890f, 0.04597f}, {-0.71272f, -0.70076f, 0.03088f}},\n    {{-0.56997f, -0.04406f, 0.04543f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{-0.57960f, -0.03890f, 0.07456f}, {-0.70488f, -0.70132f, 0.10628f}},\n    {{-0.56726f, -0.04406f, 0.07270f}, {0.00003f, -1.00000f, 0.00001f}},\n    {{-0.57338f, -0.03890f, 0.10523f}, {-0.69022f, -0.70088f, 0.17990f}},\n    {{-0.56130f, -0.04406f, 0.10208f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{-0.56419f, -0.03890f, 0.13394f}, {-0.66582f, -0.70047f, 0.25697f}},\n    {{-0.55254f, -0.04406f, 0.12945f}, {-0.00002f, -1.00000f, -0.00000f}},\n    {{-0.55203f, -0.03890f, 0.16067f}, {-0.63057f, -0.70020f, 0.33480f}},\n    {{-0.54100f, -0.04406f, 0.15481f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{-0.53690f, -0.03890f, 0.18538f}, {-0.58475f, -0.70012f, 0.40976f}},\n    {{-0.52668f, -0.04406f, 0.17822f}, {0.00002f, -1.00000f, 0.00000f}},\n    {{-0.51882f, -0.03890f, 0.20806f}, {-0.53004f, -0.70023f, 0.47826f}},\n    {{-0.50955f, -0.04406f, 0.19969f}, {0.00000f, -1.00000f, -0.00000f}},\n    {{-0.49780f, -0.03890f, 0.22867f}, {-0.46962f, -0.70059f, 0.53724f}},\n    {{-0.48959f, -0.04406f, 0.21928f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{-0.47470f, -0.03890f, 0.24663f}, {-0.40424f, -0.70045f, 0.58818f}},\n    {{-0.46763f, -0.04406f, 0.23635f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{-0.45034f, -0.03890f, 0.26135f}, {-0.33095f, -0.70018f, 0.63263f}},\n    {{-0.44456f, -0.04406f, 0.25029f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{-0.42473f, -0.03890f, 0.27281f}, {-0.25035f, -0.70008f, 0.66874f}},\n    {{-0.42035f, -0.04406f, 0.26111f}, {0.00000f, -1.00000f, -0.00000f}},\n    {{-0.39788f, -0.03890f, 0.28099f}, {-0.16589f, -0.70018f, 0.69443f}},\n    {{-0.39498f, -0.04406f, 0.26885f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{-0.36983f, -0.03890f, 0.28589f}, {-0.08151f, -0.70046f, 0.70902f}},\n    {{-0.36840f, -0.04406f, 0.27349f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{-0.34069f, -0.03890f, 0.28752f}, {-0.01116f, -0.70246f, 0.71164f}},\n    {{-0.34049f, -0.04406f, 0.27505f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{-0.32212f, -0.03890f, 0.28707f}, {0.03645f, -0.70393f, 0.70933f}},\n    {{-0.32276f, -0.04406f, 0.27462f}, {0.00001f, -1.00000f, 0.00003f}},\n    {{-0.30480f, -0.03890f, 0.28571f}, {0.07733f, -0.70350f, 0.70648f}},\n    {{-0.30616f, -0.04406f, 0.27332f}, {0.00002f, -1.00000f, 0.00000f}},\n    {{-0.28865f, -0.03890f, 0.28344f}, {0.12377f, -0.70301f, 0.70033f}},\n    {{-0.29082f, -0.04406f, 0.27116f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{-0.27365f, -0.03890f, 0.28024f}, {0.17622f, -0.70245f, 0.68957f}},\n    {{-0.27674f, -0.04406f, 0.26816f}, {0.00000f, -1.00000f, -0.00001f}},\n    {{-0.25981f, -0.03890f, 0.27611f}, {0.23481f, -0.70185f, 0.67251f}},\n    {{-0.26392f, -0.04406f, 0.26433f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{-0.24342f, -0.03890f, 0.26953f}, {0.62333f, -0.69569f, 0.35705f}},\n    {{-0.25720f, -0.04406f, 0.26163f}, {0.00002f, -1.00000f, -0.00000f}},\n    {{-0.25484f, -0.03890f, 0.19339f}, {0.28614f, -0.75047f, -0.59575f}},\n    {{-0.26444f, -0.04406f, 0.21338f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{-0.27376f, -0.03890f, 0.20438f}, {-0.32051f, -0.71371f, -0.62281f}},\n    {{-0.26805f, -0.04406f, 0.21548f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{-0.28617f, -0.03890f, 0.20999f}, {-0.25559f, -0.71365f, -0.65221f}},\n    {{-0.28162f, -0.04406f, 0.22161f}, {-0.00000f, -1.00000f, -0.00001f}},\n    {{-0.29922f, -0.03890f, 0.21435f}, {-0.18927f, -0.71346f, -0.67465f}},\n    {{-0.29585f, -0.04406f, 0.22637f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{-0.31292f, -0.03890f, 0.21748f}, {-0.12356f, -0.71316f, -0.69003f}},\n    {{-0.31072f, -0.04406f, 0.22976f}, {-0.00002f, -1.00000f, -0.00000f}},\n    {{-0.32729f, -0.03890f, 0.21936f}, {-0.06022f, -0.71277f, -0.69881f}},\n    {{-0.32622f, -0.04406f, 0.23179f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{-0.34229f, -0.03890f, 0.21999f}, {0.00447f, -0.71331f, -0.70084f}},\n    {{-0.34237f, -0.04406f, 0.23246f}, {0.00002f, -1.00000f, -0.00002f}},\n    {{-0.36229f, -0.03890f, 0.21890f}, {0.07851f, -0.71465f, -0.69506f}},\n    {{-0.36369f, -0.04406f, 0.23130f}, {0.00002f, -1.00000f, 0.00000f}},\n    {{-0.38123f, -0.03890f, 0.21564f}, {0.16067f, -0.71515f, -0.68025f}},\n    {{-0.38410f, -0.04406f, 0.22779f}, {0.00000f, -1.00000f, -0.00001f}},\n    {{-0.39915f, -0.03890f, 0.21022f}, {0.24413f, -0.71542f, -0.65465f}},\n    {{-0.40352f, -0.04406f, 0.22192f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{-0.41611f, -0.03890f, 0.20264f}, {0.32503f, -0.71542f, -0.61850f}},\n    {{-0.42192f, -0.04406f, 0.21369f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{-0.43211f, -0.03890f, 0.19289f}, {0.39968f, -0.71513f, -0.57345f}},\n    {{-0.43925f, -0.04406f, 0.20313f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{-0.44719f, -0.03890f, 0.18094f}, {0.46619f, -0.71489f, -0.52115f}},\n    {{-0.45551f, -0.04406f, 0.19025f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{-0.46084f, -0.03890f, 0.16718f}, {0.52564f, -0.71517f, -0.46069f}},\n    {{-0.47023f, -0.04406f, 0.17541f}, {-0.00002f, -1.00000f, -0.00000f}},\n    {{-0.47259f, -0.03890f, 0.15197f}, {0.57833f, -0.71517f, -0.39250f}},\n    {{-0.48292f, -0.04406f, 0.15899f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{-0.48246f, -0.03890f, 0.13530f}, {0.62189f, -0.71492f, -0.31959f}},\n    {{-0.49357f, -0.04406f, 0.14100f}, {-0.00003f, -1.00000f, -0.00000f}},\n    {{-0.49046f, -0.03890f, 0.11713f}, {0.65525f, -0.71446f, -0.24537f}},\n    {{-0.50215f, -0.04406f, 0.12150f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{-0.49660f, -0.03890f, 0.09743f}, {0.67859f, -0.71386f, -0.17298f}},\n    {{-0.50869f, -0.04406f, 0.10051f}, {-0.00000f, -1.00000f, -0.00001f}},\n    {{-0.50084f, -0.03890f, 0.07620f}, {0.69305f, -0.71335f, -0.10402f}},\n    {{-0.51318f, -0.04406f, 0.07805f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{-0.50287f, -0.03890f, 0.05605f}, {0.69922f, -0.71418f, -0.03218f}},\n    {{-0.51534f, -0.04406f, 0.05663f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{-0.50272f, -0.03890f, 0.03744f}, {0.69693f, -0.71539f, 0.05011f}},\n    {{-0.51517f, -0.04406f, 0.03654f}, {0.00000f, -1.00000f, 0.00002f}},\n    {{-0.50040f, -0.03890f, 0.02037f}, {0.68266f, -0.71658f, 0.14314f}},\n    {{-0.51262f, -0.04406f, 0.01780f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{-0.49595f, -0.03890f, 0.00481f}, {0.65263f, -0.71755f, 0.24329f}},\n    {{-0.50766f, -0.04406f, 0.00044f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{-0.48939f, -0.03890f, -0.00929f}, {0.60491f, -0.71807f, 0.34418f}},\n    {{-0.50026f, -0.04406f, -0.01547f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{-0.48072f, -0.03890f, -0.02199f}, {0.54112f, -0.71793f, 0.43791f}},\n    {{-0.49044f, -0.04406f, -0.02986f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{-0.47023f, -0.03890f, -0.03299f}, {0.46224f, -0.71819f, 0.52014f}},\n    {{-0.47853f, -0.04406f, -0.04234f}, {0.00002f, -1.00000f, -0.00000f}},\n    {{-0.45825f, -0.03890f, -0.04198f}, {0.37019f, -0.71818f, 0.58922f}},\n    {{-0.46490f, -0.04406f, -0.05257f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{-0.44472f, -0.03890f, -0.04899f}, {0.27112f, -0.71754f, 0.64158f}},\n    {{-0.44959f, -0.04406f, -0.06051f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{-0.42959f, -0.03890f, -0.05403f}, {0.17294f, -0.71647f, 0.67584f}},\n    {{-0.43269f, -0.04406f, -0.06614f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{-0.41281f, -0.03890f, -0.05708f}, {0.08192f, -0.71523f, 0.69407f}},\n    {{-0.41427f, -0.04406f, -0.06948f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{-0.39430f, -0.03890f, -0.05811f}, {0.00538f, -0.71325f, 0.70089f}},\n    {{-0.39440f, -0.04406f, -0.07058f}, {0.00001f, -1.00000f, 0.00002f}},\n    {{-0.37673f, -0.03890f, -0.05740f}, {-0.05737f, -0.71245f, 0.69937f}},\n    {{-0.37571f, -0.04406f, -0.06983f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{-0.35973f, -0.03890f, -0.05529f}, {-0.11692f, -0.71272f, 0.69163f}},\n    {{-0.35765f, -0.04406f, -0.06759f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{-0.34333f, -0.03890f, -0.05177f}, {-0.17792f, -0.71292f, 0.67830f}},\n    {{-0.34017f, -0.04406f, -0.06384f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{-0.32754f, -0.03890f, -0.04686f}, {-0.23895f, -0.71302f, 0.65917f}},\n    {{-0.32328f, -0.04406f, -0.05858f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{-0.31232f, -0.03890f, -0.04054f}, {-0.29848f, -0.71301f, 0.63444f}},\n    {{-0.30701f, -0.04406f, -0.05182f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{0.18991f, 0.03890f, -0.11885f}, {0.46580f, 0.70034f, -0.54088f}},\n    {{0.23542f, 0.04406f, 0.26855f}, {0.00001f, 1.00000f, 0.00003f}},\n    {{0.24989f, 0.03890f, 0.28101f}, {0.52286f, 0.72379f, 0.45028f}},\n    {{0.19436f, 0.02644f, -0.12402f}, {0.63569f, 0.22588f, -0.73816f}},\n    {{0.25588f, 0.02643f, 0.28617f}, {0.73399f, 0.24842f, 0.63210f}},\n    {{0.11494f, 0.03890f, -0.11885f}, {-0.52286f, 0.72379f, -0.45028f}},\n    {{0.17918f, 0.04406f, -0.10639f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{0.10895f, 0.02644f, -0.12402f}, {-0.73399f, 0.24842f, -0.63210f}},\n    {{0.15364f, 0.03890f, 0.13915f}, {-0.69935f, 0.70652f, 0.10835f}},\n    {{0.12941f, 0.04406f, -0.10639f}, {0.00003f, 1.00000f, 0.00000f}},\n    {{0.14854f, 0.02643f, 0.13994f}, {-0.96924f, 0.19498f, 0.15016f}},\n    {{0.15536f, 0.03890f, 0.14991f}, {-0.69828f, 0.70607f, 0.11782f}},\n    {{0.16595f, 0.04406f, 0.13724f}, {0.00001f, 1.00000f, 0.00006f}},\n    {{0.15027f, 0.02643f, 0.15077f}, {-0.96715f, 0.19489f, 0.16318f}},\n    {{0.15741f, 0.03890f, 0.16146f}, {-0.69615f, 0.70620f, 0.12904f}},\n    {{0.16765f, 0.04406f, 0.14784f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{0.15234f, 0.02643f, 0.16240f}, {-0.96439f, 0.19492f, 0.17876f}},\n    {{0.15979f, 0.03890f, 0.17377f}, {-0.69416f, 0.70631f, 0.13881f}},\n    {{0.16966f, 0.04406f, 0.15919f}, {-0.00000f, 1.00000f, -0.00002f}},\n    {{0.15473f, 0.02643f, 0.17478f}, {-0.96178f, 0.19494f, 0.19232f}},\n    {{0.16249f, 0.03890f, 0.18683f}, {-0.69230f, 0.70640f, 0.14738f}},\n    {{0.17201f, 0.04406f, 0.17132f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{0.15744f, 0.02643f, 0.18791f}, {-0.95932f, 0.19495f, 0.20422f}},\n    {{0.16552f, 0.03890f, 0.20066f}, {-0.69056f, 0.70648f, 0.15496f}},\n    {{0.17468f, 0.04406f, 0.18424f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{0.16048f, 0.02643f, 0.20179f}, {-0.95701f, 0.19497f, 0.21474f}},\n    {{0.16734f, 0.03890f, 0.20860f}, {-0.55645f, 0.36140f, 0.74817f}},\n    {{0.17768f, 0.04406f, 0.19793f}, {0.00002f, 1.00000f, -0.00002f}},\n    {{0.16086f, 0.02643f, 0.20344f}, {-0.70222f, 0.07191f, 0.70832f}},\n    {{0.17675f, 0.03890f, 0.20860f}, {-0.00000f, -0.72063f, 0.69332f}},\n    {{0.16734f, 0.03890f, 0.20860f}, {-0.55643f, 0.36137f, 0.74820f}},\n    {{0.18299f, 0.04406f, 0.22106f}, {0.00001f, 1.00000f, 0.00001f}},\n    {{0.18027f, 0.02643f, 0.20344f}, {0.00000f, -0.17779f, 0.98407f}},\n    {{0.17492f, 0.03890f, 0.20390f}, {0.65755f, 0.70627f, -0.26231f}},\n    {{0.16824f, 0.04406f, 0.22106f}, {-0.00005f, 1.00000f, -0.00005f}},\n    {{0.17675f, 0.03890f, 0.20860f}, {0.46778f, 0.83928f, -0.27712f}},\n    {{0.17971f, 0.02643f, 0.20199f}, {0.91100f, 0.19493f, -0.36343f}},\n    {{0.18027f, 0.02643f, 0.20344f}, {0.91063f, 0.20975f, -0.35603f}},\n    {{0.17191f, 0.03890f, 0.19652f}, {0.65360f, 0.70608f, -0.27250f}},\n    {{0.16334f, 0.04406f, 0.20852f}, {-0.00001f, 1.00000f, 0.00003f}},\n    {{0.17668f, 0.02643f, 0.19454f}, {0.90529f, 0.19489f, -0.37744f}},\n    {{0.16909f, 0.03890f, 0.18993f}, {0.64848f, 0.70582f, -0.28512f}},\n    {{0.16041f, 0.04406f, 0.20132f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{0.17382f, 0.02643f, 0.18785f}, {0.89788f, 0.19485f, -0.39477f}},\n    {{0.16646f, 0.03890f, 0.18410f}, {0.64161f, 0.70544f, -0.30114f}},\n    {{0.15769f, 0.04406f, 0.19494f}, {0.00004f, 1.00000f, 0.00004f}},\n    {{0.17113f, 0.02643f, 0.18191f}, {0.88791f, 0.19478f, -0.41674f}},\n    {{0.16399f, 0.03890f, 0.17903f}, {0.63196f, 0.70488f, -0.32212f}},\n    {{0.15518f, 0.04406f, 0.18939f}, {-0.00003f, 1.00000f, -0.00009f}},\n    {{0.16859f, 0.02643f, 0.17669f}, {0.87389f, 0.19468f, -0.44544f}},\n    {{0.16174f, 0.03890f, 0.17481f}, {0.62248f, 0.70637f, -0.33698f}},\n    {{0.15289f, 0.04406f, 0.18470f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{0.16628f, 0.02643f, 0.17235f}, {0.86254f, 0.19495f, -0.46693f}},\n    {{0.00044f, 0.03890f, -0.11885f}, {0.37066f, 0.68567f, -0.62648f}},\n    {{0.00350f, 0.02644f, -0.12402f}, {0.49805f, 0.20818f, -0.84179f}},\n    {{-0.05146f, 0.03890f, -0.11885f}, {-0.44168f, 0.69492f, -0.56745f}},\n    {{-0.05548f, 0.02644f, -0.12402f}, {-0.59917f, 0.22005f, -0.76979f}},\n    {{-0.12561f, 0.03890f, 0.17401f}, {-0.69182f, 0.70443f, -0.15863f}},\n    {{-0.04176f, 0.04406f, -0.10639f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.13065f, 0.02643f, 0.17285f}, {-0.95607f, 0.19460f, -0.21921f}},\n    {{-0.12661f, 0.03890f, 0.17886f}, {-0.69789f, 0.70462f, -0.12831f}},\n    {{-0.11346f, 0.04406f, 0.17679f}, {0.00003f, 1.00000f, -0.00001f}},\n    {{-0.13169f, 0.02643f, 0.17792f}, {-0.96471f, 0.19463f, -0.17736f}},\n    {{-0.12751f, 0.03890f, 0.18441f}, {-0.70161f, 0.70518f, -0.10226f}},\n    {{-0.11435f, 0.04406f, 0.18111f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.13262f, 0.02643f, 0.18367f}, {-0.97060f, 0.19473f, -0.14147f}},\n    {{-0.12832f, 0.03890f, 0.19066f}, {-0.70387f, 0.70558f, -0.08196f}},\n    {{-0.11518f, 0.04406f, 0.18621f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.13345f, 0.02643f, 0.19007f}, {-0.97426f, 0.19480f, -0.11345f}},\n    {{-0.12904f, 0.03890f, 0.19762f}, {-0.70528f, 0.70587f, -0.06573f}},\n    {{-0.11594f, 0.04406f, 0.19211f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.13418f, 0.02643f, 0.19714f}, {-0.97660f, 0.19486f, -0.09102f}},\n    {{-0.12968f, 0.03890f, 0.20530f}, {-0.71115f, 0.70106f, -0.05269f}},\n    {{-0.11663f, 0.04406f, 0.19878f}, {0.00000f, 1.00000f, -0.00002f}},\n    {{-0.13483f, 0.02643f, 0.20492f}, {-0.97748f, 0.19489f, -0.08097f}},\n    {{-0.12990f, 0.03890f, 0.20860f}, {-0.61282f, 0.78920f, -0.04031f}},\n    {{-0.11725f, 0.04406f, 0.20622f}, {0.00002f, 1.00000f, -0.00002f}},\n    {{-0.13473f, 0.02643f, 0.20344f}, {0.68786f, -0.24273f, 0.68406f}},\n    {{-0.12968f, 0.03890f, 0.20530f}, {0.92189f, -0.38268f, 0.06062f}},\n    {{-0.13483f, 0.02643f, 0.20492f}, {0.97863f, -0.19529f, 0.06435f}},\n    {{-0.12088f, 0.03890f, 0.20860f}, {-0.01966f, -0.69862f, 0.71522f}},\n    {{-0.11823f, 0.04406f, 0.22106f}, {-0.00002f, 1.00000f, -0.00004f}},\n    {{-0.12990f, 0.03890f, 0.20860f}, {0.00000f, -0.58812f, 0.80877f}},\n    {{-0.11608f, 0.02643f, 0.20344f}, {-0.66253f, -0.23089f, 0.71256f}},\n    {{-0.12115f, 0.03890f, 0.20495f}, {0.70600f, 0.70567f, -0.05996f}},\n    {{-0.13247f, 0.04406f, 0.22106f}, {0.00001f, 1.00000f, 0.00000f}},\n    {{-0.12088f, 0.03890f, 0.20860f}, {0.51167f, 0.85036f, -0.12280f}},\n    {{-0.11600f, 0.02643f, 0.20452f}, {-0.97502f, -0.21044f, 0.07105f}},\n    {{-0.12215f, 0.03890f, 0.19460f}, {0.70422f, 0.70607f, -0.07447f}},\n    {{-0.13356f, 0.04406f, 0.20601f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{-0.11702f, 0.02643f, 0.19406f}, {0.97539f, 0.19489f, -0.10314f}},\n    {{-0.11600f, 0.02643f, 0.20452f}, {0.97331f, 0.20996f, -0.09267f}},\n    {{-0.12352f, 0.03890f, 0.18264f}, {0.70276f, 0.70632f, -0.08510f}},\n    {{-0.13454f, 0.04406f, 0.19591f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{-0.11840f, 0.02643f, 0.18202f}, {0.97370f, 0.19494f, -0.11792f}},\n    {{-0.12526f, 0.03890f, 0.16905f}, {0.70156f, 0.70649f, -0.09323f}},\n    {{-0.13589f, 0.04406f, 0.18413f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{-0.12014f, 0.02643f, 0.16837f}, {0.97226f, 0.19497f, -0.12921f}},\n    {{-0.12736f, 0.03890f, 0.15383f}, {0.70055f, 0.70661f, -0.09965f}},\n    {{-0.13761f, 0.04406f, 0.17069f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{-0.12225f, 0.02643f, 0.15310f}, {0.97103f, 0.19499f, -0.13812f}},\n    {{-0.12982f, 0.03890f, 0.13698f}, {0.69968f, 0.70689f, -0.10370f}},\n    {{-0.13969f, 0.04406f, 0.15558f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{-0.12472f, 0.02643f, 0.13623f}, {0.97020f, 0.19505f, -0.14379f}},\n    {{-0.16820f, 0.03890f, -0.11885f}, {0.46580f, 0.70034f, -0.54088f}},\n    {{-0.14215f, 0.04406f, 0.13881f}, {-0.00001f, 1.00000f, 0.00002f}},\n    {{-0.16375f, 0.02644f, -0.12402f}, {0.63569f, 0.22588f, -0.73816f}},\n    {{-0.23883f, 0.03890f, -0.11885f}, {-0.52286f, 0.72379f, -0.45028f}},\n    {{-0.17893f, 0.04406f, -0.10639f}, {0.00000f, 1.00000f, 0.00003f}},\n    {{-0.24482f, 0.02644f, -0.12402f}, {-0.73399f, 0.24842f, -0.63210f}},\n    {{-0.17885f, 0.03890f, 0.28101f}, {-0.46580f, 0.70034f, 0.54088f}},\n    {{-0.22436f, 0.04406f, -0.10639f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{-0.18330f, 0.02643f, 0.28617f}, {-0.63569f, 0.22588f, 0.73816f}},\n    {{-0.07906f, 0.03890f, 0.28101f}, {0.44370f, 0.69531f, 0.56540f}},\n    {{-0.16812f, 0.04406f, 0.26855f}, {-0.00003f, 1.00000f, -0.00006f}},\n    {{-0.07501f, 0.02643f, 0.28617f}, {0.60216f, 0.22049f, 0.76732f}},\n    {{-0.01463f, 0.03890f, 0.01777f}, {0.68821f, 0.70652f, 0.16491f}},\n    {{-0.08884f, 0.04406f, 0.26855f}, {-0.00001f, 1.00000f, 0.00002f}},\n    {{-0.00961f, 0.02644f, 0.01897f}, {0.95381f, 0.19498f, 0.22856f}},\n    {{-0.01238f, 0.03890f, 0.00818f}, {0.69037f, 0.70626f, 0.15680f}},\n    {{-0.02675f, 0.04406f, 0.01487f}, {0.00002f, 1.00000f, -0.00005f}},\n    {{-0.00734f, 0.02644f, 0.00932f}, {0.95646f, 0.19493f, 0.21724f}},\n    {{-0.01045f, 0.03890f, -0.00058f}, {0.69290f, 0.70608f, 0.14609f}},\n    {{-0.02453f, 0.04406f, 0.00542f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{-0.00540f, 0.02644f, 0.00048f}, {0.95972f, 0.19489f, 0.20235f}},\n    {{-0.00885f, 0.03890f, -0.00852f}, {0.69584f, 0.70582f, 0.13277f}},\n    {{-0.02265f, 0.04406f, -0.00315f}, {-0.00000f, 1.00000f, 0.00002f}},\n    {{-0.00378f, 0.02644f, -0.00755f}, {0.96345f, 0.19485f, 0.18384f}},\n    {{-0.00757f, 0.03890f, -0.01565f}, {0.69923f, 0.70546f, 0.11577f}},\n    {{-0.02109f, 0.04406f, -0.01086f}, {-0.00003f, 1.00000f, 0.00005f}},\n    {{-0.00248f, 0.02644f, -0.01480f}, {0.96767f, 0.19478f, 0.16022f}},\n    {{-0.00661f, 0.03890f, -0.02197f}, {0.71544f, 0.69230f, 0.09420f}},\n    {{-0.01986f, 0.04406f, -0.01768f}, {-0.00000f, 1.00000f, 0.00002f}},\n    {{-0.00149f, 0.02644f, -0.02129f}, {0.96981f, 0.19465f, 0.14690f}},\n    {{-0.00654f, 0.03890f, -0.02257f}, {0.61347f, 0.78660f, 0.07004f}},\n    {{-0.01897f, 0.04406f, -0.02361f}, {-0.00002f, 1.00000f, 0.00002f}},\n    {{-0.00194f, 0.02644f, -0.01741f}, {-0.65238f, -0.23018f, -0.72210f}},\n    {{-0.00661f, 0.03890f, -0.02197f}, {-0.91791f, -0.38268f, -0.10483f}},\n    {{-0.00149f, 0.02644f, -0.02129f}, {-0.97436f, -0.19552f, -0.11128f}},\n    {{-0.01342f, 0.03890f, -0.02257f}, {0.00000f, -0.71256f, -0.70161f}},\n    {{-0.01766f, 0.04406f, -0.03503f}, {-0.00002f, 1.00000f, 0.00004f}},\n    {{-0.00654f, 0.03890f, -0.02257f}, {0.00000f, -0.59307f, -0.80515f}},\n    {{-0.01666f, 0.02644f, -0.01741f}, {0.00000f, -0.17922f, -0.98381f}},\n    {{-0.01018f, 0.03890f, -0.01584f}, {-0.63644f, 0.70667f, 0.30911f}},\n    {{-0.00558f, 0.04406f, -0.03503f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{-0.01342f, 0.03890f, -0.02257f}, {-0.47128f, 0.82626f, 0.30853f}},\n    {{-0.01482f, 0.02644f, -0.01358f}, {-0.88225f, 0.19501f, 0.42849f}},\n    {{-0.01666f, 0.02644f, -0.01741f}, {-0.88123f, 0.20870f, 0.42411f}},\n    {{-0.00579f, 0.03890f, -0.00689f}, {-0.63407f, 0.70659f, 0.31416f}},\n    {{0.00103f, 0.04406f, -0.02128f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{-0.01042f, 0.02644f, -0.00460f}, {-0.87885f, 0.19499f, 0.43544f}},\n    {{-0.00174f, 0.03890f, 0.00119f}, {-0.63112f, 0.70646f, 0.32030f}},\n    {{0.00537f, 0.04406f, -0.01242f}, {-0.00003f, 1.00000f, -0.00001f}},\n    {{-0.00635f, 0.02644f, 0.00352f}, {-0.87462f, 0.19497f, 0.44388f}},\n    {{0.00197f, 0.03890f, 0.00840f}, {-0.62737f, 0.70630f, 0.32794f}},\n    {{0.00937f, 0.04406f, -0.00445f}, {0.00005f, 1.00000f, 0.00008f}},\n    {{-0.00261f, 0.02644f, 0.01080f}, {-0.86922f, 0.19494f, 0.45437f}},\n    {{0.00534f, 0.03890f, 0.01476f}, {-0.62245f, 0.70605f, 0.33770f}},\n    {{0.01301f, 0.04406f, 0.00263f}, {0.00001f, 1.00000f, -0.00003f}},\n    {{0.00081f, 0.02644f, 0.01723f}, {-0.86212f, 0.19489f, 0.46773f}},\n    {{0.00836f, 0.03890f, 0.02022f}, {-0.61857f, 0.70711f, 0.34259f}},\n    {{0.01630f, 0.04406f, 0.00882f}, {-0.00002f, 1.00000f, -0.00005f}},\n    {{0.00385f, 0.02644f, 0.02272f}, {-0.85799f, 0.19509f, 0.47518f}},\n    {{0.15279f, 0.03890f, 0.28101f}, {-0.36961f, 0.68558f, 0.62719f}},\n    {{0.14975f, 0.02643f, 0.28617f}, {-0.49660f, 0.20805f, 0.84268f}},\n    {{0.16013f, 0.04406f, 0.26855f}, {0.00009f, 1.00000f, 0.00006f}},\n    {{0.19436f, -0.02643f, -0.12402f}, {0.63569f, -0.22588f, -0.73816f}},\n    {{0.25588f, -0.02643f, 0.28617f}, {0.73399f, -0.24842f, 0.63210f}},\n    {{0.10895f, -0.02643f, -0.12402f}, {-0.73399f, -0.24842f, -0.63210f}},\n    {{0.14854f, -0.02643f, 0.13994f}, {-0.96924f, -0.19498f, 0.15016f}},\n    {{0.15027f, -0.02643f, 0.15077f}, {-0.96715f, -0.19489f, 0.16318f}},\n    {{0.15234f, -0.02643f, 0.16240f}, {-0.96439f, -0.19492f, 0.17876f}},\n    {{0.15473f, -0.02643f, 0.17478f}, {-0.96178f, -0.19494f, 0.19232f}},\n    {{0.15744f, -0.02643f, 0.18791f}, {-0.95932f, -0.19495f, 0.20422f}},\n    {{0.16048f, -0.02643f, 0.20179f}, {-0.95701f, -0.19497f, 0.21474f}},\n    {{0.16086f, -0.02643f, 0.20344f}, {-0.70222f, -0.07191f, 0.70832f}},\n    {{0.18027f, -0.02643f, 0.20344f}, {0.00000f, 0.17779f, 0.98407f}},\n    {{0.17971f, -0.02643f, 0.20199f}, {0.91100f, -0.19493f, -0.36344f}},\n    {{0.18027f, -0.02643f, 0.20344f}, {0.91063f, -0.20974f, -0.35602f}},\n    {{0.17668f, -0.02643f, 0.19454f}, {0.90529f, -0.19489f, -0.37744f}},\n    {{0.17382f, -0.02643f, 0.18785f}, {0.89788f, -0.19485f, -0.39477f}},\n    {{0.17113f, -0.02643f, 0.18191f}, {0.88791f, -0.19478f, -0.41674f}},\n    {{0.16859f, -0.02643f, 0.17669f}, {0.87389f, -0.19468f, -0.44544f}},\n    {{0.16628f, -0.02643f, 0.17235f}, {0.86254f, -0.19495f, -0.46693f}},\n    {{0.00350f, -0.02643f, -0.12402f}, {0.49805f, -0.20818f, -0.84179f}},\n    {{-0.05548f, -0.02643f, -0.12402f}, {-0.59917f, -0.22005f, -0.76979f}},\n    {{-0.13065f, -0.02643f, 0.17285f}, {-0.95607f, -0.19460f, -0.21921f}},\n    {{-0.13169f, -0.02643f, 0.17792f}, {-0.96471f, -0.19463f, -0.17736f}},\n    {{-0.13262f, -0.02643f, 0.18367f}, {-0.97060f, -0.19473f, -0.14147f}},\n    {{-0.13345f, -0.02643f, 0.19007f}, {-0.97426f, -0.19480f, -0.11345f}},\n    {{-0.13418f, -0.02643f, 0.19714f}, {-0.97660f, -0.19486f, -0.09102f}},\n    {{-0.13483f, -0.02643f, 0.20492f}, {-0.97472f, -0.20876f, -0.07960f}},\n    {{-0.13473f, -0.02643f, 0.20344f}, {0.66497f, 0.23138f, 0.71013f}},\n    {{-0.13483f, -0.02643f, 0.20492f}, {0.97579f, 0.20910f, 0.06417f}},\n    {{-0.11608f, -0.02643f, 0.20344f}, {-0.68770f, 0.24337f, 0.68399f}},\n    {{-0.11600f, -0.02643f, 0.20452f}, {-0.97813f, 0.19538f, 0.07127f}},\n    {{-0.11702f, -0.02643f, 0.19406f}, {0.97539f, -0.19489f, -0.10314f}},\n    {{-0.11600f, -0.02643f, 0.20452f}, {0.97626f, -0.19481f, -0.09471f}},\n    {{-0.11840f, -0.02643f, 0.18202f}, {0.97370f, -0.19494f, -0.11792f}},\n    {{-0.12014f, -0.02643f, 0.16837f}, {0.97226f, -0.19497f, -0.12921f}},\n    {{-0.12225f, -0.02643f, 0.15310f}, {0.97103f, -0.19499f, -0.13812f}},\n    {{-0.12472f, -0.02643f, 0.13623f}, {0.97020f, -0.19505f, -0.14379f}},\n    {{-0.16375f, -0.02643f, -0.12402f}, {0.63569f, -0.22588f, -0.73816f}},\n    {{-0.24482f, -0.02643f, -0.12402f}, {-0.73399f, -0.24842f, -0.63210f}},\n    {{-0.18330f, -0.02643f, 0.28617f}, {-0.63569f, -0.22588f, 0.73816f}},\n    {{-0.07501f, -0.02643f, 0.28617f}, {0.60216f, -0.22049f, 0.76732f}},\n    {{-0.00961f, -0.02643f, 0.01897f}, {0.95381f, -0.19498f, 0.22856f}},\n    {{-0.00734f, -0.02643f, 0.00932f}, {0.95646f, -0.19493f, 0.21724f}},\n    {{-0.00540f, -0.02643f, 0.00048f}, {0.95972f, -0.19489f, 0.20235f}},\n    {{-0.00378f, -0.02643f, -0.00755f}, {0.96345f, -0.19485f, 0.18384f}},\n    {{-0.00248f, -0.02643f, -0.01480f}, {0.96767f, -0.19478f, 0.16022f}},\n    {{-0.00149f, -0.02643f, -0.02129f}, {0.96933f, -0.19743f, 0.14633f}},\n    {{-0.00194f, -0.02643f, -0.01741f}, {-0.64822f, 0.22813f, -0.72647f}},\n    {{-0.00149f, -0.02643f, -0.02129f}, {-0.97382f, 0.19828f, -0.11122f}},\n    {{-0.01666f, -0.02643f, -0.01741f}, {0.00000f, 0.17922f, -0.98381f}},\n    {{-0.01482f, -0.02643f, -0.01358f}, {-0.88225f, -0.19501f, 0.42849f}},\n    {{-0.01666f, -0.02643f, -0.01741f}, {-0.88123f, -0.20870f, 0.42411f}},\n    {{-0.01042f, -0.02643f, -0.00460f}, {-0.87885f, -0.19499f, 0.43544f}},\n    {{-0.00635f, -0.02643f, 0.00352f}, {-0.87462f, -0.19497f, 0.44388f}},\n    {{-0.00261f, -0.02643f, 0.01080f}, {-0.86922f, -0.19494f, 0.45437f}},\n    {{0.00081f, -0.02643f, 0.01723f}, {-0.86211f, -0.19489f, 0.46773f}},\n    {{0.00385f, -0.02643f, 0.02272f}, {-0.85799f, -0.19509f, 0.47518f}},\n    {{0.14975f, -0.02643f, 0.28617f}, {-0.49660f, -0.20805f, 0.84268f}},\n    {{0.18991f, -0.03890f, -0.11885f}, {0.46580f, -0.70034f, -0.54088f}},\n    {{0.24989f, -0.03890f, 0.28101f}, {0.52286f, -0.72379f, 0.45028f}},\n    {{0.17918f, -0.04406f, -0.10639f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{0.23542f, -0.04406f, 0.26855f}, {0.00000f, -1.00000f, 0.00003f}},\n    {{0.11494f, -0.03890f, -0.11885f}, {-0.52286f, -0.72379f, -0.45028f}},\n    {{0.12941f, -0.04406f, -0.10639f}, {0.00003f, -1.00000f, 0.00000f}},\n    {{0.15364f, -0.03890f, 0.13915f}, {-0.69935f, -0.70652f, 0.10835f}},\n    {{0.16595f, -0.04406f, 0.13724f}, {-0.00000f, -1.00000f, -0.00002f}},\n    {{0.15536f, -0.03890f, 0.14991f}, {-0.69828f, -0.70607f, 0.11782f}},\n    {{0.16765f, -0.04406f, 0.14784f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{0.15741f, -0.03890f, 0.16146f}, {-0.69615f, -0.70620f, 0.12904f}},\n    {{0.16966f, -0.04406f, 0.15919f}, {-0.00000f, -1.00000f, -0.00002f}},\n    {{0.15979f, -0.03890f, 0.17377f}, {-0.69416f, -0.70631f, 0.13881f}},\n    {{0.17201f, -0.04406f, 0.17132f}, {-0.00000f, -1.00000f, -0.00000f}},\n    {{0.16249f, -0.03890f, 0.18683f}, {-0.69230f, -0.70640f, 0.14738f}},\n    {{0.17468f, -0.04406f, 0.18424f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.16552f, -0.03890f, 0.20066f}, {-0.69056f, -0.70648f, 0.15496f}},\n    {{0.17768f, -0.04406f, 0.19793f}, {0.00001f, -1.00000f, 0.00000f}},\n    {{0.16734f, -0.03890f, 0.20860f}, {-0.55647f, -0.36136f, 0.74817f}},\n    {{0.18299f, -0.04406f, 0.22106f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{0.17675f, -0.03890f, 0.20860f}, {0.00002f, 0.61814f, 0.78606f}},\n    {{0.16824f, -0.04406f, 0.22106f}, {0.00001f, -1.00000f, -0.00003f}},\n    {{0.17492f, -0.03890f, 0.20390f}, {0.65755f, -0.70627f, -0.26232f}},\n    {{0.17675f, -0.03890f, 0.20860f}, {0.59100f, -0.77288f, -0.23104f}},\n    {{0.16334f, -0.04406f, 0.20852f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{0.17191f, -0.03890f, 0.19652f}, {0.65360f, -0.70608f, -0.27250f}},\n    {{0.16041f, -0.04406f, 0.20132f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{0.16909f, -0.03890f, 0.18993f}, {0.64848f, -0.70582f, -0.28512f}},\n    {{0.15769f, -0.04406f, 0.19494f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{0.16646f, -0.03890f, 0.18410f}, {0.64161f, -0.70544f, -0.30114f}},\n    {{0.15518f, -0.04406f, 0.18939f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{0.16399f, -0.03890f, 0.17903f}, {0.63196f, -0.70488f, -0.32213f}},\n    {{0.15289f, -0.04406f, 0.18470f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{0.16174f, -0.03890f, 0.17481f}, {0.62248f, -0.70637f, -0.33698f}},\n    {{0.15078f, -0.04406f, 0.18074f}, {-0.00002f, -1.00000f, 0.00000f}},\n    {{0.00044f, -0.03890f, -0.11885f}, {0.37066f, -0.68567f, -0.62648f}},\n    {{-0.00693f, -0.04406f, -0.10639f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{-0.05146f, -0.03890f, -0.11885f}, {-0.44168f, -0.69492f, -0.56745f}},\n    {{-0.04176f, -0.04406f, -0.10639f}, {0.00000f, -1.00000f, 0.00003f}},\n    {{-0.12561f, -0.03890f, 0.17401f}, {-0.69182f, -0.70443f, -0.15863f}},\n    {{-0.11346f, -0.04406f, 0.17679f}, {-0.00002f, -1.00000f, 0.00000f}},\n    {{-0.12661f, -0.03890f, 0.17886f}, {-0.69789f, -0.70461f, -0.12831f}},\n    {{-0.11435f, -0.04406f, 0.18111f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{-0.12751f, -0.03890f, 0.18441f}, {-0.70161f, -0.70518f, -0.10227f}},\n    {{-0.11518f, -0.04406f, 0.18621f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{-0.12832f, -0.03890f, 0.19066f}, {-0.70387f, -0.70558f, -0.08196f}},\n    {{-0.11594f, -0.04406f, 0.19211f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{-0.12904f, -0.03890f, 0.19762f}, {-0.70528f, -0.70587f, -0.06573f}},\n    {{-0.11663f, -0.04406f, 0.19878f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{-0.12968f, -0.03890f, 0.20530f}, {-0.70618f, -0.70608f, -0.05247f}},\n    {{-0.11725f, -0.04406f, 0.20622f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{-0.12990f, -0.03890f, 0.20860f}, {-0.51539f, -0.84869f, -0.11875f}},\n    {{-0.11823f, -0.04406f, 0.22106f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{-0.12088f, -0.03890f, 0.20860f}, {0.00000f, 0.58885f, 0.80824f}},\n    {{-0.12990f, -0.03890f, 0.20860f}, {0.02704f, 0.69924f, 0.71438f}},\n    {{-0.13247f, -0.04406f, 0.22106f}, {-0.00000f, -1.00000f, -0.00002f}},\n    {{-0.12115f, -0.03890f, 0.20495f}, {0.70966f, -0.70198f, -0.06012f}},\n    {{-0.11608f, -0.02643f, 0.20344f}, {0.92143f, -0.38269f, -0.06715f}},\n    {{-0.12088f, -0.03890f, 0.20860f}, {0.61300f, -0.78882f, -0.04467f}},\n    {{-0.13356f, -0.04406f, 0.20601f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{-0.12215f, -0.03890f, 0.19460f}, {0.70422f, -0.70607f, -0.07447f}},\n    {{-0.13454f, -0.04406f, 0.19591f}, {-0.00000f, -1.00000f, -0.00002f}},\n    {{-0.12352f, -0.03890f, 0.18264f}, {0.70276f, -0.70632f, -0.08510f}},\n    {{-0.13589f, -0.04406f, 0.18413f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{-0.12526f, -0.03890f, 0.16905f}, {0.70156f, -0.70649f, -0.09323f}},\n    {{-0.13761f, -0.04406f, 0.17069f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{-0.12736f, -0.03890f, 0.15383f}, {0.70055f, -0.70661f, -0.09965f}},\n    {{-0.13969f, -0.04406f, 0.15558f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{-0.12982f, -0.03890f, 0.13698f}, {0.69968f, -0.70689f, -0.10370f}},\n    {{-0.14215f, -0.04406f, 0.13881f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{-0.16820f, -0.03890f, -0.11885f}, {0.46580f, -0.70034f, -0.54088f}},\n    {{-0.17893f, -0.04406f, -0.10639f}, {0.00003f, -1.00000f, -0.00001f}},\n    {{-0.23883f, -0.03890f, -0.11885f}, {-0.52286f, -0.72379f, -0.45028f}},\n    {{-0.22436f, -0.04406f, -0.10639f}, {0.00003f, -1.00000f, 0.00000f}},\n    {{-0.17885f, -0.03890f, 0.28101f}, {-0.46580f, -0.70034f, 0.54088f}},\n    {{-0.16812f, -0.04406f, 0.26855f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{-0.07906f, -0.03890f, 0.28101f}, {0.44370f, -0.69531f, 0.56540f}},\n    {{-0.08884f, -0.04406f, 0.26855f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{-0.01463f, -0.03890f, 0.01777f}, {0.68821f, -0.70652f, 0.16491f}},\n    {{-0.02675f, -0.04406f, 0.01487f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{-0.01238f, -0.03890f, 0.00818f}, {0.69037f, -0.70626f, 0.15680f}},\n    {{-0.02453f, -0.04406f, 0.00542f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{-0.01045f, -0.03890f, -0.00058f}, {0.69290f, -0.70608f, 0.14609f}},\n    {{-0.02265f, -0.04406f, -0.00315f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{-0.00885f, -0.03890f, -0.00852f}, {0.69584f, -0.70582f, 0.13277f}},\n    {{-0.02109f, -0.04406f, -0.01086f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{-0.00757f, -0.03890f, -0.01565f}, {0.69923f, -0.70546f, 0.11577f}},\n    {{-0.01986f, -0.04406f, -0.01768f}, {0.00000f, -1.00000f, -0.00002f}},\n    {{-0.00661f, -0.03890f, -0.02197f}, {0.70311f, -0.70492f, 0.09336f}},\n    {{-0.01897f, -0.04406f, -0.02361f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{-0.00654f, -0.03890f, -0.02257f}, {0.55063f, -0.82393f, 0.13396f}},\n    {{-0.01766f, -0.04406f, -0.03503f}, {-0.00000f, -1.00000f, -0.00001f}},\n    {{-0.01342f, -0.03890f, -0.02257f}, {0.00000f, 0.62501f, -0.78062f}},\n    {{-0.00654f, -0.03890f, -0.02257f}, {-0.07526f, 0.69575f, -0.71433f}},\n    {{-0.00558f, -0.04406f, -0.03503f}, {-0.00002f, -1.00000f, 0.00002f}},\n    {{-0.01018f, -0.03890f, -0.01584f}, {-0.63644f, -0.70667f, 0.30911f}},\n    {{-0.01342f, -0.03890f, -0.02257f}, {-0.57611f, -0.76891f, 0.27727f}},\n    {{0.00103f, -0.04406f, -0.02128f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{-0.00579f, -0.03890f, -0.00689f}, {-0.63407f, -0.70658f, 0.31416f}},\n    {{0.00537f, -0.04406f, -0.01242f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{-0.00174f, -0.03890f, 0.00119f}, {-0.63112f, -0.70646f, 0.32030f}},\n    {{0.00937f, -0.04406f, -0.00445f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{0.00197f, -0.03890f, 0.00840f}, {-0.62737f, -0.70630f, 0.32794f}},\n    {{0.01301f, -0.04406f, 0.00263f}, {0.00000f, -1.00000f, -0.00000f}},\n    {{0.00534f, -0.03890f, 0.01476f}, {-0.62245f, -0.70605f, 0.33770f}},\n    {{0.01630f, -0.04406f, 0.00882f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{0.00836f, -0.03890f, 0.02022f}, {-0.61857f, -0.70711f, 0.34259f}},\n    {{0.01927f, -0.04406f, 0.01418f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{0.15279f, -0.03890f, 0.28101f}, {-0.36961f, -0.68558f, 0.62719f}},\n    {{0.16013f, -0.04406f, 0.26855f}, {0.00002f, -1.00000f, 0.00000f}},\n    {{0.49186f, 0.03890f, -0.11885f}, {0.46580f, 0.70034f, -0.54088f}},\n    {{0.50728f, 0.04406f, 0.06797f}, {-0.00002f, 1.00000f, 0.00002f}},\n    {{0.51969f, 0.03890f, 0.06668f}, {0.70853f, 0.70185f, -0.07341f}},\n    {{0.49631f, 0.02644f, -0.12402f}, {0.63569f, 0.22588f, -0.73816f}},\n    {{0.52483f, 0.02644f, 0.06615f}, {0.97574f, 0.19419f, -0.10110f}},\n    {{0.41987f, 0.03890f, -0.11885f}, {-0.52286f, 0.72379f, -0.45028f}},\n    {{0.48113f, 0.04406f, -0.10639f}, {-0.00000f, 1.00000f, 0.00003f}},\n    {{0.41388f, 0.02644f, -0.12402f}, {-0.73399f, 0.24842f, -0.63210f}},\n    {{0.42639f, 0.03890f, -0.07545f}, {-0.59187f, 0.80113f, 0.08878f}},\n    {{0.43435f, 0.04406f, -0.10639f}, {-0.00000f, 1.00000f, -0.00003f}},\n    {{0.42039f, 0.02644f, -0.08061f}, {-0.72980f, 0.06930f, 0.68014f}},\n    {{0.43413f, 0.03890f, -0.07545f}, {0.00000f, -0.72877f, 0.68476f}},\n    {{0.44086f, 0.04406f, -0.06299f}, {-0.00000f, 1.00000f, -0.00003f}},\n    {{0.42639f, 0.03890f, -0.07545f}, {0.00000f, -0.56484f, 0.82520f}},\n    {{0.43656f, 0.02644f, -0.08061f}, {0.00000f, -0.18335f, 0.98305f}},\n    {{0.42289f, 0.03890f, -0.08903f}, {0.51741f, 0.69927f, -0.49327f}},\n    {{0.43413f, 0.03890f, -0.07545f}, {0.40399f, 0.81271f, -0.41988f}},\n    {{0.42664f, 0.02644f, -0.09260f}, {0.71006f, 0.19386f, -0.67693f}},\n    {{0.43656f, 0.02644f, -0.08061f}, {0.75403f, 0.20554f, -0.62386f}},\n    {{0.40860f, 0.03890f, -0.10206f}, {0.43889f, 0.69841f, -0.56533f}},\n    {{0.41385f, 0.04406f, -0.08041f}, {0.00001f, 1.00000f, 0.00001f}},\n    {{0.41177f, 0.02644f, -0.10615f}, {0.60161f, 0.19378f, -0.77493f}},\n    {{0.39309f, 0.03890f, -0.11225f}, {0.34140f, 0.69786f, -0.62963f}},\n    {{0.40093f, 0.04406f, -0.09218f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{0.39556f, 0.02644f, -0.11680f}, {0.46764f, 0.19372f, -0.86243f}},\n    {{0.37639f, 0.03890f, -0.11955f}, {0.22989f, 0.69774f, -0.67846f}},\n    {{0.38713f, 0.04406f, -0.10125f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{0.37806f, 0.02644f, -0.12446f}, {0.31484f, 0.19371f, -0.92917f}},\n    {{0.35859f, 0.03890f, -0.12393f}, {0.11333f, 0.69809f, -0.70698f}},\n    {{0.37238f, 0.04406f, -0.10771f}, {0.00006f, 1.00000f, 0.00000f}},\n    {{0.35940f, 0.02644f, -0.12904f}, {0.15528f, 0.19374f, -0.96869f}},\n    {{0.33981f, 0.03890f, -0.12538f}, {0.01058f, 0.70011f, -0.71396f}},\n    {{0.35661f, 0.04406f, -0.11158f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{0.33988f, 0.02644f, -0.13055f}, {0.01453f, 0.19396f, -0.98090f}},\n    {{0.32611f, 0.03890f, -0.12473f}, {-0.07185f, 0.70099f, -0.70954f}},\n    {{0.33962f, 0.04406f, -0.11289f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{0.32559f, 0.02644f, -0.12987f}, {-0.09883f, 0.19407f, -0.97600f}},\n    {{0.31359f, 0.03890f, -0.12278f}, {-0.15414f, 0.70002f, -0.69729f}},\n    {{0.32737f, 0.04406f, -0.11231f}, {0.00002f, 1.00000f, -0.00003f}},\n    {{0.31247f, 0.02644f, -0.12783f}, {-0.21175f, 0.19395f, -0.95789f}},\n    {{0.30216f, 0.03890f, -0.11948f}, {-0.24714f, 0.69906f, -0.67100f}},\n    {{0.31628f, 0.04406f, -0.11058f}, {0.00002f, 1.00000f, -0.00000f}},\n    {{0.30037f, 0.02644f, -0.12434f}, {-0.33906f, 0.19384f, -0.92058f}},\n    {{0.29186f, 0.03890f, -0.11482f}, {-0.34673f, 0.69826f, -0.62627f}},\n    {{0.30648f, 0.04406f, -0.10776f}, {-0.00009f, 1.00000f, 0.00002f}},\n    {{0.28935f, 0.02644f, -0.11935f}, {-0.47518f, 0.19376f, -0.85829f}},\n    {{0.28273f, 0.03890f, -0.10876f}, {-0.44543f, 0.69780f, -0.56095f}},\n    {{0.29791f, 0.04406f, -0.10388f}, {0.00007f, 1.00000f, -0.00007f}},\n    {{0.27951f, 0.02644f, -0.11282f}, {-0.61008f, 0.19372f, -0.76829f}},\n    {{0.27486f, 0.03890f, -0.10133f}, {-0.53304f, 0.69797f, -0.47823f}},\n    {{0.29051f, 0.04406f, -0.09896f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{0.27100f, 0.02644f, -0.10479f}, {-0.73024f, 0.19373f, -0.65515f}},\n    {{0.26840f, 0.03890f, -0.09280f}, {-0.60480f, 0.69801f, -0.38340f}},\n    {{0.28417f, 0.04406f, -0.09298f}, {0.00004f, 1.00000f, -0.00004f}},\n    {{0.26402f, 0.02644f, -0.09557f}, {-0.82859f, 0.19374f, -0.52527f}},\n    {{0.26348f, 0.03890f, -0.08339f}, {-0.65947f, 0.69810f, -0.27885f}},\n    {{0.27896f, 0.04406f, -0.08611f}, {0.00003f, 1.00000f, -0.00000f}},\n    {{0.25871f, 0.02644f, -0.08541f}, {-0.90360f, 0.19375f, -0.38207f}},\n    {{0.26011f, 0.03890f, -0.07316f}, {-0.69484f, 0.69859f, -0.17079f}},\n    {{0.27499f, 0.04406f, -0.07852f}, {0.00003f, 1.00000f, -0.00001f}},\n    {{0.25508f, 0.02644f, -0.07440f}, {-0.95269f, 0.19379f, -0.23416f}},\n    {{0.25829f, 0.03890f, -0.06217f}, {-0.71155f, 0.69937f, -0.06764f}},\n    {{0.27225f, 0.04406f, -0.07018f}, {0.00002f, 1.00000f, -0.00002f}},\n    {{0.25314f, 0.02644f, -0.06266f}, {-0.97662f, 0.19387f, -0.09284f}},\n    {{0.25799f, 0.03890f, -0.05046f}, {-0.71343f, 0.70029f, 0.02484f}},\n    {{0.27072f, 0.04406f, -0.06099f}, {0.00000f, 1.00000f, 0.00006f}},\n    {{0.25282f, 0.02644f, -0.05028f}, {-0.98041f, 0.19398f, 0.03413f}},\n    {{0.25919f, 0.03890f, -0.03791f}, {-0.70496f, 0.69865f, 0.12213f}},\n    {{0.27047f, 0.04406f, -0.05089f}, {0.00001f, 1.00000f, 0.00006f}},\n    {{0.25409f, 0.02644f, -0.03703f}, {-0.96664f, 0.19380f, 0.16747f}},\n    {{0.26562f, 0.03890f, -0.01251f}, {-0.67242f, 0.69518f, 0.25410f}},\n    {{0.27150f, 0.04406f, -0.04004f}, {-0.00001f, 1.00000f, -0.00006f}},\n    {{0.26076f, 0.02644f, -0.01067f}, {-0.91775f, 0.19354f, 0.34681f}},\n    {{0.27687f, 0.03890f, 0.00940f}, {-0.59419f, 0.69416f, 0.40629f}},\n    {{0.27735f, 0.04406f, -0.01694f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{0.27258f, 0.02644f, 0.01233f}, {-0.80987f, 0.19351f, 0.55377f}},\n    {{0.29292f, 0.03890f, 0.02751f}, {-0.47633f, 0.69438f, 0.53939f}},\n    {{0.28948f, 0.02644f, 0.03141f}, {-0.64942f, 0.19352f, 0.73540f}},\n    {{0.31359f, 0.03890f, 0.04168f}, {-0.34031f, 0.69572f, 0.63258f}},\n    {{0.31113f, 0.02644f, 0.04625f}, {-0.46480f, 0.19357f, 0.86400f}},\n    {{0.33869f, 0.03890f, 0.05189f}, {-0.21121f, 0.69761f, 0.68463f}},\n    {{0.31953f, 0.04406f, 0.03064f}, {0.00008f, 1.00000f, 0.00006f}},\n    {{0.33716f, 0.02644f, 0.05684f}, {-0.28921f, 0.19370f, 0.93746f}},\n    {{0.36796f, 0.03890f, 0.05820f}, {-0.12381f, 0.70277f, 0.70056f}},\n    {{0.34238f, 0.04406f, 0.03994f}, {-0.00006f, 1.00000f, 0.00001f}},\n    {{0.36706f, 0.02644f, 0.06328f}, {-0.17071f, 0.19433f, 0.96597f}},\n    {{0.44801f, 0.03890f, 0.06928f}, {-0.38501f, 0.85086f, 0.35750f}},\n    {{0.37013f, 0.04406f, 0.04592f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{0.44312f, 0.02644f, 0.07382f}, {-0.70559f, 0.26996f, 0.65518f}},\n    {{0.44884f, 0.03890f, 0.08241f}, {-0.69005f, 0.72292f, -0.03505f}},\n    {{0.45980f, 0.04406f, 0.05833f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{0.44365f, 0.02643f, 0.08214f}, {-0.97873f, 0.19903f, -0.04971f}},\n    {{0.44661f, 0.03890f, 0.09578f}, {-0.64718f, 0.73035f, -0.21849f}},\n    {{0.46137f, 0.04406f, 0.08304f}, {0.00000f, 1.00000f, -0.00002f}},\n    {{0.44166f, 0.02643f, 0.09411f}, {-0.92806f, 0.20134f, -0.31332f}},\n    {{0.44141f, 0.03890f, 0.10563f}, {-0.52811f, 0.73555f, -0.42434f}},\n    {{0.45857f, 0.04406f, 0.09982f}, {0.00001f, 1.00000f, -0.00001f}},\n    {{0.43731f, 0.02643f, 0.10234f}, {-0.76329f, 0.20310f, -0.61331f}},\n    {{0.43320f, 0.03890f, 0.11260f}, {-0.34345f, 0.73267f, -0.58757f}},\n    {{0.45130f, 0.04406f, 0.11358f}, {0.00004f, 1.00000f, -0.00003f}},\n    {{0.43055f, 0.02643f, 0.10807f}, {-0.49423f, 0.20211f, -0.84551f}},\n    {{0.42138f, 0.03890f, 0.11697f}, {-0.15415f, 0.72521f, -0.67105f}},\n    {{0.43958f, 0.04406f, 0.12352f}, {0.00002f, 1.00000f, 0.00000f}},\n    {{0.42022f, 0.02643f, 0.11190f}, {-0.21937f, 0.19971f, -0.95498f}},\n    {{0.40550f, 0.03890f, 0.11851f}, {-0.01360f, 0.71738f, -0.69655f}},\n    {{0.42420f, 0.04406f, 0.12922f}, {0.00002f, 1.00000f, 0.00000f}},\n    {{0.40540f, 0.02643f, 0.11334f}, {-0.01914f, 0.19748f, -0.98012f}},\n    {{0.38982f, 0.03890f, 0.11761f}, {0.08103f, 0.71471f, -0.69472f}},\n    {{0.40575f, 0.04406f, 0.13101f}, {-0.00005f, 1.00000f, -0.00002f}},\n    {{0.39042f, 0.02643f, 0.11247f}, {0.11358f, 0.19679f, -0.97384f}},\n    {{0.37427f, 0.03890f, 0.11487f}, {0.16102f, 0.71463f, -0.68072f}},\n    {{0.38837f, 0.04406f, 0.13001f}, {0.00001f, 1.00000f, 0.00003f}},\n    {{0.37546f, 0.02643f, 0.10984f}, {0.22569f, 0.19677f, -0.95412f}},\n    {{0.35896f, 0.03890f, 0.11030f}, {0.23725f, 0.71435f, -0.65834f}},\n    {{0.37140f, 0.04406f, 0.12701f}, {-0.00009f, 1.00000f, -0.00002f}},\n    {{0.36071f, 0.02643f, 0.10543f}, {0.33241f, 0.19670f, -0.92239f}},\n    {{0.34385f, 0.03890f, 0.10388f}, {0.30729f, 0.71392f, -0.62920f}},\n    {{0.35473f, 0.04406f, 0.12204f}, {0.00001f, 1.00000f, 0.00003f}},\n    {{0.34612f, 0.02643f, 0.09923f}, {0.43027f, 0.19659f, -0.88103f}},\n    {{0.32894f, 0.03890f, 0.09560f}, {0.36960f, 0.71337f, -0.59540f}},\n    {{0.33838f, 0.04406f, 0.11509f}, {0.00001f, 1.00000f, 0.00001f}},\n    {{0.33167f, 0.02643f, 0.09121f}, {0.51713f, 0.19646f, -0.83306f}},\n    {{0.30375f, 0.03890f, 0.07821f}, {-0.30606f, 0.81586f, -0.49061f}},\n    {{0.32236f, 0.04406f, 0.10620f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{0.29688f, 0.02644f, 0.06719f}, {0.56276f, 0.13648f, -0.81527f}},\n    {{0.31428f, 0.03890f, 0.14844f}, {-0.58892f, 0.68367f, 0.43100f}},\n    {{0.32034f, 0.04406f, 0.10480f}, {0.00003f, 1.00000f, 0.00001f}},\n    {{0.30958f, 0.02643f, 0.15188f}, {-0.78992f, 0.20451f, 0.57810f}},\n    {{0.29688f, 0.02644f, 0.06719f}, {-0.97968f, 0.13648f, 0.14695f}},\n    {{0.33326f, 0.03890f, 0.15775f}, {-0.28601f, 0.70217f, 0.65205f}},\n    {{0.32564f, 0.04406f, 0.14013f}, {-0.00003f, 1.00000f, -0.00000f}},\n    {{0.33118f, 0.02643f, 0.16248f}, {-0.39404f, 0.19424f, 0.89834f}},\n    {{0.35045f, 0.03890f, 0.16443f}, {-0.22920f, 0.70215f, 0.67413f}},\n    {{0.33827f, 0.04406f, 0.14633f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{0.34879f, 0.02643f, 0.16932f}, {-0.31577f, 0.19424f, 0.92874f}},\n    {{0.36819f, 0.03890f, 0.16962f}, {-0.17098f, 0.70221f, 0.69114f}},\n    {{0.35446f, 0.04406f, 0.15262f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{0.36694f, 0.02643f, 0.17464f}, {-0.23557f, 0.19425f, 0.95225f}},\n    {{0.38646f, 0.03890f, 0.17333f}, {-0.11263f, 0.70233f, 0.70289f}},\n    {{0.37118f, 0.04406f, 0.15751f}, {-0.00001f, 1.00000f, -0.00003f}},\n    {{0.38564f, 0.02643f, 0.17843f}, {-0.15521f, 0.19426f, 0.96859f}},\n    {{0.40526f, 0.03890f, 0.17555f}, {-0.05541f, 0.70250f, 0.70952f}},\n    {{0.38843f, 0.04406f, 0.16101f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{0.40486f, 0.02643f, 0.18070f}, {-0.07638f, 0.19429f, 0.97797f}},\n    {{0.42473f, 0.03890f, 0.17630f}, {0.01865f, 0.69987f, 0.71403f}},\n    {{0.40623f, 0.04406f, 0.16312f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{0.42486f, 0.02643f, 0.18147f}, {0.02561f, 0.19393f, 0.98068f}},\n    {{0.45746f, 0.03890f, 0.17333f}, {0.15098f, 0.69452f, 0.70346f}},\n    {{0.42440f, 0.04406f, 0.16381f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{0.45855f, 0.02643f, 0.17841f}, {0.20588f, 0.19352f, 0.95925f}},\n    {{0.48397f, 0.03890f, 0.16418f}, {0.34618f, 0.69087f, 0.63471f}},\n    {{0.45483f, 0.04406f, 0.16105f}, {-0.00002f, 1.00000f, 0.00002f}},\n    {{0.48647f, 0.02643f, 0.16877f}, {0.46976f, 0.19360f, 0.86130f}},\n    {{0.50382f, 0.03890f, 0.14857f}, {0.54788f, 0.68921f, 0.47415f}},\n    {{0.47792f, 0.04406f, 0.15308f}, {-0.00005f, 1.00000f, 0.00004f}},\n    {{0.50779f, 0.02643f, 0.15201f}, {0.74182f, 0.19379f, 0.64199f}},\n    {{0.51639f, 0.03890f, 0.12672f}, {0.67814f, 0.69080f, 0.25085f}},\n    {{0.49422f, 0.04406f, 0.14027f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{0.52130f, 0.02643f, 0.12854f}, {0.92015f, 0.19360f, 0.34037f}},\n    {{0.52157f, 0.03890f, 0.09926f}, {0.71807f, 0.69443f, 0.04630f}},\n    {{0.50454f, 0.04406f, 0.12233f}, {-0.00003f, 1.00000f, 0.00001f}},\n    {{0.52676f, 0.02643f, 0.09959f}, {0.97906f, 0.19351f, 0.06313f}},\n    {{0.50904f, 0.04406f, 0.09845f}, {-0.00001f, 1.00000f, 0.00002f}},\n    {{0.49631f, -0.02643f, -0.12402f}, {0.63569f, -0.22588f, -0.73816f}},\n    {{0.52483f, -0.02643f, 0.06615f}, {0.97574f, -0.19419f, -0.10110f}},\n    {{0.41388f, -0.02643f, -0.12402f}, {-0.73399f, -0.24842f, -0.63210f}},\n    {{0.42039f, -0.02643f, -0.08061f}, {-0.72980f, -0.06930f, 0.68014f}},\n    {{0.43656f, -0.02643f, -0.08061f}, {0.00000f, 0.18335f, 0.98305f}},\n    {{0.42664f, -0.02643f, -0.09260f}, {0.71006f, -0.19386f, -0.67693f}},\n    {{0.43656f, -0.02643f, -0.08061f}, {0.75402f, -0.20555f, -0.62386f}},\n    {{0.41177f, -0.02643f, -0.10615f}, {0.60161f, -0.19378f, -0.77493f}},\n    {{0.39556f, -0.02643f, -0.11680f}, {0.46764f, -0.19372f, -0.86243f}},\n    {{0.37806f, -0.02643f, -0.12446f}, {0.31484f, -0.19371f, -0.92917f}},\n    {{0.35940f, -0.02643f, -0.12904f}, {0.15528f, -0.19374f, -0.96869f}},\n    {{0.33988f, -0.02643f, -0.13055f}, {0.01453f, -0.19396f, -0.98090f}},\n    {{0.32559f, -0.02643f, -0.12987f}, {-0.09883f, -0.19407f, -0.97600f}},\n    {{0.31247f, -0.02643f, -0.12783f}, {-0.21175f, -0.19395f, -0.95789f}},\n    {{0.30037f, -0.02643f, -0.12434f}, {-0.33906f, -0.19384f, -0.92058f}},\n    {{0.28935f, -0.02643f, -0.11935f}, {-0.47518f, -0.19376f, -0.85829f}},\n    {{0.27951f, -0.02643f, -0.11282f}, {-0.61008f, -0.19372f, -0.76829f}},\n    {{0.27100f, -0.02643f, -0.10479f}, {-0.73024f, -0.19373f, -0.65515f}},\n    {{0.26402f, -0.02643f, -0.09557f}, {-0.82859f, -0.19374f, -0.52527f}},\n    {{0.25871f, -0.02643f, -0.08541f}, {-0.90360f, -0.19375f, -0.38207f}},\n    {{0.25508f, -0.02643f, -0.07440f}, {-0.95269f, -0.19379f, -0.23416f}},\n    {{0.25314f, -0.02643f, -0.06266f}, {-0.97662f, -0.19387f, -0.09284f}},\n    {{0.25282f, -0.02643f, -0.05028f}, {-0.98041f, -0.19398f, 0.03413f}},\n    {{0.25409f, -0.02643f, -0.03703f}, {-0.96664f, -0.19380f, 0.16747f}},\n    {{0.26076f, -0.02643f, -0.01067f}, {-0.91775f, -0.19355f, 0.34681f}},\n    {{0.27258f, -0.02643f, 0.01233f}, {-0.80987f, -0.19351f, 0.55377f}},\n    {{0.28948f, -0.02643f, 0.03141f}, {-0.64942f, -0.19352f, 0.73540f}},\n    {{0.31113f, -0.02643f, 0.04625f}, {-0.46480f, -0.19357f, 0.86400f}},\n    {{0.33716f, -0.02643f, 0.05684f}, {-0.28921f, -0.19370f, 0.93746f}},\n    {{0.36706f, -0.02643f, 0.06328f}, {-0.17071f, -0.19433f, 0.96597f}},\n    {{0.44312f, -0.02643f, 0.07382f}, {-0.70559f, -0.26996f, 0.65518f}},\n    {{0.44365f, -0.02643f, 0.08214f}, {-0.97873f, -0.19903f, -0.04971f}},\n    {{0.44166f, -0.02643f, 0.09411f}, {-0.92806f, -0.20134f, -0.31332f}},\n    {{0.43731f, -0.02643f, 0.10234f}, {-0.76329f, -0.20310f, -0.61331f}},\n    {{0.43055f, -0.02643f, 0.10807f}, {-0.49423f, -0.20211f, -0.84551f}},\n    {{0.42022f, -0.02643f, 0.11190f}, {-0.21937f, -0.19971f, -0.95498f}},\n    {{0.40540f, -0.02643f, 0.11334f}, {-0.01914f, -0.19748f, -0.98012f}},\n    {{0.39042f, -0.02643f, 0.11247f}, {0.11358f, -0.19679f, -0.97384f}},\n    {{0.37546f, -0.02643f, 0.10984f}, {0.22569f, -0.19677f, -0.95412f}},\n    {{0.36071f, -0.02643f, 0.10543f}, {0.33241f, -0.19670f, -0.92239f}},\n    {{0.34612f, -0.02643f, 0.09923f}, {0.43027f, -0.19659f, -0.88103f}},\n    {{0.33167f, -0.02643f, 0.09121f}, {0.51713f, -0.19646f, -0.83306f}},\n    {{0.29688f, -0.02643f, 0.06719f}, {0.56276f, -0.13648f, -0.81527f}},\n    {{0.30958f, -0.02643f, 0.15188f}, {-0.78992f, -0.20451f, 0.57810f}},\n    {{0.29688f, -0.02643f, 0.06719f}, {-0.97968f, -0.13648f, 0.14695f}},\n    {{0.33118f, -0.02643f, 0.16248f}, {-0.39404f, -0.19424f, 0.89834f}},\n    {{0.34879f, -0.02643f, 0.16932f}, {-0.31577f, -0.19424f, 0.92874f}},\n    {{0.36694f, -0.02643f, 0.17464f}, {-0.23557f, -0.19425f, 0.95225f}},\n    {{0.38564f, -0.02643f, 0.17843f}, {-0.15521f, -0.19426f, 0.96859f}},\n    {{0.40486f, -0.02643f, 0.18070f}, {-0.07638f, -0.19429f, 0.97797f}},\n    {{0.42486f, -0.02643f, 0.18147f}, {0.02561f, -0.19393f, 0.98068f}},\n    {{0.45855f, -0.02643f, 0.17841f}, {0.20588f, -0.19352f, 0.95925f}},\n    {{0.48647f, -0.02643f, 0.16877f}, {0.46976f, -0.19360f, 0.86130f}},\n    {{0.50779f, -0.02643f, 0.15201f}, {0.74182f, -0.19379f, 0.64199f}},\n    {{0.52130f, -0.02643f, 0.12854f}, {0.92015f, -0.19360f, 0.34037f}},\n    {{0.52676f, -0.02643f, 0.09959f}, {0.97906f, -0.19352f, 0.06313f}},\n    {{0.49186f, -0.03890f, -0.11885f}, {0.46580f, -0.70034f, -0.54088f}},\n    {{0.51969f, -0.03890f, 0.06668f}, {0.70853f, -0.70185f, -0.07341f}},\n    {{0.48113f, -0.04406f, -0.10639f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{0.50728f, -0.04406f, 0.06797f}, {0.00002f, -1.00000f, 0.00002f}},\n    {{0.41987f, -0.03890f, -0.11885f}, {-0.52286f, -0.72379f, -0.45028f}},\n    {{0.43435f, -0.04406f, -0.10639f}, {-0.00002f, -1.00000f, 0.00000f}},\n    {{0.42639f, -0.03890f, -0.07545f}, {-0.51253f, -0.85862f, 0.00858f}},\n    {{0.44086f, -0.04406f, -0.06299f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{0.43413f, -0.03890f, -0.07545f}, {0.00000f, 0.64563f, 0.76365f}},\n    {{0.42639f, -0.03890f, -0.07545f}, {0.00000f, 0.65794f, 0.75307f}},\n    {{0.42827f, -0.04406f, -0.06299f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{0.42289f, -0.03890f, -0.08903f}, {0.51741f, -0.69926f, -0.49327f}},\n    {{0.43413f, -0.03890f, -0.07545f}, {0.50415f, -0.75621f, -0.41712f}},\n    {{0.41385f, -0.04406f, -0.08041f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{0.40860f, -0.03890f, -0.10206f}, {0.43889f, -0.69841f, -0.56533f}},\n    {{0.40093f, -0.04406f, -0.09218f}, {0.00001f, -1.00000f, -0.00000f}},\n    {{0.39309f, -0.03890f, -0.11225f}, {0.34140f, -0.69786f, -0.62963f}},\n    {{0.38713f, -0.04406f, -0.10125f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{0.37639f, -0.03890f, -0.11955f}, {0.22989f, -0.69774f, -0.67846f}},\n    {{0.37238f, -0.04406f, -0.10771f}, {-0.00000f, -1.00000f, -0.00001f}},\n    {{0.35859f, -0.03890f, -0.12393f}, {0.11333f, -0.69809f, -0.70698f}},\n    {{0.35661f, -0.04406f, -0.11158f}, {0.00001f, -1.00000f, -0.00000f}},\n    {{0.33981f, -0.03890f, -0.12538f}, {0.01058f, -0.70011f, -0.71396f}},\n    {{0.33962f, -0.04406f, -0.11289f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{0.32611f, -0.03890f, -0.12473f}, {-0.07185f, -0.70099f, -0.70954f}},\n    {{0.32737f, -0.04406f, -0.11231f}, {0.00002f, -1.00000f, -0.00002f}},\n    {{0.31359f, -0.03890f, -0.12278f}, {-0.15414f, -0.70002f, -0.69729f}},\n    {{0.31628f, -0.04406f, -0.11058f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{0.30216f, -0.03890f, -0.11948f}, {-0.24714f, -0.69906f, -0.67100f}},\n    {{0.30648f, -0.04406f, -0.10776f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{0.29186f, -0.03890f, -0.11482f}, {-0.34673f, -0.69826f, -0.62627f}},\n    {{0.29791f, -0.04406f, -0.10388f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{0.28273f, -0.03890f, -0.10876f}, {-0.44544f, -0.69780f, -0.56095f}},\n    {{0.29051f, -0.04406f, -0.09896f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{0.27486f, -0.03890f, -0.10133f}, {-0.53304f, -0.69797f, -0.47823f}},\n    {{0.28417f, -0.04406f, -0.09298f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{0.26840f, -0.03890f, -0.09280f}, {-0.60480f, -0.69801f, -0.38340f}},\n    {{0.27896f, -0.04406f, -0.08611f}, {0.00000f, -1.00000f, 0.00002f}},\n    {{0.26348f, -0.03890f, -0.08339f}, {-0.65947f, -0.69810f, -0.27885f}},\n    {{0.27499f, -0.04406f, -0.07852f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.26011f, -0.03890f, -0.07316f}, {-0.69484f, -0.69859f, -0.17078f}},\n    {{0.27225f, -0.04406f, -0.07018f}, {0.00000f, -1.00000f, -0.00000f}},\n    {{0.25829f, -0.03890f, -0.06217f}, {-0.71155f, -0.69937f, -0.06764f}},\n    {{0.27072f, -0.04406f, -0.06099f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{0.25799f, -0.03890f, -0.05046f}, {-0.71343f, -0.70029f, 0.02484f}},\n    {{0.27047f, -0.04406f, -0.05089f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{0.25919f, -0.03890f, -0.03791f}, {-0.70496f, -0.69865f, 0.12213f}},\n    {{0.27150f, -0.04406f, -0.04004f}, {-0.00003f, -1.00000f, -0.00001f}},\n    {{0.26562f, -0.03890f, -0.01251f}, {-0.67242f, -0.69518f, 0.25410f}},\n    {{0.27735f, -0.04406f, -0.01694f}, {0.00002f, -1.00000f, 0.00000f}},\n    {{0.27687f, -0.03890f, 0.00940f}, {-0.59419f, -0.69416f, 0.40629f}},\n    {{0.28724f, -0.04406f, 0.00231f}, {0.00002f, -1.00000f, -0.00000f}},\n    {{0.29292f, -0.03890f, 0.02751f}, {-0.47633f, -0.69438f, 0.53939f}},\n    {{0.30123f, -0.04406f, 0.01810f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.31359f, -0.03890f, 0.04168f}, {-0.34031f, -0.69572f, 0.63258f}},\n    {{0.31953f, -0.04406f, 0.03064f}, {-0.00000f, -1.00000f, -0.00002f}},\n    {{0.33869f, -0.03890f, 0.05189f}, {-0.21121f, -0.69761f, 0.68464f}},\n    {{0.34238f, -0.04406f, 0.03994f}, {0.00001f, -1.00000f, 0.00002f}},\n    {{0.36796f, -0.03890f, 0.05820f}, {-0.12381f, -0.70277f, 0.70056f}},\n    {{0.37013f, -0.04406f, 0.04592f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{0.44801f, -0.03890f, 0.06928f}, {-0.38501f, -0.85086f, 0.35750f}},\n    {{0.45980f, -0.04406f, 0.05833f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{0.44884f, -0.03890f, 0.08241f}, {-0.69005f, -0.72292f, -0.03505f}},\n    {{0.46137f, -0.04406f, 0.08304f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{0.44661f, -0.03890f, 0.09578f}, {-0.64718f, -0.73035f, -0.21849f}},\n    {{0.45857f, -0.04406f, 0.09982f}, {0.00000f, -1.00000f, -0.00001f}},\n    {{0.44141f, -0.03890f, 0.10563f}, {-0.52811f, -0.73555f, -0.42434f}},\n    {{0.45130f, -0.04406f, 0.11358f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{0.43320f, -0.03890f, 0.11260f}, {-0.34345f, -0.73267f, -0.58757f}},\n    {{0.43958f, -0.04406f, 0.12352f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{0.42138f, -0.03890f, 0.11697f}, {-0.15415f, -0.72521f, -0.67105f}},\n    {{0.42420f, -0.04406f, 0.12922f}, {-0.00000f, -1.00000f, -0.00002f}},\n    {{0.40550f, -0.03890f, 0.11851f}, {-0.01360f, -0.71738f, -0.69655f}},\n    {{0.40575f, -0.04406f, 0.13101f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.38982f, -0.03890f, 0.11761f}, {0.08103f, -0.71471f, -0.69472f}},\n    {{0.38837f, -0.04406f, 0.13001f}, {-0.00000f, -1.00000f, -0.00002f}},\n    {{0.37427f, -0.03890f, 0.11487f}, {0.16102f, -0.71463f, -0.68072f}},\n    {{0.37140f, -0.04406f, 0.12701f}, {0.00001f, -1.00000f, 0.00002f}},\n    {{0.35896f, -0.03890f, 0.11030f}, {0.23725f, -0.71435f, -0.65834f}},\n    {{0.35473f, -0.04406f, 0.12204f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.34385f, -0.03890f, 0.10388f}, {0.30729f, -0.71392f, -0.62920f}},\n    {{0.33838f, -0.04406f, 0.11509f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{0.32894f, -0.03890f, 0.09560f}, {0.36960f, -0.71337f, -0.59540f}},\n    {{0.32236f, -0.04406f, 0.10620f}, {-0.00000f, -1.00000f, -0.00000f}},\n    {{0.30375f, -0.03890f, 0.07821f}, {-0.30606f, -0.81586f, -0.49061f}},\n    {{0.32034f, -0.04406f, 0.10480f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{0.31428f, -0.03890f, 0.14844f}, {-0.58892f, -0.68368f, 0.43100f}},\n    {{0.32564f, -0.04406f, 0.14013f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{0.33326f, -0.03890f, 0.15775f}, {-0.28601f, -0.70216f, 0.65205f}},\n    {{0.33827f, -0.04406f, 0.14633f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{0.35045f, -0.03890f, 0.16443f}, {-0.22920f, -0.70215f, 0.67413f}},\n    {{0.35446f, -0.04406f, 0.15262f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{0.36819f, -0.03890f, 0.16962f}, {-0.17097f, -0.70221f, 0.69114f}},\n    {{0.37118f, -0.04406f, 0.15751f}, {0.00001f, -1.00000f, 0.00002f}},\n    {{0.38646f, -0.03890f, 0.17333f}, {-0.11263f, -0.70233f, 0.70289f}},\n    {{0.38843f, -0.04406f, 0.16101f}, {-0.00001f, -1.00000f, -0.00003f}},\n    {{0.40526f, -0.03890f, 0.17555f}, {-0.05541f, -0.70250f, 0.70952f}},\n    {{0.40623f, -0.04406f, 0.16312f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{0.42473f, -0.03890f, 0.17630f}, {0.01865f, -0.69987f, 0.71403f}},\n    {{0.42440f, -0.04406f, 0.16381f}, {0.00001f, -1.00000f, 0.00000f}},\n    {{0.45746f, -0.03890f, 0.17333f}, {0.15098f, -0.69452f, 0.70346f}},\n    {{0.45483f, -0.04406f, 0.16105f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{0.48397f, -0.03890f, 0.16418f}, {0.34618f, -0.69087f, 0.63471f}},\n    {{0.47792f, -0.04406f, 0.15308f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{0.50382f, -0.03890f, 0.14857f}, {0.54788f, -0.68921f, 0.47415f}},\n    {{0.49422f, -0.04406f, 0.14027f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{0.51639f, -0.03890f, 0.12672f}, {0.67814f, -0.69080f, 0.25085f}},\n    {{0.50454f, -0.04406f, 0.12233f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{0.52157f, -0.03890f, 0.09926f}, {0.71807f, -0.69443f, 0.04630f}},\n    {{0.50904f, -0.04406f, 0.09845f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{0.44048f, 0.03890f, 0.01668f}, {-0.28421f, 0.91681f, -0.28052f}},\n    {{0.45022f, 0.04406f, -0.00235f}, {0.00001f, 1.00000f, -0.00006f}},\n    {{0.43795f, 0.03890f, -0.00019f}, {-0.69319f, 0.71032f, 0.12219f}},\n    {{0.43435f, 0.02644f, 0.01063f}, {-0.96459f, 0.22051f, 0.14470f}},\n    {{0.43286f, 0.02644f, 0.00071f}, {-0.96576f, 0.19576f, 0.17023f}},\n    {{0.38812f, 0.03890f, 0.00952f}, {0.10075f, 0.70801f, -0.69898f}},\n    {{0.45527f, 0.04406f, 0.03128f}, {0.00001f, 1.00000f, 0.00000f}},\n    {{0.38886f, 0.02644f, 0.00441f}, {0.13992f, 0.19527f, -0.97072f}},\n    {{0.43435f, 0.02644f, 0.01063f}, {0.13208f, 0.22051f, -0.96640f}},\n    {{0.37943f, 0.03890f, 0.00821f}, {0.12379f, 0.71041f, -0.69281f}},\n    {{0.38635f, 0.04406f, 0.02186f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{0.38034f, 0.02644f, 0.00312f}, {0.17248f, 0.19578f, -0.96536f}},\n    {{0.37156f, 0.03890f, 0.00658f}, {0.16281f, 0.71096f, -0.68413f}},\n    {{0.37724f, 0.04406f, 0.02048f}, {0.00009f, 1.00000f, 0.00002f}},\n    {{0.37275f, 0.02644f, 0.00156f}, {0.22703f, 0.19590f, -0.95398f}},\n    {{0.36442f, 0.03890f, 0.00465f}, {0.20734f, 0.71161f, -0.67129f}},\n    {{0.36867f, 0.04406f, 0.01871f}, {-0.00005f, 1.00000f, -0.00000f}},\n    {{0.36594f, 0.02644f, -0.00028f}, {0.28939f, 0.19605f, -0.93692f}},\n    {{0.35802f, 0.03890f, 0.00243f}, {0.25786f, 0.71238f, -0.65271f}},\n    {{0.36074f, 0.04406f, 0.01657f}, {-0.00005f, 1.00000f, -0.00001f}},\n    {{0.35992f, 0.02644f, -0.00238f}, {0.36028f, 0.19623f, -0.91197f}},\n    {{0.35237f, 0.03890f, -0.00008f}, {0.31450f, 0.71327f, -0.62637f}},\n    {{0.35344f, 0.04406f, 0.01403f}, {0.00003f, 1.00000f, -0.00001f}},\n    {{0.35469f, 0.02644f, -0.00470f}, {0.43997f, 0.19644f, -0.87626f}},\n    {{0.34753f, 0.03890f, -0.00281f}, {0.38408f, 0.71630f, -0.58258f}},\n    {{0.34678f, 0.04406f, 0.01107f}, {0.00001f, 1.00000f, 0.00003f}},\n    {{0.35038f, 0.02644f, -0.00713f}, {0.53961f, 0.19720f, -0.81850f}},\n    {{0.34348f, 0.03890f, -0.00591f}, {0.46810f, 0.71864f, -0.51424f}},\n    {{0.34066f, 0.04406f, 0.00762f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{0.34696f, 0.02644f, -0.00974f}, {0.65984f, 0.19782f, -0.72490f}},\n    {{0.34000f, 0.03890f, -0.00966f}, {0.54780f, 0.71801f, -0.42939f}},\n    {{0.33506f, 0.04406f, 0.00334f}, {-0.00000f, 1.00000f, 0.00003f}},\n    {{0.34408f, 0.02644f, -0.01286f}, {0.77151f, 0.19765f, -0.60474f}},\n    {{0.33702f, 0.03890f, -0.01418f}, {0.60867f, 0.71688f, -0.33999f}},\n    {{0.33016f, 0.04406f, -0.00195f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{0.34154f, 0.02644f, -0.01671f}, {0.85587f, 0.19735f, -0.47806f}},\n    {{0.33453f, 0.03890f, -0.01954f}, {0.65097f, 0.71554f, -0.25344f}},\n    {{0.33935f, 0.02644f, -0.02141f}, {0.91361f, 0.19700f, -0.35569f}},\n    {{0.33256f, 0.03890f, -0.02576f}, {0.67780f, 0.71423f, -0.17455f}},\n    {{0.32289f, 0.04406f, -0.01501f}, {-0.00001f, 1.00000f, 0.00002f}},\n    {{0.33756f, 0.02644f, -0.02705f}, {0.94949f, 0.19667f, -0.24452f}},\n    {{0.33115f, 0.03890f, -0.03282f}, {0.69286f, 0.71417f, -0.09957f}},\n    {{0.32047f, 0.04406f, -0.02265f}, {0.00003f, 1.00000f, 0.00009f}},\n    {{0.33626f, 0.02644f, -0.03356f}, {0.97050f, 0.19666f, -0.13949f}},\n    {{0.33070f, 0.03890f, -0.03787f}, {0.69797f, 0.71598f, -0.01456f}},\n    {{0.31879f, 0.04406f, -0.03105f}, {-0.00001f, 1.00000f, 0.00002f}},\n    {{0.33587f, 0.02644f, -0.03798f}, {0.98017f, 0.19711f, -0.02046f}},\n    {{0.33091f, 0.03890f, -0.04244f}, {0.69167f, 0.71718f, 0.08511f}},\n    {{0.31821f, 0.04406f, -0.03761f}, {-0.00001f, 1.00000f, -0.00005f}},\n    {{0.33605f, 0.02644f, -0.04181f}, {0.97298f, 0.19742f, 0.11974f}},\n    {{0.33175f, 0.03890f, -0.04659f}, {0.66884f, 0.71805f, 0.19248f}},\n    {{0.31851f, 0.04406f, -0.04396f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{0.33672f, 0.02644f, -0.04516f}, {0.94203f, 0.19766f, 0.27111f}},\n    {{0.33319f, 0.03890f, -0.05039f}, {0.62757f, 0.71836f, 0.30018f}},\n    {{0.31973f, 0.04406f, -0.05005f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{0.33786f, 0.02644f, -0.04815f}, {0.88430f, 0.19774f, 0.42298f}},\n    {{0.33524f, 0.03890f, -0.05390f}, {0.56983f, 0.71800f, 0.39972f}},\n    {{0.32190f, 0.04406f, -0.05578f}, {-0.00001f, 1.00000f, 0.00005f}},\n    {{0.33948f, 0.02644f, -0.05092f}, {0.80252f, 0.19765f, 0.56294f}},\n    {{0.33795f, 0.03890f, -0.05716f}, {0.49886f, 0.71764f, 0.48594f}},\n    {{0.32501f, 0.04406f, -0.06108f}, {-0.00004f, 1.00000f, 0.00004f}},\n    {{0.34166f, 0.02644f, -0.05355f}, {0.70220f, 0.19755f, 0.68402f}},\n    {{0.34123f, 0.03890f, -0.06003f}, {0.41551f, 0.71778f, 0.55870f}},\n    {{0.32900f, 0.04406f, -0.06588f}, {-0.00000f, 1.00000f, 0.00002f}},\n    {{0.34432f, 0.02644f, -0.05587f}, {0.58500f, 0.19758f, 0.78660f}},\n    {{0.34501f, 0.03890f, -0.06240f}, {0.32414f, 0.71716f, 0.61694f}},\n    {{0.33377f, 0.04406f, -0.07006f}, {0.00004f, 1.00000f, -0.00003f}},\n    {{0.34742f, 0.02644f, -0.05781f}, {0.45596f, 0.19742f, 0.86783f}},\n    {{0.34935f, 0.03890f, -0.06428f}, {0.23239f, 0.71615f, 0.65812f}},\n    {{0.33920f, 0.04406f, -0.07346f}, {-0.00005f, 1.00000f, 0.00001f}},\n    {{0.35108f, 0.02644f, -0.05940f}, {0.32643f, 0.19716f, 0.92443f}},\n    {{0.35431f, 0.03890f, -0.06565f}, {0.14608f, 0.71498f, 0.68371f}},\n    {{0.34519f, 0.04406f, -0.07605f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{0.35539f, 0.02644f, -0.06059f}, {0.20485f, 0.19686f, 0.95879f}},\n    {{0.35991f, 0.03890f, -0.06650f}, {0.06864f, 0.71383f, 0.69695f}},\n    {{0.35170f, 0.04406f, -0.07786f}, {-0.00005f, 1.00000f, 0.00001f}},\n    {{0.36042f, 0.02644f, -0.06136f}, {0.09610f, 0.19657f, 0.97577f}},\n    {{0.36611f, 0.03890f, -0.06679f}, {-0.00473f, 0.71396f, 0.70017f}},\n    {{0.35869f, 0.04406f, -0.07892f}, {-0.00002f, 1.00000f, -0.00000f}},\n    {{0.36608f, 0.02644f, -0.06162f}, {-0.00663f, 0.19660f, 0.98046f}},\n    {{0.37488f, 0.03890f, -0.06626f}, {-0.08519f, 0.71529f, 0.69362f}},\n    {{0.36620f, 0.04406f, -0.07926f}, {0.00005f, 1.00000f, -0.00001f}},\n    {{0.37425f, 0.02644f, -0.06113f}, {-0.11952f, 0.19694f, 0.97310f}},\n    {{0.38322f, 0.03890f, -0.06470f}, {-0.17253f, 0.71561f, 0.67685f}},\n    {{0.37641f, 0.04406f, -0.07865f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{0.38194f, 0.02644f, -0.05969f}, {-0.24216f, 0.19702f, 0.95002f}},\n    {{0.39118f, 0.03890f, -0.06211f}, {-0.25875f, 0.71565f, 0.64877f}},\n    {{0.38630f, 0.04406f, -0.07680f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{0.38926f, 0.02644f, -0.05731f}, {-0.36320f, 0.19703f, 0.91064f}},\n    {{0.39880f, 0.03890f, -0.05848f}, {-0.33972f, 0.71538f, 0.61060f}},\n    {{0.39581f, 0.04406f, -0.07371f}, {0.00008f, 1.00000f, 0.00004f}},\n    {{0.39629f, 0.02644f, -0.05396f}, {-0.47666f, 0.19696f, 0.85674f}},\n    {{0.40611f, 0.03890f, -0.05379f}, {-0.41215f, 0.71486f, 0.56490f}},\n    {{0.40487f, 0.04406f, -0.06939f}, {-0.00001f, 1.00000f, -0.00003f}},\n    {{0.40306f, 0.02644f, -0.04961f}, {-0.57787f, 0.19683f, 0.79204f}},\n    {{0.41312f, 0.03890f, -0.04801f}, {-0.47458f, 0.71431f, 0.51433f}},\n    {{0.41347f, 0.04406f, -0.06387f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{0.40961f, 0.02644f, -0.04421f}, {-0.66490f, 0.19669f, 0.72057f}},\n    {{0.41951f, 0.03890f, -0.04142f}, {-0.52918f, 0.71453f, 0.45762f}},\n    {{0.41560f, 0.02644f, -0.03804f}, {-0.74161f, 0.19675f, 0.64133f}},\n    {{0.42498f, 0.03890f, -0.03431f}, {-0.57828f, 0.71474f, 0.39338f}},\n    {{0.42071f, 0.02644f, -0.03140f}, {-0.81065f, 0.19680f, 0.55146f}},\n    {{0.42955f, 0.03890f, -0.02667f}, {-0.62028f, 0.71473f, 0.32313f}},\n    {{0.43530f, 0.04406f, -0.04133f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{0.42496f, 0.02644f, -0.02428f}, {-0.86953f, 0.19679f, 0.45297f}},\n    {{0.43323f, 0.03890f, -0.01847f}, {-0.65358f, 0.71451f, 0.24963f}},\n    {{0.44062f, 0.04406f, -0.03243f}, {-0.00004f, 1.00000f, -0.00008f}},\n    {{0.42840f, 0.02644f, -0.01662f}, {-0.91592f, 0.19674f, 0.34983f}},\n    {{0.43602f, 0.03890f, -0.00969f}, {-0.67758f, 0.71410f, 0.17591f}},\n    {{0.44489f, 0.04406f, -0.02292f}, {0.00002f, 1.00000f, 0.00005f}},\n    {{0.43102f, 0.02644f, -0.00839f}, {-0.94902f, 0.19664f, 0.24637f}},\n    {{0.44810f, 0.04406f, -0.01283f}, {-0.00003f, 1.00000f, -0.00001f}},\n    {{0.43435f, -0.02643f, 0.01063f}, {-0.96459f, -0.22051f, 0.14470f}},\n    {{0.43286f, -0.02643f, 0.00071f}, {-0.96576f, -0.19576f, 0.17023f}},\n    {{0.38886f, -0.02643f, 0.00441f}, {0.13992f, -0.19527f, -0.97072f}},\n    {{0.43435f, -0.02643f, 0.01063f}, {0.13208f, -0.22051f, -0.96640f}},\n    {{0.38034f, -0.02643f, 0.00312f}, {0.17248f, -0.19578f, -0.96536f}},\n    {{0.37275f, -0.02643f, 0.00156f}, {0.22703f, -0.19590f, -0.95398f}},\n    {{0.36594f, -0.02643f, -0.00028f}, {0.28939f, -0.19605f, -0.93692f}},\n    {{0.35992f, -0.02643f, -0.00238f}, {0.36028f, -0.19623f, -0.91197f}},\n    {{0.35469f, -0.02643f, -0.00470f}, {0.43997f, -0.19644f, -0.87627f}},\n    {{0.35038f, -0.02643f, -0.00713f}, {0.53961f, -0.19719f, -0.81850f}},\n    {{0.34696f, -0.02643f, -0.00974f}, {0.65984f, -0.19781f, -0.72490f}},\n    {{0.34408f, -0.02643f, -0.01286f}, {0.77151f, -0.19765f, -0.60474f}},\n    {{0.34154f, -0.02643f, -0.01671f}, {0.85587f, -0.19735f, -0.47806f}},\n    {{0.33935f, -0.02643f, -0.02141f}, {0.91361f, -0.19700f, -0.35569f}},\n    {{0.33756f, -0.02643f, -0.02705f}, {0.94949f, -0.19667f, -0.24452f}},\n    {{0.33626f, -0.02643f, -0.03356f}, {0.97050f, -0.19666f, -0.13948f}},\n    {{0.33587f, -0.02643f, -0.03798f}, {0.98017f, -0.19711f, -0.02046f}},\n    {{0.33605f, -0.02643f, -0.04181f}, {0.97298f, -0.19742f, 0.11974f}},\n    {{0.33672f, -0.02643f, -0.04516f}, {0.94203f, -0.19766f, 0.27111f}},\n    {{0.33786f, -0.02643f, -0.04815f}, {0.88430f, -0.19774f, 0.42298f}},\n    {{0.33948f, -0.02643f, -0.05092f}, {0.80252f, -0.19764f, 0.56294f}},\n    {{0.34166f, -0.02643f, -0.05355f}, {0.70220f, -0.19755f, 0.68402f}},\n    {{0.34432f, -0.02643f, -0.05587f}, {0.58500f, -0.19758f, 0.78660f}},\n    {{0.34742f, -0.02643f, -0.05781f}, {0.45596f, -0.19742f, 0.86783f}},\n    {{0.35108f, -0.02643f, -0.05940f}, {0.32643f, -0.19716f, 0.92443f}},\n    {{0.35539f, -0.02643f, -0.06059f}, {0.20485f, -0.19686f, 0.95879f}},\n    {{0.36042f, -0.02643f, -0.06136f}, {0.09610f, -0.19657f, 0.97577f}},\n    {{0.36608f, -0.02643f, -0.06162f}, {-0.00663f, -0.19660f, 0.98046f}},\n    {{0.37425f, -0.02643f, -0.06113f}, {-0.11952f, -0.19694f, 0.97310f}},\n    {{0.38194f, -0.02643f, -0.05969f}, {-0.24216f, -0.19702f, 0.95002f}},\n    {{0.38926f, -0.02643f, -0.05731f}, {-0.36320f, -0.19703f, 0.91064f}},\n    {{0.39629f, -0.02643f, -0.05396f}, {-0.47666f, -0.19696f, 0.85674f}},\n    {{0.40306f, -0.02643f, -0.04961f}, {-0.57787f, -0.19683f, 0.79204f}},\n    {{0.40961f, -0.02643f, -0.04421f}, {-0.66490f, -0.19669f, 0.72057f}},\n    {{0.41560f, -0.02643f, -0.03804f}, {-0.74161f, -0.19675f, 0.64133f}},\n    {{0.42071f, -0.02643f, -0.03140f}, {-0.81065f, -0.19680f, 0.55146f}},\n    {{0.42496f, -0.02643f, -0.02428f}, {-0.86953f, -0.19679f, 0.45297f}},\n    {{0.42840f, -0.02643f, -0.01662f}, {-0.91592f, -0.19674f, 0.34983f}},\n    {{0.43102f, -0.02643f, -0.00839f}, {-0.94902f, -0.19664f, 0.24637f}},\n    {{0.44048f, -0.03890f, 0.01668f}, {-0.28421f, -0.91681f, -0.28052f}},\n    {{0.43795f, -0.03890f, -0.00019f}, {-0.69319f, -0.71032f, 0.12219f}},\n    {{0.45527f, -0.04406f, 0.03128f}, {0.00000f, -1.00000f, 0.00000f}},\n    {{0.45022f, -0.04406f, -0.00235f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{0.38812f, -0.03890f, 0.00952f}, {0.10075f, -0.70801f, -0.69898f}},\n    {{0.38635f, -0.04406f, 0.02186f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{0.37943f, -0.03890f, 0.00821f}, {0.12379f, -0.71041f, -0.69281f}},\n    {{0.37724f, -0.04406f, 0.02048f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.37156f, -0.03890f, 0.00658f}, {0.16281f, -0.71096f, -0.68413f}},\n    {{0.36867f, -0.04406f, 0.01871f}, {0.00000f, -1.00000f, 0.00002f}},\n    {{0.36442f, -0.03890f, 0.00465f}, {0.20734f, -0.71160f, -0.67129f}},\n    {{0.36074f, -0.04406f, 0.01657f}, {0.00000f, -1.00000f, -0.00001f}},\n    {{0.35802f, -0.03890f, 0.00243f}, {0.25786f, -0.71238f, -0.65271f}},\n    {{0.35344f, -0.04406f, 0.01403f}, {-0.00000f, -1.00000f, 0.00000f}},\n    {{0.35237f, -0.03890f, -0.00008f}, {0.31450f, -0.71327f, -0.62637f}},\n    {{0.34678f, -0.04406f, 0.01107f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{0.34753f, -0.03890f, -0.00281f}, {0.38408f, -0.71630f, -0.58258f}},\n    {{0.34066f, -0.04406f, 0.00762f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{0.34348f, -0.03890f, -0.00591f}, {0.46810f, -0.71864f, -0.51424f}},\n    {{0.33506f, -0.04406f, 0.00334f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.34000f, -0.03890f, -0.00966f}, {0.54780f, -0.71801f, -0.42939f}},\n    {{0.33016f, -0.04406f, -0.00195f}, {-0.00000f, -1.00000f, -0.00001f}},\n    {{0.33702f, -0.03890f, -0.01418f}, {0.60868f, -0.71688f, -0.33999f}},\n    {{0.32611f, -0.04406f, -0.00809f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.33453f, -0.03890f, -0.01954f}, {0.65097f, -0.71554f, -0.25344f}},\n    {{0.32289f, -0.04406f, -0.01501f}, {-0.00000f, -1.00000f, -0.00000f}},\n    {{0.33256f, -0.03890f, -0.02576f}, {0.67780f, -0.71423f, -0.17455f}},\n    {{0.32047f, -0.04406f, -0.02265f}, {-0.00002f, -1.00000f, -0.00000f}},\n    {{0.33115f, -0.03890f, -0.03282f}, {0.69286f, -0.71417f, -0.09957f}},\n    {{0.31879f, -0.04406f, -0.03105f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{0.33070f, -0.03890f, -0.03787f}, {0.69797f, -0.71598f, -0.01456f}},\n    {{0.31821f, -0.04406f, -0.03761f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{0.33091f, -0.03890f, -0.04244f}, {0.69167f, -0.71718f, 0.08511f}},\n    {{0.31851f, -0.04406f, -0.04396f}, {0.00000f, -1.00000f, 0.00000f}},\n    {{0.33175f, -0.03890f, -0.04659f}, {0.66884f, -0.71805f, 0.19248f}},\n    {{0.31973f, -0.04406f, -0.05005f}, {-0.00002f, -1.00000f, -0.00002f}},\n    {{0.33319f, -0.03890f, -0.05039f}, {0.62757f, -0.71836f, 0.30018f}},\n    {{0.32190f, -0.04406f, -0.05578f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{0.33524f, -0.03890f, -0.05390f}, {0.56982f, -0.71800f, 0.39972f}},\n    {{0.32501f, -0.04406f, -0.06108f}, {0.00002f, -1.00000f, 0.00002f}},\n    {{0.33795f, -0.03890f, -0.05716f}, {0.49886f, -0.71764f, 0.48594f}},\n    {{0.32900f, -0.04406f, -0.06588f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{0.34123f, -0.03890f, -0.06003f}, {0.41551f, -0.71778f, 0.55870f}},\n    {{0.33377f, -0.04406f, -0.07006f}, {-0.00002f, -1.00000f, 0.00000f}},\n    {{0.34501f, -0.03890f, -0.06240f}, {0.32414f, -0.71716f, 0.61694f}},\n    {{0.33920f, -0.04406f, -0.07346f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{0.34935f, -0.03890f, -0.06428f}, {0.23239f, -0.71615f, 0.65812f}},\n    {{0.34519f, -0.04406f, -0.07605f}, {0.00001f, -1.00000f, 0.00000f}},\n    {{0.35431f, -0.03890f, -0.06565f}, {0.14608f, -0.71498f, 0.68371f}},\n    {{0.35170f, -0.04406f, -0.07786f}, {0.00000f, -1.00000f, -0.00001f}},\n    {{0.35991f, -0.03890f, -0.06650f}, {0.06864f, -0.71383f, 0.69695f}},\n    {{0.35869f, -0.04406f, -0.07892f}, {-0.00000f, -1.00000f, -0.00001f}},\n    {{0.36611f, -0.03890f, -0.06679f}, {-0.00473f, -0.71396f, 0.70017f}},\n    {{0.36620f, -0.04406f, -0.07926f}, {0.00000f, -1.00000f, -0.00002f}},\n    {{0.37488f, -0.03890f, -0.06626f}, {-0.08519f, -0.71529f, 0.69362f}},\n    {{0.37641f, -0.04406f, -0.07865f}, {-0.00002f, -1.00000f, -0.00001f}},\n    {{0.38322f, -0.03890f, -0.06470f}, {-0.17253f, -0.71561f, 0.67685f}},\n    {{0.38630f, -0.04406f, -0.07680f}, {-0.00002f, -1.00000f, 0.00000f}},\n    {{0.39118f, -0.03890f, -0.06211f}, {-0.25875f, -0.71564f, 0.64877f}},\n    {{0.39581f, -0.04406f, -0.07371f}, {-0.00000f, -1.00000f, -0.00000f}},\n    {{0.39880f, -0.03890f, -0.05848f}, {-0.33972f, -0.71538f, 0.61060f}},\n    {{0.40487f, -0.04406f, -0.06939f}, {-0.00000f, -1.00000f, -0.00001f}},\n    {{0.40611f, -0.03890f, -0.05379f}, {-0.41215f, -0.71486f, 0.56490f}},\n    {{0.41347f, -0.04406f, -0.06387f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.41312f, -0.03890f, -0.04801f}, {-0.47458f, -0.71431f, 0.51433f}},\n    {{0.42158f, -0.04406f, -0.05718f}, {-0.00002f, -1.00000f, -0.00000f}},\n    {{0.41951f, -0.03890f, -0.04142f}, {-0.52918f, -0.71453f, 0.45762f}},\n    {{0.42895f, -0.04406f, -0.04959f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{0.42498f, -0.03890f, -0.03431f}, {-0.57828f, -0.71474f, 0.39338f}},\n    {{0.43530f, -0.04406f, -0.04133f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{0.42955f, -0.03890f, -0.02667f}, {-0.62028f, -0.71473f, 0.32313f}},\n    {{0.44062f, -0.04406f, -0.03243f}, {0.00000f, -1.00000f, -0.00001f}},\n    {{0.43323f, -0.03890f, -0.01847f}, {-0.65358f, -0.71450f, 0.24963f}},\n    {{0.44489f, -0.04406f, -0.02292f}, {-0.00002f, -1.00000f, 0.00002f}},\n    {{0.43602f, -0.03890f, -0.00969f}, {-0.67758f, -0.71410f, 0.17591f}},\n    {{0.44810f, -0.04406f, -0.01283f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{0.82656f, 0.03890f, -0.11885f}, {0.54583f, 0.78970f, -0.28006f}},\n    {{0.71987f, 0.03890f, 0.02976f}, {0.51426f, 0.85657f, -0.04275f}},\n    {{0.83662f, 0.02644f, -0.12402f}, {0.80376f, 0.14491f, 0.57704f}},\n    {{0.72663f, 0.02644f, 0.02919f}, {0.95811f, 0.27512f, -0.07964f}},\n    {{0.73333f, 0.03890f, -0.11885f}, {-0.34592f, 0.68403f, -0.64222f}},\n    {{0.80227f, 0.04406f, -0.10639f}, {0.00001f, 1.00000f, 0.00001f}},\n    {{0.73055f, 0.02644f, -0.12402f}, {-0.46412f, 0.20527f, -0.86166f}},\n    {{0.83662f, 0.02644f, -0.12402f}, {0.00000f, 0.14491f, -0.98944f}},\n    {{0.64538f, 0.03890f, 0.01462f}, {-0.54083f, 0.76190f, -0.35638f}},\n    {{0.64260f, 0.02644f, 0.00946f}, {-0.81694f, 0.20694f, -0.53832f}},\n    {{0.65187f, 0.03890f, 0.01462f}, {0.00000f, -0.68123f, 0.73207f}},\n    {{0.65209f, 0.04406f, 0.02708f}, {0.00003f, 1.00000f, -0.00004f}},\n    {{0.64538f, 0.03890f, 0.01462f}, {0.00000f, -0.63665f, 0.77116f}},\n    {{0.65632f, 0.02644f, 0.00946f}, {0.00000f, -0.17305f, 0.98491f}},\n    {{0.64260f, 0.02644f, 0.00946f}, {0.00000f, -0.18158f, 0.98338f}},\n    {{0.63185f, 0.03890f, -0.11885f}, {0.46580f, 0.70034f, -0.54088f}},\n    {{0.64114f, 0.04406f, 0.02708f}, {-0.00003f, 1.00000f, -0.00000f}},\n    {{0.65187f, 0.03890f, 0.01462f}, {0.52434f, 0.83855f, -0.14796f}},\n    {{0.63630f, 0.02644f, -0.12402f}, {0.63569f, 0.22588f, -0.73816f}},\n    {{0.65632f, 0.02644f, 0.00946f}, {0.96624f, 0.21300f, -0.14494f}},\n    {{0.55769f, 0.03890f, -0.11885f}, {-0.52286f, 0.72379f, -0.45028f}},\n    {{0.62112f, 0.04406f, -0.10639f}, {0.00001f, 1.00000f, 0.00001f}},\n    {{0.55170f, 0.02644f, -0.12402f}, {-0.73399f, 0.24842f, -0.63210f}},\n    {{0.62101f, 0.03890f, 0.30325f}, {-0.46580f, 0.70034f, 0.54088f}},\n    {{0.57216f, 0.04406f, -0.10639f}, {-0.00000f, 1.00000f, -0.00003f}},\n    {{0.61656f, 0.02643f, 0.30842f}, {-0.63569f, 0.22588f, 0.73816f}},\n    {{0.69517f, 0.03890f, 0.30325f}, {0.52286f, 0.72379f, 0.45028f}},\n    {{0.63174f, 0.04406f, 0.29079f}, {-0.00001f, 1.00000f, -0.00003f}},\n    {{0.70116f, 0.02643f, 0.30842f}, {0.73399f, 0.24842f, 0.63210f}},\n    {{0.65606f, 0.03890f, 0.04254f}, {0.59187f, 0.80113f, -0.08878f}},\n    {{0.68070f, 0.04406f, 0.29079f}, {-0.00003f, 1.00000f, 0.00000f}},\n    {{0.66205f, 0.02644f, 0.04770f}, {0.72980f, 0.06930f, -0.68014f}},\n    {{0.64854f, 0.03890f, 0.04254f}, {0.00000f, -0.73094f, -0.68244f}},\n    {{0.64159f, 0.04406f, 0.03008f}, {0.00001f, 1.00000f, 0.00004f}},\n    {{0.65606f, 0.03890f, 0.04254f}, {0.00000f, -0.56484f, -0.82520f}},\n    {{0.64633f, 0.02644f, 0.04770f}, {0.00000f, -0.18443f, -0.98285f}},\n    {{0.76963f, 0.03890f, 0.16978f}, {-0.28806f, 0.68243f, 0.67180f}},\n    {{0.65388f, 0.04406f, 0.03008f}, {-0.00004f, 1.00000f, -0.00001f}},\n    {{0.64854f, 0.03890f, 0.04254f}, {-0.38287f, 0.80753f, 0.44868f}},\n    {{0.76742f, 0.02643f, 0.17494f}, {-0.38612f, 0.20004f, 0.90050f}},\n    {{0.64633f, 0.02644f, 0.04770f}, {-0.70905f, 0.20468f, 0.67480f}},\n    {{0.86077f, 0.03890f, 0.16978f}, {0.52425f, 0.82366f, 0.21619f}},\n    {{0.77497f, 0.04406f, 0.15731f}, {-0.00003f, 1.00000f, 0.00001f}},\n    {{0.87329f, 0.02643f, 0.17494f}, {0.00000f, 0.13386f, 0.99100f}},\n    {{0.83055f, 0.04406f, 0.15731f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{0.87329f, 0.02643f, 0.17494f}, {0.69855f, 0.13386f, -0.70293f}},\n    {{0.83662f, -0.02643f, -0.12402f}, {0.80376f, -0.14491f, 0.57704f}},\n    {{0.72663f, -0.02643f, 0.02919f}, {0.95811f, -0.27512f, -0.07964f}},\n    {{0.73055f, -0.02643f, -0.12402f}, {-0.46413f, -0.20526f, -0.86166f}},\n    {{0.83662f, -0.02643f, -0.12402f}, {0.00000f, -0.14491f, -0.98944f}},\n    {{0.64260f, -0.02643f, 0.00946f}, {-0.81694f, -0.20694f, -0.53832f}},\n    {{0.65632f, -0.02643f, 0.00946f}, {0.00000f, 0.17305f, 0.98491f}},\n    {{0.64260f, -0.02643f, 0.00946f}, {0.00000f, 0.18158f, 0.98338f}},\n    {{0.63630f, -0.02643f, -0.12402f}, {0.63569f, -0.22588f, -0.73816f}},\n    {{0.65632f, -0.02643f, 0.00946f}, {0.96624f, -0.21301f, -0.14494f}},\n    {{0.55170f, -0.02643f, -0.12402f}, {-0.73399f, -0.24842f, -0.63210f}},\n    {{0.61656f, -0.02643f, 0.30842f}, {-0.63569f, -0.22588f, 0.73816f}},\n    {{0.70116f, -0.02643f, 0.30842f}, {0.73399f, -0.24842f, 0.63210f}},\n    {{0.66205f, -0.02643f, 0.04770f}, {0.72980f, -0.06929f, -0.68014f}},\n    {{0.64633f, -0.02643f, 0.04770f}, {0.00000f, 0.18443f, -0.98285f}},\n    {{0.76742f, -0.02643f, 0.17494f}, {-0.38612f, -0.20004f, 0.90050f}},\n    {{0.64633f, -0.02643f, 0.04770f}, {-0.70905f, -0.20468f, 0.67480f}},\n    {{0.87329f, -0.02643f, 0.17494f}, {0.00000f, -0.13386f, 0.99100f}},\n    {{0.87329f, -0.02643f, 0.17494f}, {0.69855f, -0.13386f, -0.70293f}},\n    {{0.82656f, -0.03890f, -0.11885f}, {0.54583f, -0.78970f, -0.28006f}},\n    {{0.71987f, -0.03890f, 0.02976f}, {0.51426f, -0.85657f, -0.04275f}},\n    {{0.80227f, -0.04406f, -0.10639f}, {0.00002f, -1.00000f, -0.00000f}},\n    {{0.73333f, -0.03890f, -0.11885f}, {-0.34592f, -0.68403f, -0.64222f}},\n    {{0.74005f, -0.04406f, -0.10639f}, {-0.00002f, -1.00000f, -0.00002f}},\n    {{0.64538f, -0.03890f, 0.01462f}, {-0.44641f, -0.81431f, -0.37097f}},\n    {{0.65187f, -0.03890f, 0.01462f}, {0.00000f, 0.59663f, 0.80252f}},\n    {{0.64538f, -0.03890f, 0.01462f}, {0.00000f, 0.71519f, 0.69893f}},\n    {{0.64114f, -0.04406f, 0.02708f}, {0.00002f, -1.00000f, -0.00002f}},\n    {{0.63185f, -0.03890f, -0.11885f}, {0.46580f, -0.70034f, -0.54088f}},\n    {{0.65187f, -0.03890f, 0.01462f}, {0.61300f, -0.78472f, -0.09195f}},\n    {{0.62112f, -0.04406f, -0.10639f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{0.55769f, -0.03890f, -0.11885f}, {-0.52286f, -0.72379f, -0.45028f}},\n    {{0.57216f, -0.04406f, -0.10639f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{0.62101f, -0.03890f, 0.30325f}, {-0.46580f, -0.70034f, 0.54088f}},\n    {{0.63174f, -0.04406f, 0.29079f}, {-0.00003f, -1.00000f, 0.00001f}},\n    {{0.69517f, -0.03890f, 0.30325f}, {0.52285f, -0.72379f, 0.45028f}},\n    {{0.68070f, -0.04406f, 0.29079f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{0.65606f, -0.03890f, 0.04254f}, {0.51481f, -0.85724f, -0.01077f}},\n    {{0.64159f, -0.04406f, 0.03008f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{0.64854f, -0.03890f, 0.04254f}, {0.00000f, 0.65119f, -0.75891f}},\n    {{0.65606f, -0.03890f, 0.04254f}, {0.00000f, 0.65567f, -0.75505f}},\n    {{0.76963f, -0.03890f, 0.16978f}, {-0.28806f, -0.68243f, 0.67180f}},\n    {{0.64854f, -0.03890f, 0.04254f}, {-0.47703f, -0.75255f, 0.45400f}},\n    {{0.77497f, -0.04406f, 0.15731f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.86077f, -0.03890f, 0.16978f}, {0.52425f, -0.82366f, 0.21619f}},\n    {{0.83055f, -0.04406f, 0.15731f}, {0.00001f, -1.00000f, 0.00000f}},\n    {{1.11377f, 0.03890f, 0.00296f}, {0.46580f, 0.70034f, -0.54088f}},\n    {{1.10573f, 0.04406f, 0.03342f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{1.11809f, 0.03890f, 0.03182f}, {0.70368f, 0.70468f, -0.09093f}},\n    {{1.11821f, 0.02644f, -0.00220f}, {0.63569f, 0.22588f, -0.73816f}},\n    {{1.12322f, 0.02644f, 0.03116f}, {0.97279f, 0.19464f, -0.12571f}},\n    {{0.92478f, 0.03890f, 0.00296f}, {0.33749f, 0.86863f, -0.36274f}},\n    {{1.10303f, 0.04406f, 0.01542f}, {0.00002f, 1.00000f, 0.00000f}},\n    {{0.92958f, 0.02644f, -0.00220f}, {0.65250f, 0.28693f, -0.70136f}},\n    {{0.92427f, 0.03890f, -0.00407f}, {0.69967f, 0.71438f, -0.01128f}},\n    {{0.91318f, 0.04406f, 0.01542f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{0.92944f, 0.02644f, -0.00415f}, {0.98033f, 0.19671f, -0.01583f}},\n    {{0.92470f, 0.03890f, -0.01478f}, {0.69447f, 0.71574f, 0.07361f}},\n    {{0.91179f, 0.04406f, -0.00387f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{0.92984f, 0.02644f, -0.01424f}, {0.97493f, 0.19705f, 0.10334f}},\n    {{0.92636f, 0.03890f, -0.02442f}, {0.67582f, 0.71713f, 0.17030f}},\n    {{0.91228f, 0.04406f, -0.01610f}, {0.00001f, 1.00000f, 0.00009f}},\n    {{0.93138f, 0.02644f, -0.02315f}, {0.95060f, 0.19741f, 0.23954f}},\n    {{0.92923f, 0.03890f, -0.03301f}, {0.63927f, 0.71827f, 0.27462f}},\n    {{0.91425f, 0.04406f, -0.02747f}, {-0.00001f, 1.00000f, 0.00002f}},\n    {{0.93399f, 0.02644f, -0.03097f}, {0.90067f, 0.19772f, 0.38691f}},\n    {{0.93329f, 0.03890f, -0.04063f}, {0.58273f, 0.71887f, 0.37900f}},\n    {{0.91774f, 0.04406f, -0.03795f}, {-0.00000f, 1.00000f, 0.00002f}},\n    {{0.93763f, 0.02644f, -0.03780f}, {0.82172f, 0.19788f, 0.53444f}},\n    {{0.93854f, 0.03890f, -0.04734f}, {0.50876f, 0.71864f, 0.47404f}},\n    {{0.92280f, 0.04406f, -0.04745f}, {-0.00001f, 1.00000f, 0.00001f}},\n    {{0.94233f, 0.02644f, -0.04381f}, {0.71717f, 0.19782f, 0.66824f}},\n    {{0.94492f, 0.03890f, -0.05311f}, {0.42188f, 0.71826f, 0.55328f}},\n    {{0.92939f, 0.04406f, -0.05587f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{0.94807f, 0.02644f, -0.04899f}, {0.59438f, 0.19771f, 0.77950f}},\n    {{0.95237f, 0.03890f, -0.05786f}, {0.32784f, 0.71750f, 0.61458f}},\n    {{0.93734f, 0.04406f, -0.06305f}, {-0.00007f, 1.00000f, 0.00005f}},\n    {{0.95480f, 0.02644f, -0.05329f}, {0.46139f, 0.19751f, 0.86493f}},\n    {{0.96093f, 0.03890f, -0.06160f}, {0.23389f, 0.71635f, 0.65737f}},\n    {{0.94648f, 0.04406f, -0.06889f}, {0.00005f, 1.00000f, -0.00002f}},\n    {{0.96266f, 0.02644f, -0.05672f}, {0.32863f, 0.19721f, 0.92364f}},\n    {{0.97066f, 0.03890f, -0.06431f}, {0.14627f, 0.71507f, 0.68358f}},\n    {{0.95674f, 0.04406f, -0.07337f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{0.97174f, 0.02644f, -0.05925f}, {0.20515f, 0.19688f, 0.95872f}},\n    {{0.98158f, 0.03890f, -0.06596f}, {0.06842f, 0.71383f, 0.69697f}},\n    {{0.96804f, 0.04406f, -0.07652f}, {-0.00005f, 1.00000f, 0.00001f}},\n    {{0.98208f, 0.02644f, -0.06082f}, {0.09580f, 0.19657f, 0.97580f}},\n    {{0.99368f, 0.03890f, -0.06652f}, {-0.00148f, 0.71328f, 0.70088f}},\n    {{0.98036f, 0.04406f, -0.07838f}, {0.00006f, 1.00000f, 0.00002f}},\n    {{0.99367f, 0.02644f, -0.06135f}, {-0.00206f, 0.19644f, 0.98051f}},\n    {{1.00789f, 0.03890f, -0.06580f}, {-0.07034f, 0.71363f, 0.69698f}},\n    {{0.99371f, 0.04406f, -0.07899f}, {-0.00002f, 1.00000f, -0.00002f}},\n    {{1.00737f, 0.02644f, -0.06066f}, {-0.09845f, 0.19653f, 0.97554f}},\n    {{1.02190f, 0.03890f, -0.06367f}, {-0.14009f, 0.71359f, 0.68641f}},\n    {{1.00914f, 0.04406f, -0.07822f}, {-0.00002f, 1.00000f, 0.00002f}},\n    {{1.02087f, 0.02644f, -0.05861f}, {-0.19607f, 0.19652f, 0.96070f}},\n    {{1.03575f, 0.03890f, -0.06011f}, {-0.20746f, 0.71342f, 0.66932f}},\n    {{1.02440f, 0.04406f, -0.07590f}, {-0.00001f, 1.00000f, -0.00001f}},\n    {{1.03422f, 0.02644f, -0.05518f}, {-0.29029f, 0.19648f, 0.93655f}},\n    {{1.04944f, 0.03890f, -0.05512f}, {-0.27070f, 0.71314f, 0.64665f}},\n    {{1.03944f, 0.04406f, -0.07203f}, {-0.00002f, 1.00000f, -0.00000f}},\n    {{1.04745f, 0.02644f, -0.05035f}, {-0.37863f, 0.19641f, 0.90447f}},\n    {{1.06299f, 0.03890f, -0.04868f}, {-0.32857f, 0.71277f, 0.61968f}},\n    {{1.05426f, 0.04406f, -0.06663f}, {0.00009f, 1.00000f, 0.00003f}},\n    {{1.06057f, 0.02644f, -0.04412f}, {-0.45933f, 0.19632f, 0.86630f}},\n    {{1.08638f, 0.03890f, -0.03493f}, {0.33517f, 0.80084f, 0.49630f}},\n    {{1.06884f, 0.04406f, -0.05971f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{1.09309f, 0.02644f, -0.02499f}, {-0.50191f, 0.14138f, 0.85328f}},\n    {{1.07667f, 0.03890f, -0.09965f}, {0.59159f, 0.68351f, -0.42759f}},\n    {{1.07018f, 0.04406f, -0.05892f}, {-0.00001f, 1.00000f, -0.00001f}},\n    {{1.08138f, 0.02644f, -0.10305f}, {0.79340f, 0.20413f, -0.57346f}},\n    {{1.09309f, 0.02644f, -0.02499f}, {0.97900f, 0.14138f, -0.14685f}},\n    {{1.05949f, 0.03890f, -0.10833f}, {0.28861f, 0.70126f, -0.65188f}},\n    {{1.06530f, 0.04406f, -0.09143f}, {0.00003f, 1.00000f, 0.00000f}},\n    {{1.06159f, 0.02644f, -0.11306f}, {0.39714f, 0.19411f, -0.89700f}},\n    {{1.04340f, 0.03890f, -0.11449f}, {0.22279f, 0.70164f, -0.67681f}},\n    {{1.05444f, 0.04406f, -0.09692f}, {0.00003f, 1.00000f, -0.00002f}},\n    {{1.04502f, 0.02644f, -0.11940f}, {0.30672f, 0.19416f, -0.93178f}},\n    {{1.02618f, 0.03890f, -0.11926f}, {0.16009f, 0.70207f, -0.69388f}},\n    {{1.03950f, 0.04406f, -0.10264f}, {-0.00013f, 1.00000f, -0.00004f}},\n    {{1.02734f, 0.02644f, -0.12430f}, {0.22053f, 0.19423f, -0.95585f}},\n    {{1.00783f, 0.03890f, -0.12266f}, {0.10181f, 0.70252f, -0.70435f}},\n    {{1.02338f, 0.04406f, -0.10711f}, {-0.00006f, 1.00000f, 0.00000f}},\n    {{1.00857f, 0.02644f, -0.12777f}, {0.14033f, 0.19429f, -0.97085f}},\n    {{0.98836f, 0.03890f, -0.12469f}, {0.04860f, 0.70296f, -0.70957f}},\n    {{1.00605f, 0.04406f, -0.11032f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{0.98872f, 0.02644f, -0.12985f}, {0.06703f, 0.19436f, -0.97864f}},\n    {{0.96772f, 0.03890f, -0.12537f}, {-0.00746f, 0.70211f, -0.71203f}},\n    {{0.98751f, 0.04406f, -0.11225f}, {0.00002f, 1.00000f, -0.00002f}},\n    {{0.96766f, 0.02644f, -0.13054f}, {-0.01028f, 0.19423f, -0.98090f}},\n    {{0.94761f, 0.03890f, -0.12429f}, {-0.08174f, 0.70022f, -0.70923f}},\n    {{0.96785f, 0.04406f, -0.11290f}, {0.00010f, 1.00000f, 0.00001f}},\n    {{0.94702f, 0.02644f, -0.12943f}, {-0.11231f, 0.19398f, -0.97456f}},\n    {{0.92914f, 0.03890f, -0.12101f}, {-0.17467f, 0.69919f, -0.69327f}},\n    {{0.94904f, 0.04406f, -0.11189f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{0.92788f, 0.02644f, -0.12603f}, {-0.23967f, 0.19385f, -0.95130f}},\n    {{0.91239f, 0.03890f, -0.11550f}, {-0.27753f, 0.69827f, -0.65984f}},\n    {{0.93219f, 0.04406f, -0.10890f}, {0.00003f, 1.00000f, 0.00002f}},\n    {{0.91038f, 0.02644f, -0.12027f}, {-0.38035f, 0.19376f, -0.90432f}},\n    {{0.89739f, 0.03890f, -0.10772f}, {-0.38358f, 0.69766f, -0.60510f}},\n    {{0.91723f, 0.04406f, -0.10397f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{0.89462f, 0.02644f, -0.11210f}, {-0.52526f, 0.19370f, -0.82860f}},\n    {{0.88423f, 0.03890f, -0.09769f}, {-0.48304f, 0.69751f, -0.52930f}},\n    {{0.90409f, 0.04406f, -0.09716f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{0.88074f, 0.02644f, -0.10151f}, {-0.66132f, 0.19369f, -0.72466f}},\n    {{0.87297f, 0.03890f, -0.08542f}, {-0.56756f, 0.69766f, -0.43720f}},\n    {{0.89267f, 0.04406f, -0.08844f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{0.86887f, 0.02644f, -0.08858f}, {-0.77720f, 0.19371f, -0.59870f}},\n    {{0.86384f, 0.03890f, -0.07117f}, {-0.63347f, 0.69787f, -0.33421f}},\n    {{0.88288f, 0.04406f, -0.07779f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{0.85926f, 0.02644f, -0.07359f}, {-0.86770f, 0.19372f, -0.45779f}},\n    {{0.85706f, 0.03890f, -0.05518f}, {-0.67841f, 0.69855f, -0.22757f}},\n    {{0.87490f, 0.04406f, -0.06534f}, {0.00003f, 1.00000f, -0.00001f}},\n    {{0.85215f, 0.02644f, -0.05683f}, {-0.93011f, 0.19379f, -0.31200f}},\n    {{0.85262f, 0.03890f, -0.03752f}, {-0.70336f, 0.69948f, -0.12655f}},\n    {{0.86891f, 0.04406f, -0.05121f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{0.84753f, 0.02644f, -0.03844f}, {-0.96552f, 0.19389f, -0.17371f}},\n    {{0.85050f, 0.03890f, -0.01824f}, {-0.71272f, 0.70049f, -0.03669f}},\n    {{0.86492f, 0.04406f, -0.03531f}, {-0.00001f, 1.00000f, -0.00002f}},\n    {{0.84533f, 0.02644f, -0.01851f}, {-0.97970f, 0.19401f, -0.05043f}},\n    {{0.85064f, 0.03890f, 0.00266f}, {-0.71158f, 0.70146f, 0.04011f}},\n    {{0.86296f, 0.04406f, -0.01760f}, {-0.00002f, 1.00000f, -0.00002f}},\n    {{0.84548f, 0.02644f, 0.00295f}, {-0.97942f, 0.19414f, 0.05521f}},\n    {{0.85303f, 0.03890f, 0.02520f}, {-0.70419f, 0.70178f, 0.10783f}},\n    {{0.86310f, 0.04406f, 0.00195f}, {0.00002f, 1.00000f, -0.00002f}},\n    {{0.84792f, 0.02644f, 0.02598f}, {-0.96966f, 0.19418f, 0.14849f}},\n    {{0.85735f, 0.03890f, 0.04667f}, {-0.69074f, 0.70110f, 0.17701f}},\n    {{0.86536f, 0.04406f, 0.02331f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{0.85234f, 0.02644f, 0.04795f}, {-0.95028f, 0.19409f, 0.24352f}},\n    {{0.86366f, 0.03890f, 0.06684f}, {-0.66778f, 0.70072f, 0.25112f}},\n    {{0.85882f, 0.02644f, 0.06866f}, {-0.91822f, 0.19404f, 0.34529f}},\n    {{0.87199f, 0.03890f, 0.08569f}, {-0.63479f, 0.70045f, 0.32619f}},\n    {{0.86739f, 0.02643f, 0.08805f}, {-0.87254f, 0.19400f, 0.44836f}},\n    {{0.88232f, 0.03890f, 0.10319f}, {-0.59187f, 0.70035f, 0.39900f}},\n    {{0.88309f, 0.04406f, 0.07999f}, {0.00005f, 1.00000f, 0.00008f}},\n    {{0.87803f, 0.02643f, 0.10608f}, {-0.81343f, 0.19399f, 0.54836f}},\n    {{0.89465f, 0.03890f, 0.11931f}, {-0.54036f, 0.70042f, 0.46628f}},\n    {{0.89267f, 0.04406f, 0.09621f}, {0.00001f, 1.00000f, -0.00003f}},\n    {{0.89074f, 0.02643f, 0.12269f}, {-0.74271f, 0.19400f, 0.64089f}},\n    {{0.90896f, 0.03890f, 0.13403f}, {-0.48305f, 0.70074f, 0.52500f}},\n    {{0.90410f, 0.04406f, 0.11115f}, {-0.00000f, 1.00000f, -0.00002f}},\n    {{0.90545f, 0.02643f, 0.13784f}, {-0.66423f, 0.19404f, 0.72191f}},\n    {{0.92462f, 0.03890f, 0.14690f}, {-0.42021f, 0.70051f, 0.57681f}},\n    {{0.91741f, 0.04406f, 0.12485f}, {0.00005f, 1.00000f, 0.00003f}},\n    {{0.92157f, 0.02643f, 0.15108f}, {-0.57764f, 0.19401f, 0.79290f}},\n    {{0.94104f, 0.03890f, 0.15746f}, {-0.34805f, 0.70009f, 0.62349f}},\n    {{0.93197f, 0.04406f, 0.13681f}, {-0.00000f, 1.00000f, -0.00003f}},\n    {{0.93852f, 0.02643f, 0.16198f}, {-0.47816f, 0.19396f, 0.85659f}},\n    {{0.95823f, 0.03890f, 0.16570f}, {-0.26637f, 0.69984f, 0.66278f}},\n    {{0.94713f, 0.04406f, 0.14656f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{0.95630f, 0.02643f, 0.17050f}, {-0.36583f, 0.19393f, 0.91025f}},\n    {{0.97616f, 0.03890f, 0.17159f}, {-0.17837f, 0.69980f, 0.69171f}},\n    {{0.96289f, 0.04406f, 0.15411f}, {-0.00002f, 1.00000f, 0.00000f}},\n    {{0.97487f, 0.02643f, 0.17660f}, {-0.24496f, 0.19392f, 0.94994f}},\n    {{0.99479f, 0.03890f, 0.17512f}, {-0.08835f, 0.69999f, 0.70867f}},\n    {{0.97928f, 0.04406f, 0.15950f}, {-0.00001f, 1.00000f, -0.00003f}},\n    {{0.99416f, 0.02643f, 0.18025f}, {-0.12137f, 0.19395f, 0.97348f}},\n    {{1.01410f, 0.03890f, 0.17630f}, {-0.00167f, 0.70049f, 0.71366f}},\n    {{0.99634f, 0.04406f, 0.16273f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{1.01409f, 0.02643f, 0.18147f}, {-0.00229f, 0.19401f, 0.98100f}},\n    {{1.03288f, 0.03890f, 0.17524f}, {0.08559f, 0.69990f, 0.70909f}},\n    {{1.01413f, 0.04406f, 0.16381f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{1.03350f, 0.02643f, 0.18038f}, {0.11756f, 0.19394f, 0.97394f}},\n    {{1.05001f, 0.03890f, 0.17205f}, {0.18334f, 0.69879f, 0.69143f}},\n    {{1.03139f, 0.04406f, 0.16284f}, {-0.00006f, 1.00000f, -0.00001f}},\n    {{1.05134f, 0.02643f, 0.17706f}, {0.25145f, 0.19381f, 0.94827f}},\n    {{1.06548f, 0.03890f, 0.16668f}, {0.29151f, 0.69782f, 0.65427f}},\n    {{1.04681f, 0.04406f, 0.15997f}, {-0.00001f, 1.00000f, 0.00002f}},\n    {{1.06758f, 0.02643f, 0.17141f}, {0.39927f, 0.19372f, 0.89613f}},\n    {{1.07922f, 0.03890f, 0.15910f}, {0.40197f, 0.69721f, 0.59356f}},\n    {{1.06039f, 0.04406f, 0.15526f}, {-0.00002f, 1.00000f, 0.00001f}},\n    {{1.08213f, 0.02643f, 0.16339f}, {0.55011f, 0.19367f, 0.81232f}},\n    {{1.09117f, 0.03890f, 0.14931f}, {0.50335f, 0.69715f, 0.51050f}},\n    {{1.07221f, 0.04406f, 0.14874f}, {0.00007f, 1.00000f, -0.00007f}},\n    {{1.09481f, 0.02643f, 0.15300f}, {0.68881f, 0.19366f, 0.69859f}},\n    {{1.10123f, 0.03890f, 0.13738f}, {0.58541f, 0.69769f, 0.41294f}},\n    {{1.08238f, 0.04406f, 0.14040f}, {0.00008f, 1.00000f, -0.00005f}},\n    {{1.10546f, 0.02643f, 0.14037f}, {0.80169f, 0.19371f, 0.56549f}},\n    {{1.10927f, 0.03890f, 0.12360f}, {0.64528f, 0.69826f, 0.30991f}},\n    {{1.09101f, 0.04406f, 0.13017f}, {0.00001f, 1.00000f, 0.00003f}},\n    {{1.11393f, 0.02643f, 0.12584f}, {0.88434f, 0.19376f, 0.42473f}},\n    {{1.11518f, 0.03890f, 0.10824f}, {0.68433f, 0.69900f, 0.20757f}},\n    {{1.09800f, 0.04406f, 0.11819f}, {-0.00001f, 1.00000f, 0.00001f}},\n    {{1.12013f, 0.02643f, 0.10975f}, {0.93880f, 0.19383f, 0.28476f}},\n    {{1.11898f, 0.03890f, 0.09136f}, {0.70535f, 0.69993f, 0.11219f}},\n    {{1.10322f, 0.04406f, 0.10462f}, {0.00000f, 1.00000f, 0.00002f}},\n    {{1.12409f, 0.02643f, 0.09217f}, {0.96883f, 0.19394f, 0.15410f}},\n    {{1.12071f, 0.03890f, 0.07297f}, {0.71273f, 0.70088f, 0.02795f}},\n    {{1.12588f, 0.02644f, 0.07317f}, {0.98024f, 0.19406f, 0.03844f}},\n    {{1.12040f, 0.03890f, 0.05309f}, {0.71104f, 0.70178f, -0.04401f}},\n    {{1.12556f, 0.02644f, 0.05277f}, {0.97909f, 0.19419f, -0.06060f}},\n    {{1.10795f, 0.04406f, 0.05386f}, {0.00001f, 1.00000f, 0.00006f}},\n    {{1.11821f, -0.02643f, -0.00220f}, {0.63569f, -0.22588f, -0.73816f}},\n    {{1.12322f, -0.02643f, 0.03116f}, {0.97279f, -0.19464f, -0.12571f}},\n    {{0.92958f, -0.02643f, -0.00220f}, {0.65251f, -0.28693f, -0.70136f}},\n    {{0.92944f, -0.02643f, -0.00415f}, {0.98033f, -0.19671f, -0.01583f}},\n    {{0.92984f, -0.02643f, -0.01424f}, {0.97493f, -0.19705f, 0.10334f}},\n    {{0.93138f, -0.02643f, -0.02315f}, {0.95060f, -0.19741f, 0.23955f}},\n    {{0.93399f, -0.02643f, -0.03097f}, {0.90067f, -0.19772f, 0.38691f}},\n    {{0.93763f, -0.02643f, -0.03780f}, {0.82172f, -0.19788f, 0.53444f}},\n    {{0.94233f, -0.02643f, -0.04381f}, {0.71717f, -0.19782f, 0.66823f}},\n    {{0.94807f, -0.02643f, -0.04899f}, {0.59438f, -0.19771f, 0.77950f}},\n    {{0.95480f, -0.02643f, -0.05329f}, {0.46139f, -0.19751f, 0.86493f}},\n    {{0.96266f, -0.02643f, -0.05672f}, {0.32863f, -0.19721f, 0.92364f}},\n    {{0.97174f, -0.02643f, -0.05925f}, {0.20515f, -0.19688f, 0.95872f}},\n    {{0.98208f, -0.02643f, -0.06082f}, {0.09580f, -0.19658f, 0.97580f}},\n    {{0.99367f, -0.02643f, -0.06135f}, {-0.00206f, -0.19644f, 0.98051f}},\n    {{1.00737f, -0.02643f, -0.06066f}, {-0.09845f, -0.19652f, 0.97554f}},\n    {{1.02087f, -0.02643f, -0.05861f}, {-0.19607f, -0.19652f, 0.96070f}},\n    {{1.03422f, -0.02643f, -0.05518f}, {-0.29029f, -0.19648f, 0.93655f}},\n    {{1.04745f, -0.02643f, -0.05035f}, {-0.37863f, -0.19641f, 0.90447f}},\n    {{1.06057f, -0.02643f, -0.04412f}, {-0.45933f, -0.19632f, 0.86630f}},\n    {{1.09309f, -0.02643f, -0.02499f}, {-0.50191f, -0.14139f, 0.85328f}},\n    {{1.08138f, -0.02643f, -0.10305f}, {0.79340f, -0.20413f, -0.57346f}},\n    {{1.09309f, -0.02643f, -0.02499f}, {0.97900f, -0.14138f, -0.14685f}},\n    {{1.06159f, -0.02643f, -0.11306f}, {0.39714f, -0.19411f, -0.89700f}},\n    {{1.04502f, -0.02643f, -0.11940f}, {0.30672f, -0.19416f, -0.93178f}},\n    {{1.02734f, -0.02643f, -0.12430f}, {0.22053f, -0.19423f, -0.95585f}},\n    {{1.00857f, -0.02643f, -0.12777f}, {0.14033f, -0.19429f, -0.97085f}},\n    {{0.98872f, -0.02643f, -0.12985f}, {0.06703f, -0.19436f, -0.97864f}},\n    {{0.96766f, -0.02643f, -0.13054f}, {-0.01028f, -0.19423f, -0.98090f}},\n    {{0.94702f, -0.02643f, -0.12943f}, {-0.11231f, -0.19397f, -0.97456f}},\n    {{0.92788f, -0.02643f, -0.12603f}, {-0.23968f, -0.19385f, -0.95130f}},\n    {{0.91038f, -0.02643f, -0.12027f}, {-0.38035f, -0.19376f, -0.90432f}},\n    {{0.89462f, -0.02643f, -0.11210f}, {-0.52526f, -0.19370f, -0.82860f}},\n    {{0.88074f, -0.02643f, -0.10151f}, {-0.66132f, -0.19369f, -0.72466f}},\n    {{0.86887f, -0.02643f, -0.08858f}, {-0.77720f, -0.19371f, -0.59870f}},\n    {{0.85926f, -0.02643f, -0.07359f}, {-0.86770f, -0.19372f, -0.45779f}},\n    {{0.85215f, -0.02643f, -0.05683f}, {-0.93011f, -0.19379f, -0.31200f}},\n    {{0.84753f, -0.02643f, -0.03844f}, {-0.96552f, -0.19389f, -0.17372f}},\n    {{0.84533f, -0.02643f, -0.01851f}, {-0.97970f, -0.19401f, -0.05043f}},\n    {{0.84548f, -0.02643f, 0.00295f}, {-0.97942f, -0.19414f, 0.05521f}},\n    {{0.84792f, -0.02643f, 0.02598f}, {-0.96966f, -0.19418f, 0.14849f}},\n    {{0.85234f, -0.02643f, 0.04795f}, {-0.95028f, -0.19409f, 0.24352f}},\n    {{0.85882f, -0.02643f, 0.06866f}, {-0.91822f, -0.19404f, 0.34529f}},\n    {{0.86739f, -0.02643f, 0.08805f}, {-0.87254f, -0.19401f, 0.44836f}},\n    {{0.87803f, -0.02643f, 0.10608f}, {-0.81343f, -0.19399f, 0.54836f}},\n    {{0.89074f, -0.02643f, 0.12269f}, {-0.74271f, -0.19400f, 0.64089f}},\n    {{0.90545f, -0.02643f, 0.13784f}, {-0.66423f, -0.19404f, 0.72191f}},\n    {{0.92157f, -0.02643f, 0.15108f}, {-0.57764f, -0.19401f, 0.79290f}},\n    {{0.93852f, -0.02643f, 0.16198f}, {-0.47816f, -0.19396f, 0.85659f}},\n    {{0.95630f, -0.02643f, 0.17050f}, {-0.36583f, -0.19393f, 0.91025f}},\n    {{0.97487f, -0.02643f, 0.17660f}, {-0.24496f, -0.19392f, 0.94994f}},\n    {{0.99416f, -0.02643f, 0.18025f}, {-0.12137f, -0.19395f, 0.97348f}},\n    {{1.01409f, -0.02643f, 0.18147f}, {-0.00229f, -0.19401f, 0.98100f}},\n    {{1.03350f, -0.02643f, 0.18038f}, {0.11756f, -0.19394f, 0.97394f}},\n    {{1.05134f, -0.02643f, 0.17706f}, {0.25145f, -0.19381f, 0.94827f}},\n    {{1.06758f, -0.02643f, 0.17141f}, {0.39927f, -0.19372f, 0.89613f}},\n    {{1.08213f, -0.02643f, 0.16339f}, {0.55011f, -0.19367f, 0.81232f}},\n    {{1.09481f, -0.02643f, 0.15300f}, {0.68881f, -0.19366f, 0.69859f}},\n    {{1.10546f, -0.02643f, 0.14037f}, {0.80169f, -0.19371f, 0.56549f}},\n    {{1.11393f, -0.02643f, 0.12584f}, {0.88435f, -0.19376f, 0.42472f}},\n    {{1.12013f, -0.02643f, 0.10975f}, {0.93880f, -0.19383f, 0.28476f}},\n    {{1.12409f, -0.02643f, 0.09217f}, {0.96883f, -0.19394f, 0.15410f}},\n    {{1.12588f, -0.02643f, 0.07317f}, {0.98024f, -0.19406f, 0.03844f}},\n    {{1.12556f, -0.02643f, 0.05277f}, {0.97909f, -0.19418f, -0.06060f}},\n    {{1.11377f, -0.03890f, 0.00296f}, {0.46580f, -0.70034f, -0.54088f}},\n    {{1.11809f, -0.03890f, 0.03182f}, {0.70367f, -0.70468f, -0.09093f}},\n    {{1.10303f, -0.04406f, 0.01542f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{1.10573f, -0.04406f, 0.03342f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{0.92478f, -0.03890f, 0.00296f}, {0.33749f, -0.86863f, -0.36274f}},\n    {{0.91318f, -0.04406f, 0.01542f}, {-0.00000f, -1.00000f, -0.00001f}},\n    {{0.92427f, -0.03890f, -0.00407f}, {0.69967f, -0.71438f, -0.01129f}},\n    {{0.91179f, -0.04406f, -0.00387f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{0.92470f, -0.03890f, -0.01478f}, {0.69447f, -0.71574f, 0.07361f}},\n    {{0.91228f, -0.04406f, -0.01610f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.92636f, -0.03890f, -0.02442f}, {0.67581f, -0.71713f, 0.17030f}},\n    {{0.91425f, -0.04406f, -0.02747f}, {0.00002f, -1.00000f, -0.00000f}},\n    {{0.92923f, -0.03890f, -0.03301f}, {0.63927f, -0.71827f, 0.27462f}},\n    {{0.91774f, -0.04406f, -0.03795f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{0.93329f, -0.03890f, -0.04063f}, {0.58274f, -0.71887f, 0.37901f}},\n    {{0.92280f, -0.04406f, -0.04745f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{0.93854f, -0.03890f, -0.04734f}, {0.50876f, -0.71864f, 0.47405f}},\n    {{0.92939f, -0.04406f, -0.05587f}, {0.00002f, -1.00000f, 0.00002f}},\n    {{0.94492f, -0.03890f, -0.05311f}, {0.42189f, -0.71826f, 0.55328f}},\n    {{0.93734f, -0.04406f, -0.06305f}, {0.00001f, -1.00000f, 0.00002f}},\n    {{0.95237f, -0.03890f, -0.05786f}, {0.32784f, -0.71751f, 0.61458f}},\n    {{0.94648f, -0.04406f, -0.06889f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{0.96093f, -0.03890f, -0.06160f}, {0.23389f, -0.71636f, 0.65737f}},\n    {{0.95674f, -0.04406f, -0.07337f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{0.97066f, -0.03890f, -0.06431f}, {0.14627f, -0.71507f, 0.68358f}},\n    {{0.96804f, -0.04406f, -0.07652f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{0.98158f, -0.03890f, -0.06596f}, {0.06842f, -0.71383f, 0.69697f}},\n    {{0.98036f, -0.04406f, -0.07838f}, {0.00000f, -1.00000f, 0.00001f}},\n    {{0.99368f, -0.03890f, -0.06652f}, {-0.00148f, -0.71328f, 0.70088f}},\n    {{0.99371f, -0.04406f, -0.07899f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{1.00789f, -0.03890f, -0.06580f}, {-0.07034f, -0.71363f, 0.69698f}},\n    {{1.00914f, -0.04406f, -0.07822f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{1.02190f, -0.03890f, -0.06367f}, {-0.14009f, -0.71359f, 0.68641f}},\n    {{1.02440f, -0.04406f, -0.07590f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{1.03575f, -0.03890f, -0.06011f}, {-0.20746f, -0.71342f, 0.66932f}},\n    {{1.03944f, -0.04406f, -0.07203f}, {0.00000f, -1.00000f, -0.00003f}},\n    {{1.04944f, -0.03890f, -0.05512f}, {-0.27070f, -0.71314f, 0.64665f}},\n    {{1.05426f, -0.04406f, -0.06663f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{1.06299f, -0.03890f, -0.04868f}, {-0.32857f, -0.71277f, 0.61968f}},\n    {{1.06884f, -0.04406f, -0.05971f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{1.08638f, -0.03890f, -0.03493f}, {0.33517f, -0.80085f, 0.49629f}},\n    {{1.07018f, -0.04406f, -0.05892f}, {0.00002f, -1.00000f, 0.00002f}},\n    {{1.07667f, -0.03890f, -0.09965f}, {0.59159f, -0.68351f, -0.42759f}},\n    {{1.06530f, -0.04406f, -0.09143f}, {0.00003f, -1.00000f, 0.00000f}},\n    {{1.05949f, -0.03890f, -0.10833f}, {0.28861f, -0.70126f, -0.65188f}},\n    {{1.05444f, -0.04406f, -0.09692f}, {-0.00002f, -1.00000f, 0.00002f}},\n    {{1.04340f, -0.03890f, -0.11449f}, {0.22279f, -0.70164f, -0.67681f}},\n    {{1.03950f, -0.04406f, -0.10264f}, {-0.00001f, -1.00000f, 0.00000f}},\n    {{1.02618f, -0.03890f, -0.11926f}, {0.16009f, -0.70207f, -0.69388f}},\n    {{1.02338f, -0.04406f, -0.10711f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{1.00783f, -0.03890f, -0.12266f}, {0.10181f, -0.70252f, -0.70435f}},\n    {{1.00605f, -0.04406f, -0.11032f}, {0.00000f, -1.00000f, -0.00002f}},\n    {{0.98836f, -0.03890f, -0.12469f}, {0.04860f, -0.70296f, -0.70957f}},\n    {{0.98751f, -0.04406f, -0.11225f}, {0.00002f, -1.00000f, 0.00001f}},\n    {{0.96772f, -0.03890f, -0.12537f}, {-0.00746f, -0.70211f, -0.71203f}},\n    {{0.96785f, -0.04406f, -0.11290f}, {0.00001f, -1.00000f, 0.00002f}},\n    {{0.94761f, -0.03890f, -0.12429f}, {-0.08174f, -0.70022f, -0.70923f}},\n    {{0.94904f, -0.04406f, -0.11189f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{0.92914f, -0.03890f, -0.12101f}, {-0.17467f, -0.69919f, -0.69327f}},\n    {{0.93219f, -0.04406f, -0.10890f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{0.91239f, -0.03890f, -0.11550f}, {-0.27753f, -0.69827f, -0.65984f}},\n    {{0.91723f, -0.04406f, -0.10397f}, {0.00000f, -1.00000f, -0.00003f}},\n    {{0.89739f, -0.03890f, -0.10772f}, {-0.38358f, -0.69766f, -0.60510f}},\n    {{0.90409f, -0.04406f, -0.09716f}, {0.00000f, -1.00000f, 0.00003f}},\n    {{0.88423f, -0.03890f, -0.09769f}, {-0.48304f, -0.69750f, -0.52930f}},\n    {{0.89267f, -0.04406f, -0.08844f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{0.87297f, -0.03890f, -0.08542f}, {-0.56756f, -0.69766f, -0.43720f}},\n    {{0.88288f, -0.04406f, -0.07779f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.86384f, -0.03890f, -0.07117f}, {-0.63346f, -0.69787f, -0.33421f}},\n    {{0.87490f, -0.04406f, -0.06534f}, {0.00001f, -1.00000f, -0.00001f}},\n    {{0.85706f, -0.03890f, -0.05518f}, {-0.67841f, -0.69855f, -0.22757f}},\n    {{0.86891f, -0.04406f, -0.05121f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.85262f, -0.03890f, -0.03752f}, {-0.70336f, -0.69948f, -0.12655f}},\n    {{0.86492f, -0.04406f, -0.03531f}, {-0.00002f, -1.00000f, -0.00000f}},\n    {{0.85050f, -0.03890f, -0.01824f}, {-0.71272f, -0.70049f, -0.03668f}},\n    {{0.86296f, -0.04406f, -0.01760f}, {-0.00002f, -1.00000f, -0.00000f}},\n    {{0.85064f, -0.03890f, 0.00266f}, {-0.71158f, -0.70146f, 0.04011f}},\n    {{0.86310f, -0.04406f, 0.00195f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{0.85303f, -0.03890f, 0.02520f}, {-0.70419f, -0.70178f, 0.10784f}},\n    {{0.86536f, -0.04406f, 0.02331f}, {0.00000f, -1.00000f, -0.00001f}},\n    {{0.85735f, -0.03890f, 0.04667f}, {-0.69074f, -0.70111f, 0.17701f}},\n    {{0.86366f, -0.03890f, 0.06684f}, {-0.66778f, -0.70072f, 0.25112f}},\n    {{0.87534f, -0.04406f, 0.06245f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{0.87199f, -0.03890f, 0.08569f}, {-0.63479f, -0.70045f, 0.32619f}},\n    {{0.88309f, -0.04406f, 0.07999f}, {-0.00001f, -1.00000f, 0.00002f}},\n    {{0.88232f, -0.03890f, 0.10319f}, {-0.59187f, -0.70035f, 0.39900f}},\n    {{0.89267f, -0.04406f, 0.09621f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{0.89465f, -0.03890f, 0.11931f}, {-0.54036f, -0.70042f, 0.46628f}},\n    {{0.90410f, -0.04406f, 0.11115f}, {-0.00003f, -1.00000f, 0.00000f}},\n    {{0.90896f, -0.03890f, 0.13403f}, {-0.48305f, -0.70074f, 0.52500f}},\n    {{0.91741f, -0.04406f, 0.12485f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{0.92462f, -0.03890f, 0.14690f}, {-0.42021f, -0.70051f, 0.57681f}},\n    {{0.93197f, -0.04406f, 0.13681f}, {0.00000f, -1.00000f, 0.00003f}},\n    {{0.94104f, -0.03890f, 0.15746f}, {-0.34805f, -0.70009f, 0.62349f}},\n    {{0.94713f, -0.04406f, 0.14656f}, {0.00001f, -1.00000f, 0.00000f}},\n    {{0.95823f, -0.03890f, 0.16570f}, {-0.26637f, -0.69984f, 0.66278f}},\n    {{0.96289f, -0.04406f, 0.15411f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{0.97616f, -0.03890f, 0.17159f}, {-0.17837f, -0.69980f, 0.69171f}},\n    {{0.97928f, -0.04406f, 0.15950f}, {0.00000f, -1.00000f, 0.00002f}},\n    {{0.99479f, -0.03890f, 0.17512f}, {-0.08835f, -0.69998f, 0.70867f}},\n    {{0.99634f, -0.04406f, 0.16273f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{1.01410f, -0.03890f, 0.17630f}, {-0.00167f, -0.70049f, 0.71366f}},\n    {{1.01413f, -0.04406f, 0.16381f}, {-0.00002f, -1.00000f, -0.00002f}},\n    {{1.03288f, -0.03890f, 0.17524f}, {0.08559f, -0.69991f, 0.70909f}},\n    {{1.03139f, -0.04406f, 0.16284f}, {0.00000f, -1.00000f, 0.00002f}},\n    {{1.05001f, -0.03890f, 0.17205f}, {0.18334f, -0.69879f, 0.69143f}},\n    {{1.04681f, -0.04406f, 0.15997f}, {0.00001f, -1.00000f, -0.00000f}},\n    {{1.06548f, -0.03890f, 0.16668f}, {0.29151f, -0.69782f, 0.65427f}},\n    {{1.06039f, -0.04406f, 0.15526f}, {-0.00000f, -1.00000f, 0.00002f}},\n    {{1.07922f, -0.03890f, 0.15910f}, {0.40197f, -0.69721f, 0.59356f}},\n    {{1.07221f, -0.04406f, 0.14874f}, {-0.00000f, -1.00000f, -0.00000f}},\n    {{1.09117f, -0.03890f, 0.14931f}, {0.50336f, -0.69715f, 0.51050f}},\n    {{1.08238f, -0.04406f, 0.14040f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{1.10123f, -0.03890f, 0.13738f}, {0.58541f, -0.69769f, 0.41294f}},\n    {{1.09101f, -0.04406f, 0.13017f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{1.10927f, -0.03890f, 0.12360f}, {0.64528f, -0.69827f, 0.30991f}},\n    {{1.09800f, -0.04406f, 0.11819f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{1.11518f, -0.03890f, 0.10824f}, {0.68433f, -0.69900f, 0.20757f}},\n    {{1.10322f, -0.04406f, 0.10462f}, {-0.00001f, -1.00000f, -0.00001f}},\n    {{1.11898f, -0.03890f, 0.09136f}, {0.70535f, -0.69993f, 0.11219f}},\n    {{1.12071f, -0.03890f, 0.07297f}, {0.71273f, -0.70088f, 0.02795f}},\n    {{1.10824f, -0.04406f, 0.07248f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{1.12040f, -0.03890f, 0.05309f}, {0.71103f, -0.70178f, -0.04401f}},\n    {{1.10795f, -0.04406f, 0.05386f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{1.05012f, 0.03890f, 0.05827f}, {-0.33683f, 0.86452f, 0.37302f}},\n    {{0.91667f, 0.04406f, 0.04581f}, {0.00001f, 1.00000f, 0.00001f}},\n    {{0.93389f, 0.03890f, 0.05827f}, {0.31549f, 0.92105f, 0.22831f}},\n    {{1.04546f, 0.02644f, 0.06344f}, {-0.64279f, 0.28277f, 0.71194f}},\n    {{0.94103f, 0.02644f, 0.06344f}, {-0.51649f, 0.05825f, 0.85431f}},\n    {{1.05071f, 0.03890f, 0.06406f}, {-0.70019f, 0.71282f, 0.04018f}},\n    {{1.06137f, 0.04406f, 0.04581f}, {-0.00003f, 1.00000f, -0.00000f}},\n    {{1.04555f, 0.02644f, 0.06435f}, {-0.97892f, 0.19635f, 0.05622f}},\n    {{1.05083f, 0.03890f, 0.07358f}, {-0.69966f, 0.71393f, -0.02797f}},\n    {{1.06317f, 0.04406f, 0.06334f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{1.04567f, 0.02644f, 0.07337f}, {-0.97970f, 0.19660f, -0.03916f}},\n    {{1.05003f, 0.03890f, 0.08217f}, {-0.69060f, 0.71519f, -0.10756f}},\n    {{1.04492f, 0.02643f, 0.08138f}, {-0.96874f, 0.19691f, -0.15088f}},\n    {{1.04835f, 0.03890f, 0.08985f}, {-0.66897f, 0.71650f, -0.19776f}},\n    {{1.06237f, 0.04406f, 0.08410f}, {0.00001f, 1.00000f, -0.00005f}},\n    {{1.04339f, 0.02643f, 0.08838f}, {-0.94013f, 0.19724f, -0.27793f}},\n    {{1.04581f, 0.03890f, 0.09662f}, {-0.63076f, 0.71765f, -0.29517f}},\n    {{1.06033f, 0.04406f, 0.09339f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{1.04112f, 0.02643f, 0.09443f}, {-0.88788f, 0.19755f, -0.41550f}},\n    {{1.04244f, 0.03890f, 0.10256f}, {-0.57364f, 0.71842f, -0.39347f}},\n    {{1.05713f, 0.04406f, 0.10192f}, {0.00001f, 1.00000f, -0.00002f}},\n    {{1.03817f, 0.02643f, 0.09963f}, {-0.80836f, 0.19776f, -0.55447f}},\n    {{1.03832f, 0.03890f, 0.10759f}, {-0.49619f, 0.71921f, -0.48634f}},\n    {{1.05275f, 0.04406f, 0.10963f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{1.03462f, 0.02643f, 0.10396f}, {-0.70003f, 0.19797f, -0.68613f}},\n    {{1.03354f, 0.03890f, 0.11166f}, {-0.40048f, 0.71940f, -0.56752f}},\n    {{1.04726f, 0.04406f, 0.11634f}, {0.00001f, 1.00000f, -0.00001f}},\n    {{1.03055f, 0.02643f, 0.10743f}, {-0.56515f, 0.19802f, -0.80087f}},\n    {{1.02802f, 0.03890f, 0.11485f}, {-0.29408f, 0.71875f, -0.63001f}},\n    {{1.04075f, 0.04406f, 0.12189f}, {0.00000f, 1.00000f, -0.00002f}},\n    {{1.02583f, 0.02643f, 0.11015f}, {-0.41461f, 0.19784f, -0.88823f}},\n    {{1.02169f, 0.03890f, 0.11716f}, {-0.18718f, 0.71748f, -0.67096f}},\n    {{1.03331f, 0.04406f, 0.12618f}, {0.00002f, 1.00000f, -0.00000f}},\n    {{1.02030f, 0.02643f, 0.11217f}, {-0.26343f, 0.19751f, -0.94424f}},\n    {{1.01447f, 0.03890f, 0.11858f}, {-0.08823f, 0.71597f, -0.69254f}},\n    {{1.02505f, 0.04406f, 0.12920f}, {0.00002f, 1.00000f, 0.00000f}},\n    {{1.01381f, 0.02643f, 0.11345f}, {-0.12390f, 0.19711f, -0.97252f}},\n    {{1.00634f, 0.03890f, 0.11906f}, {0.00084f, 0.71501f, -0.69911f}},\n    {{1.01604f, 0.04406f, 0.13097f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{1.00635f, 0.02643f, 0.11389f}, {0.00118f, 0.19687f, -0.98043f}},\n    {{0.99812f, 0.03890f, 0.11855f}, {0.08757f, 0.71548f, -0.69312f}},\n    {{1.00633f, 0.04406f, 0.13155f}, {0.00002f, 1.00000f, 0.00002f}},\n    {{0.99877f, 0.02643f, 0.11342f}, {0.12288f, 0.19699f, -0.97268f}},\n    {{0.99021f, 0.03890f, 0.11703f}, {0.17597f, 0.71565f, -0.67593f}},\n    {{0.99656f, 0.04406f, 0.13094f}, {0.00002f, 1.00000f, -0.00002f}},\n    {{0.99151f, 0.02643f, 0.11203f}, {0.24699f, 0.19703f, -0.94878f}},\n    {{0.98257f, 0.03890f, 0.11450f}, {0.26166f, 0.71551f, -0.64774f}},\n    {{0.98706f, 0.04406f, 0.12912f}, {0.00001f, 1.00000f, 0.00001f}},\n    {{0.98450f, 0.02643f, 0.10971f}, {0.36722f, 0.19699f, -0.90904f}},\n    {{0.97517f, 0.03890f, 0.11095f}, {0.34078f, 0.71510f, -0.61033f}},\n    {{0.97789f, 0.04406f, 0.12608f}, {0.00002f, 1.00000f, -0.00001f}},\n    {{0.97769f, 0.02643f, 0.10643f}, {0.47797f, 0.19689f, -0.85603f}},\n    {{0.96799f, 0.03890f, 0.10634f}, {0.41061f, 0.71449f, -0.56648f}},\n    {{0.96908f, 0.04406f, 0.12185f}, {0.00001f, 1.00000f, 0.00002f}},\n    {{0.97102f, 0.02643f, 0.10216f}, {0.57541f, 0.19674f, -0.79385f}},\n    {{0.96102f, 0.03890f, 0.10066f}, {0.46985f, 0.71374f, -0.51943f}},\n    {{0.96066f, 0.04406f, 0.11645f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{0.96449f, 0.02643f, 0.09683f}, {0.65774f, 0.19655f, -0.72715f}},\n    {{0.95448f, 0.03890f, 0.09411f}, {0.52006f, 0.71353f, -0.46948f}},\n    {{0.95265f, 0.04406f, 0.10991f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{0.95832f, 0.02643f, 0.09064f}, {0.72781f, 0.19650f, -0.65703f}},\n    {{0.94860f, 0.03890f, 0.08690f}, {0.56392f, 0.71342f, -0.41596f}},\n    {{0.94522f, 0.04406f, 0.10247f}, {-0.00005f, 1.00000f, -0.00003f}},\n    {{0.95276f, 0.02643f, 0.08384f}, {0.78907f, 0.19647f, -0.58203f}},\n    {{0.94338f, 0.03890f, 0.07904f}, {0.60151f, 0.71319f, -0.35992f}},\n    {{0.93856f, 0.04406f, 0.09431f}, {0.00001f, 1.00000f, 0.00001f}},\n    {{0.94781f, 0.02644f, 0.07639f}, {0.84140f, 0.19642f, -0.50345f}},\n    {{0.93880f, 0.03890f, 0.07051f}, {0.63240f, 0.71287f, -0.30311f}},\n    {{0.93267f, 0.04406f, 0.08545f}, {-0.00001f, 1.00000f, 0.00003f}},\n    {{0.94346f, 0.02644f, 0.06827f}, {0.88422f, 0.19635f, -0.42380f}},\n    {{0.93488f, 0.03890f, 0.06129f}, {0.67006f, 0.69890f, -0.25014f}},\n    {{0.92756f, 0.04406f, 0.07590f}, {0.00002f, 1.00000f, 0.00001f}},\n    {{0.93972f, 0.02644f, 0.05947f}, {0.90241f, 0.19609f, -0.38368f}},\n    {{0.93488f, 0.03890f, 0.06129f}, {-0.87759f, -0.38269f, 0.28876f}},\n    {{0.93972f, 0.02644f, 0.05947f}, {-0.93184f, -0.19409f, 0.30661f}},\n    {{1.04546f, -0.02643f, 0.06344f}, {-0.64281f, -0.28275f, 0.71193f}},\n    {{0.94103f, -0.02643f, 0.06344f}, {-0.49482f, -0.07538f, 0.86572f}},\n    {{1.04555f, -0.02643f, 0.06435f}, {-0.97892f, -0.19633f, 0.05622f}},\n    {{1.04567f, -0.02643f, 0.07337f}, {-0.97970f, -0.19660f, -0.03916f}},\n    {{1.04492f, -0.02643f, 0.08138f}, {-0.96874f, -0.19691f, -0.15088f}},\n    {{1.04339f, -0.02643f, 0.08838f}, {-0.94013f, -0.19724f, -0.27792f}},\n    {{1.04112f, -0.02643f, 0.09443f}, {-0.88788f, -0.19755f, -0.41550f}},\n    {{1.03817f, -0.02643f, 0.09963f}, {-0.80836f, -0.19776f, -0.55447f}},\n    {{1.03462f, -0.02643f, 0.10396f}, {-0.70003f, -0.19798f, -0.68613f}},\n    {{1.03055f, -0.02643f, 0.10743f}, {-0.56515f, -0.19803f, -0.80087f}},\n    {{1.02583f, -0.02643f, 0.11015f}, {-0.41461f, -0.19785f, -0.88823f}},\n    {{1.02030f, -0.02643f, 0.11217f}, {-0.26343f, -0.19750f, -0.94425f}},\n    {{1.01381f, -0.02643f, 0.11345f}, {-0.12390f, -0.19711f, -0.97252f}},\n    {{1.00635f, -0.02643f, 0.11389f}, {0.00118f, -0.19686f, -0.98043f}},\n    {{0.99877f, -0.02643f, 0.11342f}, {0.12288f, -0.19699f, -0.97267f}},\n    {{0.99151f, -0.02643f, 0.11203f}, {0.24699f, -0.19703f, -0.94878f}},\n    {{0.98450f, -0.02643f, 0.10971f}, {0.36722f, -0.19699f, -0.90904f}},\n    {{0.97769f, -0.02643f, 0.10643f}, {0.47797f, -0.19689f, -0.85603f}},\n    {{0.97102f, -0.02643f, 0.10216f}, {0.57541f, -0.19674f, -0.79385f}},\n    {{0.96449f, -0.02643f, 0.09683f}, {0.65774f, -0.19655f, -0.72715f}},\n    {{0.95832f, -0.02643f, 0.09064f}, {0.72781f, -0.19650f, -0.65702f}},\n    {{0.95276f, -0.02643f, 0.08384f}, {0.78907f, -0.19647f, -0.58203f}},\n    {{0.94781f, -0.02643f, 0.07639f}, {0.84140f, -0.19642f, -0.50345f}},\n    {{0.94346f, -0.02643f, 0.06827f}, {0.88422f, -0.19635f, -0.42380f}},\n    {{0.93972f, -0.02643f, 0.05947f}, {0.90198f, -0.20937f, -0.37762f}},\n    {{0.93972f, -0.02643f, 0.05947f}, {-0.92920f, 0.20760f, 0.30575f}},\n    {{1.05012f, -0.03890f, 0.05827f}, {-0.33683f, -0.86452f, 0.37302f}},\n    {{0.93389f, -0.03890f, 0.05827f}, {0.31549f, -0.92105f, 0.22831f}},\n    {{1.06137f, -0.04406f, 0.04581f}, {-0.00000f, -1.00000f, -0.00000f}},\n    {{1.05071f, -0.03890f, 0.06406f}, {-0.70019f, -0.71282f, 0.04018f}},\n    {{1.06317f, -0.04406f, 0.06334f}, {0.00003f, -1.00000f, 0.00000f}},\n    {{1.05083f, -0.03890f, 0.07358f}, {-0.69966f, -0.71393f, -0.02797f}},\n    {{1.05003f, -0.03890f, 0.08217f}, {-0.69060f, -0.71519f, -0.10756f}},\n    {{1.04835f, -0.03890f, 0.08985f}, {-0.66897f, -0.71650f, -0.19776f}},\n    {{1.06033f, -0.04406f, 0.09339f}, {-0.00002f, -1.00000f, 0.00000f}},\n    {{1.04581f, -0.03890f, 0.09662f}, {-0.63075f, -0.71765f, -0.29517f}},\n    {{1.05713f, -0.04406f, 0.10192f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{1.04244f, -0.03890f, 0.10256f}, {-0.57364f, -0.71841f, -0.39347f}},\n    {{1.05275f, -0.04406f, 0.10963f}, {0.00003f, -1.00000f, -0.00000f}},\n    {{1.03832f, -0.03890f, 0.10759f}, {-0.49620f, -0.71921f, -0.48634f}},\n    {{1.04726f, -0.04406f, 0.11634f}, {0.00003f, -1.00000f, 0.00001f}},\n    {{1.03354f, -0.03890f, 0.11166f}, {-0.40048f, -0.71940f, -0.56752f}},\n    {{1.04075f, -0.04406f, 0.12189f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{1.02802f, -0.03890f, 0.11485f}, {-0.29408f, -0.71875f, -0.63002f}},\n    {{1.03331f, -0.04406f, 0.12618f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{1.02169f, -0.03890f, 0.11716f}, {-0.18718f, -0.71748f, -0.67095f}},\n    {{1.02505f, -0.04406f, 0.12920f}, {-0.00001f, -1.00000f, -0.00000f}},\n    {{1.01447f, -0.03890f, 0.11858f}, {-0.08823f, -0.71597f, -0.69253f}},\n    {{1.01604f, -0.04406f, 0.13097f}, {0.00001f, -1.00000f, 0.00000f}},\n    {{1.00634f, -0.03890f, 0.11906f}, {0.00084f, -0.71502f, -0.69911f}},\n    {{1.00633f, -0.04406f, 0.13155f}, {0.00001f, -1.00000f, -0.00002f}},\n    {{0.99812f, -0.03890f, 0.11855f}, {0.08757f, -0.71548f, -0.69312f}},\n    {{0.99656f, -0.04406f, 0.13094f}, {-0.00000f, -1.00000f, 0.00001f}},\n    {{0.99021f, -0.03890f, 0.11703f}, {0.17597f, -0.71565f, -0.67593f}},\n    {{0.98706f, -0.04406f, 0.12912f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{0.98257f, -0.03890f, 0.11450f}, {0.26166f, -0.71551f, -0.64774f}},\n    {{0.97789f, -0.04406f, 0.12608f}, {0.00001f, -1.00000f, 0.00000f}},\n    {{0.97517f, -0.03890f, 0.11095f}, {0.34078f, -0.71510f, -0.61033f}},\n    {{0.96908f, -0.04406f, 0.12185f}, {0.00001f, -1.00000f, 0.00001f}},\n    {{0.96799f, -0.03890f, 0.10634f}, {0.41061f, -0.71449f, -0.56648f}},\n    {{0.96066f, -0.04406f, 0.11645f}, {0.00000f, -1.00000f, -0.00000f}},\n    {{0.96102f, -0.03890f, 0.10066f}, {0.46985f, -0.71374f, -0.51943f}},\n    {{0.95265f, -0.04406f, 0.10991f}, {0.00000f, -1.00000f, -0.00003f}},\n    {{0.95448f, -0.03890f, 0.09411f}, {0.52006f, -0.71353f, -0.46948f}},\n    {{0.94522f, -0.04406f, 0.10247f}, {0.00001f, -1.00000f, -0.00003f}},\n    {{0.94860f, -0.03890f, 0.08690f}, {0.56392f, -0.71342f, -0.41596f}},\n    {{0.93856f, -0.04406f, 0.09431f}, {-0.00001f, -1.00000f, 0.00001f}},\n    {{0.94338f, -0.03890f, 0.07904f}, {0.60151f, -0.71319f, -0.35992f}},\n    {{0.93267f, -0.04406f, 0.08545f}, {-0.00001f, -1.00000f, -0.00002f}},\n    {{0.93880f, -0.03890f, 0.07051f}, {0.63240f, -0.71287f, -0.30311f}},\n    {{0.92756f, -0.04406f, 0.07590f}, {0.00002f, -1.00000f, -0.00001f}},\n    {{0.93488f, -0.03890f, 0.06129f}, {0.65672f, -0.71248f, -0.24716f}},\n    {{0.44086f, 0.04406f, -0.06299f}, {0.00000f, 1.00000f, -0.00000f}},\n    {{0.64159f, 0.04406f, 0.03008f}, {-0.00002f, 1.00000f, -0.00001f}},\n    {{-0.11823f, 0.04406f, 0.22106f}, {0.00000f, 1.00000f, 0.00001f}},\n    {{0.18299f, 0.04406f, 0.22106f}, {-0.00000f, 1.00000f, -0.00002f}},\n    {{-0.01766f, 0.04406f, -0.03503f}, {-0.00001f, 1.00000f, -0.00000f}},\n    {{0.17675f, 0.03890f, 0.20860f}, {0.00001f, -0.72058f, 0.69337f}},\n    {{-0.13473f, 0.02643f, 0.20344f}, {-0.92189f, 0.38269f, -0.06063f}},\n    {{-0.00194f, 0.02644f, -0.01741f}, {0.91792f, 0.38268f, 0.10480f}},\n    {{0.17675f, -0.03890f, 0.20860f}, {0.00000f, 0.61814f, 0.78606f}},\n    {{0.16824f, -0.04406f, 0.22106f}, {-0.00002f, -1.00000f, 0.00001f}},\n    {{0.16734f, -0.03890f, 0.20860f}, {-0.55648f, -0.36135f, 0.74816f}},\n    {{0.17675f, -0.03890f, 0.20860f}, {0.00003f, 0.61813f, 0.78608f}},\n    {{-0.13247f, -0.04406f, 0.22106f}, {-0.00001f, -1.00000f, -0.00004f}},\n    {{-0.12115f, -0.03890f, 0.20495f}, {-0.92143f, 0.38269f, 0.06714f}},\n    {{-0.00558f, -0.04406f, -0.03503f}, {-0.00002f, -1.00000f, 0.00004f}},\n    {{0.42827f, -0.04406f, -0.06299f}, {0.00000f, -1.00000f, -0.00004f}},\n    {{0.64114f, -0.04406f, 0.02708f}, {-0.00003f, -1.00000f, -0.00004f}},\n    {{0.65388f, -0.04406f, 0.03008f}, {-0.00002f, -1.00000f, 0.00004f}},\n    {{0.94103f, 0.02644f, 0.06344f}, {0.87758f, 0.38269f, -0.28879f}},\n};\n\nGLushort indexList0[] = {\n    0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,\n    12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,\n    24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 32, 34,\n    35, 36, 30, 37, 30, 33, 38, 39, 35, 40, 35, 37,\n    41, 42, 38, 43, 38, 40, 44, 45, 41, 46, 41, 43,\n    47, 48, 44, 49, 44, 46, 50, 51, 47, 52, 47, 49,\n    53, 54, 50, 55, 50, 52, 56, 57, 53, 58, 53, 55,\n    59, 60, 56, 61, 56, 58, 62, 63, 59, 64, 59, 61,\n    65, 66, 62, 67, 62, 64, 68, 69, 65, 70, 65, 67,\n    71, 72, 68, 73, 68, 70, 74, 75, 71, 76, 71, 73,\n    77, 78, 74, 79, 74, 76, 80, 81, 77, 82, 77, 79,\n    83, 84, 80, 85, 80, 82, 86, 87, 83, 88, 83, 85,\n    89, 20, 86, 90, 86, 88, 91, 92, 89, 93, 89, 90,\n    94, 95, 91, 96, 91, 93, 97, 98, 94, 99, 94, 96,\n    100, 101, 97, 102, 97, 99, 103, 104, 100, 105, 100, 102,\n    106, 107, 103, 108, 103, 105, 109, 110, 106, 111, 106, 108,\n    112, 113, 109, 114, 109, 111, 115, 116, 112, 117, 112, 114,\n    118, 119, 115, 120, 115, 117, 121, 122, 118, 123, 118, 120,\n    124, 125, 121, 126, 121, 123, 127, 128, 124, 129, 124, 126,\n    130, 131, 127, 132, 127, 129, 133, 134, 130, 135, 130, 132,\n    136, 137, 133, 138, 133, 135, 139, 140, 136, 141, 136, 138,\n    142, 143, 139, 144, 139, 141, 145, 146, 142, 147, 142, 148,\n    149, 150, 145, 151, 145, 147, 152, 153, 149, 154, 149, 151,\n    155, 156, 152, 157, 152, 154, 158, 159, 155, 160, 155, 157,\n    161, 162, 158, 163, 158, 160, 164, 165, 161, 166, 161, 163,\n    167, 168, 164, 169, 164, 166, 170, 171, 167, 172, 167, 169,\n    173, 174, 170, 175, 170, 172, 176, 177, 173, 178, 173, 175,\n    179, 180, 176, 181, 176, 178, 182, 183, 179, 184, 179, 181,\n    185, 186, 182, 187, 182, 184, 188, 189, 185, 190, 185, 187,\n    191, 192, 188, 193, 188, 190, 194, 195, 191, 196, 191, 193,\n    197, 198, 194, 199, 194, 196, 200, 18, 197, 201, 197, 199,\n    202, 19, 200, 203, 200, 201, 204, 205, 202, 206, 202, 203,\n    207, 208, 204, 209, 204, 206, 210, 211, 207, 212, 207, 209,\n    213, 214, 210, 215, 210, 212, 216, 217, 213, 218, 213, 215,\n    219, 220, 216, 221, 216, 218, 222, 223, 219, 224, 219, 221,\n    225, 226, 222, 227, 222, 224, 228, 229, 225, 230, 225, 227,\n    231, 232, 228, 233, 228, 230, 234, 235, 231, 236, 231, 233,\n    237, 238, 234, 239, 234, 236, 240, 241, 237, 242, 237, 239,\n    243, 244, 240, 245, 240, 242, 246, 247, 243, 248, 243, 245,\n    32, 249, 246, 250, 246, 248, 251, 34, 252, 253, 33, 251,\n    254, 37, 253, 255, 40, 254, 256, 43, 255, 257, 46, 256,\n    258, 49, 257, 259, 52, 258, 260, 55, 259, 261, 58, 260,\n    262, 61, 261, 263, 64, 262, 264, 67, 263, 265, 70, 264,\n    266, 73, 265, 267, 76, 266, 268, 79, 267, 269, 82, 268,\n    270, 85, 269, 271, 88, 270, 272, 90, 271, 273, 93, 272,\n    274, 96, 273, 275, 99, 274, 276, 102, 275, 277, 105, 276,\n    278, 108, 277, 279, 111, 278, 280, 114, 279, 281, 117, 280,\n    282, 120, 281, 283, 123, 282, 284, 126, 283, 285, 129, 284,\n    286, 132, 285, 287, 135, 286, 288, 138, 287, 289, 141, 288,\n    290, 148, 291, 292, 147, 290, 293, 151, 292, 294, 154, 293,\n    295, 157, 294, 296, 160, 295, 297, 163, 296, 298, 166, 297,\n    299, 169, 298, 300, 172, 299, 301, 175, 300, 302, 178, 301,\n    303, 181, 302, 304, 184, 303, 305, 187, 304, 306, 190, 305,\n    307, 193, 306, 308, 196, 307, 309, 199, 308, 310, 201, 309,\n    311, 203, 310, 312, 206, 311, 313, 209, 312, 314, 212, 313,\n    315, 215, 314, 316, 218, 315, 317, 221, 316, 318, 224, 317,\n    319, 227, 318, 320, 230, 319, 321, 233, 320, 322, 236, 321,\n    323, 239, 322, 324, 242, 323, 325, 245, 324, 326, 248, 325,\n    327, 252, 328, 329, 328, 330, 331, 251, 327, 332, 327, 329,\n    333, 253, 331, 334, 331, 332, 335, 254, 333, 336, 333, 334,\n    337, 255, 335, 338, 335, 336, 339, 256, 337, 340, 337, 338,\n    341, 257, 339, 342, 339, 340, 343, 258, 341, 344, 341, 342,\n    345, 259, 343, 346, 343, 344, 347, 260, 345, 348, 345, 346,\n    349, 261, 347, 350, 347, 348, 351, 262, 349, 352, 349, 350,\n    353, 263, 351, 354, 351, 352, 355, 264, 353, 356, 353, 354,\n    357, 265, 355, 358, 355, 356, 359, 266, 357, 360, 357, 358,\n    361, 267, 359, 362, 359, 360, 363, 268, 361, 364, 361, 362,\n    365, 269, 363, 366, 363, 364, 367, 270, 365, 368, 365, 366,\n    369, 271, 367, 370, 367, 368, 371, 272, 369, 372, 369, 370,\n    373, 273, 371, 374, 371, 372, 375, 274, 373, 376, 373, 374,\n    377, 275, 375, 378, 375, 376, 379, 276, 377, 380, 377, 378,\n    381, 277, 379, 382, 379, 380, 383, 278, 381, 384, 381, 382,\n    385, 279, 383, 386, 383, 384, 387, 280, 385, 388, 385, 386,\n    389, 281, 387, 390, 387, 388, 391, 282, 389, 392, 389, 390,\n    393, 283, 391, 394, 391, 392, 395, 284, 393, 396, 393, 394,\n    397, 285, 395, 398, 395, 396, 399, 286, 397, 400, 397, 398,\n    401, 287, 399, 402, 399, 400, 403, 288, 401, 404, 401, 402,\n    405, 291, 403, 406, 403, 404, 407, 290, 405, 408, 405, 406,\n    409, 292, 407, 410, 407, 408, 411, 293, 409, 412, 409, 410,\n    413, 294, 411, 414, 411, 412, 415, 295, 413, 416, 413, 414,\n    417, 296, 415, 418, 415, 416, 419, 297, 417, 420, 417, 418,\n    421, 298, 419, 422, 419, 420, 423, 299, 421, 424, 421, 422,\n    425, 300, 423, 426, 423, 424, 427, 301, 425, 428, 425, 426,\n    429, 302, 427, 430, 427, 428, 431, 303, 429, 432, 429, 430,\n    433, 304, 431, 434, 431, 432, 435, 305, 433, 436, 433, 434,\n    437, 306, 435, 438, 435, 436, 439, 307, 437, 440, 437, 438,\n    441, 308, 439, 442, 439, 440, 443, 309, 441, 444, 441, 442,\n    445, 310, 443, 446, 443, 444, 447, 311, 445, 448, 445, 446,\n    449, 312, 447, 450, 447, 448, 451, 313, 449, 452, 449, 450,\n    453, 314, 451, 454, 451, 452, 455, 315, 453, 456, 453, 454,\n    457, 316, 455, 458, 455, 456, 459, 317, 457, 460, 457, 458,\n    461, 318, 459, 462, 459, 460, 463, 319, 461, 464, 461, 462,\n    465, 320, 463, 466, 463, 464, 467, 321, 465, 468, 465, 466,\n    469, 322, 467, 470, 467, 468, 471, 323, 469, 472, 469, 470,\n    473, 324, 471, 474, 471, 472, 328, 325, 473, 330, 473, 474,\n    475, 476, 477, 478, 477, 479, 480, 481, 475, 482, 475, 478,\n    483, 484, 480, 485, 480, 482, 486, 487, 483, 488, 483, 485,\n    489, 490, 486, 491, 486, 488, 492, 493, 489, 494, 489, 491,\n    495, 496, 492, 497, 492, 494, 498, 499, 495, 500, 495, 497,\n    501, 502, 498, 503, 498, 500, 504, 505, 506, 507, 501, 503,\n    508, 509, 510, 511, 510, 512, 513, 514, 508, 515, 508, 511,\n    516, 517, 513, 518, 513, 515, 519, 520, 516, 521, 516, 518,\n    522, 523, 519, 524, 519, 521, 525, 526, 522, 527, 522, 524,\n    528, 28, 525, 529, 525, 527, 530, 29, 528, 531, 528, 529,\n    532, 533, 530, 534, 530, 531, 535, 536, 532, 537, 532, 534,\n    538, 539, 535, 540, 535, 537, 541, 542, 538, 543, 538, 540,\n    544, 545, 541, 546, 541, 543, 547, 548, 544, 549, 544, 546,\n    550, 551, 547, 552, 553, 554, 555, 556, 557, 558, 557, 552,\n    559, 560, 561, 562, 555, 558, 563, 564, 559, 565, 559, 566,\n    567, 568, 563, 569, 563, 565, 570, 571, 567, 572, 567, 569,\n    573, 574, 570, 575, 570, 572, 576, 577, 573, 578, 573, 575,\n    579, 580, 576, 581, 576, 578, 582, 583, 579, 584, 579, 581,\n    585, 586, 582, 587, 582, 584, 588, 589, 585, 590, 585, 587,\n    591, 592, 588, 593, 588, 590, 594, 595, 591, 596, 591, 593,\n    597, 598, 594, 599, 594, 596, 600, 601, 597, 602, 597, 599,\n    603, 604, 600, 605, 600, 602, 606, 607, 603, 608, 603, 605,\n    609, 610, 606, 611, 612, 613, 614, 615, 616, 617, 616, 611,\n    618, 619, 620, 621, 620, 622, 623, 624, 618, 625, 618, 621,\n    626, 627, 623, 628, 623, 625, 629, 630, 626, 631, 626, 628,\n    632, 633, 629, 634, 629, 631, 635, 636, 632, 637, 632, 634,\n    638, 27, 635, 639, 635, 637, 477, 640, 638, 479, 638, 639,\n    641, 479, 642, 643, 478, 641, 644, 482, 643, 645, 485, 644,\n    646, 488, 645, 647, 491, 646, 648, 494, 647, 649, 497, 648,\n    650, 500, 649, 651, 503, 650, 652, 512, 653, 654, 511, 652,\n    655, 515, 654, 656, 518, 655, 657, 521, 656, 658, 524, 657,\n    659, 527, 658, 660, 529, 659, 661, 531, 660, 662, 534, 661,\n    663, 537, 662, 664, 540, 663, 665, 543, 664, 666, 546, 665,\n    667, 554, 668, 669, 552, 667, 670, 558, 669, 671, 566, 672,\n    673, 565, 671, 674, 569, 673, 675, 572, 674, 676, 575, 675,\n    677, 578, 676, 678, 581, 677, 679, 584, 678, 680, 587, 679,\n    681, 590, 680, 682, 593, 681, 683, 596, 682, 684, 599, 683,\n    685, 602, 684, 686, 605, 685, 687, 613, 688, 689, 611, 687,\n    690, 622, 691, 692, 621, 690, 693, 625, 692, 694, 628, 693,\n    695, 631, 694, 696, 634, 695, 697, 637, 696, 642, 639, 697,\n    698, 642, 699, 700, 699, 701, 702, 641, 698, 703, 698, 700,\n    704, 643, 702, 705, 702, 703, 706, 644, 704, 707, 704, 705,\n    708, 645, 706, 709, 706, 707, 710, 646, 708, 711, 708, 709,\n    712, 647, 710, 713, 710, 711, 714, 648, 712, 715, 712, 713,\n    716, 649, 714, 717, 714, 715, 718, 650, 716, 719, 716, 717,\n    720, 653, 721, 722, 721, 719, 723, 652, 720, 724, 720, 722,\n    725, 654, 723, 726, 723, 724, 727, 655, 725, 728, 725, 726,\n    729, 656, 727, 730, 727, 728, 731, 657, 729, 732, 729, 730,\n    733, 658, 731, 734, 731, 732, 735, 659, 733, 736, 733, 734,\n    737, 660, 735, 738, 735, 736, 739, 661, 737, 740, 737, 738,\n    741, 662, 739, 742, 739, 740, 743, 663, 741, 744, 741, 742,\n    745, 664, 743, 746, 743, 744, 747, 665, 745, 748, 745, 746,\n    749, 666, 747, 750, 747, 748, 751, 667, 752, 753, 749, 750,\n    754, 755, 756, 757, 756, 753, 758, 672, 754, 759, 754, 757,\n    760, 671, 758, 761, 758, 759, 762, 673, 760, 763, 760, 761,\n    764, 674, 762, 765, 762, 763, 766, 675, 764, 767, 764, 765,\n    768, 676, 766, 769, 766, 767, 770, 677, 768, 771, 768, 769,\n    772, 678, 770, 773, 770, 771, 774, 679, 772, 775, 772, 773,\n    776, 680, 774, 777, 774, 775, 778, 681, 776, 779, 776, 777,\n    780, 682, 778, 781, 778, 779, 782, 683, 780, 783, 780, 781,\n    784, 684, 782, 785, 782, 783, 786, 685, 784, 787, 784, 785,\n    788, 686, 786, 789, 786, 787, 790, 687, 791, 792, 788, 789,\n    793, 691, 794, 795, 794, 792, 796, 690, 793, 797, 793, 795,\n    798, 692, 796, 799, 796, 797, 800, 693, 798, 801, 798, 799,\n    802, 694, 800, 803, 800, 801, 804, 695, 802, 805, 802, 803,\n    806, 696, 804, 807, 804, 805, 699, 697, 806, 701, 806, 807,\n    808, 809, 810, 811, 810, 812, 813, 814, 808, 815, 808, 811,\n    816, 817, 813, 818, 813, 815, 819, 820, 821, 822, 821, 818,\n    823, 22, 824, 825, 824, 826, 827, 828, 823, 829, 823, 825,\n    830, 831, 827, 832, 827, 829, 833, 834, 830, 835, 830, 832,\n    836, 837, 833, 838, 833, 835, 839, 840, 836, 841, 836, 838,\n    842, 843, 839, 844, 839, 841, 845, 846, 842, 847, 842, 844,\n    848, 849, 845, 850, 845, 847, 851, 852, 848, 853, 848, 850,\n    854, 855, 851, 856, 851, 853, 857, 858, 854, 859, 854, 856,\n    860, 861, 857, 862, 857, 859, 863, 864, 860, 865, 860, 862,\n    866, 867, 863, 868, 863, 865, 869, 870, 866, 871, 866, 868,\n    872, 873, 869, 874, 869, 871, 875, 876, 872, 877, 872, 874,\n    878, 879, 875, 880, 875, 877, 881, 882, 878, 883, 878, 880,\n    884, 6, 881, 885, 881, 883, 886, 7, 884, 887, 884, 885,\n    888, 889, 886, 890, 886, 887, 891, 892, 888, 893, 888, 890,\n    894, 895, 891, 896, 891, 893, 897, 898, 894, 899, 894, 896,\n    900, 901, 897, 902, 897, 899, 903, 904, 900, 905, 900, 902,\n    906, 907, 903, 908, 903, 905, 909, 910, 906, 911, 906, 908,\n    912, 913, 909, 914, 909, 911, 915, 916, 912, 917, 912, 914,\n    918, 919, 915, 920, 915, 917, 921, 922, 918, 923, 918, 920,\n    924, 925, 921, 926, 921, 923, 927, 928, 924, 929, 924, 926,\n    930, 931, 927, 932, 927, 929, 933, 934, 930, 935, 930, 936,\n    937, 938, 933, 939, 933, 935, 940, 941, 937, 942, 937, 939,\n    943, 944, 940, 945, 940, 942, 946, 947, 943, 948, 943, 945,\n    949, 950, 946, 951, 946, 948, 952, 953, 949, 954, 949, 951,\n    955, 956, 952, 957, 952, 954, 958, 959, 955, 960, 955, 957,\n    961, 962, 958, 963, 958, 960, 964, 965, 961, 966, 961, 963,\n    967, 968, 964, 969, 964, 966, 810, 970, 967, 812, 967, 969,\n    971, 812, 972, 973, 811, 971, 974, 815, 973, 975, 818, 974,\n    976, 826, 977, 978, 825, 976, 979, 829, 978, 980, 832, 979,\n    981, 835, 980, 982, 838, 981, 983, 841, 982, 984, 844, 983,\n    985, 847, 984, 986, 850, 985, 987, 853, 986, 988, 856, 987,\n    989, 859, 988, 990, 862, 989, 991, 865, 990, 992, 868, 991,\n    993, 871, 992, 994, 874, 993, 995, 877, 994, 996, 880, 995,\n    997, 883, 996, 998, 885, 997, 999, 887, 998, 1000, 890, 999,\n    1001, 893, 1000, 1002, 896, 1001, 1003, 899, 1002, 1004, 902, 1003,\n    1005, 905, 1004, 1006, 908, 1005, 1007, 911, 1006, 1008, 914, 1007,\n    1009, 917, 1008, 1010, 920, 1009, 1011, 923, 1010, 1012, 926, 1011,\n    1013, 929, 1012, 1014, 936, 1015, 1016, 935, 1014, 1017, 939, 1016,\n    1018, 942, 1017, 1019, 945, 1018, 1020, 948, 1019, 1021, 951, 1020,\n    1022, 954, 1021, 1023, 957, 1022, 1024, 960, 1023, 1025, 963, 1024,\n    1026, 966, 1025, 972, 969, 1026, 1027, 972, 1028, 1029, 1028, 1030,\n    1031, 971, 1027, 1032, 1027, 1029, 1033, 973, 1031, 1034, 1031, 1032,\n    1035, 974, 1036, 1037, 1033, 1034, 1038, 977, 1039, 1040, 1039, 1037,\n    1041, 976, 1038, 1042, 1038, 1040, 1043, 978, 1041, 1044, 1041, 1042,\n    1045, 979, 1043, 1046, 1043, 1044, 1047, 980, 1045, 1048, 1045, 1046,\n    1049, 981, 1047, 1050, 1047, 1048, 1051, 982, 1049, 1052, 1049, 1050,\n    1053, 983, 1051, 1054, 1051, 1052, 1055, 984, 1053, 1056, 1053, 1054,\n    1057, 985, 1055, 1058, 1055, 1056, 1059, 986, 1057, 1060, 1057, 1058,\n    1061, 987, 1059, 1062, 1059, 1060, 1063, 988, 1061, 1064, 1061, 1062,\n    1065, 989, 1063, 1066, 1063, 1064, 1067, 990, 1065, 1068, 1065, 1066,\n    1069, 991, 1067, 1070, 1067, 1068, 1071, 992, 1069, 1072, 1069, 1070,\n    1073, 993, 1071, 1074, 1071, 1072, 1075, 994, 1073, 1076, 1073, 1074,\n    1077, 995, 1075, 1078, 1075, 1076, 1079, 996, 1077, 1080, 1077, 1078,\n    1081, 997, 1079, 1082, 1079, 1080, 1083, 998, 1081, 1084, 1081, 1082,\n    1085, 999, 1083, 1086, 1083, 1084, 1087, 1000, 1085, 1088, 1085, 1086,\n    1089, 1001, 1087, 1090, 1087, 1088, 1091, 1002, 1089, 1092, 1089, 1090,\n    1093, 1003, 1091, 1094, 1091, 1092, 1095, 1004, 1093, 1096, 1093, 1094,\n    1097, 1005, 1095, 1098, 1095, 1096, 1099, 1006, 1097, 1100, 1097, 1098,\n    1101, 1007, 1099, 1102, 1099, 1100, 1103, 1008, 1101, 1104, 1101, 1102,\n    1105, 1009, 1103, 1106, 1103, 1104, 1107, 1010, 1105, 1108, 1105, 1106,\n    1109, 1011, 1107, 1110, 1107, 1108, 1111, 1012, 1109, 1112, 1109, 1110,\n    1113, 1015, 1111, 1114, 1111, 1112, 1115, 1014, 1113, 1116, 1113, 1114,\n    1117, 1016, 1115, 1118, 1115, 1116, 1119, 1017, 1117, 1120, 1117, 1118,\n    1121, 1018, 1119, 1122, 1119, 1120, 1123, 1019, 1121, 1124, 1121, 1122,\n    1125, 1020, 1123, 1126, 1123, 1124, 1127, 1021, 1125, 1128, 1125, 1126,\n    1129, 1022, 1127, 1130, 1127, 1128, 1131, 1023, 1129, 1132, 1129, 1130,\n    1133, 1024, 1131, 1134, 1131, 1132, 1135, 1025, 1133, 1136, 1133, 1134,\n    1028, 1026, 1135, 1030, 1135, 1136, 1137, 1138, 1139, 1140, 1139, 1141,\n    1142, 1143, 1137, 1144, 1137, 1145, 1146, 1147, 1142, 1148, 1142, 1144,\n    1149, 1150, 1146, 1151, 1146, 1148, 1152, 1153, 1149, 1154, 1149, 1151,\n    1155, 1156, 1152, 1157, 1152, 1154, 1158, 1159, 1155, 1160, 1155, 1157,\n    1161, 1162, 1158, 1163, 1158, 1160, 1164, 1165, 1161, 1166, 1161, 1163,\n    1167, 1168, 1164, 1169, 1164, 1166, 1170, 1171, 1167, 1172, 1167, 1169,\n    1173, 8, 1170, 1174, 1170, 1172, 1175, 1176, 1173, 1177, 1173, 1174,\n    1178, 1179, 1175, 1180, 1175, 1177, 1181, 1182, 1178, 1183, 1178, 1180,\n    1184, 1185, 1181, 1186, 1181, 1183, 1187, 1188, 1184, 1189, 1184, 1186,\n    1190, 1191, 1187, 1192, 1187, 1189, 1193, 1194, 1190, 1195, 1190, 1192,\n    1196, 1197, 1193, 1198, 1193, 1195, 1199, 1200, 1196, 1201, 1196, 1198,\n    1202, 1203, 1199, 1204, 1199, 1201, 1205, 1206, 1202, 1207, 1202, 1204,\n    1208, 1209, 1205, 1210, 1205, 1207, 1211, 1212, 1208, 1213, 1208, 1210,\n    1214, 1215, 1211, 1216, 1211, 1213, 1217, 1218, 1214, 1219, 1214, 1216,\n    1220, 1221, 1217, 1222, 1217, 1219, 1223, 1224, 1220, 1225, 1220, 1222,\n    1226, 1227, 1223, 1228, 1223, 1225, 1229, 1230, 1226, 1231, 1226, 1228,\n    1232, 1233, 1229, 1234, 1229, 1231, 1235, 23, 1232, 1236, 1232, 1234,\n    1237, 21, 1235, 1238, 1235, 1236, 1239, 1240, 1237, 1241, 1237, 1238,\n    1242, 1243, 1239, 1244, 1239, 1241, 1245, 1246, 1242, 1247, 1242, 1244,\n    1139, 1248, 1245, 1141, 1245, 1247, 1249, 1141, 1250, 1251, 1145, 1252,\n    1253, 1144, 1251, 1254, 1148, 1253, 1255, 1151, 1254, 1256, 1154, 1255,\n    1257, 1157, 1256, 1258, 1160, 1257, 1259, 1163, 1258, 1260, 1166, 1259,\n    1261, 1169, 1260, 1262, 1172, 1261, 1263, 1174, 1262, 1264, 1177, 1263,\n    1265, 1180, 1264, 1266, 1183, 1265, 1267, 1186, 1266, 1268, 1189, 1267,\n    1269, 1192, 1268, 1270, 1195, 1269, 1271, 1198, 1270, 1272, 1201, 1271,\n    1273, 1204, 1272, 1274, 1207, 1273, 1275, 1210, 1274, 1276, 1213, 1275,\n    1277, 1216, 1276, 1278, 1219, 1277, 1279, 1222, 1278, 1280, 1225, 1279,\n    1281, 1228, 1280, 1282, 1231, 1281, 1283, 1234, 1282, 1284, 1236, 1283,\n    1285, 1238, 1284, 1286, 1241, 1285, 1287, 1244, 1286, 1250, 1247, 1287,\n    1288, 1250, 1289, 1290, 1289, 1291, 1292, 1252, 1288, 1293, 1288, 1290,\n    1294, 1251, 1292, 1295, 1292, 1293, 1296, 1253, 1294, 1297, 1294, 1295,\n    1298, 1254, 1296, 1299, 1296, 1297, 1300, 1255, 1298, 1301, 1298, 1299,\n    1302, 1256, 1300, 1303, 1300, 1301, 1304, 1257, 1302, 1305, 1302, 1303,\n    1306, 1258, 1304, 1307, 1304, 1305, 1308, 1259, 1306, 1309, 1306, 1307,\n    1310, 1260, 1308, 1311, 1308, 1309, 1312, 1261, 1310, 1313, 1310, 1311,\n    1314, 1262, 1312, 1315, 1312, 1313, 1316, 1263, 1314, 1317, 1314, 1315,\n    1318, 1264, 1316, 1319, 1316, 1317, 1320, 1265, 1318, 1321, 1318, 1319,\n    1322, 1266, 1320, 1323, 1320, 1321, 1324, 1267, 1322, 1325, 1322, 1323,\n    1326, 1268, 1324, 1327, 1324, 1325, 1328, 1269, 1326, 1329, 1326, 1327,\n    1330, 1270, 1328, 1331, 1328, 1329, 1332, 1271, 1330, 1333, 1330, 1331,\n    1334, 1272, 1332, 1335, 1332, 1333, 1336, 1273, 1334, 1337, 1334, 1335,\n    1338, 1274, 1336, 1339, 1336, 1337, 1340, 1275, 1338, 1341, 1338, 1339,\n    1342, 1276, 1340, 1343, 1340, 1341, 1344, 1277, 1342, 1345, 1342, 1343,\n    1346, 1278, 1344, 1347, 1344, 1345, 1348, 1279, 1346, 1349, 1346, 1347,\n    1350, 1280, 1348, 1351, 1348, 1349, 1352, 1281, 1350, 1353, 1350, 1351,\n    1354, 1282, 1352, 1355, 1352, 1353, 1356, 1283, 1354, 1357, 1354, 1355,\n    1358, 1284, 1356, 1359, 1356, 1357, 1360, 1285, 1358, 1361, 1358, 1359,\n    1362, 1286, 1360, 1363, 1360, 1361, 1289, 1287, 1362, 1291, 1362, 1363,\n    1364, 24, 1365, 1366, 1365, 1367, 1368, 1369, 1364, 1370, 1364, 1371,\n    1372, 25, 1368, 1373, 1368, 1370, 1374, 1375, 1376, 1377, 1376, 1378,\n    1379, 1380, 1381, 1382, 1381, 1383, 1384, 1385, 1379, 1386, 1379, 1382,\n    1387, 1388, 1384, 1389, 1384, 1386, 1390, 1391, 1387, 1392, 1387, 1389,\n    1393, 1394, 1390, 1395, 1390, 1392, 1396, 1397, 1398, 1399, 1398, 1395,\n    1400, 1401, 1402, 1403, 1402, 1404, 1405, 1406, 1400, 1407, 1400, 1403,\n    1365, 1408, 1405, 1367, 1405, 1409, 1410, 1367, 1411, 1412, 1371, 1413,\n    1414, 1370, 1412, 1415, 1378, 1416, 1417, 1383, 1418, 1419, 1382, 1417,\n    1420, 1386, 1419, 1421, 1389, 1420, 1422, 1392, 1421, 1423, 1395, 1422,\n    1424, 1404, 1425, 1426, 1403, 1424, 1411, 1409, 1427, 1428, 1411, 1429,\n    1430, 1429, 1, 1431, 1413, 1428, 1432, 1428, 1430, 1433, 1412, 1431,\n    0, 1431, 1432, 1434, 1416, 1435, 1436, 1433, 0, 1437, 1418, 1438,\n    1439, 1438, 1436, 1440, 1417, 1437, 1441, 1437, 1439, 1442, 1419, 1440,\n    1443, 1440, 1441, 1444, 1420, 1442, 1445, 1442, 1443, 1446, 1421, 1444,\n    1447, 1444, 1445, 1448, 1422, 1449, 2, 1446, 1447, 1450, 1425, 1451,\n    1452, 1451, 2, 1453, 1424, 1450, 1454, 1450, 1452, 1429, 1427, 1453,\n    1, 1453, 1454, 1455, 1456, 1457, 1458, 1457, 1459, 1460, 1461, 1455,\n    1462, 1455, 1458, 1463, 1464, 1460, 1465, 1460, 1462, 1466, 1467, 1463,\n    1468, 1463, 1465, 1469, 1470, 1466, 1471, 1466, 1468, 1472, 1473, 1469,\n    1474, 1469, 1471, 1475, 1476, 1472, 1477, 1472, 1474, 1478, 1479, 1475,\n    1480, 1475, 1477, 1481, 1482, 1478, 1483, 1478, 1480, 1484, 1485, 1481,\n    1486, 1481, 1483, 1487, 1488, 1484, 1489, 1484, 1486, 1490, 1491, 1487,\n    1492, 1487, 1489, 1493, 1494, 1490, 1495, 1490, 1492, 1496, 1497, 1493,\n    1498, 1493, 1495, 1499, 1500, 1496, 1501, 1496, 1498, 1502, 1503, 1499,\n    1504, 1499, 1501, 1505, 1506, 1502, 1507, 1502, 1504, 1508, 1509, 1505,\n    1510, 1505, 1507, 1511, 1512, 1508, 1513, 1508, 1510, 1514, 1515, 1511,\n    1516, 1511, 1513, 1517, 1518, 1514, 1519, 1514, 1520, 1521, 1522, 1517,\n    1523, 1517, 1519, 1524, 1525, 1521, 1526, 1521, 1523, 1527, 1528, 1524,\n    1529, 1524, 1526, 1530, 1531, 1527, 1532, 1527, 1529, 1533, 1534, 1530,\n    1535, 1530, 1532, 1536, 1537, 1533, 1538, 1533, 1535, 1539, 1540, 1536,\n    1541, 1536, 1538, 1542, 1543, 1539, 1544, 1539, 1541, 1545, 1546, 1542,\n    1547, 1542, 1544, 1548, 1549, 1545, 1550, 1545, 1547, 1551, 1552, 1548,\n    1553, 1548, 1550, 1554, 1555, 1551, 1556, 1551, 1553, 1557, 1558, 1554,\n    1559, 1554, 1556, 1560, 1561, 1557, 1562, 1557, 1559, 1563, 1564, 1560,\n    1565, 1560, 1562, 1566, 1567, 1563, 1568, 1563, 1565, 1569, 1570, 1566,\n    1571, 1566, 1568, 1572, 1573, 1569, 1574, 1569, 1571, 1575, 1576, 1572,\n    1577, 1572, 1574, 1578, 13, 1575, 1579, 1575, 1577, 1580, 14, 1578,\n    1581, 1578, 1579, 1582, 1583, 1580, 1584, 1580, 1581, 1585, 1586, 1582,\n    1587, 1582, 1584, 1588, 1589, 1585, 1590, 1585, 1587, 1591, 1592, 1588,\n    1593, 1588, 1590, 1594, 1595, 1591, 1596, 1591, 1593, 1597, 1598, 1594,\n    1599, 1594, 1596, 1600, 1601, 1597, 1602, 1597, 1599, 1603, 1604, 1600,\n    1605, 1600, 1602, 1606, 1607, 1603, 1608, 1603, 1605, 1609, 1610, 1606,\n    1611, 1606, 1608, 1612, 1613, 1609, 1614, 1609, 1611, 1615, 1616, 1612,\n    1617, 1612, 1614, 1618, 1619, 1615, 1620, 1615, 1617, 1621, 1622, 1618,\n    1623, 1618, 1620, 1624, 1625, 1621, 1626, 1621, 1623, 1627, 1628, 1624,\n    1629, 1624, 1626, 1630, 1631, 1627, 1632, 1627, 1629, 1633, 1634, 1630,\n    1635, 1630, 1632, 1636, 16, 1633, 1637, 1633, 1635, 1638, 17, 1636,\n    1639, 1636, 1637, 1457, 1640, 1638, 1459, 1638, 1639, 1641, 1459, 1642,\n    1643, 1458, 1641, 1644, 1462, 1643, 1645, 1465, 1644, 1646, 1468, 1645,\n    1647, 1471, 1646, 1648, 1474, 1647, 1649, 1477, 1648, 1650, 1480, 1649,\n    1651, 1483, 1650, 1652, 1486, 1651, 1653, 1489, 1652, 1654, 1492, 1653,\n    1655, 1495, 1654, 1656, 1498, 1655, 1657, 1501, 1656, 1658, 1504, 1657,\n    1659, 1507, 1658, 1660, 1510, 1659, 1661, 1513, 1660, 1662, 1520, 1663,\n    1664, 1519, 1662, 1665, 1523, 1664, 1666, 1526, 1665, 1667, 1529, 1666,\n    1668, 1532, 1667, 1669, 1535, 1668, 1670, 1538, 1669, 1671, 1541, 1670,\n    1672, 1544, 1671, 1673, 1547, 1672, 1674, 1550, 1673, 1675, 1553, 1674,\n    1676, 1556, 1675, 1677, 1559, 1676, 1678, 1562, 1677, 1679, 1565, 1678,\n    1680, 1568, 1679, 1681, 1571, 1680, 1682, 1574, 1681, 1683, 1577, 1682,\n    1684, 1579, 1683, 1685, 1581, 1684, 1686, 1584, 1685, 1687, 1587, 1686,\n    1688, 1590, 1687, 1689, 1593, 1688, 1690, 1596, 1689, 1691, 1599, 1690,\n    1692, 1602, 1691, 1693, 1605, 1692, 1694, 1608, 1693, 1695, 1611, 1694,\n    1696, 1614, 1695, 1697, 1617, 1696, 1698, 1620, 1697, 1699, 1623, 1698,\n    1700, 1626, 1699, 1701, 1629, 1700, 1702, 1632, 1701, 1703, 1635, 1702,\n    1704, 1637, 1703, 1642, 1639, 1704, 1705, 1642, 1706, 1707, 1706, 1708,\n    1709, 1641, 1705, 1710, 1705, 1707, 1711, 1643, 1709, 1712, 1709, 1710,\n    1713, 1644, 1711, 1714, 1711, 1712, 1715, 1645, 1713, 1716, 1713, 1714,\n    1717, 1646, 1715, 1718, 1715, 1716, 1719, 1647, 1717, 1720, 1717, 1718,\n    1721, 1648, 1719, 1722, 1719, 1720, 1723, 1649, 1721, 1724, 1721, 1722,\n    1725, 1650, 1723, 1726, 1723, 1724, 1727, 1651, 1725, 1728, 1725, 1726,\n    1729, 1652, 1727, 1730, 1727, 1728, 1731, 1653, 1729, 1732, 1729, 1730,\n    1733, 1654, 1731, 1734, 1731, 1732, 1735, 1655, 1733, 1736, 1733, 1734,\n    1737, 1656, 1735, 1738, 1735, 1736, 1739, 1657, 1737, 1740, 1737, 1738,\n    1741, 1658, 1739, 1742, 1739, 1740, 1743, 1659, 1741, 1744, 1741, 1742,\n    1745, 1660, 1743, 1746, 1743, 1744, 1747, 1663, 1745, 1748, 1745, 1746,\n    1749, 1662, 1747, 1750, 1747, 1748, 1751, 1664, 1749, 1752, 1749, 1750,\n    1753, 1665, 1751, 1754, 1751, 1752, 1755, 1666, 1753, 1756, 1753, 1754,\n    1757, 1667, 1755, 1758, 1755, 1756, 1759, 1668, 1757, 1760, 1757, 1758,\n    1761, 1669, 1759, 1762, 1759, 1760, 1763, 1670, 1761, 1764, 1761, 1762,\n    1765, 1671, 1763, 1766, 1763, 1764, 1767, 1672, 1765, 1768, 1765, 1766,\n    1769, 1673, 1767, 1770, 1767, 1768, 1771, 1674, 1769, 1772, 1769, 1770,\n    1773, 1675, 1771, 1774, 1771, 1772, 1775, 1676, 1773, 1776, 1773, 1774,\n    1777, 1677, 1775, 1778, 1775, 1776, 1779, 1678, 1777, 1780, 1777, 1778,\n    1781, 1679, 1779, 1782, 1779, 1780, 1783, 1680, 1781, 1784, 1781, 1782,\n    1785, 1681, 1783, 4, 1783, 1784, 1786, 1682, 1785, 1787, 1785, 4,\n    1788, 1683, 1786, 1789, 1786, 1787, 1790, 1684, 1788, 1791, 1788, 1789,\n    1792, 1685, 1790, 1793, 1790, 1791, 1794, 1686, 1792, 1795, 1792, 1793,\n    1796, 1687, 1794, 1797, 1794, 1795, 1798, 1688, 1796, 1799, 1796, 1797,\n    1800, 1689, 1798, 1801, 1798, 1799, 1802, 1690, 1800, 1803, 1800, 1801,\n    1804, 1691, 1802, 1805, 1802, 1803, 1806, 1692, 1804, 1807, 1804, 1805,\n    1808, 1693, 1806, 1809, 1806, 1807, 1810, 1694, 1808, 1811, 1808, 1809,\n    1812, 1695, 1810, 1813, 1810, 1811, 1814, 1696, 1812, 1815, 1812, 1813,\n    1816, 1697, 1814, 1817, 1814, 1815, 1818, 1698, 1816, 1819, 1816, 1817,\n    1820, 1699, 1818, 1821, 1818, 1819, 1822, 1700, 1820, 1823, 1820, 1821,\n    1824, 1701, 1822, 11, 1822, 1823, 1825, 1702, 1824, 1826, 1824, 11,\n    1827, 1703, 1825, 1828, 1825, 1826, 1706, 1704, 1827, 1708, 1827, 1828,\n    1829, 1830, 1831, 1832, 1831, 1833, 1834, 1835, 1829, 1836, 1829, 1832,\n    1837, 1838, 1834, 1839, 1834, 1836, 1840, 15, 1837, 1841, 1837, 1839,\n    1842, 1843, 1840, 1844, 1840, 1841, 1845, 1846, 1842, 1847, 1842, 1844,\n    1848, 1849, 1845, 1850, 1845, 1847, 1851, 1852, 1848, 1853, 1848, 1850,\n    1854, 1855, 1851, 1856, 1851, 1853, 1857, 1858, 1854, 1859, 1854, 1856,\n    1860, 1861, 1857, 1862, 1857, 1859, 1863, 1864, 1860, 1865, 1860, 1862,\n    1866, 1867, 1863, 1868, 1863, 1865, 1869, 1870, 1866, 1871, 1866, 1868,\n    1872, 1873, 1869, 1874, 1869, 1871, 1875, 1876, 1872, 1877, 1872, 1874,\n    1878, 1879, 1875, 1880, 1875, 1877, 1881, 1882, 1878, 1883, 1878, 1880,\n    1884, 1885, 1881, 1886, 1881, 1883, 1887, 1888, 1884, 1889, 1884, 1886,\n    1890, 1891, 1887, 1892, 1887, 1889, 1893, 1894, 1890, 1895, 1890, 1892,\n    1896, 1897, 1893, 1898, 1893, 1895, 1899, 1900, 1896, 1901, 1896, 1898,\n    1831, 12, 1899, 1833, 1902, 1903, 1904, 1833, 1905, 1906, 1832, 1904,\n    1907, 1836, 1906, 1908, 1839, 1907, 1909, 1841, 1908, 1910, 1844, 1909,\n    1911, 1847, 1910, 1912, 1850, 1911, 1913, 1853, 1912, 1914, 1856, 1913,\n    1915, 1859, 1914, 1916, 1862, 1915, 1917, 1865, 1916, 1918, 1868, 1917,\n    1919, 1871, 1918, 1920, 1874, 1919, 1921, 1877, 1920, 1922, 1880, 1921,\n    1923, 1883, 1922, 1924, 1886, 1923, 1925, 1889, 1924, 1926, 1892, 1925,\n    1927, 1895, 1926, 1928, 1898, 1927, 1905, 1903, 1929, 1930, 1905, 1931,\n    1932, 1931, 5, 1933, 1904, 1930, 1934, 1930, 1932, 1935, 1906, 1933,\n    10, 1933, 1934, 1936, 1907, 1935, 9, 1935, 10, 1937, 1908, 1936,\n    1938, 1936, 9, 1939, 1909, 1937, 1940, 1937, 1938, 1941, 1910, 1939,\n    1942, 1939, 1940, 1943, 1911, 1941, 1944, 1941, 1942, 1945, 1912, 1943,\n    1946, 1943, 1944, 1947, 1913, 1945, 1948, 1945, 1946, 1949, 1914, 1947,\n    1950, 1947, 1948, 1951, 1915, 1949, 1952, 1949, 1950, 1953, 1916, 1951,\n    1954, 1951, 1952, 1955, 1917, 1953, 1956, 1953, 1954, 1957, 1918, 1955,\n    1958, 1955, 1956, 1959, 1919, 1957, 1960, 1957, 1958, 1961, 1920, 1959,\n    1962, 1959, 1960, 1963, 1921, 1961, 1964, 1961, 1962, 1965, 1922, 1963,\n    1966, 1963, 1964, 1967, 1923, 1965, 1968, 1965, 1966, 1969, 1924, 1967,\n    1970, 1967, 1968, 1971, 1925, 1969, 1972, 1969, 1970, 1973, 1926, 1971,\n    1974, 1971, 1972, 1975, 1927, 1973, 3, 1973, 1974, 1931, 1928, 1975,\n    5, 1975, 3, 442, 440, 366, 734, 792, 789, 1319, 1317, 1076,\n    1355, 1037, 1034, 1447, 1445, 1443, 1443, 1441, 1447, 1441, 1439, 1436,\n    1447, 1441, 1436, 0, 1432, 1, 1447, 1436, 0, 1454, 1452, 1,\n    2, 1447, 0, 1432, 1430, 1, 1, 1452, 2, 3, 1787, 4,\n    950, 916, 919, 956, 959, 913, 962, 965, 907, 968, 970, 904,\n    809, 814, 1138, 1976, 21, 1240, 814, 817, 1976, 965, 968, 907,\n    953, 916, 950, 944, 947, 922, 938, 941, 928, 931, 934, 938,\n    928, 931, 938, 941, 944, 925, 970, 809, 901, 1976, 1240, 1243,\n    1976, 1243, 1246, 947, 919, 922, 925, 928, 941, 922, 925, 944,\n    1976, 1246, 814, 1246, 1248, 814, 947, 950, 919, 953, 956, 916,\n    814, 1248, 1138, 809, 1138, 1143, 916, 956, 913, 913, 959, 910,\n    1233, 23, 22, 22, 828, 1233, 831, 834, 1224, 837, 840, 1215,\n    843, 846, 1209, 849, 1203, 1206, 855, 858, 1200, 861, 864, 1197,\n    867, 870, 1194, 873, 876, 1191, 879, 882, 1185, 6, 1176, 1179,\n    889, 892, 1162, 892, 895, 1156, 882, 1179, 1182, 870, 873, 1191,\n    858, 861, 1197, 846, 1206, 1209, 834, 837, 1221, 1233, 828, 1230,\n    1230, 828, 1227, 840, 843, 1212, 864, 867, 1194, 910, 959, 962,\n    1227, 828, 831, 876, 879, 1188, 1224, 1227, 831, 1221, 1224, 834,\n    907, 910, 962, 1218, 1221, 837, 904, 907, 968, 1215, 1218, 837,\n    901, 904, 970, 1212, 1215, 840, 898, 901, 809, 1209, 1212, 843,\n    898, 809, 1143, 898, 1143, 1147, 846, 849, 1206, 849, 852, 1203,\n    895, 898, 1147, 895, 1147, 1150, 1203, 852, 1200, 1200, 852, 855,\n    895, 1150, 1153, 895, 1153, 1156, 1197, 1200, 858, 1194, 1197, 864,\n    892, 1156, 1159, 892, 1159, 1162, 1191, 1194, 870, 1188, 1191, 876,\n    889, 1162, 1165, 889, 1165, 1168, 1185, 1188, 879, 1182, 1185, 882,\n    889, 1168, 1171, 889, 1171, 7, 882, 6, 1179, 6, 8, 1176,\n    1171, 8, 7, 1811, 1948, 1946, 1807, 1954, 1952, 1803, 1801, 1960,\n    1799, 1964, 1962, 1795, 1970, 1968, 1791, 3, 1974, 1787, 3, 1789,\n    3, 1791, 1789, 1795, 1968, 1797, 1801, 1799, 1962, 1809, 1948, 1811,\n    1815, 1813, 1946, 1819, 1817, 1942, 1823, 1821, 1938, 1826, 11, 10,\n    1708, 1828, 1932, 1710, 1707, 1932, 1828, 1826, 1934, 1821, 1819, 1940,\n    1813, 1811, 1946, 1797, 1964, 1799, 1974, 1972, 1791, 1972, 1793, 1791,\n    1817, 1815, 1944, 1748, 1746, 1744, 1752, 1750, 1740, 1756, 1754, 1736,\n    1760, 1732, 1730, 1764, 1762, 1728, 1768, 1766, 1724, 1772, 1770, 1720,\n    1776, 1718, 1716, 1780, 1778, 1714, 1784, 1782, 1710, 5, 4, 1710,\n    1932, 5, 1710, 1782, 1712, 1710, 1774, 1718, 1776, 1766, 1764, 1726,\n    1758, 1732, 1760, 1750, 1748, 1742, 1748, 1744, 1742, 1762, 1730, 1728,\n    1780, 1712, 1782, 1750, 1742, 1740, 1752, 1740, 1738, 1970, 1793, 1972,\n    1752, 1738, 1754, 1795, 1793, 1970, 1738, 1736, 1754, 1966, 1797, 1968,\n    1736, 1734, 1756, 1966, 1964, 1797, 1734, 1758, 1756, 1801, 1962, 1960,\n    1732, 1758, 1734, 1803, 1960, 1958, 1760, 1730, 1762, 1803, 1958, 1956,\n    1764, 1728, 1726, 1803, 1956, 1805, 1766, 1726, 1724, 1956, 1954, 1805,\n    1768, 1724, 1722, 1954, 1807, 1805, 1768, 1722, 1770, 1952, 1809, 1807,\n    1722, 1720, 1770, 1950, 1809, 1952, 1720, 1774, 1772, 1950, 1948, 1809,\n    1718, 1774, 1720, 1815, 1946, 1944, 1716, 1778, 1776, 1817, 1944, 1942,\n    1714, 1778, 1716, 1819, 1942, 1940, 1714, 1712, 1780, 4, 1784, 1710,\n    11, 1823, 9, 1821, 1940, 1938, 1932, 1707, 1708, 1934, 1932, 1828,\n    1823, 1938, 9, 10, 1934, 1826, 12, 1830, 13, 1604, 1873, 1876,\n    1610, 1613, 1867, 1616, 1619, 1858, 1622, 1625, 1855, 1628, 1849, 1852,\n    1634, 1843, 1846, 17, 1838, 15, 1456, 1461, 1835, 1846, 1849, 1631,\n    1625, 1852, 1855, 1613, 1616, 1861, 1601, 1879, 1882, 1595, 1598, 1885,\n    1589, 1592, 1894, 1583, 1586, 12, 12, 14, 1583, 1900, 12, 1586,\n    1586, 1589, 1897, 1598, 1601, 1882, 1619, 1622, 1858, 1515, 1518, 1522,\n    1522, 1525, 1512, 1528, 1531, 1506, 1534, 1537, 1500, 1540, 1543, 1494,\n    1546, 1549, 1488, 1552, 1555, 1482, 1558, 1561, 1479, 1564, 1567, 1473,\n    1570, 1573, 1467, 1576, 13, 1464, 13, 1830, 1464, 1567, 1570, 1470,\n    1555, 1558, 1479, 1543, 1546, 1491, 1531, 1534, 1503, 1515, 1522, 1512,\n    1512, 1525, 1509, 1537, 1540, 1497, 1561, 1564, 1476, 1509, 1525, 1528,\n    1506, 1509, 1528, 1897, 1900, 1586, 1592, 1595, 1891, 1503, 1506, 1531,\n    1894, 1897, 1589, 1500, 1503, 1534, 1891, 1894, 1592, 1497, 1500, 1537,\n    1888, 1891, 1595, 1494, 1497, 1540, 1885, 1888, 1595, 1491, 1494, 1543,\n    1882, 1885, 1598, 1491, 1546, 1488, 1601, 1604, 1879, 1488, 1549, 1485,\n    1879, 1604, 1876, 1485, 1549, 1552, 1604, 1607, 1873, 1482, 1485, 1552,\n    1873, 1607, 1870, 1479, 1482, 1555, 1870, 1607, 1610, 1476, 1479, 1561,\n    1867, 1870, 1610, 1473, 1476, 1564, 1864, 1867, 1613, 1470, 1473, 1567,\n    1861, 1864, 1613, 1467, 1470, 1570, 1858, 1861, 1616, 1464, 1467, 1573,\n    1855, 1858, 1622, 1464, 1573, 1576, 1464, 1830, 1835, 1625, 1628, 1852,\n    1628, 1631, 1849, 1461, 1464, 1835, 1456, 1835, 1640, 1634, 1846, 1631,\n    16, 1843, 1634, 1835, 1838, 1640, 1838, 17, 1640, 16, 15, 1843,\n    119, 122, 171, 125, 162, 165, 131, 134, 159, 137, 140, 153,\n    143, 146, 150, 143, 150, 153, 134, 156, 159, 122, 168, 171,\n    113, 116, 177, 107, 110, 183, 101, 104, 189, 95, 98, 195,\n    20, 92, 18, 84, 87, 205, 78, 81, 211, 72, 214, 217,\n    66, 69, 220, 60, 63, 223, 54, 229, 232, 48, 235, 238,\n    42, 45, 241, 36, 39, 247, 249, 31, 36, 247, 249, 36,\n    39, 42, 244, 51, 235, 48, 63, 66, 223, 75, 214, 72,\n    87, 20, 19, 98, 101, 192, 110, 113, 180, 165, 168, 122,\n    143, 153, 140, 153, 156, 137, 116, 119, 174, 92, 95, 198,\n    69, 217, 220, 45, 238, 241, 244, 247, 39, 241, 244, 42,\n    156, 134, 137, 159, 162, 131, 45, 48, 238, 51, 232, 235,\n    162, 128, 131, 125, 128, 162, 51, 54, 232, 54, 57, 229,\n    165, 122, 125, 119, 171, 174, 229, 57, 226, 226, 57, 60,\n    116, 174, 177, 113, 177, 180, 223, 226, 60, 220, 223, 66,\n    110, 180, 183, 107, 183, 186, 69, 72, 217, 75, 78, 214,\n    107, 186, 104, 186, 189, 104, 214, 78, 211, 211, 81, 208,\n    101, 189, 192, 98, 192, 195, 208, 81, 84, 205, 208, 84,\n    95, 195, 198, 92, 198, 18, 19, 205, 87, 21, 1976, 22,\n    1385, 1388, 1380, 1391, 1394, 1977, 1401, 1406, 24, 1388, 1391, 1977,\n    1406, 1408, 24, 1380, 1388, 1977, 1369, 25, 24, 26, 1380, 1977,\n    1401, 24, 26, 26, 1977, 1401, 583, 586, 580, 592, 595, 536,\n    598, 601, 533, 604, 607, 533, 607, 610, 533, 595, 533, 536,\n    580, 586, 589, 574, 577, 589, 568, 571, 589, 560, 564, 589,\n    548, 551, 592, 564, 568, 589, 545, 548, 592, 571, 574, 589,\n    542, 545, 592, 577, 580, 589, 539, 542, 592, 1978, 560, 592,\n    598, 533, 595, 619, 624, 29, 624, 627, 29, 630, 633, 29,\n    633, 636, 29, 627, 630, 29, 476, 493, 496, 484, 487, 481,\n    490, 493, 476, 496, 499, 476, 499, 502, 476, 487, 476, 481,\n    636, 27, 29, 487, 490, 476, 476, 502, 1979, 560, 589, 592,\n    536, 539, 592, 29, 533, 1980, 526, 28, 640, 520, 523, 640,\n    514, 517, 640, 476, 1979, 640, 509, 514, 640, 523, 526, 640,\n    533, 610, 1980, 1978, 592, 551, 601, 604, 533, 517, 520, 640,\n    640, 1979, 509, 29, 1980, 619, 27, 640, 28, 30, 36, 31,\n    33, 30, 32, 35, 39, 36, 37, 35, 30, 38, 42, 39,\n    40, 38, 35, 41, 45, 42, 43, 41, 38, 44, 48, 45,\n    46, 44, 41, 47, 51, 48, 49, 47, 44, 50, 54, 51,\n    52, 50, 47, 53, 57, 54, 55, 53, 50, 56, 60, 57,\n    58, 56, 53, 59, 63, 60, 61, 59, 56, 62, 66, 63,\n    64, 62, 59, 65, 69, 66, 67, 65, 62, 68, 72, 69,\n    70, 68, 65, 71, 75, 72, 73, 71, 68, 74, 78, 75,\n    76, 74, 71, 77, 81, 78, 79, 77, 74, 80, 84, 81,\n    82, 80, 77, 83, 87, 84, 85, 83, 80, 86, 20, 87,\n    88, 86, 83, 89, 92, 20, 90, 89, 86, 91, 95, 92,\n    93, 91, 89, 94, 98, 95, 96, 94, 91, 97, 101, 98,\n    99, 97, 94, 100, 104, 101, 102, 100, 97, 103, 107, 104,\n    105, 103, 100, 106, 110, 107, 108, 106, 103, 109, 113, 110,\n    111, 109, 106, 112, 116, 113, 114, 112, 109, 115, 119, 116,\n    117, 115, 112, 118, 122, 119, 120, 118, 115, 121, 125, 122,\n    123, 121, 118, 124, 128, 125, 126, 124, 121, 127, 131, 128,\n    129, 127, 124, 130, 134, 131, 132, 130, 127, 133, 137, 134,\n    135, 133, 130, 136, 140, 137, 138, 136, 133, 139, 143, 140,\n    141, 139, 136, 142, 146, 143, 144, 142, 139, 145, 150, 146,\n    147, 145, 142, 149, 153, 150, 151, 149, 145, 152, 156, 153,\n    154, 152, 149, 155, 159, 156, 157, 155, 152, 158, 162, 159,\n    160, 158, 155, 161, 165, 162, 163, 161, 158, 164, 168, 165,\n    166, 164, 161, 167, 171, 168, 169, 167, 164, 170, 174, 171,\n    172, 170, 167, 173, 177, 174, 175, 173, 170, 176, 180, 177,\n    178, 176, 173, 179, 183, 180, 181, 179, 176, 182, 186, 183,\n    184, 182, 179, 185, 189, 186, 187, 185, 182, 188, 192, 189,\n    190, 188, 185, 191, 195, 192, 193, 191, 188, 194, 198, 195,\n    196, 194, 191, 197, 18, 198, 199, 197, 194, 200, 19, 18,\n    201, 200, 197, 202, 205, 19, 203, 202, 200, 204, 208, 205,\n    206, 204, 202, 207, 211, 208, 209, 207, 204, 210, 214, 211,\n    212, 210, 207, 213, 217, 214, 215, 213, 210, 216, 220, 217,\n    218, 216, 213, 219, 223, 220, 221, 219, 216, 222, 226, 223,\n    224, 222, 219, 225, 229, 226, 227, 225, 222, 228, 232, 229,\n    230, 228, 225, 231, 235, 232, 233, 231, 228, 234, 238, 235,\n    236, 234, 231, 237, 241, 238, 239, 237, 234, 240, 244, 241,\n    242, 240, 237, 243, 247, 244, 245, 243, 240, 246, 249, 247,\n    248, 246, 243, 32, 31, 249, 250, 32, 246, 251, 33, 34,\n    253, 37, 33, 254, 40, 37, 255, 43, 40, 256, 46, 43,\n    257, 49, 46, 258, 52, 49, 259, 55, 52, 260, 58, 55,\n    261, 61, 58, 262, 64, 61, 263, 67, 64, 264, 70, 67,\n    265, 73, 70, 266, 76, 73, 267, 79, 76, 268, 82, 79,\n    269, 85, 82, 270, 88, 85, 271, 90, 88, 272, 93, 90,\n    273, 96, 93, 274, 99, 96, 275, 102, 99, 276, 105, 102,\n    277, 108, 105, 278, 111, 108, 279, 114, 111, 280, 117, 114,\n    281, 120, 117, 282, 123, 120, 283, 126, 123, 284, 129, 126,\n    285, 132, 129, 286, 135, 132, 287, 138, 135, 288, 141, 138,\n    289, 144, 141, 290, 147, 148, 292, 151, 147, 293, 154, 151,\n    294, 157, 154, 295, 160, 157, 296, 163, 160, 297, 166, 163,\n    298, 169, 166, 299, 172, 169, 300, 175, 172, 301, 178, 175,\n    302, 181, 178, 303, 184, 181, 304, 187, 184, 305, 190, 187,\n    306, 193, 190, 307, 196, 193, 308, 199, 196, 309, 201, 199,\n    310, 203, 201, 311, 206, 203, 312, 209, 206, 313, 212, 209,\n    314, 215, 212, 315, 218, 215, 316, 221, 218, 317, 224, 221,\n    318, 227, 224, 319, 230, 227, 320, 233, 230, 321, 236, 233,\n    322, 239, 236, 323, 242, 239, 324, 245, 242, 325, 248, 245,\n    326, 250, 248, 327, 251, 252, 329, 327, 328, 331, 253, 251,\n    332, 331, 327, 333, 254, 253, 334, 333, 331, 335, 255, 254,\n    336, 335, 333, 337, 256, 255, 338, 337, 335, 339, 257, 256,\n    340, 339, 337, 341, 258, 257, 342, 341, 339, 343, 259, 258,\n    344, 343, 341, 345, 260, 259, 346, 345, 343, 347, 261, 260,\n    348, 347, 345, 349, 262, 261, 350, 349, 347, 351, 263, 262,\n    352, 351, 349, 353, 264, 263, 354, 353, 351, 355, 265, 264,\n    356, 355, 353, 357, 266, 265, 358, 357, 355, 359, 267, 266,\n    360, 359, 357, 361, 268, 267, 362, 361, 359, 363, 269, 268,\n    364, 363, 361, 365, 270, 269, 366, 365, 363, 367, 271, 270,\n    368, 367, 365, 369, 272, 271, 370, 369, 367, 371, 273, 272,\n    372, 371, 369, 373, 274, 273, 374, 373, 371, 375, 275, 274,\n    376, 375, 373, 377, 276, 275, 378, 377, 375, 379, 277, 276,\n    380, 379, 377, 381, 278, 277, 382, 381, 379, 383, 279, 278,\n    384, 383, 381, 385, 280, 279, 386, 385, 383, 387, 281, 280,\n    388, 387, 385, 389, 282, 281, 390, 389, 387, 391, 283, 282,\n    392, 391, 389, 393, 284, 283, 394, 393, 391, 395, 285, 284,\n    396, 395, 393, 397, 286, 285, 398, 397, 395, 399, 287, 286,\n    400, 399, 397, 401, 288, 287, 402, 401, 399, 403, 289, 288,\n    404, 403, 401, 405, 290, 291, 406, 405, 403, 407, 292, 290,\n    408, 407, 405, 409, 293, 292, 410, 409, 407, 411, 294, 293,\n    412, 411, 409, 413, 295, 294, 414, 413, 411, 415, 296, 295,\n    416, 415, 413, 417, 297, 296, 418, 417, 415, 419, 298, 297,\n    420, 419, 417, 421, 299, 298, 422, 421, 419, 423, 300, 299,\n    424, 423, 421, 425, 301, 300, 426, 425, 423, 427, 302, 301,\n    428, 427, 425, 429, 303, 302, 430, 429, 427, 431, 304, 303,\n    432, 431, 429, 433, 305, 304, 434, 433, 431, 435, 306, 305,\n    436, 435, 433, 437, 307, 306, 438, 437, 435, 439, 308, 307,\n    440, 439, 437, 441, 309, 308, 442, 441, 439, 443, 310, 309,\n    444, 443, 441, 445, 311, 310, 446, 445, 443, 447, 312, 311,\n    448, 447, 445, 449, 313, 312, 450, 449, 447, 451, 314, 313,\n    452, 451, 449, 453, 315, 314, 454, 453, 451, 455, 316, 315,\n    456, 455, 453, 457, 317, 316, 458, 457, 455, 459, 318, 317,\n    460, 459, 457, 461, 319, 318, 462, 461, 459, 463, 320, 319,\n    464, 463, 461, 465, 321, 320, 466, 465, 463, 467, 322, 321,\n    468, 467, 465, 469, 323, 322, 470, 469, 467, 471, 324, 323,\n    472, 471, 469, 473, 325, 324, 474, 473, 471, 328, 326, 325,\n    330, 328, 473, 475, 481, 476, 478, 475, 477, 480, 484, 481,\n    482, 480, 475, 483, 487, 484, 485, 483, 480, 486, 490, 487,\n    488, 486, 483, 489, 493, 490, 491, 489, 486, 492, 496, 493,\n    494, 492, 489, 495, 499, 496, 497, 495, 492, 498, 502, 499,\n    500, 498, 495, 501, 1979, 502, 503, 501, 498, 510, 509, 1979,\n    507, 1981, 501, 508, 514, 509, 511, 508, 510, 513, 517, 514,\n    515, 513, 508, 516, 520, 517, 518, 516, 513, 519, 523, 520,\n    521, 519, 516, 522, 526, 523, 524, 522, 519, 525, 28, 526,\n    527, 525, 522, 528, 29, 28, 529, 528, 525, 530, 533, 29,\n    531, 530, 528, 532, 536, 533, 534, 532, 530, 535, 539, 536,\n    537, 535, 532, 538, 542, 539, 540, 538, 535, 541, 545, 542,\n    543, 541, 538, 544, 548, 545, 546, 544, 541, 547, 551, 548,\n    549, 547, 544, 550, 1978, 551, 1982, 550, 547, 561, 560, 1978,\n    558, 555, 557, 559, 564, 560, 566, 559, 561, 563, 568, 564,\n    565, 563, 559, 567, 571, 568, 569, 567, 563, 570, 574, 571,\n    572, 570, 567, 573, 577, 574, 575, 573, 570, 576, 580, 577,\n    578, 576, 573, 579, 583, 580, 581, 579, 576, 582, 586, 583,\n    584, 582, 579, 585, 589, 586, 587, 585, 582, 588, 592, 589,\n    590, 588, 585, 591, 595, 592, 593, 591, 588, 594, 598, 595,\n    596, 594, 591, 597, 601, 598, 599, 597, 594, 600, 604, 601,\n    602, 600, 597, 603, 607, 604, 605, 603, 600, 606, 610, 607,\n    608, 606, 603, 609, 1980, 610, 1983, 609, 606, 620, 619, 1980,\n    617, 614, 616, 618, 624, 619, 621, 618, 620, 623, 627, 624,\n    625, 623, 618, 626, 630, 627, 628, 626, 623, 629, 633, 630,\n    631, 629, 626, 632, 636, 633, 634, 632, 629, 635, 27, 636,\n    637, 635, 632, 638, 640, 27, 639, 638, 635, 477, 476, 640,\n    479, 477, 638, 641, 478, 479, 643, 482, 478, 644, 485, 482,\n    645, 488, 485, 646, 491, 488, 647, 494, 491, 648, 497, 494,\n    649, 500, 497, 650, 503, 500, 651, 507, 503, 652, 511, 512,\n    654, 515, 511, 655, 518, 515, 656, 521, 518, 657, 524, 521,\n    658, 527, 524, 659, 529, 527, 660, 531, 529, 661, 534, 531,\n    662, 537, 534, 663, 540, 537, 664, 543, 540, 665, 546, 543,\n    666, 549, 546, 667, 552, 554, 669, 558, 552, 670, 562, 558,\n    671, 565, 566, 673, 569, 565, 674, 572, 569, 675, 575, 572,\n    676, 578, 575, 677, 581, 578, 678, 584, 581, 679, 587, 584,\n    680, 590, 587, 681, 593, 590, 682, 596, 593, 683, 599, 596,\n    684, 602, 599, 685, 605, 602, 686, 608, 605, 687, 611, 613,\n    689, 617, 611, 690, 621, 622, 692, 625, 621, 693, 628, 625,\n    694, 631, 628, 695, 634, 631, 696, 637, 634, 697, 639, 637,\n    642, 479, 639, 698, 641, 642, 700, 698, 699, 702, 643, 641,\n    703, 702, 698, 704, 644, 643, 705, 704, 702, 706, 645, 644,\n    707, 706, 704, 708, 646, 645, 709, 708, 706, 710, 647, 646,\n    711, 710, 708, 712, 648, 647, 713, 712, 710, 714, 649, 648,\n    715, 714, 712, 716, 650, 649, 717, 716, 714, 1984, 651, 650,\n    1985, 1986, 1987, 720, 652, 653, 722, 720, 721, 723, 654, 652,\n    724, 723, 720, 725, 655, 654, 726, 725, 723, 727, 656, 655,\n    728, 727, 725, 729, 657, 656, 730, 729, 727, 731, 658, 657,\n    732, 731, 729, 733, 659, 658, 734, 733, 731, 735, 660, 659,\n    736, 735, 733, 737, 661, 660, 738, 737, 735, 739, 662, 661,\n    740, 739, 737, 741, 663, 662, 742, 741, 739, 743, 664, 663,\n    744, 743, 741, 745, 665, 664, 746, 745, 743, 747, 666, 665,\n    748, 747, 745, 752, 667, 668, 750, 749, 747, 751, 669, 667,\n    1988, 751, 752, 1989, 670, 669, 757, 754, 756, 758, 671, 672,\n    759, 758, 754, 760, 673, 671, 761, 760, 758, 762, 674, 673,\n    763, 762, 760, 764, 675, 674, 765, 764, 762, 766, 676, 675,\n    767, 766, 764, 768, 677, 676, 769, 768, 766, 770, 678, 677,\n    771, 770, 768, 772, 679, 678, 773, 772, 770, 774, 680, 679,\n    775, 774, 772, 776, 681, 680, 777, 776, 774, 778, 682, 681,\n    779, 778, 776, 780, 683, 682, 781, 780, 778, 782, 684, 683,\n    783, 782, 780, 784, 685, 684, 785, 784, 782, 786, 686, 685,\n    787, 786, 784, 791, 687, 688, 789, 788, 786, 790, 689, 687,\n    1990, 790, 791, 793, 690, 691, 795, 793, 794, 796, 692, 690,\n    797, 796, 793, 798, 693, 692, 799, 798, 796, 800, 694, 693,\n    801, 800, 798, 802, 695, 694, 803, 802, 800, 804, 696, 695,\n    805, 804, 802, 806, 697, 696, 807, 806, 804, 699, 642, 697,\n    701, 699, 806, 808, 814, 809, 811, 808, 810, 813, 817, 814,\n    815, 813, 808, 816, 1976, 817, 818, 816, 813, 824, 22, 1976,\n    822, 819, 821, 823, 828, 22, 825, 823, 824, 827, 831, 828,\n    829, 827, 823, 830, 834, 831, 832, 830, 827, 833, 837, 834,\n    835, 833, 830, 836, 840, 837, 838, 836, 833, 839, 843, 840,\n    841, 839, 836, 842, 846, 843, 844, 842, 839, 845, 849, 846,\n    847, 845, 842, 848, 852, 849, 850, 848, 845, 851, 855, 852,\n    853, 851, 848, 854, 858, 855, 856, 854, 851, 857, 861, 858,\n    859, 857, 854, 860, 864, 861, 862, 860, 857, 863, 867, 864,\n    865, 863, 860, 866, 870, 867, 868, 866, 863, 869, 873, 870,\n    871, 869, 866, 872, 876, 873, 874, 872, 869, 875, 879, 876,\n    877, 875, 872, 878, 882, 879, 880, 878, 875, 881, 6, 882,\n    883, 881, 878, 884, 7, 6, 885, 884, 881, 886, 889, 7,\n    887, 886, 884, 888, 892, 889, 890, 888, 886, 891, 895, 892,\n    893, 891, 888, 894, 898, 895, 896, 894, 891, 897, 901, 898,\n    899, 897, 894, 900, 904, 901, 902, 900, 897, 903, 907, 904,\n    905, 903, 900, 906, 910, 907, 908, 906, 903, 909, 913, 910,\n    911, 909, 906, 912, 916, 913, 914, 912, 909, 915, 919, 916,\n    917, 915, 912, 918, 922, 919, 920, 918, 915, 921, 925, 922,\n    923, 921, 918, 924, 928, 925, 926, 924, 921, 927, 931, 928,\n    929, 927, 924, 930, 934, 931, 932, 930, 927, 933, 938, 934,\n    935, 933, 930, 937, 941, 938, 939, 937, 933, 940, 944, 941,\n    942, 940, 937, 943, 947, 944, 945, 943, 940, 946, 950, 947,\n    948, 946, 943, 949, 953, 950, 951, 949, 946, 952, 956, 953,\n    954, 952, 949, 955, 959, 956, 957, 955, 952, 958, 962, 959,\n    960, 958, 955, 961, 965, 962, 963, 961, 958, 964, 968, 965,\n    966, 964, 961, 967, 970, 968, 969, 967, 964, 810, 809, 970,\n    812, 810, 967, 971, 811, 812, 973, 815, 811, 974, 818, 815,\n    975, 822, 818, 976, 825, 826, 978, 829, 825, 979, 832, 829,\n    980, 835, 832, 981, 838, 835, 982, 841, 838, 983, 844, 841,\n    984, 847, 844, 985, 850, 847, 986, 853, 850, 987, 856, 853,\n    988, 859, 856, 989, 862, 859, 990, 865, 862, 991, 868, 865,\n    992, 871, 868, 993, 874, 871, 994, 877, 874, 995, 880, 877,\n    996, 883, 880, 997, 885, 883, 998, 887, 885, 999, 890, 887,\n    1000, 893, 890, 1001, 896, 893, 1002, 899, 896, 1003, 902, 899,\n    1004, 905, 902, 1005, 908, 905, 1006, 911, 908, 1007, 914, 911,\n    1008, 917, 914, 1009, 920, 917, 1010, 923, 920, 1011, 926, 923,\n    1012, 929, 926, 1013, 932, 929, 1014, 935, 936, 1016, 939, 935,\n    1017, 942, 939, 1018, 945, 942, 1019, 948, 945, 1020, 951, 948,\n    1021, 954, 951, 1022, 957, 954, 1023, 960, 957, 1024, 963, 960,\n    1025, 966, 963, 1026, 969, 966, 972, 812, 969, 1027, 971, 972,\n    1029, 1027, 1028, 1031, 973, 971, 1032, 1031, 1027, 1033, 974, 973,\n    1034, 1033, 1031, 1035, 975, 974, 1991, 1035, 1036, 1038, 976, 977,\n    1040, 1038, 1039, 1041, 978, 976, 1042, 1041, 1038, 1043, 979, 978,\n    1044, 1043, 1041, 1045, 980, 979, 1046, 1045, 1043, 1047, 981, 980,\n    1048, 1047, 1045, 1049, 982, 981, 1050, 1049, 1047, 1051, 983, 982,\n    1052, 1051, 1049, 1053, 984, 983, 1054, 1053, 1051, 1055, 985, 984,\n    1056, 1055, 1053, 1057, 986, 985, 1058, 1057, 1055, 1059, 987, 986,\n    1060, 1059, 1057, 1061, 988, 987, 1062, 1061, 1059, 1063, 989, 988,\n    1064, 1063, 1061, 1065, 990, 989, 1066, 1065, 1063, 1067, 991, 990,\n    1068, 1067, 1065, 1069, 992, 991, 1070, 1069, 1067, 1071, 993, 992,\n    1072, 1071, 1069, 1073, 994, 993, 1074, 1073, 1071, 1075, 995, 994,\n    1076, 1075, 1073, 1077, 996, 995, 1078, 1077, 1075, 1079, 997, 996,\n    1080, 1079, 1077, 1081, 998, 997, 1082, 1081, 1079, 1083, 999, 998,\n    1084, 1083, 1081, 1085, 1000, 999, 1086, 1085, 1083, 1087, 1001, 1000,\n    1088, 1087, 1085, 1089, 1002, 1001, 1090, 1089, 1087, 1091, 1003, 1002,\n    1092, 1091, 1089, 1093, 1004, 1003, 1094, 1093, 1091, 1095, 1005, 1004,\n    1096, 1095, 1093, 1097, 1006, 1005, 1098, 1097, 1095, 1099, 1007, 1006,\n    1100, 1099, 1097, 1101, 1008, 1007, 1102, 1101, 1099, 1103, 1009, 1008,\n    1104, 1103, 1101, 1105, 1010, 1009, 1106, 1105, 1103, 1107, 1011, 1010,\n    1108, 1107, 1105, 1109, 1012, 1011, 1110, 1109, 1107, 1111, 1013, 1012,\n    1112, 1111, 1109, 1113, 1014, 1015, 1114, 1113, 1111, 1115, 1016, 1014,\n    1116, 1115, 1113, 1117, 1017, 1016, 1118, 1117, 1115, 1119, 1018, 1017,\n    1120, 1119, 1117, 1121, 1019, 1018, 1122, 1121, 1119, 1123, 1020, 1019,\n    1124, 1123, 1121, 1125, 1021, 1020, 1126, 1125, 1123, 1127, 1022, 1021,\n    1128, 1127, 1125, 1129, 1023, 1022, 1130, 1129, 1127, 1131, 1024, 1023,\n    1132, 1131, 1129, 1133, 1025, 1024, 1134, 1133, 1131, 1135, 1026, 1025,\n    1136, 1135, 1133, 1028, 972, 1026, 1030, 1028, 1135, 1137, 1143, 1138,\n    1140, 1137, 1139, 1142, 1147, 1143, 1144, 1142, 1137, 1146, 1150, 1147,\n    1148, 1146, 1142, 1149, 1153, 1150, 1151, 1149, 1146, 1152, 1156, 1153,\n    1154, 1152, 1149, 1155, 1159, 1156, 1157, 1155, 1152, 1158, 1162, 1159,\n    1160, 1158, 1155, 1161, 1165, 1162, 1163, 1161, 1158, 1164, 1168, 1165,\n    1166, 1164, 1161, 1167, 1171, 1168, 1169, 1167, 1164, 1170, 8, 1171,\n    1172, 1170, 1167, 1173, 1176, 8, 1174, 1173, 1170, 1175, 1179, 1176,\n    1177, 1175, 1173, 1178, 1182, 1179, 1180, 1178, 1175, 1181, 1185, 1182,\n    1183, 1181, 1178, 1184, 1188, 1185, 1186, 1184, 1181, 1187, 1191, 1188,\n    1189, 1187, 1184, 1190, 1194, 1191, 1192, 1190, 1187, 1193, 1197, 1194,\n    1195, 1193, 1190, 1196, 1200, 1197, 1198, 1196, 1193, 1199, 1203, 1200,\n    1201, 1199, 1196, 1202, 1206, 1203, 1204, 1202, 1199, 1205, 1209, 1206,\n    1207, 1205, 1202, 1208, 1212, 1209, 1210, 1208, 1205, 1211, 1215, 1212,\n    1213, 1211, 1208, 1214, 1218, 1215, 1216, 1214, 1211, 1217, 1221, 1218,\n    1219, 1217, 1214, 1220, 1224, 1221, 1222, 1220, 1217, 1223, 1227, 1224,\n    1225, 1223, 1220, 1226, 1230, 1227, 1228, 1226, 1223, 1229, 1233, 1230,\n    1231, 1229, 1226, 1232, 23, 1233, 1234, 1232, 1229, 1235, 21, 23,\n    1236, 1235, 1232, 1237, 1240, 21, 1238, 1237, 1235, 1239, 1243, 1240,\n    1241, 1239, 1237, 1242, 1246, 1243, 1244, 1242, 1239, 1245, 1248, 1246,\n    1247, 1245, 1242, 1139, 1138, 1248, 1141, 1139, 1245, 1249, 1140, 1141,\n    1251, 1144, 1145, 1253, 1148, 1144, 1254, 1151, 1148, 1255, 1154, 1151,\n    1256, 1157, 1154, 1257, 1160, 1157, 1258, 1163, 1160, 1259, 1166, 1163,\n    1260, 1169, 1166, 1261, 1172, 1169, 1262, 1174, 1172, 1263, 1177, 1174,\n    1264, 1180, 1177, 1265, 1183, 1180, 1266, 1186, 1183, 1267, 1189, 1186,\n    1268, 1192, 1189, 1269, 1195, 1192, 1270, 1198, 1195, 1271, 1201, 1198,\n    1272, 1204, 1201, 1273, 1207, 1204, 1274, 1210, 1207, 1275, 1213, 1210,\n    1276, 1216, 1213, 1277, 1219, 1216, 1278, 1222, 1219, 1279, 1225, 1222,\n    1280, 1228, 1225, 1281, 1231, 1228, 1282, 1234, 1231, 1283, 1236, 1234,\n    1284, 1238, 1236, 1285, 1241, 1238, 1286, 1244, 1241, 1287, 1247, 1244,\n    1250, 1141, 1247, 1288, 1249, 1250, 1290, 1288, 1289, 1292, 1251, 1252,\n    1293, 1292, 1288, 1294, 1253, 1251, 1295, 1294, 1292, 1296, 1254, 1253,\n    1297, 1296, 1294, 1298, 1255, 1254, 1299, 1298, 1296, 1300, 1256, 1255,\n    1301, 1300, 1298, 1302, 1257, 1256, 1303, 1302, 1300, 1304, 1258, 1257,\n    1305, 1304, 1302, 1306, 1259, 1258, 1307, 1306, 1304, 1308, 1260, 1259,\n    1309, 1308, 1306, 1310, 1261, 1260, 1311, 1310, 1308, 1312, 1262, 1261,\n    1313, 1312, 1310, 1314, 1263, 1262, 1315, 1314, 1312, 1316, 1264, 1263,\n    1317, 1316, 1314, 1318, 1265, 1264, 1319, 1318, 1316, 1320, 1266, 1265,\n    1321, 1320, 1318, 1322, 1267, 1266, 1323, 1322, 1320, 1324, 1268, 1267,\n    1325, 1324, 1322, 1326, 1269, 1268, 1327, 1326, 1324, 1328, 1270, 1269,\n    1329, 1328, 1326, 1330, 1271, 1270, 1331, 1330, 1328, 1332, 1272, 1271,\n    1333, 1332, 1330, 1334, 1273, 1272, 1335, 1334, 1332, 1336, 1274, 1273,\n    1337, 1336, 1334, 1338, 1275, 1274, 1339, 1338, 1336, 1340, 1276, 1275,\n    1341, 1340, 1338, 1342, 1277, 1276, 1343, 1342, 1340, 1344, 1278, 1277,\n    1345, 1344, 1342, 1346, 1279, 1278, 1347, 1346, 1344, 1348, 1280, 1279,\n    1349, 1348, 1346, 1350, 1281, 1280, 1351, 1350, 1348, 1352, 1282, 1281,\n    1353, 1352, 1350, 1354, 1283, 1282, 1355, 1354, 1352, 1356, 1284, 1283,\n    1357, 1356, 1354, 1358, 1285, 1284, 1359, 1358, 1356, 1360, 1286, 1285,\n    1361, 1360, 1358, 1362, 1287, 1286, 1363, 1362, 1360, 1289, 1250, 1287,\n    1291, 1289, 1362, 1364, 1369, 24, 1366, 1364, 1365, 1368, 25, 1369,\n    1370, 1368, 1364, 1372, 26, 25, 1373, 1372, 1368, 1381, 1380, 26,\n    1377, 1374, 1376, 1379, 1385, 1380, 1382, 1379, 1381, 1384, 1388, 1385,\n    1386, 1384, 1379, 1387, 1391, 1388, 1389, 1387, 1384, 1390, 1394, 1391,\n    1392, 1390, 1387, 1393, 1977, 1394, 1395, 1393, 1390, 1402, 1401, 1977,\n    1399, 1396, 1398, 1400, 1406, 1401, 1403, 1400, 1402, 1405, 1408, 1406,\n    1407, 1405, 1400, 1365, 24, 1408, 1367, 1365, 1405, 1410, 1366, 1367,\n    1412, 1370, 1371, 1414, 1373, 1370, 1415, 1377, 1378, 1417, 1382, 1383,\n    1419, 1386, 1382, 1420, 1389, 1386, 1421, 1392, 1389, 1422, 1395, 1392,\n    1423, 1399, 1395, 1424, 1403, 1404, 1426, 1407, 1403, 1411, 1367, 1409,\n    1428, 1410, 1411, 1430, 1428, 1429, 1431, 1412, 1413, 1432, 1431, 1428,\n    1433, 1414, 1412, 0, 1433, 1431, 1434, 1415, 1416, 1992, 1434, 1435,\n    1437, 1417, 1418, 1439, 1437, 1438, 1440, 1419, 1417, 1441, 1440, 1437,\n    1442, 1420, 1419, 1443, 1442, 1440, 1444, 1421, 1420, 1445, 1444, 1442,\n    1446, 1422, 1421, 1447, 1446, 1444, 1448, 1423, 1422, 1993, 1448, 1449,\n    1450, 1424, 1425, 1452, 1450, 1451, 1453, 1426, 1424, 1454, 1453, 1450,\n    1429, 1411, 1427, 1, 1429, 1453, 1455, 1461, 1456, 1458, 1455, 1457,\n    1460, 1464, 1461, 1462, 1460, 1455, 1463, 1467, 1464, 1465, 1463, 1460,\n    1466, 1470, 1467, 1468, 1466, 1463, 1469, 1473, 1470, 1471, 1469, 1466,\n    1472, 1476, 1473, 1474, 1472, 1469, 1475, 1479, 1476, 1477, 1475, 1472,\n    1478, 1482, 1479, 1480, 1478, 1475, 1481, 1485, 1482, 1483, 1481, 1478,\n    1484, 1488, 1485, 1486, 1484, 1481, 1487, 1491, 1488, 1489, 1487, 1484,\n    1490, 1494, 1491, 1492, 1490, 1487, 1493, 1497, 1494, 1495, 1493, 1490,\n    1496, 1500, 1497, 1498, 1496, 1493, 1499, 1503, 1500, 1501, 1499, 1496,\n    1502, 1506, 1503, 1504, 1502, 1499, 1505, 1509, 1506, 1507, 1505, 1502,\n    1508, 1512, 1509, 1510, 1508, 1505, 1511, 1515, 1512, 1513, 1511, 1508,\n    1514, 1518, 1515, 1516, 1514, 1511, 1517, 1522, 1518, 1519, 1517, 1514,\n    1521, 1525, 1522, 1523, 1521, 1517, 1524, 1528, 1525, 1526, 1524, 1521,\n    1527, 1531, 1528, 1529, 1527, 1524, 1530, 1534, 1531, 1532, 1530, 1527,\n    1533, 1537, 1534, 1535, 1533, 1530, 1536, 1540, 1537, 1538, 1536, 1533,\n    1539, 1543, 1540, 1541, 1539, 1536, 1542, 1546, 1543, 1544, 1542, 1539,\n    1545, 1549, 1546, 1547, 1545, 1542, 1548, 1552, 1549, 1550, 1548, 1545,\n    1551, 1555, 1552, 1553, 1551, 1548, 1554, 1558, 1555, 1556, 1554, 1551,\n    1557, 1561, 1558, 1559, 1557, 1554, 1560, 1564, 1561, 1562, 1560, 1557,\n    1563, 1567, 1564, 1565, 1563, 1560, 1566, 1570, 1567, 1568, 1566, 1563,\n    1569, 1573, 1570, 1571, 1569, 1566, 1572, 1576, 1573, 1574, 1572, 1569,\n    1575, 13, 1576, 1577, 1575, 1572, 1578, 14, 13, 1579, 1578, 1575,\n    1580, 1583, 14, 1581, 1580, 1578, 1582, 1586, 1583, 1584, 1582, 1580,\n    1585, 1589, 1586, 1587, 1585, 1582, 1588, 1592, 1589, 1590, 1588, 1585,\n    1591, 1595, 1592, 1593, 1591, 1588, 1594, 1598, 1595, 1596, 1594, 1591,\n    1597, 1601, 1598, 1599, 1597, 1594, 1600, 1604, 1601, 1602, 1600, 1597,\n    1603, 1607, 1604, 1605, 1603, 1600, 1606, 1610, 1607, 1608, 1606, 1603,\n    1609, 1613, 1610, 1611, 1609, 1606, 1612, 1616, 1613, 1614, 1612, 1609,\n    1615, 1619, 1616, 1617, 1615, 1612, 1618, 1622, 1619, 1620, 1618, 1615,\n    1621, 1625, 1622, 1623, 1621, 1618, 1624, 1628, 1625, 1626, 1624, 1621,\n    1627, 1631, 1628, 1629, 1627, 1624, 1630, 1634, 1631, 1632, 1630, 1627,\n    1633, 16, 1634, 1635, 1633, 1630, 1636, 17, 16, 1637, 1636, 1633,\n    1638, 1640, 17, 1639, 1638, 1636, 1457, 1456, 1640, 1459, 1457, 1638,\n    1641, 1458, 1459, 1643, 1462, 1458, 1644, 1465, 1462, 1645, 1468, 1465,\n    1646, 1471, 1468, 1647, 1474, 1471, 1648, 1477, 1474, 1649, 1480, 1477,\n    1650, 1483, 1480, 1651, 1486, 1483, 1652, 1489, 1486, 1653, 1492, 1489,\n    1654, 1495, 1492, 1655, 1498, 1495, 1656, 1501, 1498, 1657, 1504, 1501,\n    1658, 1507, 1504, 1659, 1510, 1507, 1660, 1513, 1510, 1661, 1516, 1513,\n    1662, 1519, 1520, 1664, 1523, 1519, 1665, 1526, 1523, 1666, 1529, 1526,\n    1667, 1532, 1529, 1668, 1535, 1532, 1669, 1538, 1535, 1670, 1541, 1538,\n    1671, 1544, 1541, 1672, 1547, 1544, 1673, 1550, 1547, 1674, 1553, 1550,\n    1675, 1556, 1553, 1676, 1559, 1556, 1677, 1562, 1559, 1678, 1565, 1562,\n    1679, 1568, 1565, 1680, 1571, 1568, 1681, 1574, 1571, 1682, 1577, 1574,\n    1683, 1579, 1577, 1684, 1581, 1579, 1685, 1584, 1581, 1686, 1587, 1584,\n    1687, 1590, 1587, 1688, 1593, 1590, 1689, 1596, 1593, 1690, 1599, 1596,\n    1691, 1602, 1599, 1692, 1605, 1602, 1693, 1608, 1605, 1694, 1611, 1608,\n    1695, 1614, 1611, 1696, 1617, 1614, 1697, 1620, 1617, 1698, 1623, 1620,\n    1699, 1626, 1623, 1700, 1629, 1626, 1701, 1632, 1629, 1702, 1635, 1632,\n    1703, 1637, 1635, 1704, 1639, 1637, 1642, 1459, 1639, 1705, 1641, 1642,\n    1707, 1705, 1706, 1709, 1643, 1641, 1710, 1709, 1705, 1711, 1644, 1643,\n    1712, 1711, 1709, 1713, 1645, 1644, 1714, 1713, 1711, 1715, 1646, 1645,\n    1716, 1715, 1713, 1717, 1647, 1646, 1718, 1717, 1715, 1719, 1648, 1647,\n    1720, 1719, 1717, 1721, 1649, 1648, 1722, 1721, 1719, 1723, 1650, 1649,\n    1724, 1723, 1721, 1725, 1651, 1650, 1726, 1725, 1723, 1727, 1652, 1651,\n    1728, 1727, 1725, 1729, 1653, 1652, 1730, 1729, 1727, 1731, 1654, 1653,\n    1732, 1731, 1729, 1733, 1655, 1654, 1734, 1733, 1731, 1735, 1656, 1655,\n    1736, 1735, 1733, 1737, 1657, 1656, 1738, 1737, 1735, 1739, 1658, 1657,\n    1740, 1739, 1737, 1741, 1659, 1658, 1742, 1741, 1739, 1743, 1660, 1659,\n    1744, 1743, 1741, 1745, 1661, 1660, 1746, 1745, 1743, 1747, 1662, 1663,\n    1748, 1747, 1745, 1749, 1664, 1662, 1750, 1749, 1747, 1751, 1665, 1664,\n    1752, 1751, 1749, 1753, 1666, 1665, 1754, 1753, 1751, 1755, 1667, 1666,\n    1756, 1755, 1753, 1757, 1668, 1667, 1758, 1757, 1755, 1759, 1669, 1668,\n    1760, 1759, 1757, 1761, 1670, 1669, 1762, 1761, 1759, 1763, 1671, 1670,\n    1764, 1763, 1761, 1765, 1672, 1671, 1766, 1765, 1763, 1767, 1673, 1672,\n    1768, 1767, 1765, 1769, 1674, 1673, 1770, 1769, 1767, 1771, 1675, 1674,\n    1772, 1771, 1769, 1773, 1676, 1675, 1774, 1773, 1771, 1775, 1677, 1676,\n    1776, 1775, 1773, 1777, 1678, 1677, 1778, 1777, 1775, 1779, 1679, 1678,\n    1780, 1779, 1777, 1781, 1680, 1679, 1782, 1781, 1779, 1783, 1681, 1680,\n    1784, 1783, 1781, 1785, 1682, 1681, 4, 1785, 1783, 1786, 1683, 1682,\n    1787, 1786, 1785, 1788, 1684, 1683, 1789, 1788, 1786, 1790, 1685, 1684,\n    1791, 1790, 1788, 1792, 1686, 1685, 1793, 1792, 1790, 1794, 1687, 1686,\n    1795, 1794, 1792, 1796, 1688, 1687, 1797, 1796, 1794, 1798, 1689, 1688,\n    1799, 1798, 1796, 1800, 1690, 1689, 1801, 1800, 1798, 1802, 1691, 1690,\n    1803, 1802, 1800, 1804, 1692, 1691, 1805, 1804, 1802, 1806, 1693, 1692,\n    1807, 1806, 1804, 1808, 1694, 1693, 1809, 1808, 1806, 1810, 1695, 1694,\n    1811, 1810, 1808, 1812, 1696, 1695, 1813, 1812, 1810, 1814, 1697, 1696,\n    1815, 1814, 1812, 1816, 1698, 1697, 1817, 1816, 1814, 1818, 1699, 1698,\n    1819, 1818, 1816, 1820, 1700, 1699, 1821, 1820, 1818, 1822, 1701, 1700,\n    1823, 1822, 1820, 1824, 1702, 1701, 11, 1824, 1822, 1825, 1703, 1702,\n    1826, 1825, 1824, 1827, 1704, 1703, 1828, 1827, 1825, 1706, 1642, 1704,\n    1708, 1706, 1827, 1829, 1835, 1830, 1832, 1829, 1831, 1834, 1838, 1835,\n    1836, 1834, 1829, 1837, 15, 1838, 1839, 1837, 1834, 1840, 1843, 15,\n    1841, 1840, 1837, 1842, 1846, 1843, 1844, 1842, 1840, 1845, 1849, 1846,\n    1847, 1845, 1842, 1848, 1852, 1849, 1850, 1848, 1845, 1851, 1855, 1852,\n    1853, 1851, 1848, 1854, 1858, 1855, 1856, 1854, 1851, 1857, 1861, 1858,\n    1859, 1857, 1854, 1860, 1864, 1861, 1862, 1860, 1857, 1863, 1867, 1864,\n    1865, 1863, 1860, 1866, 1870, 1867, 1868, 1866, 1863, 1869, 1873, 1870,\n    1871, 1869, 1866, 1872, 1876, 1873, 1874, 1872, 1869, 1875, 1879, 1876,\n    1877, 1875, 1872, 1878, 1882, 1879, 1880, 1878, 1875, 1881, 1885, 1882,\n    1883, 1881, 1878, 1884, 1888, 1885, 1886, 1884, 1881, 1887, 1891, 1888,\n    1889, 1887, 1884, 1890, 1894, 1891, 1892, 1890, 1887, 1893, 1897, 1894,\n    1895, 1893, 1890, 1896, 1900, 1897, 1898, 1896, 1893, 1899, 12, 1900,\n    1901, 1899, 1896, 1831, 1830, 12, 1994, 1831, 1899, 1904, 1832, 1833,\n    1906, 1836, 1832, 1907, 1839, 1836, 1908, 1841, 1839, 1909, 1844, 1841,\n    1910, 1847, 1844, 1911, 1850, 1847, 1912, 1853, 1850, 1913, 1856, 1853,\n    1914, 1859, 1856, 1915, 1862, 1859, 1916, 1865, 1862, 1917, 1868, 1865,\n    1918, 1871, 1868, 1919, 1874, 1871, 1920, 1877, 1874, 1921, 1880, 1877,\n    1922, 1883, 1880, 1923, 1886, 1883, 1924, 1889, 1886, 1925, 1892, 1889,\n    1926, 1895, 1892, 1927, 1898, 1895, 1928, 1901, 1898, 1905, 1833, 1903,\n    1930, 1904, 1905, 1932, 1930, 1931, 1933, 1906, 1904, 1934, 1933, 1930,\n    1935, 1907, 1906, 10, 1935, 1933, 1936, 1908, 1907, 9, 1936, 1935,\n    1937, 1909, 1908, 1938, 1937, 1936, 1939, 1910, 1909, 1940, 1939, 1937,\n    1941, 1911, 1910, 1942, 1941, 1939, 1943, 1912, 1911, 1944, 1943, 1941,\n    1945, 1913, 1912, 1946, 1945, 1943, 1947, 1914, 1913, 1948, 1947, 1945,\n    1949, 1915, 1914, 1950, 1949, 1947, 1951, 1916, 1915, 1952, 1951, 1949,\n    1953, 1917, 1916, 1954, 1953, 1951, 1955, 1918, 1917, 1956, 1955, 1953,\n    1957, 1919, 1918, 1958, 1957, 1955, 1959, 1920, 1919, 1960, 1959, 1957,\n    1961, 1921, 1920, 1962, 1961, 1959, 1963, 1922, 1921, 1964, 1963, 1961,\n    1965, 1923, 1922, 1966, 1965, 1963, 1967, 1924, 1923, 1968, 1967, 1965,\n    1969, 1925, 1924, 1970, 1969, 1967, 1971, 1926, 1925, 1972, 1971, 1969,\n    1973, 1927, 1926, 1974, 1973, 1971, 1975, 1928, 1927, 3, 1975, 1973,\n    1931, 1905, 1929, 5, 1931, 1975, 394, 392, 414, 390, 388, 416,\n    386, 422, 420, 382, 426, 424, 378, 376, 430, 374, 372, 434,\n    370, 368, 438, 366, 364, 442, 362, 360, 446, 358, 356, 450,\n    354, 352, 452, 350, 456, 454, 346, 344, 458, 342, 340, 462,\n    338, 336, 466, 334, 332, 470, 329, 330, 474, 329, 474, 472,\n    336, 334, 468, 344, 342, 460, 352, 350, 454, 360, 358, 448,\n    368, 440, 438, 376, 374, 432, 384, 422, 386, 392, 390, 414,\n    398, 396, 410, 402, 400, 408, 406, 404, 402, 408, 406, 402,\n    400, 398, 408, 388, 386, 420, 372, 436, 434, 356, 354, 450,\n    340, 338, 464, 329, 472, 332, 472, 470, 332, 396, 394, 412,\n    410, 408, 398, 412, 410, 396, 334, 470, 468, 336, 468, 466,\n    414, 412, 394, 416, 414, 390, 338, 466, 464, 340, 464, 462,\n    418, 416, 388, 420, 418, 388, 342, 462, 460, 344, 460, 458,\n    384, 424, 422, 384, 382, 424, 346, 458, 456, 346, 456, 348,\n    382, 380, 426, 426, 380, 428, 348, 456, 350, 352, 454, 452,\n    428, 380, 378, 430, 428, 378, 354, 452, 450, 358, 450, 448,\n    432, 430, 376, 434, 432, 374, 360, 448, 446, 362, 446, 444,\n    372, 370, 436, 436, 370, 438, 362, 444, 364, 444, 442, 364,\n    368, 366, 440, 773, 763, 761, 769, 767, 771, 765, 763, 773,\n    761, 759, 773, 759, 757, 773, 767, 773, 771, 779, 777, 736,\n    783, 781, 736, 787, 785, 736, 789, 787, 736, 781, 779, 736,\n    767, 765, 773, 773, 757, 753, 785, 783, 736, 797, 795, 734,\n    799, 797, 734, 803, 801, 734, 805, 803, 734, 801, 799, 734,\n    703, 700, 705, 707, 705, 701, 711, 709, 701, 715, 713, 701,\n    717, 715, 701, 709, 707, 701, 807, 722, 719, 705, 700, 701,\n    713, 711, 701, 775, 773, 753, 750, 748, 775, 775, 753, 750,\n    777, 775, 738, 748, 746, 775, 744, 742, 775, 740, 738, 775,\n    736, 734, 789, 732, 730, 807, 728, 726, 807, 724, 722, 807,\n    719, 717, 807, 775, 746, 744, 742, 740, 775, 734, 795, 792,\n    726, 724, 807, 717, 701, 807, 807, 730, 728, 732, 805, 734,\n    777, 738, 736, 807, 805, 732, 1130, 1128, 1096, 1126, 1124, 1100,\n    1122, 1120, 1102, 1118, 1116, 1106, 1114, 1112, 1110, 1114, 1110, 1108,\n    1120, 1118, 1104, 1128, 1126, 1098, 1134, 1094, 1092, 1030, 1136, 1090,\n    1032, 1029, 1034, 1357, 1355, 1034, 1034, 1029, 1361, 1136, 1092, 1090,\n    1124, 1122, 1100, 1114, 1108, 1116, 1108, 1106, 1116, 1029, 1030, 1291,\n    1359, 1357, 1034, 1361, 1359, 1034, 1118, 1106, 1104, 1120, 1104, 1102,\n    1363, 1361, 1029, 1291, 1363, 1029, 1122, 1102, 1100, 1126, 1100, 1098,\n    1291, 1030, 1290, 1290, 1030, 1088, 1128, 1098, 1096, 1130, 1096, 1094,\n    1037, 1353, 1351, 1042, 1040, 1347, 1046, 1343, 1341, 1050, 1048, 1337,\n    1054, 1052, 1333, 1058, 1056, 1329, 1062, 1327, 1064, 1066, 1064, 1325,\n    1070, 1068, 1323, 1074, 1321, 1319, 1078, 1076, 1315, 1082, 1080, 1309,\n    1086, 1297, 1295, 1088, 1086, 1293, 1080, 1078, 1311, 1072, 1321, 1074,\n    1066, 1325, 1068, 1056, 1054, 1331, 1048, 1046, 1339, 1040, 1037, 1351,\n    1040, 1351, 1349, 1052, 1050, 1335, 1074, 1319, 1076, 1130, 1094, 1132,\n    1040, 1349, 1347, 1076, 1317, 1315, 1042, 1347, 1345, 1042, 1345, 1044,\n    1094, 1134, 1132, 1345, 1343, 1044, 1092, 1136, 1134, 1343, 1046, 1044,\n    1030, 1090, 1088, 1293, 1290, 1088, 1046, 1341, 1339, 1048, 1339, 1337,\n    1293, 1086, 1295, 1086, 1299, 1297, 1050, 1337, 1335, 1052, 1335, 1333,\n    1086, 1084, 1299, 1299, 1084, 1301, 1054, 1333, 1331, 1056, 1331, 1329,\n    1301, 1084, 1303, 1303, 1084, 1082, 1058, 1329, 1060, 1329, 1327, 1060,\n    1305, 1303, 1082, 1307, 1305, 1082, 1327, 1062, 1060, 1325, 1064, 1327,\n    1309, 1307, 1082, 1311, 1309, 1080, 1323, 1068, 1325, 1072, 1070, 1323,\n    1313, 1311, 1078, 1072, 1323, 1321, 1315, 1313, 1078, 1355, 1353, 1037\n};\n\nVertexPN vertexList1[] = {\n    {{-0.92619f, -0.03120f, 0.40979f}, {0.94845f, -0.22758f, 0.22053f}},\n    {{-0.90128f, -0.03120f, 0.13262f}, {0.98086f, -0.19437f, -0.00879f}},\n    {{-0.90128f, 0.03120f, 0.13262f}, {0.98086f, 0.19437f, -0.00879f}},\n    {{-0.92619f, 0.03120f, 0.40979f}, {0.94845f, 0.22758f, 0.22053f}},\n    {{-0.94225f, 0.05200f, 0.35608f}, {0.02396f, 0.99432f, 0.10340f}},\n    {{-0.92110f, 0.05200f, 0.12079f}, {0.26170f, 0.95917f, -0.10721f}},\n    {{-1.16505f, 0.05200f, -0.08623f}, {-0.04492f, 0.99689f, -0.06436f}},\n    {{-0.91528f, -0.03120f, 0.09845f}, {0.70513f, -0.19434f, -0.68188f}},\n    {{-1.21388f, -0.03120f, -0.15494f}, {0.55138f, -0.23054f, -0.80172f}},\n    {{-1.21388f, 0.03120f, -0.15494f}, {0.55138f, 0.23054f, -0.80172f}},\n    {{-0.91528f, 0.03120f, 0.09845f}, {0.70513f, 0.19434f, -0.68188f}},\n    {{-1.22038f, -0.03120f, -0.14983f}, {-0.90909f, -0.22926f, 0.34779f}},\n    {{-0.93741f, -0.03120f, 0.41193f}, {-0.80102f, -0.22565f, 0.55446f}},\n    {{-0.93741f, 0.03120f, 0.41193f}, {-0.80102f, 0.22565f, 0.55446f}},\n    {{-1.22038f, 0.03120f, -0.14983f}, {-0.90909f, 0.22926f, 0.34779f}},\n    {{-0.94367f, -0.04591f, 0.38594f}, {-0.49016f, -0.80413f, 0.33628f}},\n    {{-0.93257f, -0.04433f, 0.40683f}, {0.10065f, -0.84341f, 0.52773f}},\n    {{-0.93024f, -0.03120f, 0.41900f}, {0.17609f, -0.34181f, 0.92309f}},\n    {{-0.94225f, -0.05200f, 0.35608f}, {0.02396f, -0.99432f, 0.10340f}},\n    {{-0.92993f, -0.04591f, 0.38332f}, {0.57353f, -0.80868f, 0.13056f}},\n    {{-1.22235f, -0.03120f, -0.15902f}, {-0.57543f, -0.36674f, -0.73098f}},\n    {{-1.21060f, -0.04433f, -0.14410f}, {-0.26145f, -0.90625f, -0.33213f}},\n    {{-1.19656f, -0.04591f, -0.11609f}, {-0.53948f, -0.81613f, 0.20710f}},\n    {{-1.18668f, -0.04591f, -0.12387f}, {0.32414f, -0.82104f, -0.46986f}},\n    {{-1.16505f, -0.05200f, -0.08623f}, {-0.04492f, -0.99689f, -0.06436f}},\n    {{-0.90790f, -0.04591f, 0.12949f}, {0.71737f, -0.69588f, -0.03314f}},\n    {{-0.90774f, -0.04321f, 0.11532f}, {0.74908f, -0.58712f, -0.30680f}},\n    {{-0.90379f, -0.03120f, 0.11370f}, {0.90930f, -0.18549f, -0.37242f}},\n    {{-0.92110f, -0.05200f, 0.12079f}, {0.26170f, -0.95917f, -0.10721f}},\n    {{-0.91780f, -0.04591f, 0.10533f}, {0.53444f, -0.69582f, -0.47975f}},\n    {{-0.93024f, 0.03120f, 0.41900f}, {0.17609f, 0.34181f, 0.92309f}},\n    {{-0.93257f, 0.04433f, 0.40683f}, {0.10065f, 0.84341f, 0.52773f}},\n    {{-0.94367f, 0.04591f, 0.38594f}, {-0.49016f, 0.80413f, 0.33628f}},\n    {{-0.92993f, 0.04591f, 0.38332f}, {0.57353f, 0.80868f, 0.13056f}},\n    {{-1.19656f, 0.04591f, -0.11609f}, {-0.53948f, 0.81610f, 0.20710f}},\n    {{-1.21060f, 0.04433f, -0.14410f}, {-0.26145f, 0.90625f, -0.33213f}},\n    {{-1.22235f, 0.03120f, -0.15902f}, {-0.57543f, 0.36677f, -0.73098f}},\n    {{-1.18668f, 0.04591f, -0.12387f}, {0.32414f, 0.82104f, -0.46986f}},\n    {{-0.90379f, 0.03120f, 0.11370f}, {0.90930f, 0.18549f, -0.37242f}},\n    {{-0.90774f, 0.04321f, 0.11532f}, {0.74908f, 0.58712f, -0.30680f}},\n    {{-0.90790f, 0.04591f, 0.12949f}, {0.71737f, 0.69588f, -0.03314f}},\n    {{-0.91780f, 0.04591f, 0.10533f}, {0.53444f, 0.69582f, -0.47975f}},\n};\n\nGLushort indexList1[] = {\n    0, 1, 2, 0, 2, 3, 4, 5, 6, 7, 8, 9,\n    7, 9, 10, 11, 12, 13, 11, 13, 14, 12, 15, 16,\n    12, 16, 17, 18, 19, 16, 18, 16, 15, 0, 17, 16,\n    0, 16, 19, 11, 20, 21, 11, 21, 22, 8, 23, 21,\n    8, 21, 20, 24, 22, 21, 24, 21, 23, 1, 25, 26,\n    1, 26, 27, 28, 29, 26, 28, 26, 25, 7, 27, 26,\n    7, 26, 29, 13, 30, 31, 13, 31, 32, 3, 33, 31,\n    3, 31, 30, 4, 32, 31, 4, 31, 33, 14, 34, 35,\n    14, 35, 36, 6, 37, 35, 6, 35, 34, 9, 36, 35,\n    9, 35, 37, 2, 38, 39, 2, 39, 40, 10, 41, 39,\n    10, 39, 38, 5, 40, 39, 5, 39, 41, 12, 11, 22,\n    12, 22, 15, 15, 22, 24, 15, 24, 18, 18, 28, 25,\n    18, 25, 19, 19, 25, 1, 19, 1, 0, 8, 7, 29,\n    8, 29, 23, 23, 29, 28, 23, 28, 24, 4, 6, 34,\n    4, 34, 32, 32, 34, 14, 32, 14, 13, 3, 2, 40,\n    3, 40, 33, 33, 40, 5, 33, 5, 4, 6, 5, 41,\n    6, 41, 37, 37, 41, 10, 37, 10, 9, 0, 3, 30,\n    0, 30, 17, 17, 30, 13, 17, 13, 12, 11, 14, 36,\n    11, 36, 20, 20, 36, 9, 20, 9, 8, 7, 10, 38,\n    7, 38, 27, 27, 38, 2, 27, 2, 1, 24, 28, 18\n};\n\nVertexPN vertexList2[] = {\n    {{-0.89568f, -0.03120f, 0.39518f}, {0.82455f, -0.22883f, 0.51738f}},\n    {{-0.61080f, -0.03120f, -0.17164f}, {0.93371f, -0.21451f, 0.28654f}},\n    {{-0.61080f, 0.03120f, -0.17164f}, {0.93371f, 0.21451f, 0.28654f}},\n    {{-0.89568f, 0.03120f, 0.39518f}, {0.82455f, 0.22883f, 0.51738f}},\n    {{-0.87453f, 0.05200f, 0.30678f}, {-0.02274f, 0.99725f, 0.07004f}},\n    {{-0.64478f, 0.05200f, -0.15036f}, {0.09668f, 0.99103f, -0.09198f}},\n    {{-0.84057f, 0.05200f, -0.07152f}, {-0.22575f, 0.95962f, -0.16761f}},\n    {{-0.62076f, -0.03120f, -0.18245f}, {-0.20814f, -0.21613f, -0.95389f}},\n    {{-0.84085f, -0.03120f, -0.09383f}, {-0.47563f, -0.18677f, -0.85955f}},\n    {{-0.84085f, 0.03120f, -0.09383f}, {-0.47563f, 0.18677f, -0.85955f}},\n    {{-0.62076f, 0.03120f, -0.18245f}, {-0.20814f, 0.21613f, -0.95389f}},\n    {{-0.84057f, -0.05200f, -0.07152f}, {-0.22575f, -0.95962f, -0.16761f}},\n    {{-0.64478f, -0.05200f, -0.15036f}, {0.09668f, -0.99103f, -0.09198f}},\n    {{-0.87453f, -0.05200f, 0.30678f}, {-0.02274f, -0.99725f, 0.07004f}},\n    {{-0.86201f, -0.03120f, -0.06534f}, {-0.96039f, -0.18674f, -0.20673f}},\n    {{-0.90316f, -0.03120f, 0.39305f}, {-0.97327f, -0.22956f, 0.00497f}},\n    {{-0.90316f, 0.03120f, 0.39305f}, {-0.97327f, 0.22956f, 0.00497f}},\n    {{-0.86201f, 0.03120f, -0.06534f}, {-0.96039f, 0.18674f, -0.20673f}},\n    {{-0.89314f, -0.04591f, 0.34953f}, {-0.57131f, -0.82070f, 0.00266f}},\n    {{-0.89612f, -0.04433f, 0.38252f}, {-0.11023f, -0.91552f, 0.38682f}},\n    {{-0.90174f, -0.03120f, 0.40225f}, {-0.25471f, -0.36903f, 0.89380f}},\n    {{-0.88126f, -0.04591f, 0.35291f}, {0.48772f, -0.81765f, 0.30580f}},\n    {{-0.84033f, -0.04591f, -0.08697f}, {-0.37654f, -0.69030f, -0.61776f}},\n    {{-0.85233f, -0.04321f, -0.08025f}, {-0.65658f, -0.57540f, -0.48759f}},\n    {{-0.85549f, -0.03120f, -0.08260f}, {-0.79049f, -0.17450f, -0.58705f}},\n    {{-0.85529f, -0.04591f, -0.06682f}, {-0.70037f, -0.69024f, -0.18174f}},\n    {{-0.60985f, -0.03120f, -0.18250f}, {0.70089f, -0.30433f, -0.64504f}},\n    {{-0.61613f, -0.04433f, -0.17673f}, {0.46309f, -0.77709f, -0.42619f}},\n    {{-0.63438f, -0.04591f, -0.17040f}, {-0.13178f, -0.79049f, -0.59807f}},\n    {{-0.62394f, -0.04591f, -0.15906f}, {0.58827f, -0.78796f, 0.18159f}},\n    {{-0.90174f, 0.03120f, 0.40225f}, {-0.25471f, 0.36903f, 0.89380f}},\n    {{-0.89612f, 0.04433f, 0.38252f}, {-0.11023f, 0.91552f, 0.38682f}},\n    {{-0.89314f, 0.04591f, 0.34953f}, {-0.57131f, 0.82070f, 0.00266f}},\n    {{-0.88126f, 0.04591f, 0.35291f}, {0.48772f, 0.81768f, 0.30580f}},\n    {{-0.85549f, 0.03120f, -0.08260f}, {-0.79049f, 0.17450f, -0.58705f}},\n    {{-0.85233f, 0.04321f, -0.08025f}, {-0.65658f, 0.57540f, -0.48759f}},\n    {{-0.84033f, 0.04591f, -0.08697f}, {-0.37654f, 0.69030f, -0.61776f}},\n    {{-0.85529f, 0.04591f, -0.06682f}, {-0.70037f, 0.69024f, -0.18174f}},\n    {{-0.63438f, 0.04591f, -0.17040f}, {-0.13178f, 0.79049f, -0.59807f}},\n    {{-0.61613f, 0.04433f, -0.17673f}, {0.46309f, 0.77709f, -0.42619f}},\n    {{-0.60985f, 0.03120f, -0.18250f}, {0.70089f, 0.30433f, -0.64504f}},\n    {{-0.62394f, 0.04591f, -0.15906f}, {0.58827f, 0.78796f, 0.18159f}},\n};\n\nGLushort indexList2[] = {\n    0, 1, 2, 0, 2, 3, 4, 5, 6, 7, 8, 9,\n    7, 9, 10, 11, 12, 13, 14, 15, 16, 14, 16, 17,\n    15, 18, 19, 15, 19, 20, 13, 21, 19, 13, 19, 18,\n    0, 20, 19, 0, 19, 21, 8, 22, 23, 8, 23, 24,\n    11, 25, 23, 11, 23, 22, 14, 24, 23, 14, 23, 25,\n    7, 26, 27, 7, 27, 28, 1, 29, 27, 1, 27, 26,\n    12, 28, 27, 12, 27, 29, 16, 30, 31, 16, 31, 32,\n    3, 33, 31, 3, 31, 30, 4, 32, 31, 4, 31, 33,\n    9, 34, 35, 9, 35, 36, 17, 37, 35, 17, 35, 34,\n    6, 36, 35, 6, 35, 37, 10, 38, 39, 10, 39, 40,\n    5, 41, 39, 5, 39, 38, 2, 40, 39, 2, 39, 41,\n    8, 7, 28, 8, 28, 22, 22, 28, 12, 22, 12, 11,\n    15, 14, 25, 15, 25, 18, 18, 25, 11, 18, 11, 13,\n    13, 12, 29, 13, 29, 21, 21, 29, 1, 21, 1, 0,\n    6, 5, 38, 6, 38, 36, 36, 38, 10, 36, 10, 9,\n    4, 6, 37, 4, 37, 32, 32, 37, 17, 32, 17, 16,\n    3, 2, 41, 3, 41, 33, 33, 41, 5, 33, 5, 4,\n    0, 3, 30, 0, 30, 20, 20, 30, 16, 20, 16, 15,\n    14, 17, 34, 14, 34, 24, 24, 34, 9, 24, 9, 8,\n    7, 10, 40, 7, 40, 26, 26, 40, 2, 26, 2, 1\n};\n\nVertexPN vertexList3[] = {\n    {{-1.02159f, -0.03120f, -0.04401f}, {0.25483f, -0.18729f, 0.94867f}},\n    {{-0.65367f, -0.03120f, -0.19225f}, {0.44899f, -0.22974f, 0.86346f}},\n    {{-0.65367f, 0.03120f, -0.19225f}, {0.44899f, 0.22974f, 0.86346f}},\n    {{-1.02159f, 0.03120f, -0.04401f}, {0.25483f, 0.18729f, 0.94867f}},\n    {{-1.03701f, 0.05200f, -0.06023f}, {-0.04486f, 0.95956f, 0.27784f}},\n    {{-0.74166f, 0.05200f, -0.17922f}, {0.07404f, 0.99716f, -0.01144f}},\n    {{-1.17726f, 0.05200f, -0.17922f}, {-0.12323f, 0.99145f, -0.04270f}},\n    {{-0.65517f, -0.03120f, -0.20002f}, {0.09378f, -0.22898f, -0.96887f}},\n    {{-1.21313f, -0.03120f, -0.20002f}, {-0.16065f, -0.21598f, -0.96307f}},\n    {{-1.21313f, 0.03120f, -0.20002f}, {-0.16065f, 0.21598f, -0.96307f}},\n    {{-0.65517f, 0.03120f, -0.20002f}, {0.09378f, 0.22898f, -0.96887f}},\n    {{-1.21807f, -0.03120f, -0.18657f}, {-0.74526f, -0.21760f, 0.63024f}},\n    {{-1.05675f, -0.03120f, -0.04970f}, {-0.54064f, -0.18732f, 0.82009f}},\n    {{-1.05675f, 0.03120f, -0.04970f}, {-0.54064f, 0.18732f, 0.82009f}},\n    {{-1.21807f, 0.03120f, -0.18657f}, {-0.74526f, 0.21760f, 0.63024f}},\n    {{-1.17726f, -0.05200f, -0.17922f}, {-0.12323f, -0.99145f, -0.04270f}},\n    {{-0.74166f, -0.05200f, -0.17922f}, {0.07404f, -0.99716f, -0.01144f}},\n    {{-1.03701f, -0.05200f, -0.06023f}, {-0.04486f, -0.95956f, 0.27784f}},\n    {{-1.05087f, -0.04591f, -0.05335f}, {-0.37257f, -0.69066f, 0.61977f}},\n    {{-1.03934f, -0.04321f, -0.04580f}, {-0.13044f, -0.57622f, 0.80679f}},\n    {{-1.03997f, -0.03120f, -0.04189f}, {-0.15711f, -0.17527f, 0.97189f}},\n    {{-1.02601f, -0.04591f, -0.04933f}, {0.15851f, -0.69057f, 0.70565f}},\n    {{-1.22319f, -0.03120f, -0.19608f}, {-0.89285f, -0.30882f, -0.32771f}},\n    {{-1.21487f, -0.04433f, -0.19303f}, {-0.58238f, -0.78430f, -0.21375f}},\n    {{-1.20045f, -0.04591f, -0.17961f}, {-0.46449f, -0.79257f, 0.39497f}},\n    {{-1.19520f, -0.04591f, -0.19393f}, {-0.09952f, -0.78994f, -0.60503f}},\n    {{-0.69606f, -0.04591f, -0.18174f}, {0.26341f, -0.82037f, 0.50749f}},\n    {{-0.66582f, -0.04433f, -0.19393f}, {0.40059f, -0.91293f, -0.07764f}},\n    {{-0.64612f, -0.03120f, -0.19775f}, {0.91263f, -0.36845f, -0.17692f}},\n    {{-0.69842f, -0.04591f, -0.19393f}, {0.05521f, -0.81722f, -0.57360f}},\n    {{-1.03997f, 0.03120f, -0.04189f}, {-0.15711f, 0.17527f, 0.97189f}},\n    {{-1.03934f, 0.04321f, -0.04580f}, {-0.13044f, 0.57622f, 0.80679f}},\n    {{-1.05087f, 0.04591f, -0.05335f}, {-0.37257f, 0.69066f, 0.61977f}},\n    {{-1.02601f, 0.04591f, -0.04933f}, {0.15851f, 0.69057f, 0.70565f}},\n    {{-1.20045f, 0.04591f, -0.17961f}, {-0.46449f, 0.79257f, 0.39497f}},\n    {{-1.21487f, 0.04433f, -0.19303f}, {-0.58238f, 0.78426f, -0.21375f}},\n    {{-1.22319f, 0.03120f, -0.19608f}, {-0.89285f, 0.30882f, -0.32771f}},\n    {{-1.19520f, 0.04591f, -0.19393f}, {-0.09952f, 0.78994f, -0.60503f}},\n    {{-0.64612f, 0.03120f, -0.19775f}, {0.91263f, 0.36845f, -0.17692f}},\n    {{-0.66582f, 0.04433f, -0.19393f}, {0.40059f, 0.91293f, -0.07764f}},\n    {{-0.69606f, 0.04591f, -0.18174f}, {0.26341f, 0.82037f, 0.50749f}},\n    {{-0.69842f, 0.04591f, -0.19393f}, {0.05521f, 0.81722f, -0.57360f}},\n};\n\nGLushort indexList3[] = {\n    0, 1, 2, 0, 2, 3, 4, 5, 6, 7, 8, 9,\n    7, 9, 10, 11, 12, 13, 11, 13, 14, 15, 16, 17,\n    12, 18, 19, 12, 19, 20, 17, 21, 19, 17, 19, 18,\n    0, 20, 19, 0, 19, 21, 11, 22, 23, 11, 23, 24,\n    8, 25, 23, 8, 23, 22, 15, 24, 23, 15, 23, 25,\n    1, 26, 27, 1, 27, 28, 16, 29, 27, 16, 27, 26,\n    7, 28, 27, 7, 27, 29, 13, 30, 31, 13, 31, 32,\n    3, 33, 31, 3, 31, 30, 4, 32, 31, 4, 31, 33,\n    14, 34, 35, 14, 35, 36, 6, 37, 35, 6, 35, 34,\n    9, 36, 35, 9, 35, 37, 2, 38, 39, 2, 39, 40,\n    10, 41, 39, 10, 39, 38, 5, 40, 39, 5, 39, 41,\n    12, 11, 24, 12, 24, 18, 18, 24, 15, 18, 15, 17,\n    17, 16, 26, 17, 26, 21, 21, 26, 1, 21, 1, 0,\n    8, 7, 29, 8, 29, 25, 25, 29, 16, 25, 16, 15,\n    4, 6, 34, 4, 34, 32, 32, 34, 14, 32, 14, 13,\n    3, 2, 40, 3, 40, 33, 33, 40, 5, 33, 5, 4,\n    6, 5, 41, 6, 41, 37, 37, 41, 10, 37, 10, 9,\n    0, 3, 30, 0, 30, 20, 20, 30, 13, 20, 13, 12,\n    11, 14, 36, 11, 36, 22, 22, 36, 9, 22, 9, 8,\n    7, 10, 38, 7, 38, 28, 28, 38, 2, 28, 2, 1\n};\n\nVertexPN vertexList4[] = {\n    {{-0.89524f, -0.03120f, 0.06506f}, {0.94403f, -0.22599f, 0.24015f}},\n    {{-0.88433f, -0.03120f, -0.05630f}, {0.97284f, -0.21308f, -0.09040f}},\n    {{-0.88433f, 0.03120f, -0.05630f}, {0.97284f, 0.21308f, -0.09040f}},\n    {{-0.89524f, 0.03120f, 0.06506f}, {0.94403f, 0.22599f, 0.24015f}},\n    {{-0.91422f, 0.05200f, 0.04397f}, {0.06717f, 0.98410f, 0.16422f}},\n    {{-0.90623f, 0.05200f, -0.04502f}, {0.11921f, 0.98010f, -0.15864f}},\n    {{-0.98277f, 0.05200f, -0.01418f}, {-0.19440f, 0.98044f, -0.03018f}},\n    {{-0.98277f, -0.05200f, -0.01418f}, {-0.19440f, -0.98044f, -0.03018f}},\n    {{-0.90623f, -0.05200f, -0.04502f}, {0.11921f, -0.98010f, -0.15864f}},\n    {{-0.91422f, -0.05200f, 0.04397f}, {0.06714f, -0.98410f, 0.16422f}},\n    {{-0.90176f, -0.03120f, -0.06924f}, {-0.19471f, -0.21131f, -0.95779f}},\n    {{-1.00320f, -0.03120f, -0.02838f}, {-0.52239f, -0.21235f, -0.82583f}},\n    {{-1.00320f, 0.03120f, -0.02838f}, {-0.52239f, 0.21235f, -0.82583f}},\n    {{-0.90176f, 0.03120f, -0.06924f}, {-0.19471f, 0.21131f, -0.95779f}},\n    {{-1.00663f, -0.03120f, -0.00715f}, {-0.75558f, -0.21421f, 0.61901f}},\n    {{-0.91296f, -0.03120f, 0.07232f}, {-0.50420f, -0.22611f, 0.83343f}},\n    {{-0.91296f, 0.03120f, 0.07232f}, {-0.50420f, 0.22611f, 0.83343f}},\n    {{-1.00663f, 0.03120f, -0.00715f}, {-0.75558f, 0.21421f, 0.61901f}},\n    {{-0.91398f, -0.04591f, 0.06243f}, {-0.27894f, -0.77749f, 0.56362f}},\n    {{-0.90368f, -0.04321f, 0.06972f}, {0.26249f, -0.72140f, 0.64080f}},\n    {{-0.90055f, -0.03120f, 0.07735f}, {0.36326f, -0.28571f, 0.88678f}},\n    {{-0.90144f, -0.04591f, 0.05730f}, {0.59432f, -0.77737f, 0.20597f}},\n    {{-1.01314f, -0.03120f, -0.01909f}, {-0.95563f, -0.25074f, -0.15448f}},\n    {{-1.00667f, -0.04321f, -0.01804f}, {-0.72884f, -0.67446f, -0.11780f}},\n    {{-0.99870f, -0.04591f, -0.00905f}, {-0.53529f, -0.75726f, 0.37413f}},\n    {{-0.99627f, -0.04591f, -0.02406f}, {-0.39131f, -0.75600f, -0.52464f}},\n    {{-0.89128f, -0.04591f, -0.05227f}, {0.64599f, -0.75536f, -0.10987f}},\n    {{-0.89196f, -0.04321f, -0.06423f}, {0.44221f, -0.67067f, -0.59551f}},\n    {{-0.88812f, -0.03120f, -0.06940f}, {0.57756f, -0.24784f, -0.77779f}},\n    {{-0.90361f, -0.04591f, -0.06142f}, {-0.08142f, -0.75420f, -0.65151f}},\n    {{-0.90055f, 0.03120f, 0.07735f}, {0.36326f, 0.28571f, 0.88678f}},\n    {{-0.90368f, 0.04321f, 0.06972f}, {0.26249f, 0.72140f, 0.64080f}},\n    {{-0.91398f, 0.04591f, 0.06243f}, {-0.27894f, 0.77749f, 0.56362f}},\n    {{-0.90144f, 0.04591f, 0.05730f}, {0.59432f, 0.77740f, 0.20597f}},\n    {{-0.99870f, 0.04591f, -0.00905f}, {-0.53529f, 0.75726f, 0.37413f}},\n    {{-1.00667f, 0.04321f, -0.01804f}, {-0.72884f, 0.67446f, -0.11780f}},\n    {{-1.01314f, 0.03120f, -0.01909f}, {-0.95563f, 0.25074f, -0.15448f}},\n    {{-0.99627f, 0.04591f, -0.02406f}, {-0.39131f, 0.75600f, -0.52464f}},\n    {{-0.88812f, 0.03120f, -0.06940f}, {0.57756f, 0.24784f, -0.77779f}},\n    {{-0.89196f, 0.04321f, -0.06423f}, {0.44221f, 0.67067f, -0.59551f}},\n    {{-0.89128f, 0.04591f, -0.05227f}, {0.64599f, 0.75536f, -0.10987f}},\n    {{-0.90361f, 0.04591f, -0.06142f}, {-0.08142f, 0.75420f, -0.65151f}},\n};\n\nGLushort indexList4[] = {\n    0, 1, 2, 0, 2, 3, 4, 5, 6, 7, 8, 9,\n    10, 11, 12, 10, 12, 13, 14, 15, 16, 14, 16, 17,\n    15, 18, 19, 15, 19, 20, 9, 21, 19, 9, 19, 18,\n    0, 20, 19, 0, 19, 21, 14, 22, 23, 14, 23, 24,\n    11, 25, 23, 11, 23, 22, 7, 24, 23, 7, 23, 25,\n    1, 26, 27, 1, 27, 28, 8, 29, 27, 8, 27, 26,\n    10, 28, 27, 10, 27, 29, 16, 30, 31, 16, 31, 32,\n    3, 33, 31, 3, 31, 30, 4, 32, 31, 4, 31, 33,\n    17, 34, 35, 17, 35, 36, 6, 37, 35, 6, 35, 34,\n    12, 36, 35, 12, 35, 37, 2, 38, 39, 2, 39, 40,\n    13, 41, 39, 13, 39, 38, 5, 40, 39, 5, 39, 41,\n    15, 14, 24, 15, 24, 18, 18, 24, 7, 18, 7, 9,\n    9, 8, 26, 9, 26, 21, 21, 26, 1, 21, 1, 0,\n    11, 10, 29, 11, 29, 25, 25, 29, 8, 25, 8, 7,\n    4, 6, 34, 4, 34, 32, 32, 34, 17, 32, 17, 16,\n    3, 2, 40, 3, 40, 33, 33, 40, 5, 33, 5, 4,\n    6, 5, 41, 6, 41, 37, 37, 41, 13, 37, 13, 12,\n    0, 3, 30, 0, 30, 20, 20, 30, 16, 20, 16, 15,\n    14, 17, 36, 14, 36, 22, 22, 36, 12, 22, 12, 11,\n    10, 13, 38, 10, 38, 28, 28, 38, 2, 28, 2, 1\n};\n\nVertexPN vertexList5[] = {\n    {{-1.27202f, -0.01067f, -0.20395f}, {-0.93814f, -0.21284f, 0.27308f}},\n    {{-0.93013f, -0.01067f, 0.47489f}, {-0.79211f, -0.22855f, 0.56594f}},\n    {{-0.93013f, 0.01067f, 0.47489f}, {-0.79211f, 0.22855f, 0.56594f}},\n    {{-1.27202f, 0.01067f, -0.20395f}, {-0.93814f, 0.21284f, 0.27308f}},\n    {{-1.24697f, -0.03201f, -0.20167f}, {-0.17063f, -0.97986f, -0.10346f}},\n    {{-0.59473f, -0.03201f, -0.20167f}, {0.17066f, -0.97986f, -0.10358f}},\n    {{-0.92055f, -0.03201f, 0.44647f}, {0.00003f, -0.98486f, 0.17331f}},\n    {{-0.92055f, 0.03201f, 0.44647f}, {0.00003f, 0.98486f, 0.17331f}},\n    {{-0.59473f, 0.03201f, -0.20167f}, {0.17066f, 0.97986f, -0.10358f}},\n    {{-1.24697f, 0.03201f, -0.20167f}, {-0.17063f, 0.97986f, -0.10346f}},\n    {{-0.58145f, -0.01067f, -0.22301f}, {0.17811f, -0.21046f, -0.96121f}},\n    {{-1.26027f, -0.01067f, -0.22301f}, {-0.17801f, -0.21052f, -0.96121f}},\n    {{-1.26027f, 0.01067f, -0.22301f}, {-0.17801f, 0.21052f, -0.96121f}},\n    {{-0.58145f, 0.01067f, -0.22301f}, {0.17811f, 0.21046f, -0.96121f}},\n    {{-0.91095f, -0.01067f, 0.47488f}, {0.79250f, -0.22855f, 0.56536f}},\n    {{-0.92054f, -0.01067f, 0.48472f}, {0.00034f, -0.29276f, 0.95618f}},\n    {{-0.92054f, -0.02299f, 0.47586f}, {0.00024f, -0.73125f, 0.68206f}},\n    {{-0.91376f, -0.02576f, 0.46462f}, {0.47520f, -0.78127f, 0.40468f}},\n    {{-0.92733f, -0.02576f, 0.46463f}, {-0.47490f, -0.78127f, 0.40501f}},\n    {{-1.25561f, -0.02576f, -0.21629f}, {-0.16855f, -0.75311f, -0.63591f}},\n    {{-1.26776f, -0.02299f, -0.21447f}, {-0.63301f, -0.66872f, -0.38993f}},\n    {{-1.27332f, -0.01067f, -0.21790f}, {-0.82516f, -0.24635f, -0.50832f}},\n    {{-1.26391f, -0.02576f, -0.20281f}, {-0.64202f, -0.75469f, 0.13501f}},\n    {{-0.56970f, -0.01067f, -0.20394f}, {0.93838f, -0.21274f, 0.27232f}},\n    {{-0.57779f, -0.02576f, -0.20281f}, {0.64223f, -0.75457f, 0.13456f}},\n    {{-0.57396f, -0.02299f, -0.21447f}, {0.63305f, -0.66848f, -0.39030f}},\n    {{-0.56841f, -0.01067f, -0.21790f}, {0.82501f, -0.24616f, -0.50865f}},\n    {{-0.58611f, -0.02576f, -0.21629f}, {0.16861f, -0.75298f, -0.63604f}},\n    {{-0.91095f, 0.01067f, 0.47488f}, {0.79250f, 0.22855f, 0.56536f}},\n    {{-0.91376f, 0.02576f, 0.46462f}, {0.47520f, 0.78127f, 0.40468f}},\n    {{-0.92054f, 0.02299f, 0.47586f}, {0.00024f, 0.73125f, 0.68206f}},\n    {{-0.92054f, 0.01067f, 0.48472f}, {0.00034f, 0.29276f, 0.95618f}},\n    {{-0.92733f, 0.02576f, 0.46463f}, {-0.47490f, 0.78127f, 0.40501f}},\n    {{-1.27332f, 0.01067f, -0.21790f}, {-0.82516f, 0.24635f, -0.50832f}},\n    {{-1.26776f, 0.02299f, -0.21447f}, {-0.63301f, 0.66872f, -0.38993f}},\n    {{-1.25561f, 0.02576f, -0.21629f}, {-0.16855f, 0.75311f, -0.63591f}},\n    {{-1.26391f, 0.02576f, -0.20281f}, {-0.64202f, 0.75469f, 0.13501f}},\n    {{-0.56970f, 0.01067f, -0.20394f}, {0.93835f, 0.21274f, 0.27232f}},\n    {{-0.56841f, 0.01067f, -0.21790f}, {0.82501f, 0.24616f, -0.50865f}},\n    {{-0.57396f, 0.02299f, -0.21447f}, {0.63305f, 0.66848f, -0.39030f}},\n    {{-0.57779f, 0.02576f, -0.20281f}, {0.64223f, 0.75457f, 0.13456f}},\n    {{-0.58611f, 0.02576f, -0.21629f}, {0.16861f, 0.75298f, -0.63604f}},\n};\n\nGLushort indexList5[] = {\n    0, 1, 2, 0, 2, 3, 4, 5, 6, 7, 8, 9,\n    10, 11, 12, 10, 12, 13, 14, 15, 16, 14, 16, 17,\n    1, 18, 16, 1, 16, 15, 6, 17, 16, 6, 16, 18,\n    11, 19, 20, 11, 20, 21, 4, 22, 20, 4, 20, 19,\n    0, 21, 20, 0, 20, 22, 23, 24, 25, 23, 25, 26,\n    5, 27, 25, 5, 25, 24, 10, 26, 25, 10, 25, 27,\n    28, 29, 30, 28, 30, 31, 7, 32, 30, 7, 30, 29,\n    2, 31, 30, 2, 30, 32, 12, 33, 34, 12, 34, 35,\n    3, 36, 34, 3, 34, 33, 9, 35, 34, 9, 34, 36,\n    37, 38, 39, 37, 39, 40, 13, 41, 39, 13, 39, 38,\n    8, 40, 39, 8, 39, 41, 6, 5, 24, 6, 24, 17,\n    17, 24, 23, 17, 23, 14, 11, 10, 27, 11, 27, 19,\n    19, 27, 5, 19, 5, 4, 1, 0, 22, 1, 22, 18,\n    18, 22, 4, 18, 4, 6, 28, 37, 40, 28, 40, 29,\n    29, 40, 8, 29, 8, 7, 9, 8, 41, 9, 41, 35,\n    35, 41, 13, 35, 13, 12, 7, 9, 36, 7, 36, 32,\n    32, 36, 3, 32, 3, 2, 14, 28, 31, 14, 31, 15,\n    15, 31, 2, 15, 2, 1, 0, 3, 33, 0, 33, 21,\n    21, 33, 12, 21, 12, 11, 10, 13, 38, 10, 38, 26,\n    26, 38, 37, 26, 37, 23, 14, 23, 37, 14, 37, 28\n};\n\nVertexGroup vertexGroups[] = {\n    {{0.07500f, 0.15000f, 0.36000f}, vertexList0, 1995, indexList0, 11448},\n    {{0.02353f, 0.10980f, 0.84902f}, vertexList1, 42, indexList1, 240},\n    {{0.84510f, 0.04941f, 0.04686f}, vertexList2, 42, indexList2, 240},\n    {{0.14118f, 0.59608f, 0.17843f}, vertexList3, 42, indexList3, 240},\n    {{0.80392f, 0.80392f, 0.80784f}, vertexList4, 42, indexList4, 240},\n    {{0.02000f, 0.02000f, 0.02000f}, vertexList5, 42, indexList5, 240},\n    {{0.00000f, 0.00000f, 0.00000f}, NULL, 0, NULL, 0}\n};\n"
  },
  {
    "path": "README.md",
    "content": "An example cross-platform CMake-based project.\n\nThis project uses SDL2 and OpenGL to render a spinning 3D logo to a desktop window. You can build it on Windows, MacOS or Linux.\n\n![](http://preshing.com/images/cmakedemo-preview.png)\n\n## Requirements\n\n### Windows (Visual Studio)\n\nCMakeDemo expects to find the SDL2 headers and libraries in a subfolder named `extern\\SDL-2.0.5`. You can download and extract them automatically by running the Python 3 script `setup-win32.py`. If you don't have Python installed, [download and extract them by hand](https://www.libsdl.org/release/SDL2-devel-2.0.5-VC.zip).\n\nOn Windows, CMakeDemo uses its own OpenGL headers and loads `opengl32.dll` dynamically at runtime. Nothing else is needed at build time.\n\n### MacOS (Xcode)\n\nInstall the SDL2 headers and libraries using [MacPorts](https://www.macports.org/).\n\n    sudo port install libsdl2\n    \nOpenGL headers and libraries are installed by Xcode. CMake will find them automatically.\n\n### Ubuntu\n\nInstall the SDL2 headers and libraries.\n\n    sudo apt install libsdl2-dev\n    \nOpenGL headers and libraries are already present on the system. CMake will find them automatically.\n\n## Build Instructions\n\nFor build instructions, see the blog post [How to Build a CMake-Based Project](http://preshing.com/20170511/how-to-build-a-cmake-based-project).\n"
  },
  {
    "path": "demo-config.h.in",
    "content": "#cmakedefine01 DEMO_ENABLE_MULTISAMPLE\n"
  },
  {
    "path": "gl2/Context.cpp",
    "content": "#ifdef _WIN32\n\n#include <SDL.h>\n#include \"Context.h\"\n\nGLFuncTable glFuncTable;\n\n//---------------------------------------------------------------------------\n//  Fill in the glFuncTable function table on Win32\n//  This lets us avoid having to link with opengl32.lib\n//---------------------------------------------------------------------------\nvoid GLFuncTable::initialize() {\n#define GL_FUNC(retVal, name, args) { name = (retVal (GL_APIENTRY *)args) SDL_GL_GetProcAddress(\"gl\" #name); assert(name); }\n#include \"Funcs.h\"\n#undef GL_FUNC\n}\n\n#endif // _WIN32\n"
  },
  {
    "path": "gl2/Context.h",
    "content": "#pragma once\n\n#ifdef _WIN32\n\n//---------------------------------------------------------------------------\n//  On Win32, use our own GL headers and prepare a function table\n//---------------------------------------------------------------------------\n#include \"khrplatform.h\"\n#include \"gl2platform.h\"\n#include \"gl2.h\"\n#include \"gl2ext.h\"\n#include <assert.h>\n\nstruct GLFuncTable {\n#define GL_FUNC(retVal, name, args) retVal (GL_APIENTRY *name)args;\n#include \"Funcs.h\"\n#undef GL_FUNC\n    void initialize();\n};\nextern GLFuncTable glFuncTable;\n#define GL_CHECK(call) do { glFuncTable.call; assert(glFuncTable.GetError() == GL_NO_ERROR); } while (0)\n#define GL_NO_CHECK(call) (glFuncTable.call)\n\n#else // TURF_TARGET_WIN32\n\n//---------------------------------------------------------------------------\n//  Otherwise, use the system's GL headers\n//---------------------------------------------------------------------------\n#ifdef __APPLE__\n\t#import <OpenGL/gl.h>\n#else\n\t#include <GLES2/gl2.h>\n#endif\n#define GL_CHECK(call) do { gl ## call; assert(glGetError() == GL_NO_ERROR); } while (0)\n#define GL_NO_CHECK(call) (gl ## call)\n\n#endif // TURF_TARGET_WIN32\n"
  },
  {
    "path": "gl2/Funcs.h",
    "content": "GL_FUNC(void, AttachShader, (GLuint, GLuint))\nGL_FUNC(void, Clear, (GLbitfield))\nGL_FUNC(void, ClearColor, (GLclampf, GLclampf, GLclampf, GLclampf))\nGL_FUNC(void, CompileShader, (GLuint))\nGL_FUNC(GLuint, CreateProgram, (void))\nGL_FUNC(GLuint, CreateShader, (GLenum))\nGL_FUNC(void, CullFace, (GLenum))\nGL_FUNC(void, DepthMask, (GLboolean))\nGL_FUNC(void, DetachShader, (GLuint, GLuint))\nGL_FUNC(void, DeleteProgram, (GLuint))\nGL_FUNC(void, DeleteShader, (GLuint))\nGL_FUNC(void, Disable, (GLenum))\nGL_FUNC(void, DrawElements, (GLenum, GLsizei, GLenum, const GLvoid*))\nGL_FUNC(void, Enable, (GLenum))\nGL_FUNC(void, EnableVertexAttribArray, (GLuint))\nGL_FUNC(void, FrontFace, (GLenum))\nGL_FUNC(const GLubyte *, GetString, (GLenum))\nGL_FUNC(GLenum, GetError, (void))\nGL_FUNC(void, GetProgramiv, (GLuint, GLenum, GLint *))\nGL_FUNC(void, GetShaderInfoLog, (GLuint, GLsizei, GLsizei *, char *))\nGL_FUNC(void, GetShaderiv, (GLuint, GLenum, GLint *))\nGL_FUNC(GLint, GetUniformLocation, (GLuint, const char *))\nGL_FUNC(void, LinkProgram, (GLuint))\nGL_FUNC(void, ShaderSource, (GLuint, GLsizei, const GLchar* const*, const GLint *))\nGL_FUNC(void, Uniform3fv, (GLint, GLsizei, const GLfloat *))\nGL_FUNC(void, UniformMatrix4fv, (GLint, GLsizei, GLboolean, const GLfloat *))\nGL_FUNC(void, UseProgram, (GLuint))\nGL_FUNC(void, ValidateProgram, (GLuint))\nGL_FUNC(void, VertexAttribPointer, (GLuint, GLint, GLenum, GLboolean, GLsizei, const void *))\nGL_FUNC(void, Viewport, (GLint, GLint, GLsizei, GLsizei))\nGL_FUNC(GLint, GetAttribLocation, (GLuint, const GLchar *))\nGL_FUNC(void, GenBuffers, (GLsizei, GLuint *))\nGL_FUNC(void, DeleteBuffers, (GLsizei, GLuint *))\nGL_FUNC(void, BindBuffer, (GLenum, GLuint))\nGL_FUNC(void, BufferData, (GLenum, GLsizeiptr, const GLvoid *, GLenum))\n"
  },
  {
    "path": "gl2/gl2.h",
    "content": "#ifndef __gl2_h_\n#define __gl2_h_\n\n/* $Revision: 20555 $ on $Date:: 2013-02-12 14:32:47 -0800 #$ */\n\n/*#include <GLES2/gl2platform.h>*/\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/*\n * This document is licensed under the SGI Free Software B License Version\n * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .\n */\n\n/*-------------------------------------------------------------------------\n * Data type definitions\n *-----------------------------------------------------------------------*/\n\ntypedef void             GLvoid;\ntypedef char             GLchar;\ntypedef unsigned int     GLenum;\ntypedef unsigned char    GLboolean;\ntypedef unsigned int     GLbitfield;\ntypedef khronos_int8_t   GLbyte;\ntypedef short            GLshort;\ntypedef int              GLint;\ntypedef int              GLsizei;\ntypedef khronos_uint8_t  GLubyte;\ntypedef unsigned short   GLushort;\ntypedef unsigned int     GLuint;\ntypedef khronos_float_t  GLfloat;\ntypedef khronos_float_t  GLclampf;\ntypedef khronos_int32_t  GLfixed;\n\n/* GL types for handling large vertex buffer objects */\ntypedef khronos_intptr_t GLintptr;\ntypedef khronos_ssize_t  GLsizeiptr;\n\n/* OpenGL ES core versions */\n#define GL_ES_VERSION_2_0                 1\n\n/* ClearBufferMask */\n#define GL_DEPTH_BUFFER_BIT               0x00000100\n#define GL_STENCIL_BUFFER_BIT             0x00000400\n#define GL_COLOR_BUFFER_BIT               0x00004000\n\n/* Boolean */\n#define GL_FALSE                          0\n#define GL_TRUE                           1\n\n/* BeginMode */\n#define GL_POINTS                         0x0000\n#define GL_LINES                          0x0001\n#define GL_LINE_LOOP                      0x0002\n#define GL_LINE_STRIP                     0x0003\n#define GL_TRIANGLES                      0x0004\n#define GL_TRIANGLE_STRIP                 0x0005\n#define GL_TRIANGLE_FAN                   0x0006\n\n/* AlphaFunction (not supported in ES20) */\n/*      GL_NEVER */\n/*      GL_LESS */\n/*      GL_EQUAL */\n/*      GL_LEQUAL */\n/*      GL_GREATER */\n/*      GL_NOTEQUAL */\n/*      GL_GEQUAL */\n/*      GL_ALWAYS */\n\n/* BlendingFactorDest */\n#define GL_ZERO                           0\n#define GL_ONE                            1\n#define GL_SRC_COLOR                      0x0300\n#define GL_ONE_MINUS_SRC_COLOR            0x0301\n#define GL_SRC_ALPHA                      0x0302\n#define GL_ONE_MINUS_SRC_ALPHA            0x0303\n#define GL_DST_ALPHA                      0x0304\n#define GL_ONE_MINUS_DST_ALPHA            0x0305\n\n/* BlendingFactorSrc */\n/*      GL_ZERO */\n/*      GL_ONE */\n#define GL_DST_COLOR                      0x0306\n#define GL_ONE_MINUS_DST_COLOR            0x0307\n#define GL_SRC_ALPHA_SATURATE             0x0308\n/*      GL_SRC_ALPHA */\n/*      GL_ONE_MINUS_SRC_ALPHA */\n/*      GL_DST_ALPHA */\n/*      GL_ONE_MINUS_DST_ALPHA */\n\n/* BlendEquationSeparate */\n#define GL_FUNC_ADD                       0x8006\n#define GL_BLEND_EQUATION                 0x8009\n#define GL_BLEND_EQUATION_RGB             0x8009    /* same as BLEND_EQUATION */\n#define GL_BLEND_EQUATION_ALPHA           0x883D\n\n/* BlendSubtract */\n#define GL_FUNC_SUBTRACT                  0x800A\n#define GL_FUNC_REVERSE_SUBTRACT          0x800B\n\n/* Separate Blend Functions */\n#define GL_BLEND_DST_RGB                  0x80C8\n#define GL_BLEND_SRC_RGB                  0x80C9\n#define GL_BLEND_DST_ALPHA                0x80CA\n#define GL_BLEND_SRC_ALPHA                0x80CB\n#define GL_CONSTANT_COLOR                 0x8001\n#define GL_ONE_MINUS_CONSTANT_COLOR       0x8002\n#define GL_CONSTANT_ALPHA                 0x8003\n#define GL_ONE_MINUS_CONSTANT_ALPHA       0x8004\n#define GL_BLEND_COLOR                    0x8005\n\n/* Buffer Objects */\n#define GL_ARRAY_BUFFER                   0x8892\n#define GL_ELEMENT_ARRAY_BUFFER           0x8893\n#define GL_ARRAY_BUFFER_BINDING           0x8894\n#define GL_ELEMENT_ARRAY_BUFFER_BINDING   0x8895\n\n#define GL_STREAM_DRAW                    0x88E0\n#define GL_STATIC_DRAW                    0x88E4\n#define GL_DYNAMIC_DRAW                   0x88E8\n\n#define GL_BUFFER_SIZE                    0x8764\n#define GL_BUFFER_USAGE                   0x8765\n\n#define GL_CURRENT_VERTEX_ATTRIB          0x8626\n\n/* CullFaceMode */\n#define GL_FRONT                          0x0404\n#define GL_BACK                           0x0405\n#define GL_FRONT_AND_BACK                 0x0408\n\n/* DepthFunction */\n/*      GL_NEVER */\n/*      GL_LESS */\n/*      GL_EQUAL */\n/*      GL_LEQUAL */\n/*      GL_GREATER */\n/*      GL_NOTEQUAL */\n/*      GL_GEQUAL */\n/*      GL_ALWAYS */\n\n/* EnableCap */\n#define GL_TEXTURE_2D                     0x0DE1\n#define GL_CULL_FACE                      0x0B44\n#define GL_BLEND                          0x0BE2\n#define GL_DITHER                         0x0BD0\n#define GL_STENCIL_TEST                   0x0B90\n#define GL_DEPTH_TEST                     0x0B71\n#define GL_SCISSOR_TEST                   0x0C11\n#define GL_POLYGON_OFFSET_FILL            0x8037\n#define GL_SAMPLE_ALPHA_TO_COVERAGE       0x809E\n#define GL_SAMPLE_COVERAGE                0x80A0\n\n/* ErrorCode */\n#define GL_NO_ERROR                       0\n#define GL_INVALID_ENUM                   0x0500\n#define GL_INVALID_VALUE                  0x0501\n#define GL_INVALID_OPERATION              0x0502\n#define GL_OUT_OF_MEMORY                  0x0505\n\n/* FrontFaceDirection */\n#define GL_CW                             0x0900\n#define GL_CCW                            0x0901\n\n/* GetPName */\n#define GL_LINE_WIDTH                     0x0B21\n#define GL_ALIASED_POINT_SIZE_RANGE       0x846D\n#define GL_ALIASED_LINE_WIDTH_RANGE       0x846E\n#define GL_CULL_FACE_MODE                 0x0B45\n#define GL_FRONT_FACE                     0x0B46\n#define GL_DEPTH_RANGE                    0x0B70\n#define GL_DEPTH_WRITEMASK                0x0B72\n#define GL_DEPTH_CLEAR_VALUE              0x0B73\n#define GL_DEPTH_FUNC                     0x0B74\n#define GL_STENCIL_CLEAR_VALUE            0x0B91\n#define GL_STENCIL_FUNC                   0x0B92\n#define GL_STENCIL_FAIL                   0x0B94\n#define GL_STENCIL_PASS_DEPTH_FAIL        0x0B95\n#define GL_STENCIL_PASS_DEPTH_PASS        0x0B96\n#define GL_STENCIL_REF                    0x0B97\n#define GL_STENCIL_VALUE_MASK             0x0B93\n#define GL_STENCIL_WRITEMASK              0x0B98\n#define GL_STENCIL_BACK_FUNC              0x8800\n#define GL_STENCIL_BACK_FAIL              0x8801\n#define GL_STENCIL_BACK_PASS_DEPTH_FAIL   0x8802\n#define GL_STENCIL_BACK_PASS_DEPTH_PASS   0x8803\n#define GL_STENCIL_BACK_REF               0x8CA3\n#define GL_STENCIL_BACK_VALUE_MASK        0x8CA4\n#define GL_STENCIL_BACK_WRITEMASK         0x8CA5\n#define GL_VIEWPORT                       0x0BA2\n#define GL_SCISSOR_BOX                    0x0C10\n/*      GL_SCISSOR_TEST */\n#define GL_COLOR_CLEAR_VALUE              0x0C22\n#define GL_COLOR_WRITEMASK                0x0C23\n#define GL_UNPACK_ALIGNMENT               0x0CF5\n#define GL_PACK_ALIGNMENT                 0x0D05\n#define GL_MAX_TEXTURE_SIZE               0x0D33\n#define GL_MAX_VIEWPORT_DIMS              0x0D3A\n#define GL_SUBPIXEL_BITS                  0x0D50\n#define GL_RED_BITS                       0x0D52\n#define GL_GREEN_BITS                     0x0D53\n#define GL_BLUE_BITS                      0x0D54\n#define GL_ALPHA_BITS                     0x0D55\n#define GL_DEPTH_BITS                     0x0D56\n#define GL_STENCIL_BITS                   0x0D57\n#define GL_POLYGON_OFFSET_UNITS           0x2A00\n/*      GL_POLYGON_OFFSET_FILL */\n#define GL_POLYGON_OFFSET_FACTOR          0x8038\n#define GL_TEXTURE_BINDING_2D             0x8069\n#define GL_SAMPLE_BUFFERS                 0x80A8\n#define GL_SAMPLES                        0x80A9\n#define GL_SAMPLE_COVERAGE_VALUE          0x80AA\n#define GL_SAMPLE_COVERAGE_INVERT         0x80AB\n\n/* GetTextureParameter */\n/*      GL_TEXTURE_MAG_FILTER */\n/*      GL_TEXTURE_MIN_FILTER */\n/*      GL_TEXTURE_WRAP_S */\n/*      GL_TEXTURE_WRAP_T */\n\n#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2\n#define GL_COMPRESSED_TEXTURE_FORMATS     0x86A3\n\n/* HintMode */\n#define GL_DONT_CARE                      0x1100\n#define GL_FASTEST                        0x1101\n#define GL_NICEST                         0x1102\n\n/* HintTarget */\n#define GL_GENERATE_MIPMAP_HINT            0x8192\n\n/* DataType */\n#define GL_BYTE                           0x1400\n#define GL_UNSIGNED_BYTE                  0x1401\n#define GL_SHORT                          0x1402\n#define GL_UNSIGNED_SHORT                 0x1403\n#define GL_INT                            0x1404\n#define GL_UNSIGNED_INT                   0x1405\n#define GL_FLOAT                          0x1406\n#define GL_FIXED                          0x140C\n\n/* PixelFormat */\n#define GL_DEPTH_COMPONENT                0x1902\n#define GL_ALPHA                          0x1906\n#define GL_RGB                            0x1907\n#define GL_RGBA                           0x1908\n#define GL_LUMINANCE                      0x1909\n#define GL_LUMINANCE_ALPHA                0x190A\n\n/* PixelType */\n/*      GL_UNSIGNED_BYTE */\n#define GL_UNSIGNED_SHORT_4_4_4_4         0x8033\n#define GL_UNSIGNED_SHORT_5_5_5_1         0x8034\n#define GL_UNSIGNED_SHORT_5_6_5           0x8363\n\n/* Shaders */\n#define GL_FRAGMENT_SHADER                  0x8B30\n#define GL_VERTEX_SHADER                    0x8B31\n#define GL_MAX_VERTEX_ATTRIBS               0x8869\n#define GL_MAX_VERTEX_UNIFORM_VECTORS       0x8DFB\n#define GL_MAX_VARYING_VECTORS              0x8DFC\n#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D\n#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS   0x8B4C\n#define GL_MAX_TEXTURE_IMAGE_UNITS          0x8872\n#define GL_MAX_FRAGMENT_UNIFORM_VECTORS     0x8DFD\n#define GL_SHADER_TYPE                      0x8B4F\n#define GL_DELETE_STATUS                    0x8B80\n#define GL_LINK_STATUS                      0x8B82\n#define GL_VALIDATE_STATUS                  0x8B83\n#define GL_ATTACHED_SHADERS                 0x8B85\n#define GL_ACTIVE_UNIFORMS                  0x8B86\n#define GL_ACTIVE_UNIFORM_MAX_LENGTH        0x8B87\n#define GL_ACTIVE_ATTRIBUTES                0x8B89\n#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH      0x8B8A\n#define GL_SHADING_LANGUAGE_VERSION         0x8B8C\n#define GL_CURRENT_PROGRAM                  0x8B8D\n\n/* StencilFunction */\n#define GL_NEVER                          0x0200\n#define GL_LESS                           0x0201\n#define GL_EQUAL                          0x0202\n#define GL_LEQUAL                         0x0203\n#define GL_GREATER                        0x0204\n#define GL_NOTEQUAL                       0x0205\n#define GL_GEQUAL                         0x0206\n#define GL_ALWAYS                         0x0207\n\n/* StencilOp */\n/*      GL_ZERO */\n#define GL_KEEP                           0x1E00\n#define GL_REPLACE                        0x1E01\n#define GL_INCR                           0x1E02\n#define GL_DECR                           0x1E03\n#define GL_INVERT                         0x150A\n#define GL_INCR_WRAP                      0x8507\n#define GL_DECR_WRAP                      0x8508\n\n/* StringName */\n#define GL_VENDOR                         0x1F00\n#define GL_RENDERER                       0x1F01\n#define GL_VERSION                        0x1F02\n#define GL_EXTENSIONS                     0x1F03\n\n/* TextureMagFilter */\n#define GL_NEAREST                        0x2600\n#define GL_LINEAR                         0x2601\n\n/* TextureMinFilter */\n/*      GL_NEAREST */\n/*      GL_LINEAR */\n#define GL_NEAREST_MIPMAP_NEAREST         0x2700\n#define GL_LINEAR_MIPMAP_NEAREST          0x2701\n#define GL_NEAREST_MIPMAP_LINEAR          0x2702\n#define GL_LINEAR_MIPMAP_LINEAR           0x2703\n\n/* TextureParameterName */\n#define GL_TEXTURE_MAG_FILTER             0x2800\n#define GL_TEXTURE_MIN_FILTER             0x2801\n#define GL_TEXTURE_WRAP_S                 0x2802\n#define GL_TEXTURE_WRAP_T                 0x2803\n\n/* TextureTarget */\n/*      GL_TEXTURE_2D */\n#define GL_TEXTURE                        0x1702\n\n#define GL_TEXTURE_CUBE_MAP               0x8513\n#define GL_TEXTURE_BINDING_CUBE_MAP       0x8514\n#define GL_TEXTURE_CUBE_MAP_POSITIVE_X    0x8515\n#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X    0x8516\n#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y    0x8517\n#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y    0x8518\n#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z    0x8519\n#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z    0x851A\n#define GL_MAX_CUBE_MAP_TEXTURE_SIZE      0x851C\n\n/* TextureUnit */\n#define GL_TEXTURE0                       0x84C0\n#define GL_TEXTURE1                       0x84C1\n#define GL_TEXTURE2                       0x84C2\n#define GL_TEXTURE3                       0x84C3\n#define GL_TEXTURE4                       0x84C4\n#define GL_TEXTURE5                       0x84C5\n#define GL_TEXTURE6                       0x84C6\n#define GL_TEXTURE7                       0x84C7\n#define GL_TEXTURE8                       0x84C8\n#define GL_TEXTURE9                       0x84C9\n#define GL_TEXTURE10                      0x84CA\n#define GL_TEXTURE11                      0x84CB\n#define GL_TEXTURE12                      0x84CC\n#define GL_TEXTURE13                      0x84CD\n#define GL_TEXTURE14                      0x84CE\n#define GL_TEXTURE15                      0x84CF\n#define GL_TEXTURE16                      0x84D0\n#define GL_TEXTURE17                      0x84D1\n#define GL_TEXTURE18                      0x84D2\n#define GL_TEXTURE19                      0x84D3\n#define GL_TEXTURE20                      0x84D4\n#define GL_TEXTURE21                      0x84D5\n#define GL_TEXTURE22                      0x84D6\n#define GL_TEXTURE23                      0x84D7\n#define GL_TEXTURE24                      0x84D8\n#define GL_TEXTURE25                      0x84D9\n#define GL_TEXTURE26                      0x84DA\n#define GL_TEXTURE27                      0x84DB\n#define GL_TEXTURE28                      0x84DC\n#define GL_TEXTURE29                      0x84DD\n#define GL_TEXTURE30                      0x84DE\n#define GL_TEXTURE31                      0x84DF\n#define GL_ACTIVE_TEXTURE                 0x84E0\n\n/* TextureWrapMode */\n#define GL_REPEAT                         0x2901\n#define GL_CLAMP_TO_EDGE                  0x812F\n#define GL_MIRRORED_REPEAT                0x8370\n\n/* Uniform Types */\n#define GL_FLOAT_VEC2                     0x8B50\n#define GL_FLOAT_VEC3                     0x8B51\n#define GL_FLOAT_VEC4                     0x8B52\n#define GL_INT_VEC2                       0x8B53\n#define GL_INT_VEC3                       0x8B54\n#define GL_INT_VEC4                       0x8B55\n#define GL_BOOL                           0x8B56\n#define GL_BOOL_VEC2                      0x8B57\n#define GL_BOOL_VEC3                      0x8B58\n#define GL_BOOL_VEC4                      0x8B59\n#define GL_FLOAT_MAT2                     0x8B5A\n#define GL_FLOAT_MAT3                     0x8B5B\n#define GL_FLOAT_MAT4                     0x8B5C\n#define GL_SAMPLER_2D                     0x8B5E\n#define GL_SAMPLER_CUBE                   0x8B60\n\n/* Vertex Arrays */\n#define GL_VERTEX_ATTRIB_ARRAY_ENABLED        0x8622\n#define GL_VERTEX_ATTRIB_ARRAY_SIZE           0x8623\n#define GL_VERTEX_ATTRIB_ARRAY_STRIDE         0x8624\n#define GL_VERTEX_ATTRIB_ARRAY_TYPE           0x8625\n#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED     0x886A\n#define GL_VERTEX_ATTRIB_ARRAY_POINTER        0x8645\n#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F\n\n/* Read Format */\n#define GL_IMPLEMENTATION_COLOR_READ_TYPE   0x8B9A\n#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B\n\n/* Shader Source */\n#define GL_COMPILE_STATUS                 0x8B81\n#define GL_INFO_LOG_LENGTH                0x8B84\n#define GL_SHADER_SOURCE_LENGTH           0x8B88\n#define GL_SHADER_COMPILER                0x8DFA\n\n/* Shader Binary */\n#define GL_SHADER_BINARY_FORMATS          0x8DF8\n#define GL_NUM_SHADER_BINARY_FORMATS      0x8DF9\n\n/* Shader Precision-Specified Types */\n#define GL_LOW_FLOAT                      0x8DF0\n#define GL_MEDIUM_FLOAT                   0x8DF1\n#define GL_HIGH_FLOAT                     0x8DF2\n#define GL_LOW_INT                        0x8DF3\n#define GL_MEDIUM_INT                     0x8DF4\n#define GL_HIGH_INT                       0x8DF5\n\n/* Framebuffer Object. */\n#define GL_FRAMEBUFFER                    0x8D40\n#define GL_RENDERBUFFER                   0x8D41\n\n#define GL_RGBA4                          0x8056\n#define GL_RGB5_A1                        0x8057\n#define GL_RGB565                         0x8D62\n#define GL_DEPTH_COMPONENT16              0x81A5\n#define GL_STENCIL_INDEX8                 0x8D48\n\n#define GL_RENDERBUFFER_WIDTH             0x8D42\n#define GL_RENDERBUFFER_HEIGHT            0x8D43\n#define GL_RENDERBUFFER_INTERNAL_FORMAT   0x8D44\n#define GL_RENDERBUFFER_RED_SIZE          0x8D50\n#define GL_RENDERBUFFER_GREEN_SIZE        0x8D51\n#define GL_RENDERBUFFER_BLUE_SIZE         0x8D52\n#define GL_RENDERBUFFER_ALPHA_SIZE        0x8D53\n#define GL_RENDERBUFFER_DEPTH_SIZE        0x8D54\n#define GL_RENDERBUFFER_STENCIL_SIZE      0x8D55\n\n#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE           0x8CD0\n#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME           0x8CD1\n#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL         0x8CD2\n#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3\n\n#define GL_COLOR_ATTACHMENT0              0x8CE0\n#define GL_DEPTH_ATTACHMENT               0x8D00\n#define GL_STENCIL_ATTACHMENT             0x8D20\n\n#define GL_NONE                           0\n\n#define GL_FRAMEBUFFER_COMPLETE                      0x8CD5\n#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT         0x8CD6\n#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7\n#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS         0x8CD9\n#define GL_FRAMEBUFFER_UNSUPPORTED                   0x8CDD\n\n#define GL_FRAMEBUFFER_BINDING            0x8CA6\n#define GL_RENDERBUFFER_BINDING           0x8CA7\n#define GL_MAX_RENDERBUFFER_SIZE          0x84E8\n\n#define GL_INVALID_FRAMEBUFFER_OPERATION  0x0506\n\n/*-------------------------------------------------------------------------\n * GL core functions.\n *-----------------------------------------------------------------------*/\n\nGL_APICALL void         GL_APIENTRY glActiveTexture (GLenum texture);\nGL_APICALL void         GL_APIENTRY glAttachShader (GLuint program, GLuint shader);\nGL_APICALL void         GL_APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar* name);\nGL_APICALL void         GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer);\nGL_APICALL void         GL_APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer);\nGL_APICALL void         GL_APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer);\nGL_APICALL void         GL_APIENTRY glBindTexture (GLenum target, GLuint texture);\nGL_APICALL void         GL_APIENTRY glBlendColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);\nGL_APICALL void         GL_APIENTRY glBlendEquation ( GLenum mode );\nGL_APICALL void         GL_APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha);\nGL_APICALL void         GL_APIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor);\nGL_APICALL void         GL_APIENTRY glBlendFuncSeparate (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);\nGL_APICALL void         GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage);\nGL_APICALL void         GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data);\nGL_APICALL GLenum       GL_APIENTRY glCheckFramebufferStatus (GLenum target);\nGL_APICALL void         GL_APIENTRY glClear (GLbitfield mask);\nGL_APICALL void         GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);\nGL_APICALL void         GL_APIENTRY glClearDepthf (GLclampf depth);\nGL_APICALL void         GL_APIENTRY glClearStencil (GLint s);\nGL_APICALL void         GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);\nGL_APICALL void         GL_APIENTRY glCompileShader (GLuint shader);\nGL_APICALL void         GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid* data);\nGL_APICALL void         GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data);\nGL_APICALL void         GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);\nGL_APICALL void         GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);\nGL_APICALL GLuint       GL_APIENTRY glCreateProgram (void);\nGL_APICALL GLuint       GL_APIENTRY glCreateShader (GLenum type);\nGL_APICALL void         GL_APIENTRY glCullFace (GLenum mode);\nGL_APICALL void         GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint* buffers);\nGL_APICALL void         GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint* framebuffers);\nGL_APICALL void         GL_APIENTRY glDeleteProgram (GLuint program);\nGL_APICALL void         GL_APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint* renderbuffers);\nGL_APICALL void         GL_APIENTRY glDeleteShader (GLuint shader);\nGL_APICALL void         GL_APIENTRY glDeleteTextures (GLsizei n, const GLuint* textures);\nGL_APICALL void         GL_APIENTRY glDepthFunc (GLenum func);\nGL_APICALL void         GL_APIENTRY glDepthMask (GLboolean flag);\nGL_APICALL void         GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar);\nGL_APICALL void         GL_APIENTRY glDetachShader (GLuint program, GLuint shader);\nGL_APICALL void         GL_APIENTRY glDisable (GLenum cap);\nGL_APICALL void         GL_APIENTRY glDisableVertexAttribArray (GLuint index);\nGL_APICALL void         GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count);\nGL_APICALL void         GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices);\nGL_APICALL void         GL_APIENTRY glEnable (GLenum cap);\nGL_APICALL void         GL_APIENTRY glEnableVertexAttribArray (GLuint index);\nGL_APICALL void         GL_APIENTRY glFinish (void);\nGL_APICALL void         GL_APIENTRY glFlush (void);\nGL_APICALL void         GL_APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);\nGL_APICALL void         GL_APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);\nGL_APICALL void         GL_APIENTRY glFrontFace (GLenum mode);\nGL_APICALL void         GL_APIENTRY glGenBuffers (GLsizei n, GLuint* buffers);\nGL_APICALL void         GL_APIENTRY glGenerateMipmap (GLenum target);\nGL_APICALL void         GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint* framebuffers);\nGL_APICALL void         GL_APIENTRY glGenRenderbuffers (GLsizei n, GLuint* renderbuffers);\nGL_APICALL void         GL_APIENTRY glGenTextures (GLsizei n, GLuint* textures);\nGL_APICALL void         GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name);\nGL_APICALL void         GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name);\nGL_APICALL void         GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders);\nGL_APICALL GLint        GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar* name);\nGL_APICALL void         GL_APIENTRY glGetBooleanv (GLenum pname, GLboolean* params);\nGL_APICALL void         GL_APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint* params);\nGL_APICALL GLenum       GL_APIENTRY glGetError (void);\nGL_APICALL void         GL_APIENTRY glGetFloatv (GLenum pname, GLfloat* params);\nGL_APICALL void         GL_APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint* params);\nGL_APICALL void         GL_APIENTRY glGetIntegerv (GLenum pname, GLint* params);\nGL_APICALL void         GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint* params);\nGL_APICALL void         GL_APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufsize, GLsizei* length, GLchar* infolog);\nGL_APICALL void         GL_APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint* params);\nGL_APICALL void         GL_APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint* params);\nGL_APICALL void         GL_APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* infolog);\nGL_APICALL void         GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision);\nGL_APICALL void         GL_APIENTRY glGetShaderSource (GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source);\nGL_APICALL const GLubyte* GL_APIENTRY glGetString (GLenum name);\nGL_APICALL void         GL_APIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat* params);\nGL_APICALL void         GL_APIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint* params);\nGL_APICALL void         GL_APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat* params);\nGL_APICALL void         GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint* params);\nGL_APICALL GLint        GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar* name);\nGL_APICALL void         GL_APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat* params);\nGL_APICALL void         GL_APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint* params);\nGL_APICALL void         GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, GLvoid** pointer);\nGL_APICALL void         GL_APIENTRY glHint (GLenum target, GLenum mode);\nGL_APICALL GLboolean    GL_APIENTRY glIsBuffer (GLuint buffer);\nGL_APICALL GLboolean    GL_APIENTRY glIsEnabled (GLenum cap);\nGL_APICALL GLboolean    GL_APIENTRY glIsFramebuffer (GLuint framebuffer);\nGL_APICALL GLboolean    GL_APIENTRY glIsProgram (GLuint program);\nGL_APICALL GLboolean    GL_APIENTRY glIsRenderbuffer (GLuint renderbuffer);\nGL_APICALL GLboolean    GL_APIENTRY glIsShader (GLuint shader);\nGL_APICALL GLboolean    GL_APIENTRY glIsTexture (GLuint texture);\nGL_APICALL void         GL_APIENTRY glLineWidth (GLfloat width);\nGL_APICALL void         GL_APIENTRY glLinkProgram (GLuint program);\nGL_APICALL void         GL_APIENTRY glPixelStorei (GLenum pname, GLint param);\nGL_APICALL void         GL_APIENTRY glPolygonOffset (GLfloat factor, GLfloat units);\nGL_APICALL void         GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels);\nGL_APICALL void         GL_APIENTRY glReleaseShaderCompiler (void);\nGL_APICALL void         GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height);\nGL_APICALL void         GL_APIENTRY glSampleCoverage (GLclampf value, GLboolean invert);\nGL_APICALL void         GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height);\nGL_APICALL void         GL_APIENTRY glShaderBinary (GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length);\nGL_APICALL void         GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar* const* string, const GLint* length);\nGL_APICALL void         GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask);\nGL_APICALL void         GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask);\nGL_APICALL void         GL_APIENTRY glStencilMask (GLuint mask);\nGL_APICALL void         GL_APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask);\nGL_APICALL void         GL_APIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass);\nGL_APICALL void         GL_APIENTRY glStencilOpSeparate (GLenum face, GLenum fail, GLenum zfail, GLenum zpass);\nGL_APICALL void         GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels);\nGL_APICALL void         GL_APIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param);\nGL_APICALL void         GL_APIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat* params);\nGL_APICALL void         GL_APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param);\nGL_APICALL void         GL_APIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint* params);\nGL_APICALL void         GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels);\nGL_APICALL void         GL_APIENTRY glUniform1f (GLint location, GLfloat x);\nGL_APICALL void         GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat* v);\nGL_APICALL void         GL_APIENTRY glUniform1i (GLint location, GLint x);\nGL_APICALL void         GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint* v);\nGL_APICALL void         GL_APIENTRY glUniform2f (GLint location, GLfloat x, GLfloat y);\nGL_APICALL void         GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat* v);\nGL_APICALL void         GL_APIENTRY glUniform2i (GLint location, GLint x, GLint y);\nGL_APICALL void         GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint* v);\nGL_APICALL void         GL_APIENTRY glUniform3f (GLint location, GLfloat x, GLfloat y, GLfloat z);\nGL_APICALL void         GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat* v);\nGL_APICALL void         GL_APIENTRY glUniform3i (GLint location, GLint x, GLint y, GLint z);\nGL_APICALL void         GL_APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint* v);\nGL_APICALL void         GL_APIENTRY glUniform4f (GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w);\nGL_APICALL void         GL_APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat* v);\nGL_APICALL void         GL_APIENTRY glUniform4i (GLint location, GLint x, GLint y, GLint z, GLint w);\nGL_APICALL void         GL_APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint* v);\nGL_APICALL void         GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);\nGL_APICALL void         GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);\nGL_APICALL void         GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value);\nGL_APICALL void         GL_APIENTRY glUseProgram (GLuint program);\nGL_APICALL void         GL_APIENTRY glValidateProgram (GLuint program);\nGL_APICALL void         GL_APIENTRY glVertexAttrib1f (GLuint indx, GLfloat x);\nGL_APICALL void         GL_APIENTRY glVertexAttrib1fv (GLuint indx, const GLfloat* values);\nGL_APICALL void         GL_APIENTRY glVertexAttrib2f (GLuint indx, GLfloat x, GLfloat y);\nGL_APICALL void         GL_APIENTRY glVertexAttrib2fv (GLuint indx, const GLfloat* values);\nGL_APICALL void         GL_APIENTRY glVertexAttrib3f (GLuint indx, GLfloat x, GLfloat y, GLfloat z);\nGL_APICALL void         GL_APIENTRY glVertexAttrib3fv (GLuint indx, const GLfloat* values);\nGL_APICALL void         GL_APIENTRY glVertexAttrib4f (GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w);\nGL_APICALL void         GL_APIENTRY glVertexAttrib4fv (GLuint indx, const GLfloat* values);\nGL_APICALL void         GL_APIENTRY glVertexAttribPointer (GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr);\nGL_APICALL void         GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height);\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* __gl2_h_ */\n\n"
  },
  {
    "path": "gl2/gl2ext.h",
    "content": "#ifndef __gl2ext_h_\n#define __gl2ext_h_\n\n/* $Revision: 22801 $ on $Date:: 2013-08-21 03:20:48 -0700 #$ */\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n/*\n * This document is licensed under the SGI Free Software B License Version\n * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .\n */\n\n#ifndef GL_APIENTRYP\n#   define GL_APIENTRYP GL_APIENTRY*\n#endif\n\n/* New types shared by several extensions */\n\n#ifndef __gl3_h_\n/* These are defined with respect to <inttypes.h> in the\n * Apple extension spec, but they are also used by non-APPLE\n * extensions, and in the Khronos header we use the Khronos\n * portable types in khrplatform.h, which must be defined.\n */\ntypedef khronos_int64_t GLint64;\ntypedef khronos_uint64_t GLuint64;\ntypedef struct __GLsync *GLsync;\n#endif\n\n\n/*------------------------------------------------------------------------*\n * OES extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_OES_compressed_ETC1_RGB8_texture */\n#ifndef GL_OES_compressed_ETC1_RGB8_texture\n#define GL_ETC1_RGB8_OES                                        0x8D64\n#endif\n\n/* GL_OES_compressed_paletted_texture */\n#ifndef GL_OES_compressed_paletted_texture\n#define GL_PALETTE4_RGB8_OES                                    0x8B90\n#define GL_PALETTE4_RGBA8_OES                                   0x8B91\n#define GL_PALETTE4_R5_G6_B5_OES                                0x8B92\n#define GL_PALETTE4_RGBA4_OES                                   0x8B93\n#define GL_PALETTE4_RGB5_A1_OES                                 0x8B94\n#define GL_PALETTE8_RGB8_OES                                    0x8B95\n#define GL_PALETTE8_RGBA8_OES                                   0x8B96\n#define GL_PALETTE8_R5_G6_B5_OES                                0x8B97\n#define GL_PALETTE8_RGBA4_OES                                   0x8B98\n#define GL_PALETTE8_RGB5_A1_OES                                 0x8B99\n#endif\n\n/* GL_OES_depth24 */\n#ifndef GL_OES_depth24\n#define GL_DEPTH_COMPONENT24_OES                                0x81A6\n#endif\n\n/* GL_OES_depth32 */\n#ifndef GL_OES_depth32\n#define GL_DEPTH_COMPONENT32_OES                                0x81A7\n#endif\n\n/* GL_OES_depth_texture */\n/* No new tokens introduced by this extension. */\n\n/* GL_OES_EGL_image */\n#ifndef GL_OES_EGL_image\ntypedef void* GLeglImageOES;\n#endif\n\n/* GL_OES_EGL_image_external */\n#ifndef GL_OES_EGL_image_external\n/* GLeglImageOES defined in GL_OES_EGL_image already. */\n#define GL_TEXTURE_EXTERNAL_OES                                 0x8D65\n#define GL_SAMPLER_EXTERNAL_OES                                 0x8D66\n#define GL_TEXTURE_BINDING_EXTERNAL_OES                         0x8D67\n#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES                     0x8D68\n#endif\n\n/* GL_OES_element_index_uint */\n#ifndef GL_OES_element_index_uint\n#define GL_UNSIGNED_INT                                         0x1405\n#endif\n\n/* GL_OES_get_program_binary */\n#ifndef GL_OES_get_program_binary\n#define GL_PROGRAM_BINARY_LENGTH_OES                            0x8741\n#define GL_NUM_PROGRAM_BINARY_FORMATS_OES                       0x87FE\n#define GL_PROGRAM_BINARY_FORMATS_OES                           0x87FF\n#endif\n\n/* GL_OES_mapbuffer */\n#ifndef GL_OES_mapbuffer\n#define GL_WRITE_ONLY_OES                                       0x88B9\n#define GL_BUFFER_ACCESS_OES                                    0x88BB\n#define GL_BUFFER_MAPPED_OES                                    0x88BC\n#define GL_BUFFER_MAP_POINTER_OES                               0x88BD\n#endif\n\n/* GL_OES_packed_depth_stencil */\n#ifndef GL_OES_packed_depth_stencil\n#define GL_DEPTH_STENCIL_OES                                    0x84F9\n#define GL_UNSIGNED_INT_24_8_OES                                0x84FA\n#define GL_DEPTH24_STENCIL8_OES                                 0x88F0\n#endif\n\n/* GL_OES_required_internalformat */\n#ifndef GL_OES_required_internalformat\n#define GL_ALPHA8_OES                                           0x803C\n#define GL_DEPTH_COMPONENT16_OES                                0x81A5\n/* reuse GL_DEPTH_COMPONENT24_OES */\n/* reuse GL_DEPTH24_STENCIL8_OES */\n/* reuse GL_DEPTH_COMPONENT32_OES */\n#define GL_LUMINANCE4_ALPHA4_OES                                0x8043\n#define GL_LUMINANCE8_ALPHA8_OES                                0x8045\n#define GL_LUMINANCE8_OES                                       0x8040\n#define GL_RGBA4_OES                                            0x8056\n#define GL_RGB5_A1_OES                                          0x8057\n#define GL_RGB565_OES                                           0x8D62\n/* reuse GL_RGB8_OES */\n/* reuse GL_RGBA8_OES */\n/* reuse GL_RGB10_EXT */\n/* reuse GL_RGB10_A2_EXT */\n#endif\n\n/* GL_OES_rgb8_rgba8 */\n#ifndef GL_OES_rgb8_rgba8\n#define GL_RGB8_OES                                             0x8051\n#define GL_RGBA8_OES                                            0x8058\n#endif\n\n/* GL_OES_standard_derivatives */\n#ifndef GL_OES_standard_derivatives\n#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES                  0x8B8B\n#endif\n\n/* GL_OES_stencil1 */\n#ifndef GL_OES_stencil1\n#define GL_STENCIL_INDEX1_OES                                   0x8D46\n#endif\n\n/* GL_OES_stencil4 */\n#ifndef GL_OES_stencil4\n#define GL_STENCIL_INDEX4_OES                                   0x8D47\n#endif\n\n#ifndef GL_OES_surfaceless_context\n#define GL_FRAMEBUFFER_UNDEFINED_OES                            0x8219\n#endif\n\n/* GL_OES_texture_3D */\n#ifndef GL_OES_texture_3D\n#define GL_TEXTURE_WRAP_R_OES                                   0x8072\n#define GL_TEXTURE_3D_OES                                       0x806F\n#define GL_TEXTURE_BINDING_3D_OES                               0x806A\n#define GL_MAX_3D_TEXTURE_SIZE_OES                              0x8073\n#define GL_SAMPLER_3D_OES                                       0x8B5F\n#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES        0x8CD4\n#endif\n\n/* GL_OES_texture_float */\n/* No new tokens introduced by this extension. */\n\n/* GL_OES_texture_float_linear */\n/* No new tokens introduced by this extension. */\n\n/* GL_OES_texture_half_float */\n#ifndef GL_OES_texture_half_float\n#define GL_HALF_FLOAT_OES                                       0x8D61\n#endif\n\n/* GL_OES_texture_half_float_linear */\n/* No new tokens introduced by this extension. */\n\n/* GL_OES_texture_npot */\n/* No new tokens introduced by this extension. */\n\n/* GL_OES_vertex_array_object */\n#ifndef GL_OES_vertex_array_object\n#define GL_VERTEX_ARRAY_BINDING_OES                             0x85B5\n#endif\n\n/* GL_OES_vertex_half_float */\n/* GL_HALF_FLOAT_OES defined in GL_OES_texture_half_float already. */\n\n/* GL_OES_vertex_type_10_10_10_2 */\n#ifndef GL_OES_vertex_type_10_10_10_2\n#define GL_UNSIGNED_INT_10_10_10_2_OES                          0x8DF6\n#define GL_INT_10_10_10_2_OES                                   0x8DF7\n#endif\n\n/*------------------------------------------------------------------------*\n * KHR extension tokens\n *------------------------------------------------------------------------*/\n\n#ifndef GL_KHR_debug\ntypedef void (GL_APIENTRYP GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam);\n#define GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR                         0x8242\n#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR                 0x8243\n#define GL_DEBUG_CALLBACK_FUNCTION_KHR                          0x8244\n#define GL_DEBUG_CALLBACK_USER_PARAM_KHR                        0x8245\n#define GL_DEBUG_SOURCE_API_KHR                                 0x8246\n#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR                       0x8247\n#define GL_DEBUG_SOURCE_SHADER_COMPILER_KHR                     0x8248\n#define GL_DEBUG_SOURCE_THIRD_PARTY_KHR                         0x8249\n#define GL_DEBUG_SOURCE_APPLICATION_KHR                         0x824A\n#define GL_DEBUG_SOURCE_OTHER_KHR                               0x824B\n#define GL_DEBUG_TYPE_ERROR_KHR                                 0x824C\n#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR                   0x824D\n#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR                    0x824E\n#define GL_DEBUG_TYPE_PORTABILITY_KHR                           0x824F\n#define GL_DEBUG_TYPE_PERFORMANCE_KHR                           0x8250\n#define GL_DEBUG_TYPE_OTHER_KHR                                 0x8251\n#define GL_DEBUG_TYPE_MARKER_KHR                                0x8268\n#define GL_DEBUG_TYPE_PUSH_GROUP_KHR                            0x8269\n#define GL_DEBUG_TYPE_POP_GROUP_KHR                             0x826A\n#define GL_DEBUG_SEVERITY_NOTIFICATION_KHR                      0x826B\n#define GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR                      0x826C\n#define GL_DEBUG_GROUP_STACK_DEPTH_KHR                          0x826D\n#define GL_BUFFER_KHR                                           0x82E0\n#define GL_SHADER_KHR                                           0x82E1\n#define GL_PROGRAM_KHR                                          0x82E2\n#define GL_QUERY_KHR                                            0x82E3\n/* PROGRAM_PIPELINE only in GL */\n#define GL_SAMPLER_KHR                                          0x82E6\n/* DISPLAY_LIST only in GL */\n#define GL_MAX_LABEL_LENGTH_KHR                                 0x82E8\n#define GL_MAX_DEBUG_MESSAGE_LENGTH_KHR                         0x9143\n#define GL_MAX_DEBUG_LOGGED_MESSAGES_KHR                        0x9144\n#define GL_DEBUG_LOGGED_MESSAGES_KHR                            0x9145\n#define GL_DEBUG_SEVERITY_HIGH_KHR                              0x9146\n#define GL_DEBUG_SEVERITY_MEDIUM_KHR                            0x9147\n#define GL_DEBUG_SEVERITY_LOW_KHR                               0x9148\n#define GL_DEBUG_OUTPUT_KHR                                     0x92E0\n#define GL_CONTEXT_FLAG_DEBUG_BIT_KHR                           0x00000002\n#define GL_STACK_OVERFLOW_KHR                                   0x0503\n#define GL_STACK_UNDERFLOW_KHR                                  0x0504\n#endif\n\n#ifndef GL_KHR_texture_compression_astc_ldr\n#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR                         0x93B0\n#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR                         0x93B1\n#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR                         0x93B2\n#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR                         0x93B3\n#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR                         0x93B4\n#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR                         0x93B5\n#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR                         0x93B6\n#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR                         0x93B7\n#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR                        0x93B8\n#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR                        0x93B9\n#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR                        0x93BA\n#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR                       0x93BB\n#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR                       0x93BC\n#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR                       0x93BD\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR                 0x93D0\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR                 0x93D1\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR                 0x93D2\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR                 0x93D3\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR                 0x93D4\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR                 0x93D5\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR                 0x93D6\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR                 0x93D7\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR                0x93D8\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR                0x93D9\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR                0x93DA\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR               0x93DB\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR               0x93DC\n#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR               0x93DD\n#endif\n\n/*------------------------------------------------------------------------*\n * AMD extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_AMD_compressed_3DC_texture */\n#ifndef GL_AMD_compressed_3DC_texture\n#define GL_3DC_X_AMD                                            0x87F9\n#define GL_3DC_XY_AMD                                           0x87FA\n#endif\n\n/* GL_AMD_compressed_ATC_texture */\n#ifndef GL_AMD_compressed_ATC_texture\n#define GL_ATC_RGB_AMD                                          0x8C92\n#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD                          0x8C93\n#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD                      0x87EE\n#endif\n\n/* GL_AMD_performance_monitor */\n#ifndef GL_AMD_performance_monitor\n#define GL_COUNTER_TYPE_AMD                                     0x8BC0\n#define GL_COUNTER_RANGE_AMD                                    0x8BC1\n#define GL_UNSIGNED_INT64_AMD                                   0x8BC2\n#define GL_PERCENTAGE_AMD                                       0x8BC3\n#define GL_PERFMON_RESULT_AVAILABLE_AMD                         0x8BC4\n#define GL_PERFMON_RESULT_SIZE_AMD                              0x8BC5\n#define GL_PERFMON_RESULT_AMD                                   0x8BC6\n#endif\n\n/* GL_AMD_program_binary_Z400 */\n#ifndef GL_AMD_program_binary_Z400\n#define GL_Z400_BINARY_AMD                                      0x8740\n#endif\n\n/*------------------------------------------------------------------------*\n * ANGLE extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_ANGLE_depth_texture */\n#ifndef GL_ANGLE_depth_texture\n#define GL_DEPTH_COMPONENT                                      0x1902\n#define GL_DEPTH_STENCIL_OES                                    0x84F9\n#define GL_UNSIGNED_SHORT                                       0x1403\n#define GL_UNSIGNED_INT                                         0x1405\n#define GL_UNSIGNED_INT_24_8_OES                                0x84FA\n#define GL_DEPTH_COMPONENT16                                    0x81A5\n#define GL_DEPTH_COMPONENT32_OES                                0x81A7\n#define GL_DEPTH24_STENCIL8_OES                                 0x88F0\n#endif\n\n/* GL_ANGLE_framebuffer_blit */\n#ifndef GL_ANGLE_framebuffer_blit\n#define GL_READ_FRAMEBUFFER_ANGLE                               0x8CA8\n#define GL_DRAW_FRAMEBUFFER_ANGLE                               0x8CA9\n#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE                       0x8CA6\n#define GL_READ_FRAMEBUFFER_BINDING_ANGLE                       0x8CAA\n#endif\n\n/* GL_ANGLE_framebuffer_multisample */\n#ifndef GL_ANGLE_framebuffer_multisample\n#define GL_RENDERBUFFER_SAMPLES_ANGLE                           0x8CAB\n#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE             0x8D56\n#define GL_MAX_SAMPLES_ANGLE                                    0x8D57\n#endif\n\n/* GL_ANGLE_instanced_arrays */\n#ifndef GL_ANGLE_instanced_arrays\n#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE                    0x88FE\n#endif\n\n/* GL_ANGLE_pack_reverse_row_order */\n#ifndef GL_ANGLE_pack_reverse_row_order\n#define GL_PACK_REVERSE_ROW_ORDER_ANGLE                         0x93A4\n#endif\n\n/* GL_ANGLE_program_binary */\n#ifndef GL_ANGLE_program_binary\n#define GL_PROGRAM_BINARY_ANGLE                                 0x93A6\n#endif\n\n/* GL_ANGLE_texture_compression_dxt3 */\n#ifndef GL_ANGLE_texture_compression_dxt3\n#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE                      0x83F2\n#endif\n\n/* GL_ANGLE_texture_compression_dxt5 */\n#ifndef GL_ANGLE_texture_compression_dxt5\n#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE                      0x83F3\n#endif\n\n/* GL_ANGLE_texture_usage */\n#ifndef GL_ANGLE_texture_usage\n#define GL_TEXTURE_USAGE_ANGLE                                  0x93A2\n#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE                         0x93A3\n#endif\n\n/* GL_ANGLE_translated_shader_source */\n#ifndef GL_ANGLE_translated_shader_source\n#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE                0x93A0\n#endif\n\n/*------------------------------------------------------------------------*\n * APPLE extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_APPLE_copy_texture_levels */\n/* No new tokens introduced by this extension. */\n\n/* GL_APPLE_framebuffer_multisample */\n#ifndef GL_APPLE_framebuffer_multisample\n#define GL_RENDERBUFFER_SAMPLES_APPLE                           0x8CAB\n#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE             0x8D56\n#define GL_MAX_SAMPLES_APPLE                                    0x8D57\n#define GL_READ_FRAMEBUFFER_APPLE                               0x8CA8\n#define GL_DRAW_FRAMEBUFFER_APPLE                               0x8CA9\n#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE                       0x8CA6\n#define GL_READ_FRAMEBUFFER_BINDING_APPLE                       0x8CAA\n#endif\n\n/* GL_APPLE_rgb_422 */\n#ifndef GL_APPLE_rgb_422\n#define GL_RGB_422_APPLE                                        0x8A1F\n#define GL_UNSIGNED_SHORT_8_8_APPLE                             0x85BA\n#define GL_UNSIGNED_SHORT_8_8_REV_APPLE                         0x85BB\n#endif\n\n/* GL_APPLE_sync */\n#ifndef GL_APPLE_sync\n\n#define GL_SYNC_OBJECT_APPLE                                    0x8A53\n#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE                        0x9111\n#define GL_OBJECT_TYPE_APPLE                                    0x9112\n#define GL_SYNC_CONDITION_APPLE                                 0x9113\n#define GL_SYNC_STATUS_APPLE                                    0x9114\n#define GL_SYNC_FLAGS_APPLE                                     0x9115\n#define GL_SYNC_FENCE_APPLE                                     0x9116\n#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE                     0x9117\n#define GL_UNSIGNALED_APPLE                                     0x9118\n#define GL_SIGNALED_APPLE                                       0x9119\n#define GL_ALREADY_SIGNALED_APPLE                               0x911A\n#define GL_TIMEOUT_EXPIRED_APPLE                                0x911B\n#define GL_CONDITION_SATISFIED_APPLE                            0x911C\n#define GL_WAIT_FAILED_APPLE                                    0x911D\n#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE                        0x00000001\n#define GL_TIMEOUT_IGNORED_APPLE                                0xFFFFFFFFFFFFFFFFull\n#endif\n\n/* GL_APPLE_texture_format_BGRA8888 */\n#ifndef GL_APPLE_texture_format_BGRA8888\n#define GL_BGRA_EXT                                             0x80E1\n#endif\n\n/* GL_APPLE_texture_max_level */\n#ifndef GL_APPLE_texture_max_level\n#define GL_TEXTURE_MAX_LEVEL_APPLE                              0x813D\n#endif\n\n/*------------------------------------------------------------------------*\n * ARM extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_ARM_mali_program_binary */\n#ifndef GL_ARM_mali_program_binary\n#define GL_MALI_PROGRAM_BINARY_ARM                              0x8F61\n#endif\n\n/* GL_ARM_mali_shader_binary */\n#ifndef GL_ARM_mali_shader_binary\n#define GL_MALI_SHADER_BINARY_ARM                               0x8F60\n#endif\n\n/* GL_ARM_rgba8 */\n/* No new tokens introduced by this extension. */\n\n/*------------------------------------------------------------------------*\n * EXT extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_EXT_blend_minmax */\n#ifndef GL_EXT_blend_minmax\n#define GL_MIN_EXT                                              0x8007\n#define GL_MAX_EXT                                              0x8008\n#endif\n\n/* GL_EXT_color_buffer_half_float */\n#ifndef GL_EXT_color_buffer_half_float\n#define GL_RGBA16F_EXT                                          0x881A\n#define GL_RGB16F_EXT                                           0x881B\n#define GL_RG16F_EXT                                            0x822F\n#define GL_R16F_EXT                                             0x822D\n#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT            0x8211\n#define GL_UNSIGNED_NORMALIZED_EXT                              0x8C17\n#endif\n\n/* GL_EXT_debug_label */\n#ifndef GL_EXT_debug_label\n#define GL_PROGRAM_PIPELINE_OBJECT_EXT                          0x8A4F\n#define GL_PROGRAM_OBJECT_EXT                                   0x8B40\n#define GL_SHADER_OBJECT_EXT                                    0x8B48\n#define GL_BUFFER_OBJECT_EXT                                    0x9151\n#define GL_QUERY_OBJECT_EXT                                     0x9153\n#define GL_VERTEX_ARRAY_OBJECT_EXT                              0x9154\n#endif\n\n/* GL_EXT_debug_marker */\n/* No new tokens introduced by this extension. */\n\n/* GL_EXT_discard_framebuffer */\n#ifndef GL_EXT_discard_framebuffer\n#define GL_COLOR_EXT                                            0x1800\n#define GL_DEPTH_EXT                                            0x1801\n#define GL_STENCIL_EXT                                          0x1802\n#endif\n\n#ifndef GL_EXT_disjoint_timer_query\n#define GL_QUERY_COUNTER_BITS_EXT                               0x8864\n#define GL_CURRENT_QUERY_EXT                                    0x8865\n#define GL_QUERY_RESULT_EXT                                     0x8866\n#define GL_QUERY_RESULT_AVAILABLE_EXT                           0x8867\n#define GL_TIME_ELAPSED_EXT                                     0x88BF\n#define GL_TIMESTAMP_EXT                                        0x8E28\n#define GL_GPU_DISJOINT_EXT                                     0x8FBB\n#endif\n\n#ifndef GL_EXT_draw_buffers\n#define GL_EXT_draw_buffers 1\n#define GL_MAX_COLOR_ATTACHMENTS_EXT                            0x8CDF\n#define GL_MAX_DRAW_BUFFERS_EXT                                 0x8824\n#define GL_DRAW_BUFFER0_EXT                                     0x8825\n#define GL_DRAW_BUFFER1_EXT                                     0x8826\n#define GL_DRAW_BUFFER2_EXT                                     0x8827\n#define GL_DRAW_BUFFER3_EXT                                     0x8828\n#define GL_DRAW_BUFFER4_EXT                                     0x8829\n#define GL_DRAW_BUFFER5_EXT                                     0x882A\n#define GL_DRAW_BUFFER6_EXT                                     0x882B\n#define GL_DRAW_BUFFER7_EXT                                     0x882C\n#define GL_DRAW_BUFFER8_EXT                                     0x882D\n#define GL_DRAW_BUFFER9_EXT                                     0x882E\n#define GL_DRAW_BUFFER10_EXT                                    0x882F\n#define GL_DRAW_BUFFER11_EXT                                    0x8830\n#define GL_DRAW_BUFFER12_EXT                                    0x8831\n#define GL_DRAW_BUFFER13_EXT                                    0x8832\n#define GL_DRAW_BUFFER14_EXT                                    0x8833\n#define GL_DRAW_BUFFER15_EXT                                    0x8834\n#define GL_COLOR_ATTACHMENT0_EXT                                0x8CE0\n#define GL_COLOR_ATTACHMENT1_EXT                                0x8CE1\n#define GL_COLOR_ATTACHMENT2_EXT                                0x8CE2\n#define GL_COLOR_ATTACHMENT3_EXT                                0x8CE3\n#define GL_COLOR_ATTACHMENT4_EXT                                0x8CE4\n#define GL_COLOR_ATTACHMENT5_EXT                                0x8CE5\n#define GL_COLOR_ATTACHMENT6_EXT                                0x8CE6\n#define GL_COLOR_ATTACHMENT7_EXT                                0x8CE7\n#define GL_COLOR_ATTACHMENT8_EXT                                0x8CE8\n#define GL_COLOR_ATTACHMENT9_EXT                                0x8CE9\n#define GL_COLOR_ATTACHMENT10_EXT                               0x8CEA\n#define GL_COLOR_ATTACHMENT11_EXT                               0x8CEB\n#define GL_COLOR_ATTACHMENT12_EXT                               0x8CEC\n#define GL_COLOR_ATTACHMENT13_EXT                               0x8CED\n#define GL_COLOR_ATTACHMENT14_EXT                               0x8CEE\n#define GL_COLOR_ATTACHMENT15_EXT                               0x8CEF\n#endif\n\n/* GL_EXT_map_buffer_range */\n#ifndef GL_EXT_map_buffer_range\n#define GL_MAP_READ_BIT_EXT                                     0x0001\n#define GL_MAP_WRITE_BIT_EXT                                    0x0002\n#define GL_MAP_INVALIDATE_RANGE_BIT_EXT                         0x0004\n#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT                        0x0008\n#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT                           0x0010\n#define GL_MAP_UNSYNCHRONIZED_BIT_EXT                           0x0020\n#endif\n\n/* GL_EXT_multisampled_render_to_texture */\n#ifndef GL_EXT_multisampled_render_to_texture\n#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT           0x8D6C\n/* reuse values from GL_EXT_framebuffer_multisample (desktop extension) */\n#define GL_RENDERBUFFER_SAMPLES_EXT                             0x8CAB\n#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT               0x8D56\n#define GL_MAX_SAMPLES_EXT                                      0x8D57\n#endif\n\n/* GL_EXT_multiview_draw_buffers */\n#ifndef GL_EXT_multiview_draw_buffers\n#define GL_COLOR_ATTACHMENT_EXT                                 0x90F0\n#define GL_MULTIVIEW_EXT                                        0x90F1\n#define GL_DRAW_BUFFER_EXT                                      0x0C01\n#define GL_READ_BUFFER_EXT                                      0x0C02\n#define GL_MAX_MULTIVIEW_BUFFERS_EXT                            0x90F2\n#endif\n\n/* GL_EXT_multi_draw_arrays */\n/* No new tokens introduced by this extension. */\n\n/* GL_EXT_occlusion_query_boolean */\n#ifndef GL_EXT_occlusion_query_boolean\n#define GL_ANY_SAMPLES_PASSED_EXT                               0x8C2F\n#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT                  0x8D6A\n#define GL_CURRENT_QUERY_EXT                                    0x8865\n#define GL_QUERY_RESULT_EXT                                     0x8866\n#define GL_QUERY_RESULT_AVAILABLE_EXT                           0x8867\n#endif\n\n/* GL_EXT_read_format_bgra */\n#ifndef GL_EXT_read_format_bgra\n#define GL_BGRA_EXT                                             0x80E1\n#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT                       0x8365\n#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT                       0x8366\n#endif\n\n/* GL_EXT_robustness */\n#ifndef GL_EXT_robustness\n/* reuse GL_NO_ERROR */\n#define GL_GUILTY_CONTEXT_RESET_EXT                             0x8253\n#define GL_INNOCENT_CONTEXT_RESET_EXT                           0x8254\n#define GL_UNKNOWN_CONTEXT_RESET_EXT                            0x8255\n#define GL_CONTEXT_ROBUST_ACCESS_EXT                            0x90F3\n#define GL_RESET_NOTIFICATION_STRATEGY_EXT                      0x8256\n#define GL_LOSE_CONTEXT_ON_RESET_EXT                            0x8252\n#define GL_NO_RESET_NOTIFICATION_EXT                            0x8261\n#endif\n\n/* GL_EXT_separate_shader_objects */\n#ifndef GL_EXT_separate_shader_objects\n#define GL_VERTEX_SHADER_BIT_EXT                                0x00000001\n#define GL_FRAGMENT_SHADER_BIT_EXT                              0x00000002\n#define GL_ALL_SHADER_BITS_EXT                                  0xFFFFFFFF\n#define GL_PROGRAM_SEPARABLE_EXT                                0x8258\n#define GL_ACTIVE_PROGRAM_EXT                                   0x8259\n#define GL_PROGRAM_PIPELINE_BINDING_EXT                         0x825A\n#endif\n\n/* GL_EXT_shader_framebuffer_fetch */\n#ifndef GL_EXT_shader_framebuffer_fetch\n#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT                 0x8A52\n#endif\n\n/* GL_EXT_shader_texture_lod */\n/* No new tokens introduced by this extension. */\n\n/* GL_EXT_shadow_samplers */\n#ifndef GL_EXT_shadow_samplers\n#define GL_TEXTURE_COMPARE_MODE_EXT                             0x884C\n#define GL_TEXTURE_COMPARE_FUNC_EXT                             0x884D\n#define GL_COMPARE_REF_TO_TEXTURE_EXT                           0x884E\n#define GL_SAMPLER_2D_SHADOW_EXT                                0x8B62\n#endif\n\n/* GL_EXT_sRGB */\n#ifndef GL_EXT_sRGB\n#define GL_SRGB_EXT                                             0x8C40\n#define GL_SRGB_ALPHA_EXT                                       0x8C42\n#define GL_SRGB8_ALPHA8_EXT                                     0x8C43\n#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT            0x8210\n#endif\n\n/* GL_EXT_sRGB_write_control */\n#ifndef GL_EXT_sRGB_write_control\n#define GL_EXT_sRGB_write_control 1\n#define GL_FRAMEBUFFER_SRGB_EXT                                 0x8DB9\n#endif\n\n/* GL_EXT_texture_compression_dxt1 */\n#ifndef GL_EXT_texture_compression_dxt1\n#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT                         0x83F0\n#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT                        0x83F1\n#endif\n\n/* GL_EXT_texture_filter_anisotropic */\n#ifndef GL_EXT_texture_filter_anisotropic\n#define GL_TEXTURE_MAX_ANISOTROPY_EXT                           0x84FE\n#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT                       0x84FF\n#endif\n\n/* GL_EXT_texture_format_BGRA8888 */\n#ifndef GL_EXT_texture_format_BGRA8888\n#define GL_BGRA_EXT                                             0x80E1\n#endif\n\n/* GL_EXT_texture_rg */\n#ifndef GL_EXT_texture_rg\n#define GL_RED_EXT                                              0x1903\n#define GL_RG_EXT                                               0x8227\n#define GL_R8_EXT                                               0x8229\n#define GL_RG8_EXT                                              0x822B\n#endif\n\n/* GL_EXT_texture_sRGB_decode */\n#ifndef GL_EXT_texture_sRGB_decode\n#define GL_EXT_texture_sRGB_decode 1\n#define GL_TEXTURE_SRGB_DECODE_EXT                              0x8A48\n#define GL_DECODE_EXT                                           0x8A49\n#define GL_SKIP_DECODE_EXT                                      0x8A4A\n#endif\n\n/* GL_EXT_texture_storage */\n#ifndef GL_EXT_texture_storage\n#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT                         0x912F\n#define GL_ALPHA8_EXT                                           0x803C\n#define GL_LUMINANCE8_EXT                                       0x8040\n#define GL_LUMINANCE8_ALPHA8_EXT                                0x8045\n#define GL_RGBA32F_EXT                                          0x8814\n#define GL_RGB32F_EXT                                           0x8815\n#define GL_ALPHA32F_EXT                                         0x8816\n#define GL_LUMINANCE32F_EXT                                     0x8818\n#define GL_LUMINANCE_ALPHA32F_EXT                               0x8819\n/* reuse GL_RGBA16F_EXT */\n/* reuse GL_RGB16F_EXT */\n#define GL_ALPHA16F_EXT                                         0x881C\n#define GL_LUMINANCE16F_EXT                                     0x881E\n#define GL_LUMINANCE_ALPHA16F_EXT                               0x881F\n#define GL_RGB10_A2_EXT                                         0x8059\n#define GL_RGB10_EXT                                            0x8052\n#define GL_BGRA8_EXT                                            0x93A1\n#define GL_R8_EXT                                               0x8229\n#define GL_RG8_EXT                                              0x822B\n#define GL_R32F_EXT                                             0x822E\n#define GL_RG32F_EXT                                            0x8230\n#define GL_R16F_EXT                                             0x822D\n#define GL_RG16F_EXT                                            0x822F\n#endif\n\n/* GL_EXT_texture_type_2_10_10_10_REV */\n#ifndef GL_EXT_texture_type_2_10_10_10_REV\n#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT                      0x8368\n#endif\n\n/* GL_EXT_unpack_subimage */\n#ifndef GL_EXT_unpack_subimage\n#define GL_UNPACK_ROW_LENGTH_EXT                                0x0CF2\n#define GL_UNPACK_SKIP_ROWS_EXT                                 0x0CF3\n#define GL_UNPACK_SKIP_PIXELS_EXT                               0x0CF4\n#endif\n\n/*------------------------------------------------------------------------*\n * DMP extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_DMP_shader_binary */\n#ifndef GL_DMP_shader_binary\n#define GL_SHADER_BINARY_DMP                                    0x9250\n#endif\n\n/*------------------------------------------------------------------------*\n * FJ extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_FJ_shader_binary_GCCSO */\n#ifndef GL_FJ_shader_binary_GCCSO\n#define GL_GCCSO_SHADER_BINARY_FJ                               0x9260\n#endif\n\n/*------------------------------------------------------------------------*\n * IMG extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_IMG_program_binary */\n#ifndef GL_IMG_program_binary\n#define GL_SGX_PROGRAM_BINARY_IMG                               0x9130\n#endif\n\n/* GL_IMG_read_format */\n#ifndef GL_IMG_read_format\n#define GL_BGRA_IMG                                             0x80E1\n#define GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG                       0x8365\n#endif\n\n/* GL_IMG_shader_binary */\n#ifndef GL_IMG_shader_binary\n#define GL_SGX_BINARY_IMG                                       0x8C0A\n#endif\n\n/* GL_IMG_texture_compression_pvrtc */\n#ifndef GL_IMG_texture_compression_pvrtc\n#define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG                      0x8C00\n#define GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG                      0x8C01\n#define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG                     0x8C02\n#define GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG                     0x8C03\n#endif\n\n/* GL_IMG_texture_compression_pvrtc2 */\n#ifndef GL_IMG_texture_compression_pvrtc2\n#define GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG                     0x9137\n#define GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG                     0x9138\n#endif\n\n/* GL_IMG_multisampled_render_to_texture */\n#ifndef GL_IMG_multisampled_render_to_texture\n#define GL_RENDERBUFFER_SAMPLES_IMG                             0x9133\n#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG               0x9134\n#define GL_MAX_SAMPLES_IMG                                      0x9135\n#define GL_TEXTURE_SAMPLES_IMG                                  0x9136\n#endif\n\n/*------------------------------------------------------------------------*\n * NV extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_NV_coverage_sample */\n#ifndef GL_NV_coverage_sample\n#define GL_COVERAGE_COMPONENT_NV                                0x8ED0\n#define GL_COVERAGE_COMPONENT4_NV                               0x8ED1\n#define GL_COVERAGE_ATTACHMENT_NV                               0x8ED2\n#define GL_COVERAGE_BUFFERS_NV                                  0x8ED3\n#define GL_COVERAGE_SAMPLES_NV                                  0x8ED4\n#define GL_COVERAGE_ALL_FRAGMENTS_NV                            0x8ED5\n#define GL_COVERAGE_EDGE_FRAGMENTS_NV                           0x8ED6\n#define GL_COVERAGE_AUTOMATIC_NV                                0x8ED7\n#define GL_COVERAGE_BUFFER_BIT_NV                               0x00008000\n#endif\n\n/* GL_NV_depth_nonlinear */\n#ifndef GL_NV_depth_nonlinear\n#define GL_DEPTH_COMPONENT16_NONLINEAR_NV                       0x8E2C\n#endif\n\n/* GL_NV_draw_buffers */\n#ifndef GL_NV_draw_buffers\n#define GL_MAX_DRAW_BUFFERS_NV                                  0x8824\n#define GL_DRAW_BUFFER0_NV                                      0x8825\n#define GL_DRAW_BUFFER1_NV                                      0x8826\n#define GL_DRAW_BUFFER2_NV                                      0x8827\n#define GL_DRAW_BUFFER3_NV                                      0x8828\n#define GL_DRAW_BUFFER4_NV                                      0x8829\n#define GL_DRAW_BUFFER5_NV                                      0x882A\n#define GL_DRAW_BUFFER6_NV                                      0x882B\n#define GL_DRAW_BUFFER7_NV                                      0x882C\n#define GL_DRAW_BUFFER8_NV                                      0x882D\n#define GL_DRAW_BUFFER9_NV                                      0x882E\n#define GL_DRAW_BUFFER10_NV                                     0x882F\n#define GL_DRAW_BUFFER11_NV                                     0x8830\n#define GL_DRAW_BUFFER12_NV                                     0x8831\n#define GL_DRAW_BUFFER13_NV                                     0x8832\n#define GL_DRAW_BUFFER14_NV                                     0x8833\n#define GL_DRAW_BUFFER15_NV                                     0x8834\n#define GL_COLOR_ATTACHMENT0_NV                                 0x8CE0\n#define GL_COLOR_ATTACHMENT1_NV                                 0x8CE1\n#define GL_COLOR_ATTACHMENT2_NV                                 0x8CE2\n#define GL_COLOR_ATTACHMENT3_NV                                 0x8CE3\n#define GL_COLOR_ATTACHMENT4_NV                                 0x8CE4\n#define GL_COLOR_ATTACHMENT5_NV                                 0x8CE5\n#define GL_COLOR_ATTACHMENT6_NV                                 0x8CE6\n#define GL_COLOR_ATTACHMENT7_NV                                 0x8CE7\n#define GL_COLOR_ATTACHMENT8_NV                                 0x8CE8\n#define GL_COLOR_ATTACHMENT9_NV                                 0x8CE9\n#define GL_COLOR_ATTACHMENT10_NV                                0x8CEA\n#define GL_COLOR_ATTACHMENT11_NV                                0x8CEB\n#define GL_COLOR_ATTACHMENT12_NV                                0x8CEC\n#define GL_COLOR_ATTACHMENT13_NV                                0x8CED\n#define GL_COLOR_ATTACHMENT14_NV                                0x8CEE\n#define GL_COLOR_ATTACHMENT15_NV                                0x8CEF\n#endif\n\n/* GL_NV_draw_instanced */\n/* No new tokens introduced by this extension. */\n\n/* GL_NV_fbo_color_attachments */\n#ifndef GL_NV_fbo_color_attachments\n#define GL_MAX_COLOR_ATTACHMENTS_NV                             0x8CDF\n/* GL_COLOR_ATTACHMENT{0-15}_NV defined in GL_NV_draw_buffers already. */\n#endif\n\n/* GL_NV_fence */\n#ifndef GL_NV_fence\n#define GL_ALL_COMPLETED_NV                                     0x84F2\n#define GL_FENCE_STATUS_NV                                      0x84F3\n#define GL_FENCE_CONDITION_NV                                   0x84F4\n#endif\n\n/* GL_NV_framebuffer_blit */\n#ifndef GL_NV_framebuffer_blit\n#define GL_READ_FRAMEBUFFER_NV                                  0x8CA8\n#define GL_DRAW_FRAMEBUFFER_NV                                  0x8CA9\n#define GL_DRAW_FRAMEBUFFER_BINDING_NV                          0x8CA6\n#define GL_READ_FRAMEBUFFER_BINDING_NV                          0x8CAA\n#endif\n\n/* GL_NV_framebuffer_multisample */\n#ifndef GL_NV_framebuffer_multisample\n#define GL_RENDERBUFFER_SAMPLES_NV                              0x8CAB\n#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV                0x8D56\n#define GL_MAX_SAMPLES_NV                                       0x8D57\n#endif\n\n/* GL_NV_generate_mipmap_sRGB */\n/* No new tokens introduced by this extension. */\n\n/* GL_NV_instanced_arrays */\n#ifndef GL_NV_instanced_arrays\n#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV                       0x88FE\n#endif\n\n/* GL_NV_read_buffer */\n#ifndef GL_NV_read_buffer\n#define GL_READ_BUFFER_NV                                       0x0C02\n#endif\n\n/* GL_NV_read_buffer_front */\n/* No new tokens introduced by this extension. */\n\n/* GL_NV_read_depth */\n/* No new tokens introduced by this extension. */\n\n/* GL_NV_read_depth_stencil */\n/* No new tokens introduced by this extension. */\n\n/* GL_NV_read_stencil */\n/* No new tokens introduced by this extension. */\n\n/* GL_NV_shadow_samplers_array */\n#ifndef GL_NV_shadow_samplers_array\n#define GL_SAMPLER_2D_ARRAY_SHADOW_NV                           0x8DC4\n#endif\n\n/* GL_NV_shadow_samplers_cube */\n#ifndef GL_NV_shadow_samplers_cube\n#define GL_SAMPLER_CUBE_SHADOW_NV                               0x8DC5\n#endif\n\n/* GL_NV_sRGB_formats */\n#ifndef GL_NV_sRGB_formats\n#define GL_SLUMINANCE_NV                                        0x8C46\n#define GL_SLUMINANCE_ALPHA_NV                                  0x8C44\n#define GL_SRGB8_NV                                             0x8C41\n#define GL_SLUMINANCE8_NV                                       0x8C47\n#define GL_SLUMINANCE8_ALPHA8_NV                                0x8C45\n#define GL_COMPRESSED_SRGB_S3TC_DXT1_NV                         0x8C4C\n#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV                   0x8C4D\n#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV                   0x8C4E\n#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV                   0x8C4F\n#define GL_ETC1_SRGB8_NV                                        0x88EE\n#endif\n\n/* GL_NV_texture_border_clamp */\n#ifndef GL_NV_texture_border_clamp\n#define GL_TEXTURE_BORDER_COLOR_NV                              0x1004\n#define GL_CLAMP_TO_BORDER_NV                                   0x812D\n#endif\n\n/* GL_NV_texture_compression_s3tc_update */\n/* No new tokens introduced by this extension. */\n\n/* GL_NV_texture_npot_2D_mipmap */\n/* No new tokens introduced by this extension. */\n\n/*------------------------------------------------------------------------*\n * QCOM extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_QCOM_alpha_test */\n#ifndef GL_QCOM_alpha_test\n#define GL_ALPHA_TEST_QCOM                                      0x0BC0\n#define GL_ALPHA_TEST_FUNC_QCOM                                 0x0BC1\n#define GL_ALPHA_TEST_REF_QCOM                                  0x0BC2\n#endif\n\n/* GL_QCOM_binning_control */\n#ifndef GL_QCOM_binning_control\n#define GL_BINNING_CONTROL_HINT_QCOM                            0x8FB0\n#define GL_CPU_OPTIMIZED_QCOM                                   0x8FB1\n#define GL_GPU_OPTIMIZED_QCOM                                   0x8FB2\n#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM                    0x8FB3\n#endif\n\n/* GL_QCOM_driver_control */\n/* No new tokens introduced by this extension. */\n\n/* GL_QCOM_extended_get */\n#ifndef GL_QCOM_extended_get\n#define GL_TEXTURE_WIDTH_QCOM                                   0x8BD2\n#define GL_TEXTURE_HEIGHT_QCOM                                  0x8BD3\n#define GL_TEXTURE_DEPTH_QCOM                                   0x8BD4\n#define GL_TEXTURE_INTERNAL_FORMAT_QCOM                         0x8BD5\n#define GL_TEXTURE_FORMAT_QCOM                                  0x8BD6\n#define GL_TEXTURE_TYPE_QCOM                                    0x8BD7\n#define GL_TEXTURE_IMAGE_VALID_QCOM                             0x8BD8\n#define GL_TEXTURE_NUM_LEVELS_QCOM                              0x8BD9\n#define GL_TEXTURE_TARGET_QCOM                                  0x8BDA\n#define GL_TEXTURE_OBJECT_VALID_QCOM                            0x8BDB\n#define GL_STATE_RESTORE                                        0x8BDC\n#endif\n\n/* GL_QCOM_extended_get2 */\n/* No new tokens introduced by this extension. */\n\n/* GL_QCOM_perfmon_global_mode */\n#ifndef GL_QCOM_perfmon_global_mode\n#define GL_PERFMON_GLOBAL_MODE_QCOM                             0x8FA0\n#endif\n\n/* GL_QCOM_writeonly_rendering */\n#ifndef GL_QCOM_writeonly_rendering\n#define GL_WRITEONLY_RENDERING_QCOM                             0x8823\n#endif\n\n/* GL_QCOM_tiled_rendering */\n#ifndef GL_QCOM_tiled_rendering\n#define GL_COLOR_BUFFER_BIT0_QCOM                               0x00000001\n#define GL_COLOR_BUFFER_BIT1_QCOM                               0x00000002\n#define GL_COLOR_BUFFER_BIT2_QCOM                               0x00000004\n#define GL_COLOR_BUFFER_BIT3_QCOM                               0x00000008\n#define GL_COLOR_BUFFER_BIT4_QCOM                               0x00000010\n#define GL_COLOR_BUFFER_BIT5_QCOM                               0x00000020\n#define GL_COLOR_BUFFER_BIT6_QCOM                               0x00000040\n#define GL_COLOR_BUFFER_BIT7_QCOM                               0x00000080\n#define GL_DEPTH_BUFFER_BIT0_QCOM                               0x00000100\n#define GL_DEPTH_BUFFER_BIT1_QCOM                               0x00000200\n#define GL_DEPTH_BUFFER_BIT2_QCOM                               0x00000400\n#define GL_DEPTH_BUFFER_BIT3_QCOM                               0x00000800\n#define GL_DEPTH_BUFFER_BIT4_QCOM                               0x00001000\n#define GL_DEPTH_BUFFER_BIT5_QCOM                               0x00002000\n#define GL_DEPTH_BUFFER_BIT6_QCOM                               0x00004000\n#define GL_DEPTH_BUFFER_BIT7_QCOM                               0x00008000\n#define GL_STENCIL_BUFFER_BIT0_QCOM                             0x00010000\n#define GL_STENCIL_BUFFER_BIT1_QCOM                             0x00020000\n#define GL_STENCIL_BUFFER_BIT2_QCOM                             0x00040000\n#define GL_STENCIL_BUFFER_BIT3_QCOM                             0x00080000\n#define GL_STENCIL_BUFFER_BIT4_QCOM                             0x00100000\n#define GL_STENCIL_BUFFER_BIT5_QCOM                             0x00200000\n#define GL_STENCIL_BUFFER_BIT6_QCOM                             0x00400000\n#define GL_STENCIL_BUFFER_BIT7_QCOM                             0x00800000\n#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM                         0x01000000\n#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM                         0x02000000\n#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM                         0x04000000\n#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM                         0x08000000\n#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM                         0x10000000\n#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM                         0x20000000\n#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM                         0x40000000\n#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM                         0x80000000\n#endif\n\n/*------------------------------------------------------------------------*\n * VIV extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_VIV_shader_binary */\n#ifndef GL_VIV_shader_binary\n#define GL_SHADER_BINARY_VIV                                    0x8FC4\n#endif\n\n/*------------------------------------------------------------------------*\n * End of extension tokens, start of corresponding extension functions\n *------------------------------------------------------------------------*/\n\n/*------------------------------------------------------------------------*\n * OES extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_OES_compressed_ETC1_RGB8_texture */\n#ifndef GL_OES_compressed_ETC1_RGB8_texture\n#define GL_OES_compressed_ETC1_RGB8_texture 1\n#endif\n\n/* GL_OES_compressed_paletted_texture */\n#ifndef GL_OES_compressed_paletted_texture\n#define GL_OES_compressed_paletted_texture 1\n#endif\n\n/* GL_OES_depth24 */\n#ifndef GL_OES_depth24\n#define GL_OES_depth24 1\n#endif\n\n/* GL_OES_depth32 */\n#ifndef GL_OES_depth32\n#define GL_OES_depth32 1\n#endif\n\n/* GL_OES_depth_texture */\n#ifndef GL_OES_depth_texture\n#define GL_OES_depth_texture 1\n#endif\n\n/* GL_OES_EGL_image */\n#ifndef GL_OES_EGL_image\n#define GL_OES_EGL_image 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image);\nGL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image);\n#endif\ntypedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image);\ntypedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image);\n#endif\n\n/* GL_OES_EGL_image_external */\n#ifndef GL_OES_EGL_image_external\n#define GL_OES_EGL_image_external 1\n/* glEGLImageTargetTexture2DOES defined in GL_OES_EGL_image already. */\n#endif\n\n/* GL_OES_element_index_uint */\n#ifndef GL_OES_element_index_uint\n#define GL_OES_element_index_uint 1\n#endif\n\n/* GL_OES_fbo_render_mipmap */\n#ifndef GL_OES_fbo_render_mipmap\n#define GL_OES_fbo_render_mipmap 1\n#endif\n\n/* GL_OES_fragment_precision_high */\n#ifndef GL_OES_fragment_precision_high\n#define GL_OES_fragment_precision_high 1\n#endif\n\n/* GL_OES_get_program_binary */\n#ifndef GL_OES_get_program_binary\n#define GL_OES_get_program_binary 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);\nGL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);\n#endif\ntypedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);\n#endif\n\n/* GL_OES_mapbuffer */\n#ifndef GL_OES_mapbuffer\n#define GL_OES_mapbuffer 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void* GL_APIENTRY glMapBufferOES (GLenum target, GLenum access);\nGL_APICALL GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target);\nGL_APICALL void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, GLvoid **params);\n#endif\ntypedef void* (GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access);\ntypedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target);\ntypedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, GLvoid **params);\n#endif\n\n/* GL_OES_packed_depth_stencil */\n#ifndef GL_OES_packed_depth_stencil\n#define GL_OES_packed_depth_stencil 1\n#endif\n\n/* GL_OES_required_internalformat */\n#ifndef GL_OES_required_internalformat\n#define GL_OES_required_internalformat 1\n#endif\n\n/* GL_OES_rgb8_rgba8 */\n#ifndef GL_OES_rgb8_rgba8\n#define GL_OES_rgb8_rgba8 1\n#endif\n\n/* GL_OES_standard_derivatives */\n#ifndef GL_OES_standard_derivatives\n#define GL_OES_standard_derivatives 1\n#endif\n\n/* GL_OES_stencil1 */\n#ifndef GL_OES_stencil1\n#define GL_OES_stencil1 1\n#endif\n\n/* GL_OES_stencil4 */\n#ifndef GL_OES_stencil4\n#define GL_OES_stencil4 1\n#endif\n\n#ifndef GL_OES_surfaceless_context\n#define GL_OES_surfaceless_context 1\n#endif\n\n/* GL_OES_texture_3D */\n#ifndef GL_OES_texture_3D\n#define GL_OES_texture_3D 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);\nGL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);\nGL_APICALL void GL_APIENTRY glCopyTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);\nGL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);\nGL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);\nGL_APICALL void GL_APIENTRY glFramebufferTexture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);\n#endif\ntypedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);\ntypedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);\ntypedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);\ntypedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);\ntypedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data);\ntypedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);\n#endif\n\n/* GL_OES_texture_float */\n#ifndef GL_OES_texture_float\n#define GL_OES_texture_float 1\n#endif\n\n/* GL_OES_texture_float_linear */\n#ifndef GL_OES_texture_float_linear\n#define GL_OES_texture_float_linear 1\n#endif\n\n/* GL_OES_texture_half_float */\n#ifndef GL_OES_texture_half_float\n#define GL_OES_texture_half_float 1\n#endif\n\n/* GL_OES_texture_half_float_linear */\n#ifndef GL_OES_texture_half_float_linear\n#define GL_OES_texture_half_float_linear 1\n#endif\n\n/* GL_OES_texture_npot */\n#ifndef GL_OES_texture_npot\n#define GL_OES_texture_npot 1\n#endif\n\n/* GL_OES_vertex_array_object */\n#ifndef GL_OES_vertex_array_object\n#define GL_OES_vertex_array_object 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glBindVertexArrayOES (GLuint array);\nGL_APICALL void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays);\nGL_APICALL void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays);\nGL_APICALL GLboolean GL_APIENTRY glIsVertexArrayOES (GLuint array);\n#endif\ntypedef void (GL_APIENTRYP PFNGLBINDVERTEXARRAYOESPROC) (GLuint array);\ntypedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays);\ntypedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays);\ntypedef GLboolean (GL_APIENTRYP PFNGLISVERTEXARRAYOESPROC) (GLuint array);\n#endif\n\n/* GL_OES_vertex_half_float */\n#ifndef GL_OES_vertex_half_float\n#define GL_OES_vertex_half_float 1\n#endif\n\n/* GL_OES_vertex_type_10_10_10_2 */\n#ifndef GL_OES_vertex_type_10_10_10_2\n#define GL_OES_vertex_type_10_10_10_2 1\n#endif\n\n/*------------------------------------------------------------------------*\n * KHR extension functions\n *------------------------------------------------------------------------*/\n\n#ifndef GL_KHR_debug\n#define GL_KHR_debug 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glDebugMessageControlKHR (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);\nGL_APICALL void GL_APIENTRY glDebugMessageInsertKHR (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf);\nGL_APICALL void GL_APIENTRY glDebugMessageCallbackKHR (GLDEBUGPROCKHR callback, const void *userParam);\nGL_APICALL GLuint GL_APIENTRY glGetDebugMessageLogKHR (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog);\nGL_APICALL void GL_APIENTRY glPushDebugGroupKHR (GLenum source, GLuint id, GLsizei length, const GLchar *message);\nGL_APICALL void GL_APIENTRY glPopDebugGroupKHR (void);\nGL_APICALL void GL_APIENTRY glObjectLabelKHR (GLenum identifier, GLuint name, GLsizei length, const GLchar *label);\nGL_APICALL void GL_APIENTRY glGetObjectLabelKHR (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label);\nGL_APICALL void GL_APIENTRY glObjectPtrLabelKHR (const void *ptr, GLsizei length, const GLchar *label);\nGL_APICALL void GL_APIENTRY glGetObjectPtrLabelKHR (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label);\nGL_APICALL void GL_APIENTRY glGetPointervKHR (GLenum pname, GLvoid **params);\n#endif\ntypedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);\ntypedef void (GL_APIENTRYP PFNGLDEBUGMESSAGEINSERTKHRPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf);\ntypedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECALLBACKKHRPROC) (GLDEBUGPROCKHR callback, const void *userParam);\ntypedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGKHRPROC) (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog);\ntypedef void (GL_APIENTRYP PFNGLPUSHDEBUGGROUPKHRPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message);\ntypedef void (GL_APIENTRYP PFNGLPOPDEBUGGROUPKHRPROC) (void);\ntypedef void (GL_APIENTRYP PFNGLOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label);\ntypedef void (GL_APIENTRYP PFNGLGETOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label);\ntypedef void (GL_APIENTRYP PFNGLOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei length, const GLchar *label);\ntypedef void (GL_APIENTRYP PFNGLGETOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label);\ntypedef void (GL_APIENTRYP PFNGLGETPOINTERVKHRPROC) (GLenum pname, GLvoid **params);\n#endif\n\n#ifndef GL_KHR_texture_compression_astc_ldr\n#define GL_KHR_texture_compression_astc_ldr 1\n#endif\n\n\n/*------------------------------------------------------------------------*\n * AMD extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_AMD_compressed_3DC_texture */\n#ifndef GL_AMD_compressed_3DC_texture\n#define GL_AMD_compressed_3DC_texture 1\n#endif\n\n/* GL_AMD_compressed_ATC_texture */\n#ifndef GL_AMD_compressed_ATC_texture\n#define GL_AMD_compressed_ATC_texture 1\n#endif\n\n/* AMD_performance_monitor */\n#ifndef GL_AMD_performance_monitor\n#define GL_AMD_performance_monitor 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups);\nGL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters);\nGL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString);\nGL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString);\nGL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, GLvoid *data);\nGL_APICALL void GL_APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors);\nGL_APICALL void GL_APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors);\nGL_APICALL void GL_APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *countersList);\nGL_APICALL void GL_APIENTRY glBeginPerfMonitorAMD (GLuint monitor);\nGL_APICALL void GL_APIENTRY glEndPerfMonitorAMD (GLuint monitor);\nGL_APICALL void GL_APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten);\n#endif\ntypedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups);\ntypedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters);\ntypedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString);\ntypedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString);\ntypedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, GLvoid *data);\ntypedef void (GL_APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors);\ntypedef void (GL_APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors);\ntypedef void (GL_APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *countersList);\ntypedef void (GL_APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor);\ntypedef void (GL_APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor);\ntypedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten);\n#endif\n\n/* GL_AMD_program_binary_Z400 */\n#ifndef GL_AMD_program_binary_Z400\n#define GL_AMD_program_binary_Z400 1\n#endif\n\n/*------------------------------------------------------------------------*\n * ANGLE extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_ANGLE_depth_texture */\n#ifndef GL_ANGLE_depth_texture\n#define GL_ANGLE_depth_texture 1\n#endif\n\n/* GL_ANGLE_framebuffer_blit */\n#ifndef GL_ANGLE_framebuffer_blit\n#define GL_ANGLE_framebuffer_blit 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);\n#endif\ntypedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);\n#endif\n\n/* GL_ANGLE_framebuffer_multisample */\n#ifndef GL_ANGLE_framebuffer_multisample\n#define GL_ANGLE_framebuffer_multisample 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\n#endif\ntypedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\n#endif\n\n#ifndef GL_ANGLE_instanced_arrays\n#define GL_ANGLE_instanced_arrays 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenum mode, GLint first, GLsizei count, GLsizei primcount);\nGL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount);\nGL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GLuint divisor);\n#endif\ntypedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount);\ntypedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount);\ntypedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor);\n#endif\n\n/* GL_ANGLE_pack_reverse_row_order */\n#ifndef GL_ANGLE_pack_reverse_row_order\n#define GL_ANGLE_pack_reverse_row_order 1\n#endif\n\n/* GL_ANGLE_program_binary */\n#ifndef GL_ANGLE_program_binary\n#define GL_ANGLE_program_binary 1\n#endif\n\n/* GL_ANGLE_texture_compression_dxt3 */\n#ifndef GL_ANGLE_texture_compression_dxt3\n#define GL_ANGLE_texture_compression_dxt3 1\n#endif\n\n/* GL_ANGLE_texture_compression_dxt5 */\n#ifndef GL_ANGLE_texture_compression_dxt5\n#define GL_ANGLE_texture_compression_dxt5 1\n#endif\n\n/* GL_ANGLE_texture_usage */\n#ifndef GL_ANGLE_texture_usage\n#define GL_ANGLE_texture_usage 1\n#endif\n\n#ifndef GL_ANGLE_translated_shader_source\n#define GL_ANGLE_translated_shader_source 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufsize, GLsizei *length, GLchar *source);\n#endif\ntypedef void (GL_APIENTRYP PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufsize, GLsizei *length, GLchar *source);\n#endif\n\n/*------------------------------------------------------------------------*\n * APPLE extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_APPLE_copy_texture_levels */\n#ifndef GL_APPLE_copy_texture_levels\n#define GL_APPLE_copy_texture_levels 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glCopyTextureLevelsAPPLE (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount);\n#endif\ntypedef void (GL_APIENTRYP PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount);\n#endif\n\n/* GL_APPLE_framebuffer_multisample */\n#ifndef GL_APPLE_framebuffer_multisample\n#define GL_APPLE_framebuffer_multisample 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAPPLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\nGL_APICALL void GL_APIENTRY glResolveMultisampleFramebufferAPPLE (void);\n#endif /* GL_GLEXT_PROTOTYPES */\ntypedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\ntypedef void (GL_APIENTRYP PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void);\n#endif\n\n/* GL_APPLE_rgb_422 */\n#ifndef GL_APPLE_rgb_422\n#define GL_APPLE_rgb_422 1\n#endif\n\n/* GL_APPLE_sync */\n#ifndef GL_APPLE_sync\n#define GL_APPLE_sync 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL GLsync GL_APIENTRY glFenceSyncAPPLE (GLenum condition, GLbitfield flags);\nGL_APICALL GLboolean GL_APIENTRY glIsSyncAPPLE (GLsync sync);\nGL_APICALL void GL_APIENTRY glDeleteSyncAPPLE (GLsync sync);\nGL_APICALL GLenum GL_APIENTRY glClientWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout);\nGL_APICALL void GL_APIENTRY glWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout);\nGL_APICALL void GL_APIENTRY glGetInteger64vAPPLE (GLenum pname, GLint64 *params);\nGL_APICALL void GL_APIENTRY glGetSyncivAPPLE (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);\n#endif\ntypedef GLsync (GL_APIENTRYP PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags);\ntypedef GLboolean (GL_APIENTRYP PFNGLISSYNCAPPLEPROC) (GLsync sync);\ntypedef void (GL_APIENTRYP PFNGLDELETESYNCAPPLEPROC) (GLsync sync);\ntypedef GLenum (GL_APIENTRYP PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);\ntypedef void (GL_APIENTRYP PFNGLWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);\ntypedef void (GL_APIENTRYP PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64 *params);\ntypedef void (GL_APIENTRYP PFNGLGETSYNCIVAPPLEPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values);\n#endif\n\n/* GL_APPLE_texture_format_BGRA8888 */\n#ifndef GL_APPLE_texture_format_BGRA8888\n#define GL_APPLE_texture_format_BGRA8888 1\n#endif\n\n/* GL_APPLE_texture_max_level */\n#ifndef GL_APPLE_texture_max_level\n#define GL_APPLE_texture_max_level 1\n#endif\n\n/*------------------------------------------------------------------------*\n * ARM extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_ARM_mali_program_binary */\n#ifndef GL_ARM_mali_program_binary\n#define GL_ARM_mali_program_binary 1\n#endif\n\n/* GL_ARM_mali_shader_binary */\n#ifndef GL_ARM_mali_shader_binary\n#define GL_ARM_mali_shader_binary 1\n#endif\n\n/* GL_ARM_rgba8 */\n#ifndef GL_ARM_rgba8\n#define GL_ARM_rgba8 1\n#endif\n\n/*------------------------------------------------------------------------*\n * EXT extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_EXT_blend_minmax */\n#ifndef GL_EXT_blend_minmax\n#define GL_EXT_blend_minmax 1\n#endif\n\n/* GL_EXT_color_buffer_half_float */\n#ifndef GL_EXT_color_buffer_half_float\n#define GL_EXT_color_buffer_half_float 1\n#endif\n\n/* GL_EXT_debug_label */\n#ifndef GL_EXT_debug_label\n#define GL_EXT_debug_label 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label);\nGL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);\n#endif\ntypedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label);\ntypedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);\n#endif\n\n/* GL_EXT_debug_marker */\n#ifndef GL_EXT_debug_marker\n#define GL_EXT_debug_marker 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker);\nGL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker);\nGL_APICALL void GL_APIENTRY glPopGroupMarkerEXT (void);\n#endif\ntypedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker);\ntypedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker);\ntypedef void (GL_APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void);\n#endif\n\n/* GL_EXT_discard_framebuffer */\n#ifndef GL_EXT_discard_framebuffer\n#define GL_EXT_discard_framebuffer 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);\n#endif\ntypedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);\n#endif\n\n#ifndef GL_EXT_disjoint_timer_query\n#define GL_EXT_disjoint_timer_query 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids);\nGL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids);\nGL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id);\nGL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id);\nGL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target);\nGL_APICALL void GL_APIENTRY glQueryCounterEXT (GLuint id, GLenum target);\nGL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params);\nGL_APICALL void GL_APIENTRY glGetQueryObjectivEXT (GLuint id, GLenum pname, GLint *params);\nGL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params);\nGL_APICALL void GL_APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params);\nGL_APICALL void GL_APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params);\n#endif\ntypedef void (GL_APIENTRYP PFNGLGENQUERIESEXTPROC) (GLsizei n, GLuint *ids);\ntypedef void (GL_APIENTRYP PFNGLDELETEQUERIESEXTPROC) (GLsizei n, const GLuint *ids);\ntypedef GLboolean (GL_APIENTRYP PFNGLISQUERYEXTPROC) (GLuint id);\ntypedef void (GL_APIENTRYP PFNGLBEGINQUERYEXTPROC) (GLenum target, GLuint id);\ntypedef void (GL_APIENTRYP PFNGLENDQUERYEXTPROC) (GLenum target);\ntypedef void (GL_APIENTRYP PFNGLQUERYCOUNTEREXTPROC) (GLuint id, GLenum target);\ntypedef void (GL_APIENTRYP PFNGLGETQUERYIVEXTPROC) (GLenum target, GLenum pname, GLint *params);\ntypedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTIVEXTPROC) (GLuint id, GLenum pname, GLint *params);\ntypedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUIVEXTPROC) (GLuint id, GLenum pname, GLuint *params);\ntypedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params);\ntypedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params);\n#endif /* GL_EXT_disjoint_timer_query */\n\n#ifndef GL_EXT_draw_buffers\n#define GL_EXT_draw_buffers 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei n, const GLenum *bufs);\n#endif\ntypedef void (GL_APIENTRYP PFNGLDRAWBUFFERSEXTPROC) (GLsizei n, const GLenum *bufs);\n#endif /* GL_EXT_draw_buffers */\n\n/* GL_EXT_map_buffer_range */\n#ifndef GL_EXT_map_buffer_range\n#define GL_EXT_map_buffer_range 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void* GL_APIENTRY glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access);\nGL_APICALL void GL_APIENTRY glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length);\n#endif\ntypedef void* (GL_APIENTRYP PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access);\ntypedef void (GL_APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length);\n#endif\n\n/* GL_EXT_multisampled_render_to_texture */\n#ifndef GL_EXT_multisampled_render_to_texture\n#define GL_EXT_multisampled_render_to_texture 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);             \nGL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples);\n#endif\ntypedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\ntypedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples);\n#endif\n\n/* GL_EXT_multiview_draw_buffers */\n#ifndef GL_EXT_multiview_draw_buffers\n#define GL_EXT_multiview_draw_buffers 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glReadBufferIndexedEXT (GLenum src, GLint index);\nGL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices);\nGL_APICALL void GL_APIENTRY glGetIntegeri_vEXT (GLenum target, GLuint index, GLint *data);\n#endif\ntypedef void (GL_APIENTRYP PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index);\ntypedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices);\ntypedef void (GL_APIENTRYP PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint *data);\n#endif\n\n#ifndef GL_EXT_multi_draw_arrays\n#define GL_EXT_multi_draw_arrays 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount);\nGL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount);\n#endif /* GL_GLEXT_PROTOTYPES */\ntypedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount);\ntypedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount);\n#endif\n\n/* GL_EXT_occlusion_query_boolean */\n#ifndef GL_EXT_occlusion_query_boolean\n#define GL_EXT_occlusion_query_boolean 1\n/* All entry points also exist in GL_EXT_disjoint_timer_query */\n#endif\n\n/* GL_EXT_read_format_bgra */\n#ifndef GL_EXT_read_format_bgra\n#define GL_EXT_read_format_bgra 1\n#endif\n\n/* GL_EXT_robustness */\n#ifndef GL_EXT_robustness\n#define GL_EXT_robustness 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusEXT (void);\nGL_APICALL void GL_APIENTRY glReadnPixelsEXT (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data);\nGL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);\nGL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params);\n#endif\ntypedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSEXTPROC) (void);\ntypedef void (GL_APIENTRYP PFNGLREADNPIXELSEXTPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data);\ntypedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params);\ntypedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params);\n#endif\n\n/* GL_EXT_separate_shader_objects */\n#ifndef GL_EXT_separate_shader_objects\n#define GL_EXT_separate_shader_objects 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glUseProgramStagesEXT (GLuint pipeline, GLbitfield stages, GLuint program);\nGL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program);\nGL_APICALL GLuint GL_APIENTRY glCreateShaderProgramvEXT (GLenum type, GLsizei count, const GLchar **strings);\nGL_APICALL void GL_APIENTRY glBindProgramPipelineEXT (GLuint pipeline);\nGL_APICALL void GL_APIENTRY glDeleteProgramPipelinesEXT (GLsizei n, const GLuint *pipelines);\nGL_APICALL void GL_APIENTRY glGenProgramPipelinesEXT (GLsizei n, GLuint *pipelines);\nGL_APICALL GLboolean GL_APIENTRY glIsProgramPipelineEXT (GLuint pipeline);\nGL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value);\nGL_APICALL void GL_APIENTRY glGetProgramPipelineivEXT (GLuint pipeline, GLenum pname, GLint *params);\nGL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint x);\nGL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint x, GLint y);\nGL_APICALL void GL_APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint x, GLint y, GLint z);\nGL_APICALL void GL_APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w);\nGL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat x);\nGL_APICALL void GL_APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat x, GLfloat y);\nGL_APICALL void GL_APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z);\nGL_APICALL void GL_APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w);\nGL_APICALL void GL_APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value);\nGL_APICALL void GL_APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value);\nGL_APICALL void GL_APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value);\nGL_APICALL void GL_APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value);\nGL_APICALL void GL_APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value);\nGL_APICALL void GL_APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value);\nGL_APICALL void GL_APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value);\nGL_APICALL void GL_APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value);\nGL_APICALL void GL_APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);\nGL_APICALL void GL_APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);\nGL_APICALL void GL_APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);\nGL_APICALL void GL_APIENTRY glValidateProgramPipelineEXT (GLuint pipeline);\nGL_APICALL void GL_APIENTRY glGetProgramPipelineInfoLogEXT (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog);\n#endif\ntypedef void (GL_APIENTRYP PFNGLUSEPROGRAMSTAGESEXTPROC) (GLuint pipeline, GLbitfield stages, GLuint program);\ntypedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program);\ntypedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROGRAMVEXTPROC) (GLenum type, GLsizei count, const GLchar **strings);\ntypedef void (GL_APIENTRYP PFNGLBINDPROGRAMPIPELINEEXTPROC) (GLuint pipeline);\ntypedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPIPELINESEXTPROC) (GLsizei n, const GLuint *pipelines);\ntypedef void (GL_APIENTRYP PFNGLGENPROGRAMPIPELINESEXTPROC) (GLsizei n, GLuint *pipelines);\ntypedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPIPELINEEXTPROC) (GLuint pipeline);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value);\ntypedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEIVEXTPROC) (GLuint pipeline, GLenum pname, GLint *params);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint x);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint x, GLint y);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint x, GLint y, GLint z);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat x);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);\ntypedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);\ntypedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEEXTPROC) (GLuint pipeline);\ntypedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGEXTPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog);\n#endif\n\n/* GL_EXT_shader_framebuffer_fetch */\n#ifndef GL_EXT_shader_framebuffer_fetch\n#define GL_EXT_shader_framebuffer_fetch 1\n#endif\n\n/* GL_EXT_shader_texture_lod */\n#ifndef GL_EXT_shader_texture_lod\n#define GL_EXT_shader_texture_lod 1\n#endif\n\n/* GL_EXT_shadow_samplers */\n#ifndef GL_EXT_shadow_samplers\n#define GL_EXT_shadow_samplers 1\n#endif\n\n/* GL_EXT_sRGB */\n#ifndef GL_EXT_sRGB\n#define GL_EXT_sRGB 1\n#endif\n\n/* GL_EXT_texture_compression_dxt1 */\n#ifndef GL_EXT_texture_compression_dxt1\n#define GL_EXT_texture_compression_dxt1 1\n#endif\n\n/* GL_EXT_texture_filter_anisotropic */\n#ifndef GL_EXT_texture_filter_anisotropic\n#define GL_EXT_texture_filter_anisotropic 1\n#endif\n\n/* GL_EXT_texture_format_BGRA8888 */\n#ifndef GL_EXT_texture_format_BGRA8888\n#define GL_EXT_texture_format_BGRA8888 1\n#endif\n\n/* GL_EXT_texture_rg */\n#ifndef GL_EXT_texture_rg\n#define GL_EXT_texture_rg 1\n#endif\n\n/* GL_EXT_texture_storage */\n#ifndef GL_EXT_texture_storage\n#define GL_EXT_texture_storage 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width);\nGL_APICALL void GL_APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height);\nGL_APICALL void GL_APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth);\nGL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width);\nGL_APICALL void GL_APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height);\nGL_APICALL void GL_APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth);\n#endif\ntypedef void (GL_APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width);\ntypedef void (GL_APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height);\ntypedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth);\ntypedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width);\ntypedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height);\ntypedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth);\n#endif\n\n/* GL_EXT_texture_type_2_10_10_10_REV */\n#ifndef GL_EXT_texture_type_2_10_10_10_REV\n#define GL_EXT_texture_type_2_10_10_10_REV 1\n#endif\n\n/* GL_EXT_unpack_subimage */\n#ifndef GL_EXT_unpack_subimage\n#define GL_EXT_unpack_subimage 1\n#endif\n\n/*------------------------------------------------------------------------*\n * DMP extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_DMP_shader_binary */\n#ifndef GL_DMP_shader_binary\n#define GL_DMP_shader_binary 1\n#endif\n\n/*------------------------------------------------------------------------*\n * FJ extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_FJ_shader_binary_GCCSO */\n#ifndef GL_FJ_shader_binary_GCCSO\n#define GL_FJ_shader_binary_GCCSO 1\n#endif\n\n/*------------------------------------------------------------------------*\n * IMG extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_IMG_program_binary */\n#ifndef GL_IMG_program_binary\n#define GL_IMG_program_binary 1\n#endif\n\n/* GL_IMG_read_format */\n#ifndef GL_IMG_read_format\n#define GL_IMG_read_format 1\n#endif\n\n/* GL_IMG_shader_binary */\n#ifndef GL_IMG_shader_binary\n#define GL_IMG_shader_binary 1\n#endif\n\n/* GL_IMG_texture_compression_pvrtc */\n#ifndef GL_IMG_texture_compression_pvrtc\n#define GL_IMG_texture_compression_pvrtc 1\n#endif\n\n/* GL_IMG_texture_compression_pvrtc2 */\n#ifndef GL_IMG_texture_compression_pvrtc2\n#define GL_IMG_texture_compression_pvrtc2 1\n#endif\n\n/* GL_IMG_multisampled_render_to_texture */\n#ifndef GL_IMG_multisampled_render_to_texture\n#define GL_IMG_multisampled_render_to_texture 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleIMG (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\nGL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples);\n#endif\ntypedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEIMGPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\ntypedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples);\n#endif\n\n/*------------------------------------------------------------------------*\n * NV extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_NV_coverage_sample */\n#ifndef GL_NV_coverage_sample\n#define GL_NV_coverage_sample 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glCoverageMaskNV (GLboolean mask);\nGL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation);\n#endif\ntypedef void (GL_APIENTRYP PFNGLCOVERAGEMASKNVPROC) (GLboolean mask);\ntypedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation);\n#endif\n\n/* GL_NV_depth_nonlinear */\n#ifndef GL_NV_depth_nonlinear\n#define GL_NV_depth_nonlinear 1\n#endif\n\n/* GL_NV_draw_buffers */\n#ifndef GL_NV_draw_buffers\n#define GL_NV_draw_buffers 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glDrawBuffersNV (GLsizei n, const GLenum *bufs);\n#endif\ntypedef void (GL_APIENTRYP PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum *bufs);\n#endif\n\n/* GL_NV_draw_instanced */\n#ifndef GL_NV_draw_instanced\n#define GL_NV_draw_instanced 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glDrawArraysInstancedNV (GLenum mode, GLint first, GLsizei count, GLsizei primcount);\nGL_APICALL void GL_APIENTRY glDrawElementsInstancedNV (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount);\n#endif\ntypedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDNVPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount);\ntypedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDNVPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount);\n#endif\n\n/* GL_NV_fbo_color_attachments */\n#ifndef GL_NV_fbo_color_attachments\n#define GL_NV_fbo_color_attachments 1\n#endif\n\n/* GL_NV_fence */\n#ifndef GL_NV_fence\n#define GL_NV_fence 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences);\nGL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei n, GLuint *fences);\nGL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence);\nGL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence);\nGL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params);\nGL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence);\nGL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);\n#endif\ntypedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences);\ntypedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences);\ntypedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence);\ntypedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence);\ntypedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params);\ntypedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence);\ntypedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition);\n#endif\n\n/* GL_NV_framebuffer_blit */\n#ifndef GL_NV_framebuffer_blit\n#define GL_NV_framebuffer_blit 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);\n#endif\ntypedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);\n#endif\n\n/* GL_NV_framebuffer_multisample */\n#ifndef GL_NV_framebuffer_multisample\n#define GL_NV_framebuffer_multisample 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleNV ( GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\n#endif\ntypedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC) ( GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);\n#endif\n\n/* GL_NV_generate_mipmap_sRGB */\n#ifndef GL_NV_generate_mipmap_sRGB\n#define GL_NV_generate_mipmap_sRGB 1\n#endif\n\n/* GL_NV_instanced_arrays */\n#ifndef GL_NV_instanced_arrays\n#define GL_NV_instanced_arrays 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glVertexAttribDivisorNV (GLuint index, GLuint divisor);\n#endif\ntypedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORNVPROC) (GLuint index, GLuint divisor);\n#endif\n\n/* GL_NV_read_buffer */\n#ifndef GL_NV_read_buffer\n#define GL_NV_read_buffer 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glReadBufferNV (GLenum mode);\n#endif\ntypedef void (GL_APIENTRYP PFNGLREADBUFFERNVPROC) (GLenum mode);\n#endif\n\n/* GL_NV_read_buffer_front */\n#ifndef GL_NV_read_buffer_front\n#define GL_NV_read_buffer_front 1\n#endif\n\n/* GL_NV_read_depth */\n#ifndef GL_NV_read_depth\n#define GL_NV_read_depth 1\n#endif\n\n/* GL_NV_read_depth_stencil */\n#ifndef GL_NV_read_depth_stencil\n#define GL_NV_read_depth_stencil 1\n#endif\n\n/* GL_NV_read_stencil */\n#ifndef GL_NV_read_stencil\n#define GL_NV_read_stencil 1\n#endif\n\n/* GL_NV_shadow_samplers_array */\n#ifndef GL_NV_shadow_samplers_array\n#define GL_NV_shadow_samplers_array 1\n#endif\n\n/* GL_NV_shadow_samplers_cube */\n#ifndef GL_NV_shadow_samplers_cube\n#define GL_NV_shadow_samplers_cube 1\n#endif\n\n/* GL_NV_sRGB_formats */\n#ifndef GL_NV_sRGB_formats\n#define GL_NV_sRGB_formats 1\n#endif\n\n/* GL_NV_texture_border_clamp */\n#ifndef GL_NV_texture_border_clamp\n#define GL_NV_texture_border_clamp 1\n#endif\n\n/* GL_NV_texture_compression_s3tc_update */\n#ifndef GL_NV_texture_compression_s3tc_update\n#define GL_NV_texture_compression_s3tc_update 1\n#endif\n\n/* GL_NV_texture_npot_2D_mipmap */\n#ifndef GL_NV_texture_npot_2D_mipmap\n#define GL_NV_texture_npot_2D_mipmap 1\n#endif\n\n/*------------------------------------------------------------------------*\n * QCOM extension functions\n *------------------------------------------------------------------------*/\n\n/* GL_QCOM_alpha_test */\n#ifndef GL_QCOM_alpha_test\n#define GL_QCOM_alpha_test 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glAlphaFuncQCOM (GLenum func, GLclampf ref);\n#endif\ntypedef void (GL_APIENTRYP PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref);\n#endif\n\n/* GL_QCOM_binning_control */\n#ifndef GL_QCOM_binning_control\n#define GL_QCOM_binning_control 1\n#endif\n\n/* GL_QCOM_driver_control */\n#ifndef GL_QCOM_driver_control\n#define GL_QCOM_driver_control 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glGetDriverControlsQCOM (GLint *num, GLsizei size, GLuint *driverControls);\nGL_APICALL void GL_APIENTRY glGetDriverControlStringQCOM (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString);\nGL_APICALL void GL_APIENTRY glEnableDriverControlQCOM (GLuint driverControl);\nGL_APICALL void GL_APIENTRY glDisableDriverControlQCOM (GLuint driverControl);\n#endif\ntypedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint *num, GLsizei size, GLuint *driverControls);\ntypedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString);\ntypedef void (GL_APIENTRYP PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl);\ntypedef void (GL_APIENTRYP PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl);\n#endif\n\n/* GL_QCOM_extended_get */\n#ifndef GL_QCOM_extended_get\n#define GL_QCOM_extended_get 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glExtGetTexturesQCOM (GLuint *textures, GLint maxTextures, GLint *numTextures);\nGL_APICALL void GL_APIENTRY glExtGetBuffersQCOM (GLuint *buffers, GLint maxBuffers, GLint *numBuffers);\nGL_APICALL void GL_APIENTRY glExtGetRenderbuffersQCOM (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers);\nGL_APICALL void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers);\nGL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params);\nGL_APICALL void GL_APIENTRY glExtTexObjectStateOverrideiQCOM (GLenum target, GLenum pname, GLint param);\nGL_APICALL void GL_APIENTRY glExtGetTexSubImageQCOM (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLvoid *texels);\nGL_APICALL void GL_APIENTRY glExtGetBufferPointervQCOM (GLenum target, GLvoid **params);\n#endif\ntypedef void (GL_APIENTRYP PFNGLEXTGETTEXTURESQCOMPROC) (GLuint *textures, GLint maxTextures, GLint *numTextures);\ntypedef void (GL_APIENTRYP PFNGLEXTGETBUFFERSQCOMPROC) (GLuint *buffers, GLint maxBuffers, GLint *numBuffers);\ntypedef void (GL_APIENTRYP PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers);\ntypedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers);\ntypedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params);\ntypedef void (GL_APIENTRYP PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param);\ntypedef void (GL_APIENTRYP PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLvoid *texels);\ntypedef void (GL_APIENTRYP PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, GLvoid **params);\n#endif\n\n/* GL_QCOM_extended_get2 */\n#ifndef GL_QCOM_extended_get2\n#define GL_QCOM_extended_get2 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glExtGetShadersQCOM (GLuint *shaders, GLint maxShaders, GLint *numShaders);\nGL_APICALL void GL_APIENTRY glExtGetProgramsQCOM (GLuint *programs, GLint maxPrograms, GLint *numPrograms);\nGL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program);\nGL_APICALL void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length);\n#endif\ntypedef void (GL_APIENTRYP PFNGLEXTGETSHADERSQCOMPROC) (GLuint *shaders, GLint maxShaders, GLint *numShaders);\ntypedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint *programs, GLint maxPrograms, GLint *numPrograms);\ntypedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program);\ntypedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length);\n#endif\n\n/* GL_QCOM_perfmon_global_mode */\n#ifndef GL_QCOM_perfmon_global_mode\n#define GL_QCOM_perfmon_global_mode 1\n#endif\n\n/* GL_QCOM_writeonly_rendering */\n#ifndef GL_QCOM_writeonly_rendering\n#define GL_QCOM_writeonly_rendering 1\n#endif\n\n/* GL_QCOM_tiled_rendering */\n#ifndef GL_QCOM_tiled_rendering\n#define GL_QCOM_tiled_rendering 1\n#ifdef GL_GLEXT_PROTOTYPES\nGL_APICALL void GL_APIENTRY glStartTilingQCOM (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask);\nGL_APICALL void GL_APIENTRY glEndTilingQCOM (GLbitfield preserveMask);\n#endif\ntypedef void (GL_APIENTRYP PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask);\ntypedef void (GL_APIENTRYP PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask);\n#endif\n\n/*------------------------------------------------------------------------*\n * VIV extension tokens\n *------------------------------------------------------------------------*/\n\n/* GL_VIV_shader_binary */\n#ifndef GL_VIV_shader_binary\n#define GL_VIV_shader_binary 1\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n\n#endif /* __gl2ext_h_ */\n"
  },
  {
    "path": "gl2/gl2platform.h",
    "content": "#ifndef __gl2platform_h_\n#define __gl2platform_h_\n\n/* $Revision: 10602 $ on $Date:: 2010-03-04 22:35:34 -0800 #$ */\n\n/*\n * This document is licensed under the SGI Free Software B License Version\n * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .\n */\n\n/* Platform-specific types and definitions for OpenGL ES 2.X  gl2.h\n *\n * Adopters may modify khrplatform.h and this file to suit their platform.\n * You are encouraged to submit all modifications to the Khronos group so that\n * they can be included in future versions of this file.  Please submit changes\n * by sending them to the public Khronos Bugzilla (http://khronos.org/bugzilla)\n * by filing a bug against product \"OpenGL-ES\" component \"Registry\".\n */\n\n/*#include <KHR/khrplatform.h>*/\n\n#ifndef GL_APICALL\n#define GL_APICALL  KHRONOS_APICALL\n#endif\n\n#ifndef GL_APIENTRY\n#define GL_APIENTRY KHRONOS_APIENTRY\n#endif\n\n#endif /* __gl2platform_h_ */\n"
  },
  {
    "path": "gl2/khrplatform.h",
    "content": "#ifndef __khrplatform_h_\n#define __khrplatform_h_\n\n/*\n** Copyright (c) 2008-2009 The Khronos Group Inc.\n**\n** Permission is hereby granted, free of charge, to any person obtaining a\n** copy of this software and/or associated documentation files (the\n** \"Materials\"), to deal in the Materials without restriction, including\n** without limitation the rights to use, copy, modify, merge, publish,\n** distribute, sublicense, and/or sell copies of the Materials, and to\n** permit persons to whom the Materials are furnished to do so, subject to\n** the following conditions:\n**\n** The above copyright notice and this permission notice shall be included\n** in all copies or substantial portions of the Materials.\n**\n** THE MATERIALS ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.\n*/\n\n/* Khronos platform-specific types and definitions.\n *\n * $Revision: 23298 $ on $Date: 2013-09-30 17:07:13 -0700 (Mon, 30 Sep 2013) $\n *\n * Adopters may modify this file to suit their platform. Adopters are\n * encouraged to submit platform specific modifications to the Khronos\n * group so that they can be included in future versions of this file.\n * Please submit changes by sending them to the public Khronos Bugzilla\n * (http://khronos.org/bugzilla) by filing a bug against product\n * \"Khronos (general)\" component \"Registry\".\n *\n * A predefined template which fills in some of the bug fields can be\n * reached using http://tinyurl.com/khrplatform-h-bugreport, but you\n * must create a Bugzilla login first.\n *\n *\n * See the Implementer's Guidelines for information about where this file\n * should be located on your system and for more details of its use:\n *    http://www.khronos.org/registry/implementers_guide.pdf\n *\n * This file should be included as\n *        #include <KHR/khrplatform.h>\n * by Khronos client API header files that use its types and defines.\n *\n * The types in khrplatform.h should only be used to define API-specific types.\n *\n * Types defined in khrplatform.h:\n *    khronos_int8_t              signed   8  bit\n *    khronos_uint8_t             unsigned 8  bit\n *    khronos_int16_t             signed   16 bit\n *    khronos_uint16_t            unsigned 16 bit\n *    khronos_int32_t             signed   32 bit\n *    khronos_uint32_t            unsigned 32 bit\n *    khronos_int64_t             signed   64 bit\n *    khronos_uint64_t            unsigned 64 bit\n *    khronos_intptr_t            signed   same number of bits as a pointer\n *    khronos_uintptr_t           unsigned same number of bits as a pointer\n *    khronos_ssize_t             signed   size\n *    khronos_usize_t             unsigned size\n *    khronos_float_t             signed   32 bit floating point\n *    khronos_time_ns_t           unsigned 64 bit time in nanoseconds\n *    khronos_utime_nanoseconds_t unsigned time interval or absolute time in\n *                                         nanoseconds\n *    khronos_stime_nanoseconds_t signed time interval in nanoseconds\n *    khronos_boolean_enum_t      enumerated boolean type. This should\n *      only be used as a base type when a client API's boolean type is\n *      an enum. Client APIs which use an integer or other type for\n *      booleans cannot use this as the base type for their boolean.\n *\n * Tokens defined in khrplatform.h:\n *\n *    KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values.\n *\n *    KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0.\n *    KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0.\n *\n * Calling convention macros defined in this file:\n *    KHRONOS_APICALL\n *    KHRONOS_APIENTRY\n *    KHRONOS_APIATTRIBUTES\n *\n * These may be used in function prototypes as:\n *\n *      KHRONOS_APICALL void KHRONOS_APIENTRY funcname(\n *                                  int arg1,\n *                                  int arg2) KHRONOS_APIATTRIBUTES;\n */\n\n/*-------------------------------------------------------------------------\n * Definition of KHRONOS_APICALL\n *-------------------------------------------------------------------------\n * This precedes the return type of the function in the function prototype.\n */\n#if defined(_WIN32) && !defined(__SCITECH_SNAP__)\n#   define KHRONOS_APICALL __declspec(dllimport)\n#elif defined (__SYMBIAN32__)\n#   define KHRONOS_APICALL IMPORT_C\n#else\n#   define KHRONOS_APICALL\n#endif\n\n/*-------------------------------------------------------------------------\n * Definition of KHRONOS_APIENTRY\n *-------------------------------------------------------------------------\n * This follows the return type of the function  and precedes the function\n * name in the function prototype.\n */\n#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__)\n    /* Win32 but not WinCE */\n#   define KHRONOS_APIENTRY __stdcall\n#else\n#   define KHRONOS_APIENTRY\n#endif\n\n/*-------------------------------------------------------------------------\n * Definition of KHRONOS_APIATTRIBUTES\n *-------------------------------------------------------------------------\n * This follows the closing parenthesis of the function prototype arguments.\n */\n#if defined (__ARMCC_2__)\n#define KHRONOS_APIATTRIBUTES __softfp\n#else\n#define KHRONOS_APIATTRIBUTES\n#endif\n\n/*-------------------------------------------------------------------------\n * basic type definitions\n *-----------------------------------------------------------------------*/\n#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__)\n\n\n/*\n * Using <stdint.h>\n */\n#include <stdint.h>\ntypedef int32_t                 khronos_int32_t;\ntypedef uint32_t                khronos_uint32_t;\ntypedef int64_t                 khronos_int64_t;\ntypedef uint64_t                khronos_uint64_t;\n#define KHRONOS_SUPPORT_INT64   1\n#define KHRONOS_SUPPORT_FLOAT   1\n\n#elif defined(__VMS ) || defined(__sgi)\n\n/*\n * Using <inttypes.h>\n */\n#include <inttypes.h>\ntypedef int32_t                 khronos_int32_t;\ntypedef uint32_t                khronos_uint32_t;\ntypedef int64_t                 khronos_int64_t;\ntypedef uint64_t                khronos_uint64_t;\n#define KHRONOS_SUPPORT_INT64   1\n#define KHRONOS_SUPPORT_FLOAT   1\n\n#elif defined(_WIN32) && !defined(__SCITECH_SNAP__)\n\n/*\n * Win32\n */\ntypedef __int32                 khronos_int32_t;\ntypedef unsigned __int32        khronos_uint32_t;\ntypedef __int64                 khronos_int64_t;\ntypedef unsigned __int64        khronos_uint64_t;\n#define KHRONOS_SUPPORT_INT64   1\n#define KHRONOS_SUPPORT_FLOAT   1\n\n#elif defined(__sun__) || defined(__digital__)\n\n/*\n * Sun or Digital\n */\ntypedef int                     khronos_int32_t;\ntypedef unsigned int            khronos_uint32_t;\n#if defined(__arch64__) || defined(_LP64)\ntypedef long int                khronos_int64_t;\ntypedef unsigned long int       khronos_uint64_t;\n#else\ntypedef long long int           khronos_int64_t;\ntypedef unsigned long long int  khronos_uint64_t;\n#endif /* __arch64__ */\n#define KHRONOS_SUPPORT_INT64   1\n#define KHRONOS_SUPPORT_FLOAT   1\n\n#elif 0\n\n/*\n * Hypothetical platform with no float or int64 support\n */\ntypedef int                     khronos_int32_t;\ntypedef unsigned int            khronos_uint32_t;\n#define KHRONOS_SUPPORT_INT64   0\n#define KHRONOS_SUPPORT_FLOAT   0\n\n#else\n\n/*\n * Generic fallback\n */\n#include <stdint.h>\ntypedef int32_t                 khronos_int32_t;\ntypedef uint32_t                khronos_uint32_t;\ntypedef int64_t                 khronos_int64_t;\ntypedef uint64_t                khronos_uint64_t;\n#define KHRONOS_SUPPORT_INT64   1\n#define KHRONOS_SUPPORT_FLOAT   1\n\n#endif\n\n\n/*\n * Types that are (so far) the same on all platforms\n */\ntypedef signed   char          khronos_int8_t;\ntypedef unsigned char          khronos_uint8_t;\ntypedef signed   short int     khronos_int16_t;\ntypedef unsigned short int     khronos_uint16_t;\n\n/*\n * Types that differ between LLP64 and LP64 architectures - in LLP64, \n * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears\n * to be the only LLP64 architecture in current use.\n */\n#ifdef _WIN64\ntypedef signed   long long int khronos_intptr_t;\ntypedef unsigned long long int khronos_uintptr_t;\ntypedef signed   long long int khronos_ssize_t;\ntypedef unsigned long long int khronos_usize_t;\n#else\ntypedef signed   long  int     khronos_intptr_t;\ntypedef unsigned long  int     khronos_uintptr_t;\ntypedef signed   long  int     khronos_ssize_t;\ntypedef unsigned long  int     khronos_usize_t;\n#endif\n\n#if KHRONOS_SUPPORT_FLOAT\n/*\n * Float type\n */\ntypedef          float         khronos_float_t;\n#endif\n\n#if KHRONOS_SUPPORT_INT64\n/* Time types\n *\n * These types can be used to represent a time interval in nanoseconds or\n * an absolute Unadjusted System Time.  Unadjusted System Time is the number\n * of nanoseconds since some arbitrary system event (e.g. since the last\n * time the system booted).  The Unadjusted System Time is an unsigned\n * 64 bit value that wraps back to 0 every 584 years.  Time intervals\n * may be either signed or unsigned.\n */\ntypedef khronos_uint64_t       khronos_utime_nanoseconds_t;\ntypedef khronos_int64_t        khronos_stime_nanoseconds_t;\n#endif\n\n/*\n * Dummy value used to pad enum types to 32 bits.\n */\n#ifndef KHRONOS_MAX_ENUM\n#define KHRONOS_MAX_ENUM 0x7FFFFFFF\n#endif\n\n/*\n * Enumerated boolean type\n *\n * Values other than zero should be considered to be true.  Therefore\n * comparisons should not be made against KHRONOS_TRUE.\n */\ntypedef enum {\n    KHRONOS_FALSE = 0,\n    KHRONOS_TRUE  = 1,\n    KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM\n} khronos_boolean_enum_t;\n\n#endif /* __khrplatform_h_ */\n"
  },
  {
    "path": "modules/FindSDL2.cmake",
    "content": "#------------------------------------------------------------------------------\n# Usage: find_package(SDL2 [REQUIRED] [COMPONENTS main])\n#\n# Sets variables:\n#     SDL2_INCLUDE_DIRS\n#     SDL2_LIBS\n#     SDL2_DLLS\n#------------------------------------------------------------------------------\n\ninclude(FindPackageHandleStandardArgs)\n\n# Check if \"main\" was specified as a component\nset(_SDL2_use_main FALSE)\nforeach(_SDL2_component ${SDL2_FIND_COMPONENTS})\n    if(_SDL2_component STREQUAL \"main\")\n        set(_SDL2_use_main TRUE)\n    else()\n        message(WARNING \"Unrecognized component \\\"${_SDL2_component}\\\"\")\n    endif()\nendforeach()\n\nif(WIN32)\n    # Search for SDL2 Debug CMake build in extern/SDL2-2.0.5-dev/build\n    find_path(SDL2_ROOT \"include/SDL.h\" PATHS \"${CMAKE_CURRENT_LIST_DIR}/../extern/SDL2-2.0.5-dev\" NO_DEFAULT_PATH)\n    if(SDL2_ROOT)\n        if (EXISTS \"${SDL2_ROOT}/build/Debug/SDL2.lib\")\n            set(SDL2_INCLUDE_DIRS \"${SDL2_ROOT}/include\")\n            set(SDL2_LIBS \"${SDL2_ROOT}/build/Debug/SDL2.lib\")\n            set(SDL2_DLLS \"${SDL2_ROOT}/build/Debug/SDL2.dll\")\n            if(_SDL2_use_main)\n                list(APPEND SDL2_LIBS \"${SDL2_ROOT}/build/Debug/SDL2main.lib\")\n            endif()\n        endif()\n    endif()\n    if(NOT SDL2_FOUND)\n        # Search for SDL2 in extern/SDL2-2.0.5\n        find_path(SDL2_ROOT \"include/SDL.h\" PATHS \"${CMAKE_CURRENT_LIST_DIR}/../extern/SDL2-2.0.5\" NO_DEFAULT_PATH)\n        if(SDL2_ROOT)\n            set(SDL2_INCLUDE_DIRS \"${SDL2_ROOT}/include\")\n            if(\"${CMAKE_GENERATOR}\" MATCHES \"Win64\")\n                set(SDL2_LIBS \"${SDL2_ROOT}/lib/x64/SDL2.lib\")\n                set(SDL2_DLLS \"${SDL2_ROOT}/lib/x64/SDL2.dll\")\n                if(_SDL2_use_main)\n                    list(APPEND SDL2_LIBS \"${SDL2_ROOT}/lib/x64/SDL2main.lib\")\n                endif()\n            else()\n                set(SDL2_LIBS \"${SDL2_ROOT}/lib/x86/SDL2.lib\")\n                set(SDL2_DLLS \"${SDL2_ROOT}/lib/x86/SDL2.dll\")\n                if(_SDL2_use_main)\n                    list(APPEND SDL2_LIBS \"${SDL2_ROOT}/lib/x86/SDL2main.lib\")\n                endif()\n            endif()\n        endif()\n    endif()\n\n    mark_as_advanced(SDL2_ROOT)\n    find_package_handle_standard_args(SDL2 DEFAULT_MSG SDL2_INCLUDE_DIRS SDL2_LIBS SDL2_DLLS)\nelse()\n    # On MacOS, should be installed via Macports\n    # On Ubuntu, install with: apt-get install libsdl2-dev\n    find_path(SDL2_INCLUDE_DIRS SDL.h PATH_SUFFIXES SDL2)\n    find_library(_SDL2_LIB SDL2)\n    set(SDL2_LIBS ${SDL2})\n    if(_SDL2_use_main)\n        find_library(_SDL2main_LIB SDL2)\n        list(APPEND SDL2_LIBS ${_SDL2main_LIB})\n    endif()\n\n    mark_as_advanced(SDL2_INCLUDE_DIRS _SDL2_LIB _SDL2main_LIB)\n    find_package_handle_standard_args(SDL2 DEFAULT_MSG SDL2_INCLUDE_DIRS SDL2_LIBS)\nendif()\n"
  },
  {
    "path": "setup-win32.py",
    "content": "import os\nimport urllib.request\nimport zipfile\n\ndef downloadZip(url, extractedFolderName = None):\n    zipFileName = url.rsplit('/', 1)[-1]\n    assert zipFileName.endswith('.zip')\n    if not extractedFolderName:\n        extractedFolderName = zipFileName[:-4]\n    if not os.path.exists(extractedFolderName):\n        print('Downloading %s' % zipFileName)\n        urllib.request.urlretrieve(url, zipFileName)\n        zipfile.ZipFile(zipFileName).extractall()\n        os.remove(zipFileName)\n        assert os.path.exists(extractedFolderName)\n\nexternFolder = os.path.normpath(os.path.join(__file__, '../extern'))\nos.makedirs(externFolder, exist_ok=True)\nos.chdir(externFolder)\n\n# SDL2\ndownloadZip('https://www.libsdl.org/release/SDL2-devel-2.0.5-VC.zip', 'SDL2-2.0.5')\n"
  }
]