diff --git a/.gitignore b/.gitignore index 1e28113..217a3aa 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ bld/ [Oo]ut/ [Ll]og/ [Ll]ogs/ +[Bb]uild/ # Visual Studio 2015/2017 cache/options directory .vs/ diff --git a/CMakeLists.txt b/CMakeLists.txt index e650643..9b615e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,9 +14,9 @@ include(FetchContent) SET(CMAKE_EXPORT_COMPILE_COMMANDS 1) #SET(SOL_LUAJIT 1) -SET(TRACY_ENABLE 1) -SET(TRACY_ON_DEMAND 1) -SET(TRACY_ONLY_LOCALHOST 1) +#SET(TRACY_ENABLE 1) +#SET(TRACY_ON_DEMAND 1) +#SET(TRACY_ONLY_LOCALHOST 1) SET(FT_DISABLE_BROTLI 1) SET(FT_DISABLE_BZIP2 1) @@ -26,6 +26,8 @@ SET(FT_DISABLE_ZLIB 1) option(GLM_ENABLE_FAST_MATH OFF) +SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ffloat-store -fexcess-precision=standard -ffp-contract=off") + FetchContent_Declare( tracy GIT_REPOSITORY https://github.com/wolfpld/tracy.git @@ -34,35 +36,6 @@ FetchContent_Declare( GIT_PROGRESS TRUE ) -FetchContent_Declare( - tinyxml2 - GIT_REPOSITORY https://github.com/leethomason/tinyxml2.git - GIT_TAG 10.0.0 - GIT_SHALLOW TRUE - GIT_PROGRESS TRUE -) - -FetchContent_Declare( - sol2 - GIT_REPOSITORY https://github.com/ThePhD/sol2.git - GIT_TAG v3.3.1 - GIT_SHALLOW TRUE - GIT_PROGRESS TRUE -) - -FetchContent_Declare( - freetype - GIT_REPOSITORY https://github.com/freetype/freetype.git - GIT_TAG VER-2-13-3 - GIT_SHALLOW TRUE - GIT_PROGRESS TRUE -) - -FetchContent_MakeAvailable(tracy) -FetchContent_MakeAvailable(tinyxml2) -FetchContent_MakeAvailable(sol2) -FetchContent_MakeAvailable(freetype) - project ("YuppleMayham") # Include sub-projects. diff --git a/Resources/scripts/weapons/shotgun_script.lua b/Resources/scripts/weapons/shotgun_script.lua index f2f45aa..2c897f6 100644 --- a/Resources/scripts/weapons/shotgun_script.lua +++ b/Resources/scripts/weapons/shotgun_script.lua @@ -17,5 +17,5 @@ end -- How the bullet, target or wielder respond when the bullet hits a target. function onHit(target, bullet, normal) - target.physics.rigidBody:applyForce(vec3.new(normal.x, normal.y, 0.0), 5000.0); + target.physics.rigidBody:applyForce(normal, 5000.0); end diff --git a/Resources/shaders/GL_bubble.vert b/Resources/shaders/GL_bubble.vert index 429aa86..943ca55 100644 --- a/Resources/shaders/GL_bubble.vert +++ b/Resources/shaders/GL_bubble.vert @@ -1,17 +1,18 @@ #version 330 core layout (location = 0) in vec3 aPos; layout (location = 1) in vec2 aTexCoord; +layout (std140) uniform Matrices +{ + mat4 projection; + mat4 view; +}; out vec2 texCoord; -uniform mat4 MVP; - uniform mat4 model; -uniform mat4 projection; -uniform mat4 view; void main() { texCoord = aTexCoord; gl_Position = projection * view * model * vec4(aPos, 1.0); -} \ No newline at end of file +} diff --git a/Resources/shaders/GL_flat.vert b/Resources/shaders/GL_flat.vert index e6ea325..1e72a14 100644 --- a/Resources/shaders/GL_flat.vert +++ b/Resources/shaders/GL_flat.vert @@ -1,15 +1,17 @@ #version 330 core layout (location = 0) in vec3 aPos; layout (location = 1) in vec2 aTexCoord; +layout (std140) uniform Matrices +{ + mat4 projection; + mat4 view; +}; out vec2 texCoord; -uniform mat4 projection; -uniform mat4 view; - void main() { texCoord = aTexCoord; gl_Position = projection * vec4(aPos.xyz, 1.0); -} \ No newline at end of file +} diff --git a/Resources/shaders/GL_pistol.vert b/Resources/shaders/GL_pistol.vert index 63e4dc2..9604b00 100644 --- a/Resources/shaders/GL_pistol.vert +++ b/Resources/shaders/GL_pistol.vert @@ -1,13 +1,14 @@ #version 330 core layout (location = 0) in vec3 aPos; layout (location = 1) in vec2 aTexCoord; +layout (std140) uniform Matrices +{ + mat4 projection; + mat4 view; +}; out vec2 texCoord; -uniform mat4 MVP; - -uniform mat4 projection; -uniform mat4 view; uniform mat4 model; uniform bool flip; diff --git a/Resources/shaders/GL_player.vert b/Resources/shaders/GL_player.vert index 141aab7..4196daf 100644 --- a/Resources/shaders/GL_player.vert +++ b/Resources/shaders/GL_player.vert @@ -1,19 +1,20 @@ #version 330 core layout (location = 0) in vec3 aPos; layout (location = 1) in vec2 aTexPos; +layout (std140) uniform Matrices +{ + mat4 projection; + mat4 view; +}; out vec3 pos; out vec2 texPos; -uniform mat4 MVP; - uniform mat4 model; -uniform mat4 projection; -uniform mat4 view; void main() { pos = aPos; texPos = aTexPos; gl_Position = projection * view * model * vec4(aPos, 1.0); -} \ No newline at end of file +} diff --git a/Resources/shaders/GL_tile.vert b/Resources/shaders/GL_tile.vert index ed03fb8..8756a0f 100644 --- a/Resources/shaders/GL_tile.vert +++ b/Resources/shaders/GL_tile.vert @@ -7,10 +7,13 @@ layout (location = 4) in int aTilesPerRow; layout (location = 5) in int aStartIndex; layout (location = 6) in vec2 aOriginalSize; layout (location = 7) in mat4 aModel; +layout (std140) uniform Matrices +{ + mat4 projection; + mat4 view; +}; uniform vec2 uCanvasSize; -uniform mat4 projection; -uniform mat4 view; out vec2 texCoord; flat out int textureIndex; @@ -43,4 +46,4 @@ void main() texCoord.x = 0.0; texCoord.y = 0.0; } -} \ No newline at end of file +} diff --git a/YuppleMayham/CMakeLists.txt b/YuppleMayham/CMakeLists.txt index d57a623..7cea616 100644 --- a/YuppleMayham/CMakeLists.txt +++ b/YuppleMayham/CMakeLists.txt @@ -4,12 +4,17 @@ find_package(SDL2 2.30.2 REQUIRED) find_package(SDL2_IMAGE 2.8.2 REQUIRED) -#find_package(luajit CONFIG REQUIRED) +find_package(PkgConfig REQUIRED) +pkg_check_modules(LuaJIT REQUIRED IMPORTED_TARGET GLOBAL luajit) +find_package(sol2 REQUIRED) +find_package(tinyxml2 REQUIRED) +find_package(Freetype REQUIRED) +find_package(glm CONFIG REQUIRED) -include_directories(SYSTEM "c:/sdks/glad/include") +#include_directories(SYSTEM "c:/sdks/glad/include") #include_directories(SYSTEM "c:/sdks/tinyxml2-10.0.0/debug/include") -include_directories(SYSTEM "c:/sdks/glm") +#include_directories(SYSTEM "c:/sdks/glm") #include_directories(SYSTEM "C:/sdks/sol2-3.3.0/single/single/include") #include_directories(SYSTEM "c:/sdks/lua-5.4.6/include") #include_directories(SYSTEM "C:/sdks/freetype-2.13.2/include") @@ -26,7 +31,9 @@ include_directories(SYSTEM "c:/sdks/glm") # Add source to this project's executable. add_executable (YuppleMayham "src/main.cpp" - "c:/sdks/glad/src/glad.c" + "src/thirdparty/glad.c" + "src/utility/data/font_data.c" + "src/utility/ftfont.cpp" "src/graphics/sprite.cpp" "src/graphics/mesh.cpp" "src/gameplay/entity.cpp" @@ -51,7 +58,6 @@ add_executable (YuppleMayham "src/utility/debugdraw.cpp" "src/utility/script.cpp" "src/gameplay/ai.cpp" - "src/utility/ftfont.cpp" "include/graphics/glwindow.h" "include/gameplay/camera.h" "include/utility/mousestate.h" @@ -86,14 +92,11 @@ add_custom_command(TARGET YuppleMayham PRE_BUILD COMMAND ${CMAKE_COMMAND} -E cop if (CMAKE_VERSION VERSION_GREATER 3.12) set_property(TARGET YuppleMayham PROPERTY CXX_STANDARD 20) + message("this is freetype include dirs: ${FREETYPE_INCLUDE_DIR_ft2build}") endif() -target_include_directories(YuppleMayham PRIVATE "C:/sdks/luajit/include") -target_include_directories(YuppleMayham PRIVATE "${PROJECT_SOURCE_DIR}/YuppleMayham/include") -target_include_directories(YuppleMayham PRIVATE ${freetype_SOURCE_DIR}) -target_include_directories(YuppleMayham PRIVATE ${tinyxml2_SOURCE_DIR}) -target_include_directories(YuppleMayham PRIVATE "${sol2_SOURCE_DIR}/include") +target_include_directories(YuppleMayham PRIVATE "${PROJECT_SOURCE_DIR}/YuppleMayham/include" ${LuaJIT_INCLUDE_DIRS} ${FREETYPE_INCLUDE_DIR_ft2build}) -target_link_libraries(YuppleMayham SDL2::SDL2main SDL2::SDL2 SDL2_image::SDL2_image "C:/sdks/luajit/lib/luajit.lib" "C:/sdks/luajit/lib/lua51.lib" tinyxml2 freetype Tracy::TracyClient) +target_link_libraries(YuppleMayham SDL2::SDL2main SDL2::SDL2 SDL2_image::SDL2_image glm::glm-header-only sol2 tinyxml2 freetype ${LuaJIT_LINK_LIBRARIES}) # TODO: Add tests and install targets if needed. diff --git a/YuppleMayham/include/gameplay/entity.h b/YuppleMayham/include/gameplay/entity.h index 78feaf9..1f4bb93 100644 --- a/YuppleMayham/include/gameplay/entity.h +++ b/YuppleMayham/include/gameplay/entity.h @@ -7,6 +7,7 @@ #include #include "graphics/renderer.h" +#include "util.h" class Camera; struct PhysicsComponent; @@ -74,4 +75,4 @@ protected: }; -#endif //_H_ENTITY_H \ No newline at end of file +#endif //_H_ENTITY_H diff --git a/YuppleMayham/include/gameplay/input.h b/YuppleMayham/include/gameplay/input.h index 5a59814..4e50b73 100644 --- a/YuppleMayham/include/gameplay/input.h +++ b/YuppleMayham/include/gameplay/input.h @@ -1,6 +1,7 @@ #ifndef _H_INPUT_H #define _H_INPUT_H +#include "utility/logger.h" #include #include #include @@ -49,6 +50,8 @@ protected: { mouse_state.x = static_cast(e.motion.x); mouse_state.y = static_cast(e.motion.y); + // Quick fix regarding linux holding storing too many mouse events + SDL_FlushEvent(SDL_MOUSEMOTION); } if (e.type == SDL_MOUSEWHEEL) mouse_state.scroll = e.wheel.preciseY; @@ -101,4 +104,4 @@ private: MouseCommand* mouseScrollCommand = nullptr; }; -#endif // _H_INPUT_H \ No newline at end of file +#endif // _H_INPUT_H diff --git a/YuppleMayham/include/gameplay/physics.h b/YuppleMayham/include/gameplay/physics.h index 49f494e..1f36b62 100644 --- a/YuppleMayham/include/gameplay/physics.h +++ b/YuppleMayham/include/gameplay/physics.h @@ -12,20 +12,20 @@ struct PhysicsComponent { // This ID holds the ID of the gameactor that owns this object, that being themselves or a bullet. unsigned int ID = 0; // If the ID stays 0 then that object has no owner and will be uncollidable struct RigidBody { - glm::vec3 position; - glm::vec3 velocity; - glm::vec3 acceleration; + glm::vec2 position; + glm::vec2 velocity = glm::vec2(0.f); + glm::vec2 acceleration = glm::vec2(0.f); float elasticity = 0.7f; float mass = 1.0f; - void applyForce(glm::vec3 dir, float mag) { + void applyForce(glm::vec2 dir, float mag) { acceleration += ((dir * mag) / mass); } }rigidBody; struct Collider { enum class Shape { Square, Circle } shape = Shape::Circle; - glm::vec3 offset = glm::vec3(0.f); - glm::vec3 dimensions; + glm::vec2 offset = glm::vec2(0.f); + glm::vec2 dimensions; }collider; }; @@ -36,7 +36,7 @@ public: p.ID = ID; p.rigidBody.position = pos; p.rigidBody.mass = mass; - p.collider = { PhysicsComponent::Collider::Shape::Circle, glm::vec3(0.f, 0.f, 0.f), glm::vec3(radius) }; + p.collider = { PhysicsComponent::Collider::Shape::Circle, glm::vec2(0.f, 0.f), glm::vec2(radius) }; p.isBullet = true; return p; } @@ -59,7 +59,7 @@ private: void resolveWorldCollision(const std::shared_ptr&); void resolvePossibleCollisions(); void getPossibleCollisions(); - int getTileCollider(const glm::vec3& position); + int getTileCollider(const glm::vec2& position); std::vector> objects; std::vector objCollisions; std::vector> collisionMap; @@ -67,4 +67,4 @@ private: std::shared_ptr eventManager; }; -#endif //_H_PHYSICS_H \ No newline at end of file +#endif //_H_PHYSICS_H diff --git a/YuppleMayham/include/graphics/animation.h b/YuppleMayham/include/graphics/animation.h index 7e1fe7d..8f3fb04 100644 --- a/YuppleMayham/include/graphics/animation.h +++ b/YuppleMayham/include/graphics/animation.h @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -102,4 +103,4 @@ private: std::weak_ptr eventManager; }; -#endif // _H_ANIMATION_H \ No newline at end of file +#endif // _H_ANIMATION_H diff --git a/YuppleMayham/include/graphics/glwindow.h b/YuppleMayham/include/graphics/glwindow.h index d761f62..d510578 100644 --- a/YuppleMayham/include/graphics/glwindow.h +++ b/YuppleMayham/include/graphics/glwindow.h @@ -4,7 +4,7 @@ #include //#include -#include +#include class GLWindow { @@ -50,4 +50,4 @@ GLWindow::~GLWindow() SDL_DestroyWindow(window); } -#endif // _H_GLWINDOW_H \ No newline at end of file +#endif // _H_GLWINDOW_H diff --git a/YuppleMayham/include/graphics/instancedraw.h b/YuppleMayham/include/graphics/instancedraw.h index c1df86a..a0cc3c9 100644 --- a/YuppleMayham/include/graphics/instancedraw.h +++ b/YuppleMayham/include/graphics/instancedraw.h @@ -3,6 +3,8 @@ #include #include +#include +#include #define MAX_INSTANCES 1000 #define MAX_TEXTURES 31 @@ -62,4 +64,4 @@ private: }; }; -#endif // _H_INSTANCEDRAW_H \ No newline at end of file +#endif // _H_INSTANCEDRAW_H diff --git a/YuppleMayham/include/graphics/mesh.h b/YuppleMayham/include/graphics/mesh.h index 2195d96..7f561eb 100644 --- a/YuppleMayham/include/graphics/mesh.h +++ b/YuppleMayham/include/graphics/mesh.h @@ -3,7 +3,7 @@ #include -#include +#include #include typedef struct { @@ -28,4 +28,4 @@ private: size_t indexSize; }; -#endif // _H_MESH_H \ No newline at end of file +#endif // _H_MESH_H diff --git a/YuppleMayham/include/graphics/postprocess.h b/YuppleMayham/include/graphics/postprocess.h index a497664..be09fa0 100644 --- a/YuppleMayham/include/graphics/postprocess.h +++ b/YuppleMayham/include/graphics/postprocess.h @@ -1,8 +1,8 @@ #ifndef _H_POSTPROCESS_H #define _H_POSTPROCESS_H -#include -#include +#include +#include #include #include #include @@ -70,4 +70,4 @@ private: Shader* postProcessShader; }; -#endif // _H_POSTPROCESS_H \ No newline at end of file +#endif // _H_POSTPROCESS_H diff --git a/YuppleMayham/include/graphics/quad.h b/YuppleMayham/include/graphics/quad.h index 4d49a85..a30feff 100644 --- a/YuppleMayham/include/graphics/quad.h +++ b/YuppleMayham/include/graphics/quad.h @@ -1,7 +1,8 @@ #ifndef _H_QUAD_H #define _H_QUAD_H -#include +#include +#include class Quad { @@ -52,4 +53,4 @@ private: }; }; -#endif // _H_QUAD_H \ No newline at end of file +#endif // _H_QUAD_H diff --git a/YuppleMayham/include/graphics/renderer.h b/YuppleMayham/include/graphics/renderer.h index a9927b9..2e38d10 100644 --- a/YuppleMayham/include/graphics/renderer.h +++ b/YuppleMayham/include/graphics/renderer.h @@ -15,102 +15,102 @@ class ResourceManager; class Shader; enum class RenderLayer { - Background, - Map, - GameObjects, - Effects, - HUD, - Menu + Background, + Map, + GameObjects, + Effects, + HUD, + Menu }; using UniformValue = std::variant< - int, - bool, - float, - double, - glm::mat4, - glm::vec2 + int, + bool, + float, + double, + glm::mat4, + glm::vec2 >; struct Uniform { - std::string name; - UniformValue value; + std::string name; + UniformValue value; }; class Drawable { public: - virtual void draw() = 0; - const unsigned getShaderID() const { return shaderID; } - const std::vector& getUniforms() { return uniforms; } - const std::vector& getOneShotUniforms() { return oneShotUniforms; } - void clearOneShot() { oneShotUniforms.clear(); } - void clearUniforms() { uniforms.clear(); } + virtual void draw() = 0; + const unsigned getShaderID() const { return shaderID; } + const std::vector& getUniforms() { return uniforms; } + const std::vector& getOneShotUniforms() { return oneShotUniforms; } + void clearOneShot() { oneShotUniforms.clear(); } + void clearUniforms() { uniforms.clear(); } protected: - unsigned shaderID; - template - void editUniform(const std::string& name, T value) - { - uniforms.emplace_back(Uniform {name, value}); - } + unsigned shaderID; + template + void editUniform(const std::string& name, T value) + { + uniforms.emplace_back(Uniform {name, value}); + } - template - void editUniformOnce(const std::string& name, T value) - { - oneShotUniforms.emplace_back(Uniform {name, value}); - } + template + void editUniformOnce(const std::string& name, T value) + { + oneShotUniforms.emplace_back(Uniform {name, value}); + } private: - std::vector uniforms; - std::vector oneShotUniforms; + std::vector uniforms; + std::vector oneShotUniforms; }; class Renderer { public: - Renderer(const std::shared_ptr&); + Renderer(const std::shared_ptr&); - void clear(); + void clear(); - void hookEventManager(const std::weak_ptr eventManager); + void hookEventManager(const std::weak_ptr eventManager); - void setProjAndViewMatrix(const glm::mat4& proj, const glm::mat4& view); - void addDrawable(RenderLayer renderLayer, std::shared_ptr drawable); - void removeDrawable(RenderLayer renderLayer, std::shared_ptr drawable); + void setProjAndViewMatrix(const glm::mat4& proj, const glm::mat4& view); + void addDrawable(RenderLayer renderLayer, std::shared_ptr drawable); + void removeDrawable(RenderLayer renderLayer, std::shared_ptr drawable); - void render(); + void render(); private: - std::unordered_map>> worldLayerPool; - std::unordered_map>> HUDLayerPool; - std::vector renderingOrder = { - RenderLayer::Background, - RenderLayer::Map, - RenderLayer::GameObjects, - RenderLayer::Effects, - RenderLayer::HUD, - RenderLayer::Menu - }; + std::unordered_map>> worldLayerPool; + std::unordered_map>> HUDLayerPool; + std::vector renderingOrder = { + RenderLayer::Background, + RenderLayer::Map, + RenderLayer::GameObjects, + RenderLayer::Effects, + RenderLayer::HUD, + RenderLayer::Menu + }; - void uploadUniforms(const unsigned shaderID, const std::vector& uniforms); + void uploadUniforms(const unsigned shaderID, const std::vector& uniforms); - glm::mat4 projMat; - glm::mat4 viewMat; + unsigned uboMatrices; - union FrameBuffer { - unsigned int frame; - unsigned int texture; - }worldBuffer, hudBuffer; + union FrameBuffer { + unsigned int frame; + unsigned int texture; + }worldBuffer, hudBuffer; - std::unique_ptr screenQuad; + std::unique_ptr screenQuad; - std::shared_ptr resourceManager; + std::shared_ptr resourceManager; - void initFrameBuffers(); + void initFrameBuffers(); + void initUniformBuffers(); - std::unique_ptr postProcessor; + std::unique_ptr postProcessor; - void sortLayerPool(auto& layerPool); - void renderPool(auto& layerPool); + void sortLayerPool(auto& layerPool); + void renderPool(auto& layerPool); }; -#endif \ No newline at end of file +#endif diff --git a/YuppleMayham/include/graphics/shader.h b/YuppleMayham/include/graphics/shader.h index f6494d5..15a23de 100644 --- a/YuppleMayham/include/graphics/shader.h +++ b/YuppleMayham/include/graphics/shader.h @@ -1,7 +1,7 @@ #ifndef _H_SHADER_H #define _H_SHADER_H -#include +#include #include #include @@ -24,4 +24,4 @@ public: ~Shader(); }; -#endif // _H_SHADER_H \ No newline at end of file +#endif // _H_SHADER_H diff --git a/YuppleMayham/include/graphics/sprite.h b/YuppleMayham/include/graphics/sprite.h index 1cc7985..9934d93 100644 --- a/YuppleMayham/include/graphics/sprite.h +++ b/YuppleMayham/include/graphics/sprite.h @@ -2,13 +2,14 @@ #define _H_SPRITE_H #include -#include +#include #include #include #include #include +#include #include "utility/direction.h" @@ -102,4 +103,4 @@ private: std::unordered_map> directionalIDs; }; -#endif // _H_SPRITE_H \ No newline at end of file +#endif // _H_SPRITE_H diff --git a/YuppleMayham/include/graphics/texture.h b/YuppleMayham/include/graphics/texture.h index b969d99..a57cb40 100644 --- a/YuppleMayham/include/graphics/texture.h +++ b/YuppleMayham/include/graphics/texture.h @@ -2,6 +2,8 @@ #define _H_TEXTURE_H #include +#include +#include struct SDL_Surface; @@ -62,4 +64,4 @@ private: int canvasHeight = 0; }; -#endif \ No newline at end of file +#endif diff --git a/YuppleMayham/include/thirdparty/KHR/khrplatform.h b/YuppleMayham/include/thirdparty/KHR/khrplatform.h new file mode 100644 index 0000000..0164644 --- /dev/null +++ b/YuppleMayham/include/thirdparty/KHR/khrplatform.h @@ -0,0 +1,311 @@ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ diff --git a/YuppleMayham/include/thirdparty/glad/glad.h b/YuppleMayham/include/thirdparty/glad/glad.h new file mode 100644 index 0000000..790b35c --- /dev/null +++ b/YuppleMayham/include/thirdparty/glad/glad.h @@ -0,0 +1,2129 @@ +/* + + OpenGL loader generated by glad 0.1.36 on Wed Mar 12 13:16:49 2025. + + Language/Generator: C/C++ + Specification: gl + APIs: gl=3.3 + Profile: core + Extensions: + + Loader: True + Local files: False + Omit khrplatform: False + Reproducible: False + + Commandline: + --profile="core" --api="gl=3.3" --generator="c" --spec="gl" --extensions="" + Online: + https://glad.dav1d.de/#profile=core&language=c&specification=gl&loader=on&api=gl%3D3.3 +*/ + + +#ifndef __glad_h_ +#define __glad_h_ + +#ifdef __gl_h_ +#error OpenGL header already included, remove this include, glad already provides it +#endif +#define __gl_h_ + +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) +#define APIENTRY __stdcall +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif + +#ifndef GLAPIENTRY +#define GLAPIENTRY APIENTRY +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +struct gladGLversionStruct { + int major; + int minor; +}; + +typedef void* (* GLADloadproc)(const char *name); + +#ifndef GLAPI +# if defined(GLAD_GLAPI_EXPORT) +# if defined(_WIN32) || defined(__CYGWIN__) +# if defined(GLAD_GLAPI_EXPORT_BUILD) +# if defined(__GNUC__) +# define GLAPI __attribute__ ((dllexport)) extern +# else +# define GLAPI __declspec(dllexport) extern +# endif +# else +# if defined(__GNUC__) +# define GLAPI __attribute__ ((dllimport)) extern +# else +# define GLAPI __declspec(dllimport) extern +# endif +# endif +# elif defined(__GNUC__) && defined(GLAD_GLAPI_EXPORT_BUILD) +# define GLAPI __attribute__ ((visibility ("default"))) extern +# else +# define GLAPI extern +# endif +# else +# define GLAPI extern +# endif +#endif + +GLAPI struct gladGLversionStruct GLVersion; + +GLAPI int gladLoadGL(void); + +GLAPI int gladLoadGLLoader(GLADloadproc); + +#include +typedef unsigned int GLenum; +typedef unsigned char GLboolean; +typedef unsigned int GLbitfield; +typedef void GLvoid; +typedef khronos_int8_t GLbyte; +typedef khronos_uint8_t GLubyte; +typedef khronos_int16_t GLshort; +typedef khronos_uint16_t GLushort; +typedef int GLint; +typedef unsigned int GLuint; +typedef khronos_int32_t GLclampx; +typedef int GLsizei; +typedef khronos_float_t GLfloat; +typedef khronos_float_t GLclampf; +typedef double GLdouble; +typedef double GLclampd; +typedef void *GLeglClientBufferEXT; +typedef void *GLeglImageOES; +typedef char GLchar; +typedef char GLcharARB; +#ifdef __APPLE__ +typedef void *GLhandleARB; +#else +typedef unsigned int GLhandleARB; +#endif +typedef khronos_uint16_t GLhalf; +typedef khronos_uint16_t GLhalfARB; +typedef khronos_int32_t GLfixed; +typedef khronos_intptr_t GLintptr; +typedef khronos_intptr_t GLintptrARB; +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_ssize_t GLsizeiptrARB; +typedef khronos_int64_t GLint64; +typedef khronos_int64_t GLint64EXT; +typedef khronos_uint64_t GLuint64; +typedef khronos_uint64_t GLuint64EXT; +typedef struct __GLsync *GLsync; +struct _cl_context; +struct _cl_event; +typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +typedef void (APIENTRY *GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,void *userParam); +typedef unsigned short GLhalfNV; +typedef GLintptr GLvdpauSurfaceNV; +typedef void (APIENTRY *GLVULKANPROCNV)(void); +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_FALSE 0 +#define GL_TRUE 1 +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +#define GL_NONE 0 +#define GL_FRONT_LEFT 0x0400 +#define GL_FRONT_RIGHT 0x0401 +#define GL_BACK_LEFT 0x0402 +#define GL_BACK_RIGHT 0x0403 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_LEFT 0x0406 +#define GL_RIGHT 0x0407 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_OUT_OF_MEMORY 0x0505 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_POINT_SIZE 0x0B11 +#define GL_POINT_SIZE_RANGE 0x0B12 +#define GL_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_LINE_SMOOTH 0x0B20 +#define GL_LINE_WIDTH 0x0B21 +#define GL_LINE_WIDTH_RANGE 0x0B22 +#define GL_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_POLYGON_MODE 0x0B40 +#define GL_POLYGON_SMOOTH 0x0B41 +#define GL_CULL_FACE 0x0B44 +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_TEST 0x0B71 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_STENCIL_TEST 0x0B90 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_VIEWPORT 0x0BA2 +#define GL_DITHER 0x0BD0 +#define GL_BLEND_DST 0x0BE0 +#define GL_BLEND_SRC 0x0BE1 +#define GL_BLEND 0x0BE2 +#define GL_LOGIC_OP_MODE 0x0BF0 +#define GL_DRAW_BUFFER 0x0C01 +#define GL_READ_BUFFER 0x0C02 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_DOUBLEBUFFER 0x0C32 +#define GL_STEREO 0x0C33 +#define GL_LINE_SMOOTH_HINT 0x0C52 +#define GL_POLYGON_SMOOTH_HINT 0x0C53 +#define GL_UNPACK_SWAP_BYTES 0x0CF0 +#define GL_UNPACK_LSB_FIRST 0x0CF1 +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_SWAP_BYTES 0x0D00 +#define GL_PACK_LSB_FIRST 0x0D01 +#define GL_PACK_ROW_LENGTH 0x0D02 +#define GL_PACK_SKIP_ROWS 0x0D03 +#define GL_PACK_SKIP_PIXELS 0x0D04 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_TEXTURE_WIDTH 0x1000 +#define GL_TEXTURE_HEIGHT 0x1001 +#define GL_TEXTURE_BORDER_COLOR 0x1004 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_CLEAR 0x1500 +#define GL_AND 0x1501 +#define GL_AND_REVERSE 0x1502 +#define GL_COPY 0x1503 +#define GL_AND_INVERTED 0x1504 +#define GL_NOOP 0x1505 +#define GL_XOR 0x1506 +#define GL_OR 0x1507 +#define GL_NOR 0x1508 +#define GL_EQUIV 0x1509 +#define GL_INVERT 0x150A +#define GL_OR_REVERSE 0x150B +#define GL_COPY_INVERTED 0x150C +#define GL_OR_INVERTED 0x150D +#define GL_NAND 0x150E +#define GL_SET 0x150F +#define GL_TEXTURE 0x1702 +#define GL_COLOR 0x1800 +#define GL_DEPTH 0x1801 +#define GL_STENCIL 0x1802 +#define GL_STENCIL_INDEX 0x1901 +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_POINT 0x1B00 +#define GL_LINE 0x1B01 +#define GL_FILL 0x1B02 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_REPEAT 0x2901 +#define GL_COLOR_LOGIC_OP 0x0BF2 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_POINT 0x2A01 +#define GL_POLYGON_OFFSET_LINE 0x2A02 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_TEXTURE_BINDING_1D 0x8068 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_TEXTURE_INTERNAL_FORMAT 0x1003 +#define GL_TEXTURE_RED_SIZE 0x805C +#define GL_TEXTURE_GREEN_SIZE 0x805D +#define GL_TEXTURE_BLUE_SIZE 0x805E +#define GL_TEXTURE_ALPHA_SIZE 0x805F +#define GL_DOUBLE 0x140A +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 +#define GL_R3_G3_B2 0x2A10 +#define GL_RGB4 0x804F +#define GL_RGB5 0x8050 +#define GL_RGB8 0x8051 +#define GL_RGB10 0x8052 +#define GL_RGB12 0x8053 +#define GL_RGB16 0x8054 +#define GL_RGBA2 0x8055 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGBA8 0x8058 +#define GL_RGB10_A2 0x8059 +#define GL_RGBA12 0x805A +#define GL_RGBA16 0x805B +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_TEXTURE_BINDING_3D 0x806A +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_CLAMP_TO_BORDER 0x812D +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_DEPTH_COMPONENT24 0x81A6 +#define GL_DEPTH_COMPONENT32 0x81A7 +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_MAX_TEXTURE_LOD_BIAS 0x84FD +#define GL_TEXTURE_LOD_BIAS 0x8501 +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_TEXTURE_DEPTH_SIZE 0x884A +#define GL_TEXTURE_COMPARE_MODE 0x884C +#define GL_TEXTURE_COMPARE_FUNC 0x884D +#define GL_BLEND_COLOR 0x8005 +#define GL_BLEND_EQUATION 0x8009 +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_FUNC_SUBTRACT 0x800A +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_QUERY_COUNTER_BITS 0x8864 +#define GL_CURRENT_QUERY 0x8865 +#define GL_QUERY_RESULT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE 0x8867 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_READ_ONLY 0x88B8 +#define GL_WRITE_ONLY 0x88B9 +#define GL_READ_WRITE 0x88BA +#define GL_BUFFER_ACCESS 0x88BB +#define GL_BUFFER_MAPPED 0x88BC +#define GL_BUFFER_MAP_POINTER 0x88BD +#define GL_STREAM_DRAW 0x88E0 +#define GL_STREAM_READ 0x88E1 +#define GL_STREAM_COPY 0x88E2 +#define GL_STATIC_DRAW 0x88E4 +#define GL_STATIC_READ 0x88E5 +#define GL_STATIC_COPY 0x88E6 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_DYNAMIC_READ 0x88E9 +#define GL_DYNAMIC_COPY 0x88EA +#define GL_SAMPLES_PASSED 0x8914 +#define GL_SRC1_ALPHA 0x8589 +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_MAX_DRAW_BUFFERS 0x8824 +#define GL_DRAW_BUFFER0 0x8825 +#define GL_DRAW_BUFFER1 0x8826 +#define GL_DRAW_BUFFER2 0x8827 +#define GL_DRAW_BUFFER3 0x8828 +#define GL_DRAW_BUFFER4 0x8829 +#define GL_DRAW_BUFFER5 0x882A +#define GL_DRAW_BUFFER6 0x882B +#define GL_DRAW_BUFFER7 0x882C +#define GL_DRAW_BUFFER8 0x882D +#define GL_DRAW_BUFFER9 0x882E +#define GL_DRAW_BUFFER10 0x882F +#define GL_DRAW_BUFFER11 0x8830 +#define GL_DRAW_BUFFER12 0x8831 +#define GL_DRAW_BUFFER13 0x8832 +#define GL_DRAW_BUFFER14 0x8833 +#define GL_DRAW_BUFFER15 0x8834 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A +#define GL_MAX_VARYING_FLOATS 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_SHADER_TYPE 0x8B4F +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_1D 0x8B5D +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_3D 0x8B5F +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_SAMPLER_1D_SHADOW 0x8B61 +#define GL_SAMPLER_2D_SHADOW 0x8B62 +#define GL_DELETE_STATUS 0x8B80 +#define GL_COMPILE_STATUS 0x8B81 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_PIXEL_PACK_BUFFER 0x88EB +#define GL_PIXEL_UNPACK_BUFFER 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF +#define GL_FLOAT_MAT2x3 0x8B65 +#define GL_FLOAT_MAT2x4 0x8B66 +#define GL_FLOAT_MAT3x2 0x8B67 +#define GL_FLOAT_MAT3x4 0x8B68 +#define GL_FLOAT_MAT4x2 0x8B69 +#define GL_FLOAT_MAT4x3 0x8B6A +#define GL_SRGB 0x8C40 +#define GL_SRGB8 0x8C41 +#define GL_SRGB_ALPHA 0x8C42 +#define GL_SRGB8_ALPHA8 0x8C43 +#define GL_COMPRESSED_SRGB 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA 0x8C49 +#define GL_COMPARE_REF_TO_TEXTURE 0x884E +#define GL_CLIP_DISTANCE0 0x3000 +#define GL_CLIP_DISTANCE1 0x3001 +#define GL_CLIP_DISTANCE2 0x3002 +#define GL_CLIP_DISTANCE3 0x3003 +#define GL_CLIP_DISTANCE4 0x3004 +#define GL_CLIP_DISTANCE5 0x3005 +#define GL_CLIP_DISTANCE6 0x3006 +#define GL_CLIP_DISTANCE7 0x3007 +#define GL_MAX_CLIP_DISTANCES 0x0D32 +#define GL_MAJOR_VERSION 0x821B +#define GL_MINOR_VERSION 0x821C +#define GL_NUM_EXTENSIONS 0x821D +#define GL_CONTEXT_FLAGS 0x821E +#define GL_COMPRESSED_RED 0x8225 +#define GL_COMPRESSED_RG 0x8226 +#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x00000001 +#define GL_RGBA32F 0x8814 +#define GL_RGB32F 0x8815 +#define GL_RGBA16F 0x881A +#define GL_RGB16F 0x881B +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD +#define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF +#define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 +#define GL_CLAMP_READ_COLOR 0x891C +#define GL_FIXED_ONLY 0x891D +#define GL_MAX_VARYING_COMPONENTS 0x8B4B +#define GL_TEXTURE_1D_ARRAY 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D +#define GL_R11F_G11F_B10F 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B +#define GL_RGB9_E5 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E +#define GL_TEXTURE_SHARED_SIZE 0x8C3F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 +#define GL_PRIMITIVES_GENERATED 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 +#define GL_RASTERIZER_DISCARD 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B +#define GL_INTERLEAVED_ATTRIBS 0x8C8C +#define GL_SEPARATE_ATTRIBS 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F +#define GL_RGBA32UI 0x8D70 +#define GL_RGB32UI 0x8D71 +#define GL_RGBA16UI 0x8D76 +#define GL_RGB16UI 0x8D77 +#define GL_RGBA8UI 0x8D7C +#define GL_RGB8UI 0x8D7D +#define GL_RGBA32I 0x8D82 +#define GL_RGB32I 0x8D83 +#define GL_RGBA16I 0x8D88 +#define GL_RGB16I 0x8D89 +#define GL_RGBA8I 0x8D8E +#define GL_RGB8I 0x8D8F +#define GL_RED_INTEGER 0x8D94 +#define GL_GREEN_INTEGER 0x8D95 +#define GL_BLUE_INTEGER 0x8D96 +#define GL_RGB_INTEGER 0x8D98 +#define GL_RGBA_INTEGER 0x8D99 +#define GL_BGR_INTEGER 0x8D9A +#define GL_BGRA_INTEGER 0x8D9B +#define GL_SAMPLER_1D_ARRAY 0x8DC0 +#define GL_SAMPLER_2D_ARRAY 0x8DC1 +#define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW 0x8DC5 +#define GL_UNSIGNED_INT_VEC2 0x8DC6 +#define GL_UNSIGNED_INT_VEC3 0x8DC7 +#define GL_UNSIGNED_INT_VEC4 0x8DC8 +#define GL_INT_SAMPLER_1D 0x8DC9 +#define GL_INT_SAMPLER_2D 0x8DCA +#define GL_INT_SAMPLER_3D 0x8DCB +#define GL_INT_SAMPLER_CUBE 0x8DCC +#define GL_INT_SAMPLER_1D_ARRAY 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY 0x8DCF +#define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 +#define GL_QUERY_WAIT 0x8E13 +#define GL_QUERY_NO_WAIT 0x8E14 +#define GL_QUERY_BY_REGION_WAIT 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 +#define GL_BUFFER_ACCESS_FLAGS 0x911F +#define GL_BUFFER_MAP_LENGTH 0x9120 +#define GL_BUFFER_MAP_OFFSET 0x9121 +#define GL_DEPTH_COMPONENT32F 0x8CAC +#define GL_DEPTH32F_STENCIL8 0x8CAD +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 +#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 +#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 +#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 +#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 +#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 +#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 +#define GL_FRAMEBUFFER_DEFAULT 0x8218 +#define GL_FRAMEBUFFER_UNDEFINED 0x8219 +#define GL_DEPTH_STENCIL_ATTACHMENT 0x821A +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_DEPTH_STENCIL 0x84F9 +#define GL_UNSIGNED_INT_24_8 0x84FA +#define GL_DEPTH24_STENCIL8 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE 0x88F1 +#define GL_TEXTURE_RED_TYPE 0x8C10 +#define GL_TEXTURE_GREEN_TYPE 0x8C11 +#define GL_TEXTURE_BLUE_TYPE 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE 0x8C13 +#define GL_TEXTURE_DEPTH_TYPE 0x8C16 +#define GL_UNSIGNED_NORMALIZED 0x8C17 +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_DRAW_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_READ_FRAMEBUFFER 0x8CA8 +#define GL_DRAW_FRAMEBUFFER 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING 0x8CAA +#define GL_RENDERBUFFER_SAMPLES 0x8CAB +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS 0x8CDF +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_COLOR_ATTACHMENT1 0x8CE1 +#define GL_COLOR_ATTACHMENT2 0x8CE2 +#define GL_COLOR_ATTACHMENT3 0x8CE3 +#define GL_COLOR_ATTACHMENT4 0x8CE4 +#define GL_COLOR_ATTACHMENT5 0x8CE5 +#define GL_COLOR_ATTACHMENT6 0x8CE6 +#define GL_COLOR_ATTACHMENT7 0x8CE7 +#define GL_COLOR_ATTACHMENT8 0x8CE8 +#define GL_COLOR_ATTACHMENT9 0x8CE9 +#define GL_COLOR_ATTACHMENT10 0x8CEA +#define GL_COLOR_ATTACHMENT11 0x8CEB +#define GL_COLOR_ATTACHMENT12 0x8CEC +#define GL_COLOR_ATTACHMENT13 0x8CED +#define GL_COLOR_ATTACHMENT14 0x8CEE +#define GL_COLOR_ATTACHMENT15 0x8CEF +#define GL_COLOR_ATTACHMENT16 0x8CF0 +#define GL_COLOR_ATTACHMENT17 0x8CF1 +#define GL_COLOR_ATTACHMENT18 0x8CF2 +#define GL_COLOR_ATTACHMENT19 0x8CF3 +#define GL_COLOR_ATTACHMENT20 0x8CF4 +#define GL_COLOR_ATTACHMENT21 0x8CF5 +#define GL_COLOR_ATTACHMENT22 0x8CF6 +#define GL_COLOR_ATTACHMENT23 0x8CF7 +#define GL_COLOR_ATTACHMENT24 0x8CF8 +#define GL_COLOR_ATTACHMENT25 0x8CF9 +#define GL_COLOR_ATTACHMENT26 0x8CFA +#define GL_COLOR_ATTACHMENT27 0x8CFB +#define GL_COLOR_ATTACHMENT28 0x8CFC +#define GL_COLOR_ATTACHMENT29 0x8CFD +#define GL_COLOR_ATTACHMENT30 0x8CFE +#define GL_COLOR_ATTACHMENT31 0x8CFF +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_STENCIL_INDEX1 0x8D46 +#define GL_STENCIL_INDEX4 0x8D47 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_STENCIL_INDEX16 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 +#define GL_MAX_SAMPLES 0x8D57 +#define GL_FRAMEBUFFER_SRGB 0x8DB9 +#define GL_HALF_FLOAT 0x140B +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 +#define GL_COMPRESSED_RED_RGTC1 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC +#define GL_COMPRESSED_RG_RGTC2 0x8DBD +#define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE +#define GL_RG 0x8227 +#define GL_RG_INTEGER 0x8228 +#define GL_R8 0x8229 +#define GL_R16 0x822A +#define GL_RG8 0x822B +#define GL_RG16 0x822C +#define GL_R16F 0x822D +#define GL_R32F 0x822E +#define GL_RG16F 0x822F +#define GL_RG32F 0x8230 +#define GL_R8I 0x8231 +#define GL_R8UI 0x8232 +#define GL_R16I 0x8233 +#define GL_R16UI 0x8234 +#define GL_R32I 0x8235 +#define GL_R32UI 0x8236 +#define GL_RG8I 0x8237 +#define GL_RG8UI 0x8238 +#define GL_RG16I 0x8239 +#define GL_RG16UI 0x823A +#define GL_RG32I 0x823B +#define GL_RG32UI 0x823C +#define GL_VERTEX_ARRAY_BINDING 0x85B5 +#define GL_SAMPLER_2D_RECT 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 +#define GL_SAMPLER_BUFFER 0x8DC2 +#define GL_INT_SAMPLER_2D_RECT 0x8DCD +#define GL_INT_SAMPLER_BUFFER 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 +#define GL_TEXTURE_BUFFER 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D +#define GL_TEXTURE_RECTANGLE 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_PRIMITIVE_RESTART 0x8F9D +#define GL_PRIMITIVE_RESTART_INDEX 0x8F9E +#define GL_COPY_READ_BUFFER 0x8F36 +#define GL_COPY_WRITE_BUFFER 0x8F37 +#define GL_UNIFORM_BUFFER 0x8A11 +#define GL_UNIFORM_BUFFER_BINDING 0x8A28 +#define GL_UNIFORM_BUFFER_START 0x8A29 +#define GL_UNIFORM_BUFFER_SIZE 0x8A2A +#define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C +#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D +#define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E +#define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F +#define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 +#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 +#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 +#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 +#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 +#define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 +#define GL_UNIFORM_TYPE 0x8A37 +#define GL_UNIFORM_SIZE 0x8A38 +#define GL_UNIFORM_NAME_LENGTH 0x8A39 +#define GL_UNIFORM_BLOCK_INDEX 0x8A3A +#define GL_UNIFORM_OFFSET 0x8A3B +#define GL_UNIFORM_ARRAY_STRIDE 0x8A3C +#define GL_UNIFORM_MATRIX_STRIDE 0x8A3D +#define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E +#define GL_UNIFORM_BLOCK_BINDING 0x8A3F +#define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 +#define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 +#define GL_INVALID_INDEX 0xFFFFFFFF +#define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 +#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define GL_LINES_ADJACENCY 0x000A +#define GL_LINE_STRIP_ADJACENCY 0x000B +#define GL_TRIANGLES_ADJACENCY 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY 0x000D +#define GL_PROGRAM_POINT_SIZE 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 +#define GL_GEOMETRY_SHADER 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT 0x8916 +#define GL_GEOMETRY_INPUT_TYPE 0x8917 +#define GL_GEOMETRY_OUTPUT_TYPE 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 +#define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 +#define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 +#define GL_CONTEXT_PROFILE_MASK 0x9126 +#define GL_DEPTH_CLAMP 0x864F +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F +#define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 +#define GL_OBJECT_TYPE 0x9112 +#define GL_SYNC_CONDITION 0x9113 +#define GL_SYNC_STATUS 0x9114 +#define GL_SYNC_FLAGS 0x9115 +#define GL_SYNC_FENCE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 +#define GL_UNSIGNALED 0x9118 +#define GL_SIGNALED 0x9119 +#define GL_ALREADY_SIGNALED 0x911A +#define GL_TIMEOUT_EXPIRED 0x911B +#define GL_CONDITION_SATISFIED 0x911C +#define GL_WAIT_FAILED 0x911D +#define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFF +#define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 +#define GL_SAMPLE_POSITION 0x8E50 +#define GL_SAMPLE_MASK 0x8E51 +#define GL_SAMPLE_MASK_VALUE 0x8E52 +#define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 +#define GL_TEXTURE_SAMPLES 0x9106 +#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 +#define GL_SAMPLER_2D_MULTISAMPLE 0x9108 +#define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D +#define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E +#define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F +#define GL_MAX_INTEGER_SAMPLES 0x9110 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE +#define GL_SRC1_COLOR 0x88F9 +#define GL_ONE_MINUS_SRC1_COLOR 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC +#define GL_ANY_SAMPLES_PASSED 0x8C2F +#define GL_SAMPLER_BINDING 0x8919 +#define GL_RGB10_A2UI 0x906F +#define GL_TEXTURE_SWIZZLE_R 0x8E42 +#define GL_TEXTURE_SWIZZLE_G 0x8E43 +#define GL_TEXTURE_SWIZZLE_B 0x8E44 +#define GL_TEXTURE_SWIZZLE_A 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 +#define GL_INT_2_10_10_10_REV 0x8D9F +#ifndef GL_VERSION_1_0 +#define GL_VERSION_1_0 1 +GLAPI int GLAD_GL_VERSION_1_0; +typedef void (APIENTRYP PFNGLCULLFACEPROC)(GLenum mode); +GLAPI PFNGLCULLFACEPROC glad_glCullFace; +#define glCullFace glad_glCullFace +typedef void (APIENTRYP PFNGLFRONTFACEPROC)(GLenum mode); +GLAPI PFNGLFRONTFACEPROC glad_glFrontFace; +#define glFrontFace glad_glFrontFace +typedef void (APIENTRYP PFNGLHINTPROC)(GLenum target, GLenum mode); +GLAPI PFNGLHINTPROC glad_glHint; +#define glHint glad_glHint +typedef void (APIENTRYP PFNGLLINEWIDTHPROC)(GLfloat width); +GLAPI PFNGLLINEWIDTHPROC glad_glLineWidth; +#define glLineWidth glad_glLineWidth +typedef void (APIENTRYP PFNGLPOINTSIZEPROC)(GLfloat size); +GLAPI PFNGLPOINTSIZEPROC glad_glPointSize; +#define glPointSize glad_glPointSize +typedef void (APIENTRYP PFNGLPOLYGONMODEPROC)(GLenum face, GLenum mode); +GLAPI PFNGLPOLYGONMODEPROC glad_glPolygonMode; +#define glPolygonMode glad_glPolygonMode +typedef void (APIENTRYP PFNGLSCISSORPROC)(GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLSCISSORPROC glad_glScissor; +#define glScissor glad_glScissor +typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC)(GLenum target, GLenum pname, GLfloat param); +GLAPI PFNGLTEXPARAMETERFPROC glad_glTexParameterf; +#define glTexParameterf glad_glTexParameterf +typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC)(GLenum target, GLenum pname, const GLfloat *params); +GLAPI PFNGLTEXPARAMETERFVPROC glad_glTexParameterfv; +#define glTexParameterfv glad_glTexParameterfv +typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC)(GLenum target, GLenum pname, GLint param); +GLAPI PFNGLTEXPARAMETERIPROC glad_glTexParameteri; +#define glTexParameteri glad_glTexParameteri +typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC)(GLenum target, GLenum pname, const GLint *params); +GLAPI PFNGLTEXPARAMETERIVPROC glad_glTexParameteriv; +#define glTexParameteriv glad_glTexParameteriv +typedef void (APIENTRYP PFNGLTEXIMAGE1DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXIMAGE1DPROC glad_glTexImage1D; +#define glTexImage1D glad_glTexImage1D +typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXIMAGE2DPROC glad_glTexImage2D; +#define glTexImage2D glad_glTexImage2D +typedef void (APIENTRYP PFNGLDRAWBUFFERPROC)(GLenum buf); +GLAPI PFNGLDRAWBUFFERPROC glad_glDrawBuffer; +#define glDrawBuffer glad_glDrawBuffer +typedef void (APIENTRYP PFNGLCLEARPROC)(GLbitfield mask); +GLAPI PFNGLCLEARPROC glad_glClear; +#define glClear glad_glClear +typedef void (APIENTRYP PFNGLCLEARCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI PFNGLCLEARCOLORPROC glad_glClearColor; +#define glClearColor glad_glClearColor +typedef void (APIENTRYP PFNGLCLEARSTENCILPROC)(GLint s); +GLAPI PFNGLCLEARSTENCILPROC glad_glClearStencil; +#define glClearStencil glad_glClearStencil +typedef void (APIENTRYP PFNGLCLEARDEPTHPROC)(GLdouble depth); +GLAPI PFNGLCLEARDEPTHPROC glad_glClearDepth; +#define glClearDepth glad_glClearDepth +typedef void (APIENTRYP PFNGLSTENCILMASKPROC)(GLuint mask); +GLAPI PFNGLSTENCILMASKPROC glad_glStencilMask; +#define glStencilMask glad_glStencilMask +typedef void (APIENTRYP PFNGLCOLORMASKPROC)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GLAPI PFNGLCOLORMASKPROC glad_glColorMask; +#define glColorMask glad_glColorMask +typedef void (APIENTRYP PFNGLDEPTHMASKPROC)(GLboolean flag); +GLAPI PFNGLDEPTHMASKPROC glad_glDepthMask; +#define glDepthMask glad_glDepthMask +typedef void (APIENTRYP PFNGLDISABLEPROC)(GLenum cap); +GLAPI PFNGLDISABLEPROC glad_glDisable; +#define glDisable glad_glDisable +typedef void (APIENTRYP PFNGLENABLEPROC)(GLenum cap); +GLAPI PFNGLENABLEPROC glad_glEnable; +#define glEnable glad_glEnable +typedef void (APIENTRYP PFNGLFINISHPROC)(void); +GLAPI PFNGLFINISHPROC glad_glFinish; +#define glFinish glad_glFinish +typedef void (APIENTRYP PFNGLFLUSHPROC)(void); +GLAPI PFNGLFLUSHPROC glad_glFlush; +#define glFlush glad_glFlush +typedef void (APIENTRYP PFNGLBLENDFUNCPROC)(GLenum sfactor, GLenum dfactor); +GLAPI PFNGLBLENDFUNCPROC glad_glBlendFunc; +#define glBlendFunc glad_glBlendFunc +typedef void (APIENTRYP PFNGLLOGICOPPROC)(GLenum opcode); +GLAPI PFNGLLOGICOPPROC glad_glLogicOp; +#define glLogicOp glad_glLogicOp +typedef void (APIENTRYP PFNGLSTENCILFUNCPROC)(GLenum func, GLint ref, GLuint mask); +GLAPI PFNGLSTENCILFUNCPROC glad_glStencilFunc; +#define glStencilFunc glad_glStencilFunc +typedef void (APIENTRYP PFNGLSTENCILOPPROC)(GLenum fail, GLenum zfail, GLenum zpass); +GLAPI PFNGLSTENCILOPPROC glad_glStencilOp; +#define glStencilOp glad_glStencilOp +typedef void (APIENTRYP PFNGLDEPTHFUNCPROC)(GLenum func); +GLAPI PFNGLDEPTHFUNCPROC glad_glDepthFunc; +#define glDepthFunc glad_glDepthFunc +typedef void (APIENTRYP PFNGLPIXELSTOREFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLPIXELSTOREFPROC glad_glPixelStoref; +#define glPixelStoref glad_glPixelStoref +typedef void (APIENTRYP PFNGLPIXELSTOREIPROC)(GLenum pname, GLint param); +GLAPI PFNGLPIXELSTOREIPROC glad_glPixelStorei; +#define glPixelStorei glad_glPixelStorei +typedef void (APIENTRYP PFNGLREADBUFFERPROC)(GLenum src); +GLAPI PFNGLREADBUFFERPROC glad_glReadBuffer; +#define glReadBuffer glad_glReadBuffer +typedef void (APIENTRYP PFNGLREADPIXELSPROC)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GLAPI PFNGLREADPIXELSPROC glad_glReadPixels; +#define glReadPixels glad_glReadPixels +typedef void (APIENTRYP PFNGLGETBOOLEANVPROC)(GLenum pname, GLboolean *data); +GLAPI PFNGLGETBOOLEANVPROC glad_glGetBooleanv; +#define glGetBooleanv glad_glGetBooleanv +typedef void (APIENTRYP PFNGLGETDOUBLEVPROC)(GLenum pname, GLdouble *data); +GLAPI PFNGLGETDOUBLEVPROC glad_glGetDoublev; +#define glGetDoublev glad_glGetDoublev +typedef GLenum (APIENTRYP PFNGLGETERRORPROC)(void); +GLAPI PFNGLGETERRORPROC glad_glGetError; +#define glGetError glad_glGetError +typedef void (APIENTRYP PFNGLGETFLOATVPROC)(GLenum pname, GLfloat *data); +GLAPI PFNGLGETFLOATVPROC glad_glGetFloatv; +#define glGetFloatv glad_glGetFloatv +typedef void (APIENTRYP PFNGLGETINTEGERVPROC)(GLenum pname, GLint *data); +GLAPI PFNGLGETINTEGERVPROC glad_glGetIntegerv; +#define glGetIntegerv glad_glGetIntegerv +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC)(GLenum name); +GLAPI PFNGLGETSTRINGPROC glad_glGetString; +#define glGetString glad_glGetString +typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC)(GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI PFNGLGETTEXIMAGEPROC glad_glGetTexImage; +#define glGetTexImage glad_glGetTexImage +typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC)(GLenum target, GLenum pname, GLfloat *params); +GLAPI PFNGLGETTEXPARAMETERFVPROC glad_glGetTexParameterfv; +#define glGetTexParameterfv glad_glGetTexParameterfv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXPARAMETERIVPROC glad_glGetTexParameteriv; +#define glGetTexParameteriv glad_glGetTexParameteriv +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC)(GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI PFNGLGETTEXLEVELPARAMETERFVPROC glad_glGetTexLevelParameterfv; +#define glGetTexLevelParameterfv glad_glGetTexLevelParameterfv +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC)(GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXLEVELPARAMETERIVPROC glad_glGetTexLevelParameteriv; +#define glGetTexLevelParameteriv glad_glGetTexLevelParameteriv +typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC)(GLenum cap); +GLAPI PFNGLISENABLEDPROC glad_glIsEnabled; +#define glIsEnabled glad_glIsEnabled +typedef void (APIENTRYP PFNGLDEPTHRANGEPROC)(GLdouble n, GLdouble f); +GLAPI PFNGLDEPTHRANGEPROC glad_glDepthRange; +#define glDepthRange glad_glDepthRange +typedef void (APIENTRYP PFNGLVIEWPORTPROC)(GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLVIEWPORTPROC glad_glViewport; +#define glViewport glad_glViewport +#endif +#ifndef GL_VERSION_1_1 +#define GL_VERSION_1_1 1 +GLAPI int GLAD_GL_VERSION_1_1; +typedef void (APIENTRYP PFNGLDRAWARRAYSPROC)(GLenum mode, GLint first, GLsizei count); +GLAPI PFNGLDRAWARRAYSPROC glad_glDrawArrays; +#define glDrawArrays glad_glDrawArrays +typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices); +GLAPI PFNGLDRAWELEMENTSPROC glad_glDrawElements; +#define glDrawElements glad_glDrawElements +typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC)(GLfloat factor, GLfloat units); +GLAPI PFNGLPOLYGONOFFSETPROC glad_glPolygonOffset; +#define glPolygonOffset glad_glPolygonOffset +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI PFNGLCOPYTEXIMAGE1DPROC glad_glCopyTexImage1D; +#define glCopyTexImage1D glad_glCopyTexImage1D +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DPROC)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI PFNGLCOPYTEXIMAGE2DPROC glad_glCopyTexImage2D; +#define glCopyTexImage2D glad_glCopyTexImage2D +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI PFNGLCOPYTEXSUBIMAGE1DPROC glad_glCopyTexSubImage1D; +#define glCopyTexSubImage1D glad_glCopyTexSubImage1D +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLCOPYTEXSUBIMAGE2DPROC glad_glCopyTexSubImage2D; +#define glCopyTexSubImage2D glad_glCopyTexSubImage2D +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXSUBIMAGE1DPROC glad_glTexSubImage1D; +#define glTexSubImage1D glad_glTexSubImage1D +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXSUBIMAGE2DPROC glad_glTexSubImage2D; +#define glTexSubImage2D glad_glTexSubImage2D +typedef void (APIENTRYP PFNGLBINDTEXTUREPROC)(GLenum target, GLuint texture); +GLAPI PFNGLBINDTEXTUREPROC glad_glBindTexture; +#define glBindTexture glad_glBindTexture +typedef void (APIENTRYP PFNGLDELETETEXTURESPROC)(GLsizei n, const GLuint *textures); +GLAPI PFNGLDELETETEXTURESPROC glad_glDeleteTextures; +#define glDeleteTextures glad_glDeleteTextures +typedef void (APIENTRYP PFNGLGENTEXTURESPROC)(GLsizei n, GLuint *textures); +GLAPI PFNGLGENTEXTURESPROC glad_glGenTextures; +#define glGenTextures glad_glGenTextures +typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC)(GLuint texture); +GLAPI PFNGLISTEXTUREPROC glad_glIsTexture; +#define glIsTexture glad_glIsTexture +#endif +#ifndef GL_VERSION_1_2 +#define GL_VERSION_1_2 1 +GLAPI int GLAD_GL_VERSION_1_2; +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +GLAPI PFNGLDRAWRANGEELEMENTSPROC glad_glDrawRangeElements; +#define glDrawRangeElements glad_glDrawRangeElements +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXIMAGE3DPROC glad_glTexImage3D; +#define glTexImage3D glad_glTexImage3D +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXSUBIMAGE3DPROC glad_glTexSubImage3D; +#define glTexSubImage3D glad_glTexSubImage3D +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLCOPYTEXSUBIMAGE3DPROC glad_glCopyTexSubImage3D; +#define glCopyTexSubImage3D glad_glCopyTexSubImage3D +#endif +#ifndef GL_VERSION_1_3 +#define GL_VERSION_1_3 1 +GLAPI int GLAD_GL_VERSION_1_3; +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC)(GLenum texture); +GLAPI PFNGLACTIVETEXTUREPROC glad_glActiveTexture; +#define glActiveTexture glad_glActiveTexture +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC)(GLfloat value, GLboolean invert); +GLAPI PFNGLSAMPLECOVERAGEPROC glad_glSampleCoverage; +#define glSampleCoverage glad_glSampleCoverage +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_glCompressedTexImage3D; +#define glCompressedTexImage3D glad_glCompressedTexImage3D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_glCompressedTexImage2D; +#define glCompressedTexImage2D glad_glCompressedTexImage2D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_glCompressedTexImage1D; +#define glCompressedTexImage1D glad_glCompressedTexImage1D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_glCompressedTexSubImage3D; +#define glCompressedTexSubImage3D glad_glCompressedTexSubImage3D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_glCompressedTexSubImage2D; +#define glCompressedTexSubImage2D glad_glCompressedTexSubImage2D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_glCompressedTexSubImage1D; +#define glCompressedTexSubImage1D glad_glCompressedTexSubImage1D +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC)(GLenum target, GLint level, void *img); +GLAPI PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_glGetCompressedTexImage; +#define glGetCompressedTexImage glad_glGetCompressedTexImage +#endif +#ifndef GL_VERSION_1_4 +#define GL_VERSION_1_4 1 +GLAPI int GLAD_GL_VERSION_1_4; +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GLAPI PFNGLBLENDFUNCSEPARATEPROC glad_glBlendFuncSeparate; +#define glBlendFuncSeparate glad_glBlendFuncSeparate +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +GLAPI PFNGLMULTIDRAWARRAYSPROC glad_glMultiDrawArrays; +#define glMultiDrawArrays glad_glMultiDrawArrays +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC)(GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +GLAPI PFNGLMULTIDRAWELEMENTSPROC glad_glMultiDrawElements; +#define glMultiDrawElements glad_glMultiDrawElements +typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLPOINTPARAMETERFPROC glad_glPointParameterf; +#define glPointParameterf glad_glPointParameterf +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC)(GLenum pname, const GLfloat *params); +GLAPI PFNGLPOINTPARAMETERFVPROC glad_glPointParameterfv; +#define glPointParameterfv glad_glPointParameterfv +typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC)(GLenum pname, GLint param); +GLAPI PFNGLPOINTPARAMETERIPROC glad_glPointParameteri; +#define glPointParameteri glad_glPointParameteri +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC)(GLenum pname, const GLint *params); +GLAPI PFNGLPOINTPARAMETERIVPROC glad_glPointParameteriv; +#define glPointParameteriv glad_glPointParameteriv +typedef void (APIENTRYP PFNGLBLENDCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI PFNGLBLENDCOLORPROC glad_glBlendColor; +#define glBlendColor glad_glBlendColor +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC)(GLenum mode); +GLAPI PFNGLBLENDEQUATIONPROC glad_glBlendEquation; +#define glBlendEquation glad_glBlendEquation +#endif +#ifndef GL_VERSION_1_5 +#define GL_VERSION_1_5 1 +GLAPI int GLAD_GL_VERSION_1_5; +typedef void (APIENTRYP PFNGLGENQUERIESPROC)(GLsizei n, GLuint *ids); +GLAPI PFNGLGENQUERIESPROC glad_glGenQueries; +#define glGenQueries glad_glGenQueries +typedef void (APIENTRYP PFNGLDELETEQUERIESPROC)(GLsizei n, const GLuint *ids); +GLAPI PFNGLDELETEQUERIESPROC glad_glDeleteQueries; +#define glDeleteQueries glad_glDeleteQueries +typedef GLboolean (APIENTRYP PFNGLISQUERYPROC)(GLuint id); +GLAPI PFNGLISQUERYPROC glad_glIsQuery; +#define glIsQuery glad_glIsQuery +typedef void (APIENTRYP PFNGLBEGINQUERYPROC)(GLenum target, GLuint id); +GLAPI PFNGLBEGINQUERYPROC glad_glBeginQuery; +#define glBeginQuery glad_glBeginQuery +typedef void (APIENTRYP PFNGLENDQUERYPROC)(GLenum target); +GLAPI PFNGLENDQUERYPROC glad_glEndQuery; +#define glEndQuery glad_glEndQuery +typedef void (APIENTRYP PFNGLGETQUERYIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETQUERYIVPROC glad_glGetQueryiv; +#define glGetQueryiv glad_glGetQueryiv +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC)(GLuint id, GLenum pname, GLint *params); +GLAPI PFNGLGETQUERYOBJECTIVPROC glad_glGetQueryObjectiv; +#define glGetQueryObjectiv glad_glGetQueryObjectiv +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC)(GLuint id, GLenum pname, GLuint *params); +GLAPI PFNGLGETQUERYOBJECTUIVPROC glad_glGetQueryObjectuiv; +#define glGetQueryObjectuiv glad_glGetQueryObjectuiv +typedef void (APIENTRYP PFNGLBINDBUFFERPROC)(GLenum target, GLuint buffer); +GLAPI PFNGLBINDBUFFERPROC glad_glBindBuffer; +#define glBindBuffer glad_glBindBuffer +typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC)(GLsizei n, const GLuint *buffers); +GLAPI PFNGLDELETEBUFFERSPROC glad_glDeleteBuffers; +#define glDeleteBuffers glad_glDeleteBuffers +typedef void (APIENTRYP PFNGLGENBUFFERSPROC)(GLsizei n, GLuint *buffers); +GLAPI PFNGLGENBUFFERSPROC glad_glGenBuffers; +#define glGenBuffers glad_glGenBuffers +typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC)(GLuint buffer); +GLAPI PFNGLISBUFFERPROC glad_glIsBuffer; +#define glIsBuffer glad_glIsBuffer +typedef void (APIENTRYP PFNGLBUFFERDATAPROC)(GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GLAPI PFNGLBUFFERDATAPROC glad_glBufferData; +#define glBufferData glad_glBufferData +typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC)(GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI PFNGLBUFFERSUBDATAPROC glad_glBufferSubData; +#define glBufferSubData glad_glBufferSubData +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC)(GLenum target, GLintptr offset, GLsizeiptr size, void *data); +GLAPI PFNGLGETBUFFERSUBDATAPROC glad_glGetBufferSubData; +#define glGetBufferSubData glad_glGetBufferSubData +typedef void * (APIENTRYP PFNGLMAPBUFFERPROC)(GLenum target, GLenum access); +GLAPI PFNGLMAPBUFFERPROC glad_glMapBuffer; +#define glMapBuffer glad_glMapBuffer +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC)(GLenum target); +GLAPI PFNGLUNMAPBUFFERPROC glad_glUnmapBuffer; +#define glUnmapBuffer glad_glUnmapBuffer +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETBUFFERPARAMETERIVPROC glad_glGetBufferParameteriv; +#define glGetBufferParameteriv glad_glGetBufferParameteriv +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC)(GLenum target, GLenum pname, void **params); +GLAPI PFNGLGETBUFFERPOINTERVPROC glad_glGetBufferPointerv; +#define glGetBufferPointerv glad_glGetBufferPointerv +#endif +#ifndef GL_VERSION_2_0 +#define GL_VERSION_2_0 1 +GLAPI int GLAD_GL_VERSION_2_0; +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC)(GLenum modeRGB, GLenum modeAlpha); +GLAPI PFNGLBLENDEQUATIONSEPARATEPROC glad_glBlendEquationSeparate; +#define glBlendEquationSeparate glad_glBlendEquationSeparate +typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC)(GLsizei n, const GLenum *bufs); +GLAPI PFNGLDRAWBUFFERSPROC glad_glDrawBuffers; +#define glDrawBuffers glad_glDrawBuffers +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC)(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI PFNGLSTENCILOPSEPARATEPROC glad_glStencilOpSeparate; +#define glStencilOpSeparate glad_glStencilOpSeparate +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC)(GLenum face, GLenum func, GLint ref, GLuint mask); +GLAPI PFNGLSTENCILFUNCSEPARATEPROC glad_glStencilFuncSeparate; +#define glStencilFuncSeparate glad_glStencilFuncSeparate +typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC)(GLenum face, GLuint mask); +GLAPI PFNGLSTENCILMASKSEPARATEPROC glad_glStencilMaskSeparate; +#define glStencilMaskSeparate glad_glStencilMaskSeparate +typedef void (APIENTRYP PFNGLATTACHSHADERPROC)(GLuint program, GLuint shader); +GLAPI PFNGLATTACHSHADERPROC glad_glAttachShader; +#define glAttachShader glad_glAttachShader +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC)(GLuint program, GLuint index, const GLchar *name); +GLAPI PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation; +#define glBindAttribLocation glad_glBindAttribLocation +typedef void (APIENTRYP PFNGLCOMPILESHADERPROC)(GLuint shader); +GLAPI PFNGLCOMPILESHADERPROC glad_glCompileShader; +#define glCompileShader glad_glCompileShader +typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC)(void); +GLAPI PFNGLCREATEPROGRAMPROC glad_glCreateProgram; +#define glCreateProgram glad_glCreateProgram +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC)(GLenum type); +GLAPI PFNGLCREATESHADERPROC glad_glCreateShader; +#define glCreateShader glad_glCreateShader +typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC)(GLuint program); +GLAPI PFNGLDELETEPROGRAMPROC glad_glDeleteProgram; +#define glDeleteProgram glad_glDeleteProgram +typedef void (APIENTRYP PFNGLDELETESHADERPROC)(GLuint shader); +GLAPI PFNGLDELETESHADERPROC glad_glDeleteShader; +#define glDeleteShader glad_glDeleteShader +typedef void (APIENTRYP PFNGLDETACHSHADERPROC)(GLuint program, GLuint shader); +GLAPI PFNGLDETACHSHADERPROC glad_glDetachShader; +#define glDetachShader glad_glDetachShader +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC)(GLuint index); +GLAPI PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_glDisableVertexAttribArray; +#define glDisableVertexAttribArray glad_glDisableVertexAttribArray +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC)(GLuint index); +GLAPI PFNGLENABLEVERTEXATTRIBARRAYPROC glad_glEnableVertexAttribArray; +#define glEnableVertexAttribArray glad_glEnableVertexAttribArray +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETACTIVEATTRIBPROC glad_glGetActiveAttrib; +#define glGetActiveAttrib glad_glGetActiveAttrib +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETACTIVEUNIFORMPROC glad_glGetActiveUniform; +#define glGetActiveUniform glad_glGetActiveUniform +typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC)(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GLAPI PFNGLGETATTACHEDSHADERSPROC glad_glGetAttachedShaders; +#define glGetAttachedShaders glad_glGetAttachedShaders +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETATTRIBLOCATIONPROC glad_glGetAttribLocation; +#define glGetAttribLocation glad_glGetAttribLocation +typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC)(GLuint program, GLenum pname, GLint *params); +GLAPI PFNGLGETPROGRAMIVPROC glad_glGetProgramiv; +#define glGetProgramiv glad_glGetProgramiv +typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC)(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI PFNGLGETPROGRAMINFOLOGPROC glad_glGetProgramInfoLog; +#define glGetProgramInfoLog glad_glGetProgramInfoLog +typedef void (APIENTRYP PFNGLGETSHADERIVPROC)(GLuint shader, GLenum pname, GLint *params); +GLAPI PFNGLGETSHADERIVPROC glad_glGetShaderiv; +#define glGetShaderiv glad_glGetShaderiv +typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC)(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI PFNGLGETSHADERINFOLOGPROC glad_glGetShaderInfoLog; +#define glGetShaderInfoLog glad_glGetShaderInfoLog +typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC)(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GLAPI PFNGLGETSHADERSOURCEPROC glad_glGetShaderSource; +#define glGetShaderSource glad_glGetShaderSource +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETUNIFORMLOCATIONPROC glad_glGetUniformLocation; +#define glGetUniformLocation glad_glGetUniformLocation +typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC)(GLuint program, GLint location, GLfloat *params); +GLAPI PFNGLGETUNIFORMFVPROC glad_glGetUniformfv; +#define glGetUniformfv glad_glGetUniformfv +typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC)(GLuint program, GLint location, GLint *params); +GLAPI PFNGLGETUNIFORMIVPROC glad_glGetUniformiv; +#define glGetUniformiv glad_glGetUniformiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC)(GLuint index, GLenum pname, GLdouble *params); +GLAPI PFNGLGETVERTEXATTRIBDVPROC glad_glGetVertexAttribdv; +#define glGetVertexAttribdv glad_glGetVertexAttribdv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC)(GLuint index, GLenum pname, GLfloat *params); +GLAPI PFNGLGETVERTEXATTRIBFVPROC glad_glGetVertexAttribfv; +#define glGetVertexAttribfv glad_glGetVertexAttribfv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC)(GLuint index, GLenum pname, GLint *params); +GLAPI PFNGLGETVERTEXATTRIBIVPROC glad_glGetVertexAttribiv; +#define glGetVertexAttribiv glad_glGetVertexAttribiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC)(GLuint index, GLenum pname, void **pointer); +GLAPI PFNGLGETVERTEXATTRIBPOINTERVPROC glad_glGetVertexAttribPointerv; +#define glGetVertexAttribPointerv glad_glGetVertexAttribPointerv +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC)(GLuint program); +GLAPI PFNGLISPROGRAMPROC glad_glIsProgram; +#define glIsProgram glad_glIsProgram +typedef GLboolean (APIENTRYP PFNGLISSHADERPROC)(GLuint shader); +GLAPI PFNGLISSHADERPROC glad_glIsShader; +#define glIsShader glad_glIsShader +typedef void (APIENTRYP PFNGLLINKPROGRAMPROC)(GLuint program); +GLAPI PFNGLLINKPROGRAMPROC glad_glLinkProgram; +#define glLinkProgram glad_glLinkProgram +typedef void (APIENTRYP PFNGLSHADERSOURCEPROC)(GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GLAPI PFNGLSHADERSOURCEPROC glad_glShaderSource; +#define glShaderSource glad_glShaderSource +typedef void (APIENTRYP PFNGLUSEPROGRAMPROC)(GLuint program); +GLAPI PFNGLUSEPROGRAMPROC glad_glUseProgram; +#define glUseProgram glad_glUseProgram +typedef void (APIENTRYP PFNGLUNIFORM1FPROC)(GLint location, GLfloat v0); +GLAPI PFNGLUNIFORM1FPROC glad_glUniform1f; +#define glUniform1f glad_glUniform1f +typedef void (APIENTRYP PFNGLUNIFORM2FPROC)(GLint location, GLfloat v0, GLfloat v1); +GLAPI PFNGLUNIFORM2FPROC glad_glUniform2f; +#define glUniform2f glad_glUniform2f +typedef void (APIENTRYP PFNGLUNIFORM3FPROC)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI PFNGLUNIFORM3FPROC glad_glUniform3f; +#define glUniform3f glad_glUniform3f +typedef void (APIENTRYP PFNGLUNIFORM4FPROC)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI PFNGLUNIFORM4FPROC glad_glUniform4f; +#define glUniform4f glad_glUniform4f +typedef void (APIENTRYP PFNGLUNIFORM1IPROC)(GLint location, GLint v0); +GLAPI PFNGLUNIFORM1IPROC glad_glUniform1i; +#define glUniform1i glad_glUniform1i +typedef void (APIENTRYP PFNGLUNIFORM2IPROC)(GLint location, GLint v0, GLint v1); +GLAPI PFNGLUNIFORM2IPROC glad_glUniform2i; +#define glUniform2i glad_glUniform2i +typedef void (APIENTRYP PFNGLUNIFORM3IPROC)(GLint location, GLint v0, GLint v1, GLint v2); +GLAPI PFNGLUNIFORM3IPROC glad_glUniform3i; +#define glUniform3i glad_glUniform3i +typedef void (APIENTRYP PFNGLUNIFORM4IPROC)(GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI PFNGLUNIFORM4IPROC glad_glUniform4i; +#define glUniform4i glad_glUniform4i +typedef void (APIENTRYP PFNGLUNIFORM1FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM1FVPROC glad_glUniform1fv; +#define glUniform1fv glad_glUniform1fv +typedef void (APIENTRYP PFNGLUNIFORM2FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM2FVPROC glad_glUniform2fv; +#define glUniform2fv glad_glUniform2fv +typedef void (APIENTRYP PFNGLUNIFORM3FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM3FVPROC glad_glUniform3fv; +#define glUniform3fv glad_glUniform3fv +typedef void (APIENTRYP PFNGLUNIFORM4FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM4FVPROC glad_glUniform4fv; +#define glUniform4fv glad_glUniform4fv +typedef void (APIENTRYP PFNGLUNIFORM1IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM1IVPROC glad_glUniform1iv; +#define glUniform1iv glad_glUniform1iv +typedef void (APIENTRYP PFNGLUNIFORM2IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM2IVPROC glad_glUniform2iv; +#define glUniform2iv glad_glUniform2iv +typedef void (APIENTRYP PFNGLUNIFORM3IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM3IVPROC glad_glUniform3iv; +#define glUniform3iv glad_glUniform3iv +typedef void (APIENTRYP PFNGLUNIFORM4IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM4IVPROC glad_glUniform4iv; +#define glUniform4iv glad_glUniform4iv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX2FVPROC glad_glUniformMatrix2fv; +#define glUniformMatrix2fv glad_glUniformMatrix2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3FVPROC glad_glUniformMatrix3fv; +#define glUniformMatrix3fv glad_glUniformMatrix3fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4FVPROC glad_glUniformMatrix4fv; +#define glUniformMatrix4fv glad_glUniformMatrix4fv +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC)(GLuint program); +GLAPI PFNGLVALIDATEPROGRAMPROC glad_glValidateProgram; +#define glValidateProgram glad_glValidateProgram +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC)(GLuint index, GLdouble x); +GLAPI PFNGLVERTEXATTRIB1DPROC glad_glVertexAttrib1d; +#define glVertexAttrib1d glad_glVertexAttrib1d +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB1DVPROC glad_glVertexAttrib1dv; +#define glVertexAttrib1dv glad_glVertexAttrib1dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC)(GLuint index, GLfloat x); +GLAPI PFNGLVERTEXATTRIB1FPROC glad_glVertexAttrib1f; +#define glVertexAttrib1f glad_glVertexAttrib1f +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB1FVPROC glad_glVertexAttrib1fv; +#define glVertexAttrib1fv glad_glVertexAttrib1fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC)(GLuint index, GLshort x); +GLAPI PFNGLVERTEXATTRIB1SPROC glad_glVertexAttrib1s; +#define glVertexAttrib1s glad_glVertexAttrib1s +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB1SVPROC glad_glVertexAttrib1sv; +#define glVertexAttrib1sv glad_glVertexAttrib1sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC)(GLuint index, GLdouble x, GLdouble y); +GLAPI PFNGLVERTEXATTRIB2DPROC glad_glVertexAttrib2d; +#define glVertexAttrib2d glad_glVertexAttrib2d +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB2DVPROC glad_glVertexAttrib2dv; +#define glVertexAttrib2dv glad_glVertexAttrib2dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC)(GLuint index, GLfloat x, GLfloat y); +GLAPI PFNGLVERTEXATTRIB2FPROC glad_glVertexAttrib2f; +#define glVertexAttrib2f glad_glVertexAttrib2f +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB2FVPROC glad_glVertexAttrib2fv; +#define glVertexAttrib2fv glad_glVertexAttrib2fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC)(GLuint index, GLshort x, GLshort y); +GLAPI PFNGLVERTEXATTRIB2SPROC glad_glVertexAttrib2s; +#define glVertexAttrib2s glad_glVertexAttrib2s +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB2SVPROC glad_glVertexAttrib2sv; +#define glVertexAttrib2sv glad_glVertexAttrib2sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLVERTEXATTRIB3DPROC glad_glVertexAttrib3d; +#define glVertexAttrib3d glad_glVertexAttrib3d +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB3DVPROC glad_glVertexAttrib3dv; +#define glVertexAttrib3dv glad_glVertexAttrib3dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLVERTEXATTRIB3FPROC glad_glVertexAttrib3f; +#define glVertexAttrib3f glad_glVertexAttrib3f +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB3FVPROC glad_glVertexAttrib3fv; +#define glVertexAttrib3fv glad_glVertexAttrib3fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC)(GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI PFNGLVERTEXATTRIB3SPROC glad_glVertexAttrib3s; +#define glVertexAttrib3s glad_glVertexAttrib3s +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB3SVPROC glad_glVertexAttrib3sv; +#define glVertexAttrib3sv glad_glVertexAttrib3sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIB4NBVPROC glad_glVertexAttrib4Nbv; +#define glVertexAttrib4Nbv glad_glVertexAttrib4Nbv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIB4NIVPROC glad_glVertexAttrib4Niv; +#define glVertexAttrib4Niv glad_glVertexAttrib4Niv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB4NSVPROC glad_glVertexAttrib4Nsv; +#define glVertexAttrib4Nsv glad_glVertexAttrib4Nsv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI PFNGLVERTEXATTRIB4NUBPROC glad_glVertexAttrib4Nub; +#define glVertexAttrib4Nub glad_glVertexAttrib4Nub +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIB4NUBVPROC glad_glVertexAttrib4Nubv; +#define glVertexAttrib4Nubv glad_glVertexAttrib4Nubv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIB4NUIVPROC glad_glVertexAttrib4Nuiv; +#define glVertexAttrib4Nuiv glad_glVertexAttrib4Nuiv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIB4NUSVPROC glad_glVertexAttrib4Nusv; +#define glVertexAttrib4Nusv glad_glVertexAttrib4Nusv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIB4BVPROC glad_glVertexAttrib4bv; +#define glVertexAttrib4bv glad_glVertexAttrib4bv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI PFNGLVERTEXATTRIB4DPROC glad_glVertexAttrib4d; +#define glVertexAttrib4d glad_glVertexAttrib4d +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB4DVPROC glad_glVertexAttrib4dv; +#define glVertexAttrib4dv glad_glVertexAttrib4dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI PFNGLVERTEXATTRIB4FPROC glad_glVertexAttrib4f; +#define glVertexAttrib4f glad_glVertexAttrib4f +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB4FVPROC glad_glVertexAttrib4fv; +#define glVertexAttrib4fv glad_glVertexAttrib4fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIB4IVPROC glad_glVertexAttrib4iv; +#define glVertexAttrib4iv glad_glVertexAttrib4iv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI PFNGLVERTEXATTRIB4SPROC glad_glVertexAttrib4s; +#define glVertexAttrib4s glad_glVertexAttrib4s +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB4SVPROC glad_glVertexAttrib4sv; +#define glVertexAttrib4sv glad_glVertexAttrib4sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIB4UBVPROC glad_glVertexAttrib4ubv; +#define glVertexAttrib4ubv glad_glVertexAttrib4ubv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIB4UIVPROC glad_glVertexAttrib4uiv; +#define glVertexAttrib4uiv glad_glVertexAttrib4uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIB4USVPROC glad_glVertexAttrib4usv; +#define glVertexAttrib4usv glad_glVertexAttrib4usv +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC)(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GLAPI PFNGLVERTEXATTRIBPOINTERPROC glad_glVertexAttribPointer; +#define glVertexAttribPointer glad_glVertexAttribPointer +#endif +#ifndef GL_VERSION_2_1 +#define GL_VERSION_2_1 1 +GLAPI int GLAD_GL_VERSION_2_1; +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX2X3FVPROC glad_glUniformMatrix2x3fv; +#define glUniformMatrix2x3fv glad_glUniformMatrix2x3fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3X2FVPROC glad_glUniformMatrix3x2fv; +#define glUniformMatrix3x2fv glad_glUniformMatrix3x2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX2X4FVPROC glad_glUniformMatrix2x4fv; +#define glUniformMatrix2x4fv glad_glUniformMatrix2x4fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4X2FVPROC glad_glUniformMatrix4x2fv; +#define glUniformMatrix4x2fv glad_glUniformMatrix4x2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3X4FVPROC glad_glUniformMatrix3x4fv; +#define glUniformMatrix3x4fv glad_glUniformMatrix3x4fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4X3FVPROC glad_glUniformMatrix4x3fv; +#define glUniformMatrix4x3fv glad_glUniformMatrix4x3fv +#endif +#ifndef GL_VERSION_3_0 +#define GL_VERSION_3_0 1 +GLAPI int GLAD_GL_VERSION_3_0; +typedef void (APIENTRYP PFNGLCOLORMASKIPROC)(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GLAPI PFNGLCOLORMASKIPROC glad_glColorMaski; +#define glColorMaski glad_glColorMaski +typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC)(GLenum target, GLuint index, GLboolean *data); +GLAPI PFNGLGETBOOLEANI_VPROC glad_glGetBooleani_v; +#define glGetBooleani_v glad_glGetBooleani_v +typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC)(GLenum target, GLuint index, GLint *data); +GLAPI PFNGLGETINTEGERI_VPROC glad_glGetIntegeri_v; +#define glGetIntegeri_v glad_glGetIntegeri_v +typedef void (APIENTRYP PFNGLENABLEIPROC)(GLenum target, GLuint index); +GLAPI PFNGLENABLEIPROC glad_glEnablei; +#define glEnablei glad_glEnablei +typedef void (APIENTRYP PFNGLDISABLEIPROC)(GLenum target, GLuint index); +GLAPI PFNGLDISABLEIPROC glad_glDisablei; +#define glDisablei glad_glDisablei +typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC)(GLenum target, GLuint index); +GLAPI PFNGLISENABLEDIPROC glad_glIsEnabledi; +#define glIsEnabledi glad_glIsEnabledi +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC)(GLenum primitiveMode); +GLAPI PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback; +#define glBeginTransformFeedback glad_glBeginTransformFeedback +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC)(void); +GLAPI PFNGLENDTRANSFORMFEEDBACKPROC glad_glEndTransformFeedback; +#define glEndTransformFeedback glad_glEndTransformFeedback +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange; +#define glBindBufferRange glad_glBindBufferRange +typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC)(GLenum target, GLuint index, GLuint buffer); +GLAPI PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase; +#define glBindBufferBase glad_glBindBufferBase +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC)(GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_glTransformFeedbackVaryings; +#define glTransformFeedbackVaryings glad_glTransformFeedbackVaryings +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_glGetTransformFeedbackVarying; +#define glGetTransformFeedbackVarying glad_glGetTransformFeedbackVarying +typedef void (APIENTRYP PFNGLCLAMPCOLORPROC)(GLenum target, GLenum clamp); +GLAPI PFNGLCLAMPCOLORPROC glad_glClampColor; +#define glClampColor glad_glClampColor +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC)(GLuint id, GLenum mode); +GLAPI PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender; +#define glBeginConditionalRender glad_glBeginConditionalRender +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC)(void); +GLAPI PFNGLENDCONDITIONALRENDERPROC glad_glEndConditionalRender; +#define glEndConditionalRender glad_glEndConditionalRender +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC)(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLVERTEXATTRIBIPOINTERPROC glad_glVertexAttribIPointer; +#define glVertexAttribIPointer glad_glVertexAttribIPointer +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC)(GLuint index, GLenum pname, GLint *params); +GLAPI PFNGLGETVERTEXATTRIBIIVPROC glad_glGetVertexAttribIiv; +#define glGetVertexAttribIiv glad_glGetVertexAttribIiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC)(GLuint index, GLenum pname, GLuint *params); +GLAPI PFNGLGETVERTEXATTRIBIUIVPROC glad_glGetVertexAttribIuiv; +#define glGetVertexAttribIuiv glad_glGetVertexAttribIuiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC)(GLuint index, GLint x); +GLAPI PFNGLVERTEXATTRIBI1IPROC glad_glVertexAttribI1i; +#define glVertexAttribI1i glad_glVertexAttribI1i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC)(GLuint index, GLint x, GLint y); +GLAPI PFNGLVERTEXATTRIBI2IPROC glad_glVertexAttribI2i; +#define glVertexAttribI2i glad_glVertexAttribI2i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC)(GLuint index, GLint x, GLint y, GLint z); +GLAPI PFNGLVERTEXATTRIBI3IPROC glad_glVertexAttribI3i; +#define glVertexAttribI3i glad_glVertexAttribI3i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC)(GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI PFNGLVERTEXATTRIBI4IPROC glad_glVertexAttribI4i; +#define glVertexAttribI4i glad_glVertexAttribI4i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC)(GLuint index, GLuint x); +GLAPI PFNGLVERTEXATTRIBI1UIPROC glad_glVertexAttribI1ui; +#define glVertexAttribI1ui glad_glVertexAttribI1ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC)(GLuint index, GLuint x, GLuint y); +GLAPI PFNGLVERTEXATTRIBI2UIPROC glad_glVertexAttribI2ui; +#define glVertexAttribI2ui glad_glVertexAttribI2ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC)(GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI PFNGLVERTEXATTRIBI3UIPROC glad_glVertexAttribI3ui; +#define glVertexAttribI3ui glad_glVertexAttribI3ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI PFNGLVERTEXATTRIBI4UIPROC glad_glVertexAttribI4ui; +#define glVertexAttribI4ui glad_glVertexAttribI4ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI1IVPROC glad_glVertexAttribI1iv; +#define glVertexAttribI1iv glad_glVertexAttribI1iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI2IVPROC glad_glVertexAttribI2iv; +#define glVertexAttribI2iv glad_glVertexAttribI2iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI3IVPROC glad_glVertexAttribI3iv; +#define glVertexAttribI3iv glad_glVertexAttribI3iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI4IVPROC glad_glVertexAttribI4iv; +#define glVertexAttribI4iv glad_glVertexAttribI4iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI1UIVPROC glad_glVertexAttribI1uiv; +#define glVertexAttribI1uiv glad_glVertexAttribI1uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI2UIVPROC glad_glVertexAttribI2uiv; +#define glVertexAttribI2uiv glad_glVertexAttribI2uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI3UIVPROC glad_glVertexAttribI3uiv; +#define glVertexAttribI3uiv glad_glVertexAttribI3uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI4UIVPROC glad_glVertexAttribI4uiv; +#define glVertexAttribI4uiv glad_glVertexAttribI4uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIBI4BVPROC glad_glVertexAttribI4bv; +#define glVertexAttribI4bv glad_glVertexAttribI4bv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIBI4SVPROC glad_glVertexAttribI4sv; +#define glVertexAttribI4sv glad_glVertexAttribI4sv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIBI4UBVPROC glad_glVertexAttribI4ubv; +#define glVertexAttribI4ubv glad_glVertexAttribI4ubv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIBI4USVPROC glad_glVertexAttribI4usv; +#define glVertexAttribI4usv glad_glVertexAttribI4usv +typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC)(GLuint program, GLint location, GLuint *params); +GLAPI PFNGLGETUNIFORMUIVPROC glad_glGetUniformuiv; +#define glGetUniformuiv glad_glGetUniformuiv +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC)(GLuint program, GLuint color, const GLchar *name); +GLAPI PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation; +#define glBindFragDataLocation glad_glBindFragDataLocation +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETFRAGDATALOCATIONPROC glad_glGetFragDataLocation; +#define glGetFragDataLocation glad_glGetFragDataLocation +typedef void (APIENTRYP PFNGLUNIFORM1UIPROC)(GLint location, GLuint v0); +GLAPI PFNGLUNIFORM1UIPROC glad_glUniform1ui; +#define glUniform1ui glad_glUniform1ui +typedef void (APIENTRYP PFNGLUNIFORM2UIPROC)(GLint location, GLuint v0, GLuint v1); +GLAPI PFNGLUNIFORM2UIPROC glad_glUniform2ui; +#define glUniform2ui glad_glUniform2ui +typedef void (APIENTRYP PFNGLUNIFORM3UIPROC)(GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI PFNGLUNIFORM3UIPROC glad_glUniform3ui; +#define glUniform3ui glad_glUniform3ui +typedef void (APIENTRYP PFNGLUNIFORM4UIPROC)(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI PFNGLUNIFORM4UIPROC glad_glUniform4ui; +#define glUniform4ui glad_glUniform4ui +typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM1UIVPROC glad_glUniform1uiv; +#define glUniform1uiv glad_glUniform1uiv +typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM2UIVPROC glad_glUniform2uiv; +#define glUniform2uiv glad_glUniform2uiv +typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM3UIVPROC glad_glUniform3uiv; +#define glUniform3uiv glad_glUniform3uiv +typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM4UIVPROC glad_glUniform4uiv; +#define glUniform4uiv glad_glUniform4uiv +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC)(GLenum target, GLenum pname, const GLint *params); +GLAPI PFNGLTEXPARAMETERIIVPROC glad_glTexParameterIiv; +#define glTexParameterIiv glad_glTexParameterIiv +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC)(GLenum target, GLenum pname, const GLuint *params); +GLAPI PFNGLTEXPARAMETERIUIVPROC glad_glTexParameterIuiv; +#define glTexParameterIuiv glad_glTexParameterIuiv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXPARAMETERIIVPROC glad_glGetTexParameterIiv; +#define glGetTexParameterIiv glad_glGetTexParameterIiv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC)(GLenum target, GLenum pname, GLuint *params); +GLAPI PFNGLGETTEXPARAMETERIUIVPROC glad_glGetTexParameterIuiv; +#define glGetTexParameterIuiv glad_glGetTexParameterIuiv +typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC)(GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI PFNGLCLEARBUFFERIVPROC glad_glClearBufferiv; +#define glClearBufferiv glad_glClearBufferiv +typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC)(GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI PFNGLCLEARBUFFERUIVPROC glad_glClearBufferuiv; +#define glClearBufferuiv glad_glClearBufferuiv +typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC)(GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI PFNGLCLEARBUFFERFVPROC glad_glClearBufferfv; +#define glClearBufferfv glad_glClearBufferfv +typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC)(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI PFNGLCLEARBUFFERFIPROC glad_glClearBufferfi; +#define glClearBufferfi glad_glClearBufferfi +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGIPROC)(GLenum name, GLuint index); +GLAPI PFNGLGETSTRINGIPROC glad_glGetStringi; +#define glGetStringi glad_glGetStringi +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC)(GLuint renderbuffer); +GLAPI PFNGLISRENDERBUFFERPROC glad_glIsRenderbuffer; +#define glIsRenderbuffer glad_glIsRenderbuffer +typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC)(GLenum target, GLuint renderbuffer); +GLAPI PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer; +#define glBindRenderbuffer glad_glBindRenderbuffer +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC)(GLsizei n, const GLuint *renderbuffers); +GLAPI PFNGLDELETERENDERBUFFERSPROC glad_glDeleteRenderbuffers; +#define glDeleteRenderbuffers glad_glDeleteRenderbuffers +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC)(GLsizei n, GLuint *renderbuffers); +GLAPI PFNGLGENRENDERBUFFERSPROC glad_glGenRenderbuffers; +#define glGenRenderbuffers glad_glGenRenderbuffers +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI PFNGLRENDERBUFFERSTORAGEPROC glad_glRenderbufferStorage; +#define glRenderbufferStorage glad_glRenderbufferStorage +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_glGetRenderbufferParameteriv; +#define glGetRenderbufferParameteriv glad_glGetRenderbufferParameteriv +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC)(GLuint framebuffer); +GLAPI PFNGLISFRAMEBUFFERPROC glad_glIsFramebuffer; +#define glIsFramebuffer glad_glIsFramebuffer +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC)(GLenum target, GLuint framebuffer); +GLAPI PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer; +#define glBindFramebuffer glad_glBindFramebuffer +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC)(GLsizei n, const GLuint *framebuffers); +GLAPI PFNGLDELETEFRAMEBUFFERSPROC glad_glDeleteFramebuffers; +#define glDeleteFramebuffers glad_glDeleteFramebuffers +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC)(GLsizei n, GLuint *framebuffers); +GLAPI PFNGLGENFRAMEBUFFERSPROC glad_glGenFramebuffers; +#define glGenFramebuffers glad_glGenFramebuffers +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC)(GLenum target); +GLAPI PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_glCheckFramebufferStatus; +#define glCheckFramebufferStatus glad_glCheckFramebufferStatus +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTURE1DPROC glad_glFramebufferTexture1D; +#define glFramebufferTexture1D glad_glFramebufferTexture1D +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTURE2DPROC glad_glFramebufferTexture2D; +#define glFramebufferTexture2D glad_glFramebufferTexture2D +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI PFNGLFRAMEBUFFERTEXTURE3DPROC glad_glFramebufferTexture3D; +#define glFramebufferTexture3D glad_glFramebufferTexture3D +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_glFramebufferRenderbuffer; +#define glFramebufferRenderbuffer glad_glFramebufferRenderbuffer +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)(GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetFramebufferAttachmentParameteriv; +#define glGetFramebufferAttachmentParameteriv glad_glGetFramebufferAttachmentParameteriv +typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC)(GLenum target); +GLAPI PFNGLGENERATEMIPMAPPROC glad_glGenerateMipmap; +#define glGenerateMipmap glad_glGenerateMipmap +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI PFNGLBLITFRAMEBUFFERPROC glad_glBlitFramebuffer; +#define glBlitFramebuffer glad_glBlitFramebuffer +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glRenderbufferStorageMultisample; +#define glRenderbufferStorageMultisample glad_glRenderbufferStorageMultisample +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_glFramebufferTextureLayer; +#define glFramebufferTextureLayer glad_glFramebufferTextureLayer +typedef void * (APIENTRYP PFNGLMAPBUFFERRANGEPROC)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI PFNGLMAPBUFFERRANGEPROC glad_glMapBufferRange; +#define glMapBufferRange glad_glMapBufferRange +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC)(GLenum target, GLintptr offset, GLsizeiptr length); +GLAPI PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_glFlushMappedBufferRange; +#define glFlushMappedBufferRange glad_glFlushMappedBufferRange +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC)(GLuint array); +GLAPI PFNGLBINDVERTEXARRAYPROC glad_glBindVertexArray; +#define glBindVertexArray glad_glBindVertexArray +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC)(GLsizei n, const GLuint *arrays); +GLAPI PFNGLDELETEVERTEXARRAYSPROC glad_glDeleteVertexArrays; +#define glDeleteVertexArrays glad_glDeleteVertexArrays +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC)(GLsizei n, GLuint *arrays); +GLAPI PFNGLGENVERTEXARRAYSPROC glad_glGenVertexArrays; +#define glGenVertexArrays glad_glGenVertexArrays +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC)(GLuint array); +GLAPI PFNGLISVERTEXARRAYPROC glad_glIsVertexArray; +#define glIsVertexArray glad_glIsVertexArray +#endif +#ifndef GL_VERSION_3_1 +#define GL_VERSION_3_1 1 +GLAPI int GLAD_GL_VERSION_3_1; +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC)(GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +GLAPI PFNGLDRAWARRAYSINSTANCEDPROC glad_glDrawArraysInstanced; +#define glDrawArraysInstanced glad_glDrawArraysInstanced +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +GLAPI PFNGLDRAWELEMENTSINSTANCEDPROC glad_glDrawElementsInstanced; +#define glDrawElementsInstanced glad_glDrawElementsInstanced +typedef void (APIENTRYP PFNGLTEXBUFFERPROC)(GLenum target, GLenum internalformat, GLuint buffer); +GLAPI PFNGLTEXBUFFERPROC glad_glTexBuffer; +#define glTexBuffer glad_glTexBuffer +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC)(GLuint index); +GLAPI PFNGLPRIMITIVERESTARTINDEXPROC glad_glPrimitiveRestartIndex; +#define glPrimitiveRestartIndex glad_glPrimitiveRestartIndex +typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI PFNGLCOPYBUFFERSUBDATAPROC glad_glCopyBufferSubData; +#define glCopyBufferSubData glad_glCopyBufferSubData +typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC)(GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +GLAPI PFNGLGETUNIFORMINDICESPROC glad_glGetUniformIndices; +#define glGetUniformIndices glad_glGetUniformIndices +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC)(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +GLAPI PFNGLGETACTIVEUNIFORMSIVPROC glad_glGetActiveUniformsiv; +#define glGetActiveUniformsiv glad_glGetActiveUniformsiv +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC)(GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +GLAPI PFNGLGETACTIVEUNIFORMNAMEPROC glad_glGetActiveUniformName; +#define glGetActiveUniformName glad_glGetActiveUniformName +typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC)(GLuint program, const GLchar *uniformBlockName); +GLAPI PFNGLGETUNIFORMBLOCKINDEXPROC glad_glGetUniformBlockIndex; +#define glGetUniformBlockIndex glad_glGetUniformBlockIndex +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC)(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +GLAPI PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_glGetActiveUniformBlockiv; +#define glGetActiveUniformBlockiv glad_glGetActiveUniformBlockiv +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +GLAPI PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_glGetActiveUniformBlockName; +#define glGetActiveUniformBlockName glad_glGetActiveUniformBlockName +typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC)(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +GLAPI PFNGLUNIFORMBLOCKBINDINGPROC glad_glUniformBlockBinding; +#define glUniformBlockBinding glad_glUniformBlockBinding +#endif +#ifndef GL_VERSION_3_2 +#define GL_VERSION_3_2 1 +GLAPI int GLAD_GL_VERSION_3_2; +typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI PFNGLDRAWELEMENTSBASEVERTEXPROC glad_glDrawElementsBaseVertex; +#define glDrawElementsBaseVertex glad_glDrawElementsBaseVertex +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_glDrawRangeElementsBaseVertex; +#define glDrawRangeElementsBaseVertex glad_glDrawRangeElementsBaseVertex +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GLAPI PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_glDrawElementsInstancedBaseVertex; +#define glDrawElementsInstancedBaseVertex glad_glDrawElementsInstancedBaseVertex +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)(GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +GLAPI PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_glMultiDrawElementsBaseVertex; +#define glMultiDrawElementsBaseVertex glad_glMultiDrawElementsBaseVertex +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC)(GLenum mode); +GLAPI PFNGLPROVOKINGVERTEXPROC glad_glProvokingVertex; +#define glProvokingVertex glad_glProvokingVertex +typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC)(GLenum condition, GLbitfield flags); +GLAPI PFNGLFENCESYNCPROC glad_glFenceSync; +#define glFenceSync glad_glFenceSync +typedef GLboolean (APIENTRYP PFNGLISSYNCPROC)(GLsync sync); +GLAPI PFNGLISSYNCPROC glad_glIsSync; +#define glIsSync glad_glIsSync +typedef void (APIENTRYP PFNGLDELETESYNCPROC)(GLsync sync); +GLAPI PFNGLDELETESYNCPROC glad_glDeleteSync; +#define glDeleteSync glad_glDeleteSync +typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC)(GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI PFNGLCLIENTWAITSYNCPROC glad_glClientWaitSync; +#define glClientWaitSync glad_glClientWaitSync +typedef void (APIENTRYP PFNGLWAITSYNCPROC)(GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI PFNGLWAITSYNCPROC glad_glWaitSync; +#define glWaitSync glad_glWaitSync +typedef void (APIENTRYP PFNGLGETINTEGER64VPROC)(GLenum pname, GLint64 *data); +GLAPI PFNGLGETINTEGER64VPROC glad_glGetInteger64v; +#define glGetInteger64v glad_glGetInteger64v +typedef void (APIENTRYP PFNGLGETSYNCIVPROC)(GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI PFNGLGETSYNCIVPROC glad_glGetSynciv; +#define glGetSynciv glad_glGetSynciv +typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC)(GLenum target, GLuint index, GLint64 *data); +GLAPI PFNGLGETINTEGER64I_VPROC glad_glGetInteger64i_v; +#define glGetInteger64i_v glad_glGetInteger64i_v +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC)(GLenum target, GLenum pname, GLint64 *params); +GLAPI PFNGLGETBUFFERPARAMETERI64VPROC glad_glGetBufferParameteri64v; +#define glGetBufferParameteri64v glad_glGetBufferParameteri64v +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC)(GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTUREPROC glad_glFramebufferTexture; +#define glFramebufferTexture glad_glFramebufferTexture +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_glTexImage2DMultisample; +#define glTexImage2DMultisample glad_glTexImage2DMultisample +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_glTexImage3DMultisample; +#define glTexImage3DMultisample glad_glTexImage3DMultisample +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC)(GLenum pname, GLuint index, GLfloat *val); +GLAPI PFNGLGETMULTISAMPLEFVPROC glad_glGetMultisamplefv; +#define glGetMultisamplefv glad_glGetMultisamplefv +typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC)(GLuint maskNumber, GLbitfield mask); +GLAPI PFNGLSAMPLEMASKIPROC glad_glSampleMaski; +#define glSampleMaski glad_glSampleMaski +#endif +#ifndef GL_VERSION_3_3 +#define GL_VERSION_3_3 1 +GLAPI int GLAD_GL_VERSION_3_3; +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC)(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GLAPI PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_glBindFragDataLocationIndexed; +#define glBindFragDataLocationIndexed glad_glBindFragDataLocationIndexed +typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETFRAGDATAINDEXPROC glad_glGetFragDataIndex; +#define glGetFragDataIndex glad_glGetFragDataIndex +typedef void (APIENTRYP PFNGLGENSAMPLERSPROC)(GLsizei count, GLuint *samplers); +GLAPI PFNGLGENSAMPLERSPROC glad_glGenSamplers; +#define glGenSamplers glad_glGenSamplers +typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC)(GLsizei count, const GLuint *samplers); +GLAPI PFNGLDELETESAMPLERSPROC glad_glDeleteSamplers; +#define glDeleteSamplers glad_glDeleteSamplers +typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC)(GLuint sampler); +GLAPI PFNGLISSAMPLERPROC glad_glIsSampler; +#define glIsSampler glad_glIsSampler +typedef void (APIENTRYP PFNGLBINDSAMPLERPROC)(GLuint unit, GLuint sampler); +GLAPI PFNGLBINDSAMPLERPROC glad_glBindSampler; +#define glBindSampler glad_glBindSampler +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC)(GLuint sampler, GLenum pname, GLint param); +GLAPI PFNGLSAMPLERPARAMETERIPROC glad_glSamplerParameteri; +#define glSamplerParameteri glad_glSamplerParameteri +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC)(GLuint sampler, GLenum pname, const GLint *param); +GLAPI PFNGLSAMPLERPARAMETERIVPROC glad_glSamplerParameteriv; +#define glSamplerParameteriv glad_glSamplerParameteriv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC)(GLuint sampler, GLenum pname, GLfloat param); +GLAPI PFNGLSAMPLERPARAMETERFPROC glad_glSamplerParameterf; +#define glSamplerParameterf glad_glSamplerParameterf +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC)(GLuint sampler, GLenum pname, const GLfloat *param); +GLAPI PFNGLSAMPLERPARAMETERFVPROC glad_glSamplerParameterfv; +#define glSamplerParameterfv glad_glSamplerParameterfv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC)(GLuint sampler, GLenum pname, const GLint *param); +GLAPI PFNGLSAMPLERPARAMETERIIVPROC glad_glSamplerParameterIiv; +#define glSamplerParameterIiv glad_glSamplerParameterIiv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC)(GLuint sampler, GLenum pname, const GLuint *param); +GLAPI PFNGLSAMPLERPARAMETERIUIVPROC glad_glSamplerParameterIuiv; +#define glSamplerParameterIuiv glad_glSamplerParameterIuiv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC)(GLuint sampler, GLenum pname, GLint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIVPROC glad_glGetSamplerParameteriv; +#define glGetSamplerParameteriv glad_glGetSamplerParameteriv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC)(GLuint sampler, GLenum pname, GLint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIIVPROC glad_glGetSamplerParameterIiv; +#define glGetSamplerParameterIiv glad_glGetSamplerParameterIiv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC)(GLuint sampler, GLenum pname, GLfloat *params); +GLAPI PFNGLGETSAMPLERPARAMETERFVPROC glad_glGetSamplerParameterfv; +#define glGetSamplerParameterfv glad_glGetSamplerParameterfv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC)(GLuint sampler, GLenum pname, GLuint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIUIVPROC glad_glGetSamplerParameterIuiv; +#define glGetSamplerParameterIuiv glad_glGetSamplerParameterIuiv +typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC)(GLuint id, GLenum target); +GLAPI PFNGLQUERYCOUNTERPROC glad_glQueryCounter; +#define glQueryCounter glad_glQueryCounter +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC)(GLuint id, GLenum pname, GLint64 *params); +GLAPI PFNGLGETQUERYOBJECTI64VPROC glad_glGetQueryObjecti64v; +#define glGetQueryObjecti64v glad_glGetQueryObjecti64v +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC)(GLuint id, GLenum pname, GLuint64 *params); +GLAPI PFNGLGETQUERYOBJECTUI64VPROC glad_glGetQueryObjectui64v; +#define glGetQueryObjectui64v glad_glGetQueryObjectui64v +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC)(GLuint index, GLuint divisor); +GLAPI PFNGLVERTEXATTRIBDIVISORPROC glad_glVertexAttribDivisor; +#define glVertexAttribDivisor glad_glVertexAttribDivisor +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP1UIPROC glad_glVertexAttribP1ui; +#define glVertexAttribP1ui glad_glVertexAttribP1ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP1UIVPROC glad_glVertexAttribP1uiv; +#define glVertexAttribP1uiv glad_glVertexAttribP1uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP2UIPROC glad_glVertexAttribP2ui; +#define glVertexAttribP2ui glad_glVertexAttribP2ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP2UIVPROC glad_glVertexAttribP2uiv; +#define glVertexAttribP2uiv glad_glVertexAttribP2uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP3UIPROC glad_glVertexAttribP3ui; +#define glVertexAttribP3ui glad_glVertexAttribP3ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP3UIVPROC glad_glVertexAttribP3uiv; +#define glVertexAttribP3uiv glad_glVertexAttribP3uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP4UIPROC glad_glVertexAttribP4ui; +#define glVertexAttribP4ui glad_glVertexAttribP4ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP4UIVPROC glad_glVertexAttribP4uiv; +#define glVertexAttribP4uiv glad_glVertexAttribP4uiv +typedef void (APIENTRYP PFNGLVERTEXP2UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP2UIPROC glad_glVertexP2ui; +#define glVertexP2ui glad_glVertexP2ui +typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP2UIVPROC glad_glVertexP2uiv; +#define glVertexP2uiv glad_glVertexP2uiv +typedef void (APIENTRYP PFNGLVERTEXP3UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP3UIPROC glad_glVertexP3ui; +#define glVertexP3ui glad_glVertexP3ui +typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP3UIVPROC glad_glVertexP3uiv; +#define glVertexP3uiv glad_glVertexP3uiv +typedef void (APIENTRYP PFNGLVERTEXP4UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP4UIPROC glad_glVertexP4ui; +#define glVertexP4ui glad_glVertexP4ui +typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP4UIVPROC glad_glVertexP4uiv; +#define glVertexP4uiv glad_glVertexP4uiv +typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP1UIPROC glad_glTexCoordP1ui; +#define glTexCoordP1ui glad_glTexCoordP1ui +typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP1UIVPROC glad_glTexCoordP1uiv; +#define glTexCoordP1uiv glad_glTexCoordP1uiv +typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP2UIPROC glad_glTexCoordP2ui; +#define glTexCoordP2ui glad_glTexCoordP2ui +typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP2UIVPROC glad_glTexCoordP2uiv; +#define glTexCoordP2uiv glad_glTexCoordP2uiv +typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP3UIPROC glad_glTexCoordP3ui; +#define glTexCoordP3ui glad_glTexCoordP3ui +typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP3UIVPROC glad_glTexCoordP3uiv; +#define glTexCoordP3uiv glad_glTexCoordP3uiv +typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP4UIPROC glad_glTexCoordP4ui; +#define glTexCoordP4ui glad_glTexCoordP4ui +typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP4UIVPROC glad_glTexCoordP4uiv; +#define glTexCoordP4uiv glad_glTexCoordP4uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP1UIPROC glad_glMultiTexCoordP1ui; +#define glMultiTexCoordP1ui glad_glMultiTexCoordP1ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP1UIVPROC glad_glMultiTexCoordP1uiv; +#define glMultiTexCoordP1uiv glad_glMultiTexCoordP1uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP2UIPROC glad_glMultiTexCoordP2ui; +#define glMultiTexCoordP2ui glad_glMultiTexCoordP2ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP2UIVPROC glad_glMultiTexCoordP2uiv; +#define glMultiTexCoordP2uiv glad_glMultiTexCoordP2uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP3UIPROC glad_glMultiTexCoordP3ui; +#define glMultiTexCoordP3ui glad_glMultiTexCoordP3ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP3UIVPROC glad_glMultiTexCoordP3uiv; +#define glMultiTexCoordP3uiv glad_glMultiTexCoordP3uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP4UIPROC glad_glMultiTexCoordP4ui; +#define glMultiTexCoordP4ui glad_glMultiTexCoordP4ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP4UIVPROC glad_glMultiTexCoordP4uiv; +#define glMultiTexCoordP4uiv glad_glMultiTexCoordP4uiv +typedef void (APIENTRYP PFNGLNORMALP3UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLNORMALP3UIPROC glad_glNormalP3ui; +#define glNormalP3ui glad_glNormalP3ui +typedef void (APIENTRYP PFNGLNORMALP3UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLNORMALP3UIVPROC glad_glNormalP3uiv; +#define glNormalP3uiv glad_glNormalP3uiv +typedef void (APIENTRYP PFNGLCOLORP3UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLCOLORP3UIPROC glad_glColorP3ui; +#define glColorP3ui glad_glColorP3ui +typedef void (APIENTRYP PFNGLCOLORP3UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLCOLORP3UIVPROC glad_glColorP3uiv; +#define glColorP3uiv glad_glColorP3uiv +typedef void (APIENTRYP PFNGLCOLORP4UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLCOLORP4UIPROC glad_glColorP4ui; +#define glColorP4ui glad_glColorP4ui +typedef void (APIENTRYP PFNGLCOLORP4UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLCOLORP4UIVPROC glad_glColorP4uiv; +#define glColorP4uiv glad_glColorP4uiv +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLSECONDARYCOLORP3UIPROC glad_glSecondaryColorP3ui; +#define glSecondaryColorP3ui glad_glSecondaryColorP3ui +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLSECONDARYCOLORP3UIVPROC glad_glSecondaryColorP3uiv; +#define glSecondaryColorP3uiv glad_glSecondaryColorP3uiv +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/YuppleMayham/include/utility/data/font_data.h b/YuppleMayham/include/utility/data/font_data.h new file mode 100644 index 0000000..0924261 --- /dev/null +++ b/YuppleMayham/include/utility/data/font_data.h @@ -0,0 +1,9 @@ +/* C array of file 'Px437_IBM_VGA_9x8.ttf' */ + +#ifndef _H_FONT_DATA_H +#define _H_FONT_DATA_H + +extern const unsigned char debug_font_data[]; +extern const unsigned int debug_font_len; + +#endif // _H_FONT_DATA_H diff --git a/YuppleMayham/include/utility/debugdraw.h b/YuppleMayham/include/utility/debugdraw.h index 8c8017b..a71bc08 100644 --- a/YuppleMayham/include/utility/debugdraw.h +++ b/YuppleMayham/include/utility/debugdraw.h @@ -1,12 +1,13 @@ #ifndef _H_DEBUGDRAW_H #define _H_DEBUGDRAW_H -#include +#include #include #include +#include -#include #include +#include struct ShaderSource { const char* vertexShader; @@ -178,4 +179,4 @@ private: }; -#endif \ No newline at end of file +#endif diff --git a/YuppleMayham/include/utility/ftfont.h b/YuppleMayham/include/utility/ftfont.h index dc1765c..7d878d1 100644 --- a/YuppleMayham/include/utility/ftfont.h +++ b/YuppleMayham/include/utility/ftfont.h @@ -4,13 +4,19 @@ #include #include FT_FREETYPE_H +#include #include +#include #include +#include #include +#include #include +#define DEBUG_TEXT(pos_vec2, col_vec4, scale, text, ...) DebugText::getInstance()->DrawDebugText(pos_vec2, col_vec4, scale, text, __VA_ARGS__) + class Text { -private: +protected: struct Font { struct Character { unsigned int TextureID; @@ -25,15 +31,11 @@ private: unsigned int programID = 0; unsigned int VAO = 0, VBO = 0; unsigned int colorPos = 0; - unsigned int projPos = 0; - glm::mat4 projMatrix = glm::mat4(1.f); public: Text(); bool loadFonts(const std::string& font_folder); - void setProjectionMatrix(const glm::mat4& proj) { projMatrix = proj; } - void DrawText( const std::string& fontName, const std::string& text, @@ -48,6 +50,45 @@ public: float scale, const glm::vec4& color = glm::vec4(0.0f, 0.0f, 0.0f, 1.0f) ); + ~Text() { }; +}; + +class DebugText : public Text { +public: + static DebugText* getInstance(); + bool loadFonts(const std::string &font_folder) = delete; + DebugText(DebugText const&) = delete; + void operator=(DebugText const&) = delete; + + template + void DrawDebugText(const glm::vec2& pos, + const glm::vec4& color, + const float scale, + const std::string& text, + Args... args) + { + DrawText(pos, color, scale, formatString(text, args...)); + } + + +private: + static std::mutex mutex; + static DebugText *instance; + Font font; + DebugText(); + void loadDebugFont(); + ~DebugText(); + + template + std::string formatString(const std::string& str, Args... args) const + { + return std::vformat(str, std::make_format_args(args...)); + } + void DrawText(const glm::vec2& pos, + const glm::vec4& color, + const float scale, + const std::string& text); + }; #endif // _H_FTFONT_H diff --git a/YuppleMayham/include/utility/logger.h b/YuppleMayham/include/utility/logger.h index b2107c8..6e19acc 100644 --- a/YuppleMayham/include/utility/logger.h +++ b/YuppleMayham/include/utility/logger.h @@ -76,4 +76,4 @@ private: static std::mutex mutex; }; -#endif \ No newline at end of file +#endif diff --git a/YuppleMayham/src/gameplay/ai.cpp b/YuppleMayham/src/gameplay/ai.cpp index e82657c..25cee2f 100644 --- a/YuppleMayham/src/gameplay/ai.cpp +++ b/YuppleMayham/src/gameplay/ai.cpp @@ -4,13 +4,6 @@ #include "utility/raycaster.h" #include "utility/script.h" -#if _DEBUG -#else -#include -#endif - - - AI::AI(const std::shared_ptr& actor, const std::shared_ptr& raycaster) : state(AIState::Idle), raycaster(raycaster), actor(actor), lastGCTime(std::chrono::high_resolution_clock::now()), GCTimeout(3) @@ -79,4 +72,4 @@ void AI::update() std::cerr << "Error during AI update: " << e.what() << std::endl; state = AIState::Idle; } -} \ No newline at end of file +} diff --git a/YuppleMayham/src/gameplay/entity.cpp b/YuppleMayham/src/gameplay/entity.cpp index 5df2d6e..4125543 100644 --- a/YuppleMayham/src/gameplay/entity.cpp +++ b/YuppleMayham/src/gameplay/entity.cpp @@ -1,5 +1,4 @@ #include "gameplay/entity.h" -#include "gameplay/camera.h" #include "gameplay/physics.h" void Entity::setPosition(const glm::vec3& position) @@ -40,9 +39,9 @@ void Entity::addPhysicsComponent(const std::shared_ptr& physic void Entity::update(double deltaTime) { - if (physics && physics->rigidBody.velocity != glm::vec3(0.0f)) + if (physics && physics->rigidBody.velocity != glm::vec2(0.0f)) { - position = physics->rigidBody.position; + position = glm::vec3(physics->rigidBody.position, 0.f); updateModelMatrix(); deltaPosition = glm::vec3(0.0f); } @@ -63,6 +62,7 @@ void Entity::draw() void Entity::updateModelMatrix() { + position.z = 0.f; glm::mat4 rotationMat = (isRotatable) ? glm::rotate(glm::mat4(1.f), glm::radians(rotation), glm::vec3(0.0f, 0.0f, 1.0f)) : glm::mat4(1.0f); glm::mat4 translation = glm::translate(glm::mat4(1.f), position); modelMatrix = diff --git a/YuppleMayham/src/gameplay/game.cpp b/YuppleMayham/src/gameplay/game.cpp index 78ec09c..982cf5d 100644 --- a/YuppleMayham/src/gameplay/game.cpp +++ b/YuppleMayham/src/gameplay/game.cpp @@ -13,7 +13,6 @@ #include "graphics/glwindow.h" -#include #include #include #include @@ -26,7 +25,7 @@ bool Game::init() ERROR_LOG("Failed to init GLWindow: {}", SDL_GetError()); if (!gladLoadGLLoader((GLADloadproc)SDL_GL_GetProcAddress)) - ERROR_LOG("Failed to load GLLoader"); + ERROR_LOG("Failed to load GLLoader", NULL); #if _DEBUG LOG_LEVEL(DEBUG); @@ -36,6 +35,7 @@ bool Game::init() SDL_GL_SetSwapInterval(1); glViewport(0, 0, window->width(), window->height()); + glDisable(GL_DEPTH_TEST); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); @@ -58,7 +58,6 @@ bool Game::init() textHandler = std::make_shared(); if (!textHandler->loadFonts("fonts")) return false; - textHandler->setProjectionMatrix(glm::ortho(0.f, static_cast(window->width()), 0.f, static_cast(window->height()))); return true; } diff --git a/YuppleMayham/src/gameplay/physics.cpp b/YuppleMayham/src/gameplay/physics.cpp index 0cfe74d..eb2eaf1 100644 --- a/YuppleMayham/src/gameplay/physics.cpp +++ b/YuppleMayham/src/gameplay/physics.cpp @@ -29,6 +29,7 @@ std::shared_ptr PhysicsEngine::createObject(const unsigned int auto component = std::make_shared (); component->ID = ID; component->rigidBody.position = pos; + component->rigidBody.acceleration = glm::vec2(0.f); component->rigidBody.mass = mass; component->collider.shape = shape; component->collider.dimensions = dimensions; @@ -56,7 +57,7 @@ void PhysicsEngine::removeObject(const std::shared_ptr& compon objects.erase(std::remove(objects.begin(), objects.end(), component)); } -int PhysicsEngine::getTileCollider(const glm::vec3& position) +int PhysicsEngine::getTileCollider(const glm::vec2& position) { int x = static_cast((position.x + 0.5f * tileSize) / tileSize); int y = static_cast((position.y + 0.5f * tileSize) / tileSize); @@ -97,13 +98,13 @@ void PhysicsEngine::resolvePossibleCollisions() { // Solve for two circles, we'll need to expand upon this for different colliders... float sumOfRadius = objs.first->collider.dimensions.x + objs.second->collider.dimensions.x; - glm::vec3 objFirstCenter = objs.first->rigidBody.position + objs.first->collider.offset; - glm::vec3 objSecondCenter = objs.second->rigidBody.position + objs.second->collider.offset; - glm::vec3 distance = objFirstCenter - objSecondCenter; + glm::vec2 objFirstCenter = objs.first->rigidBody.position + objs.first->collider.offset; + glm::vec2 objSecondCenter = objs.second->rigidBody.position + objs.second->collider.offset; + glm::vec2 distance = objFirstCenter - objSecondCenter; if (glm::length(distance) < sumOfRadius) { // We got impact! - glm::vec3 normal = distance / glm::length(distance); + glm::vec2 normal = distance / glm::length(distance); // That impact is a bullet hitting a gameactor! if ((objs.first->isBullet || objs.second->isBullet) && !(objs.first->isBullet && objs.second->isBullet)) { @@ -116,8 +117,8 @@ void PhysicsEngine::resolvePossibleCollisions() } // Apply impulse force float penetrationDepth = sumOfRadius - glm::length(distance); - glm::vec3 correctionVector = normal * (penetrationDepth / ((1 / objs.first->rigidBody.mass) + (1 / objs.second->rigidBody.mass))); - glm::vec3 vrel = objs.first->rigidBody.velocity - objs.second->rigidBody.velocity; + glm::vec2 correctionVector = normal * (penetrationDepth / ((1 / objs.first->rigidBody.mass) + (1 / objs.second->rigidBody.mass))); + glm::vec2 vrel = objs.first->rigidBody.velocity - objs.second->rigidBody.velocity; // smallest elasticity of the two colliders float e = std::min(objs.first->rigidBody.elasticity, objs.second->rigidBody.elasticity); @@ -137,11 +138,11 @@ void PhysicsEngine::resolveWorldCollision(const std::shared_ptrcollider.dimensions.x; - glm::vec3 position = obj->rigidBody.position + obj->collider.offset; - int topTile = getTileCollider(position - glm::vec3(0, radius, 0)); - int bottomTile = getTileCollider(position + glm::vec3(0, radius, 0)); - int leftTile = getTileCollider(position - glm::vec3(radius, 0, 0)); - int rightTile = getTileCollider(position + glm::vec3(radius, 0, 0)); + glm::vec2 position = obj->rigidBody.position + obj->collider.offset; + int topTile = getTileCollider(position - glm::vec2(0, radius)); + int bottomTile = getTileCollider(position + glm::vec2(0, radius)); + int leftTile = getTileCollider(position - glm::vec2(radius, 0)); + int rightTile = getTileCollider(position + glm::vec2(radius, 0)); if (obj->isBullet) { if (topTile || bottomTile || leftTile || rightTile) @@ -180,7 +181,7 @@ void PhysicsEngine::update(double deltaTime) for (auto& obj : objects) { if (!obj) continue; - glm::vec3 frictionForce = obj->rigidBody.velocity * -0.1f; + glm::vec2 frictionForce = obj->rigidBody.velocity * -0.1f; if (std::abs(obj->rigidBody.acceleration.x) == std::abs(obj->rigidBody.acceleration.y)) { obj->rigidBody.acceleration.x *= 0.75f; @@ -197,15 +198,18 @@ void PhysicsEngine::update(double deltaTime) // Move at maxspeed obj->rigidBody.velocity = glm::normalize(obj->rigidBody.velocity) * maxSpeed; } - obj->rigidBody.acceleration = glm::vec3(0.f); - if (obj->collider.dimensions != glm::vec3(0.f)) + obj->rigidBody.acceleration = glm::vec2(0.f); + if (obj->collider.dimensions != glm::vec2(0.f)) { // check map collisions resolveWorldCollision(obj); } obj->rigidBody.position += obj->rigidBody.velocity * static_cast(deltaTime); + // Make sure we keep our Z at 0.f, a better choice would be to remove the need for vec3 all together! + // TODO: REMOVE VEC3 NO NEED FOR Z COODINATE! + // obj->rigidBody.position.z = 0.f; } getPossibleCollisions(); if (!objCollisions.empty()) resolvePossibleCollisions(); -} \ No newline at end of file +} diff --git a/YuppleMayham/src/gameplay/scene.cpp b/YuppleMayham/src/gameplay/scene.cpp index 1927415..0691386 100644 --- a/YuppleMayham/src/gameplay/scene.cpp +++ b/YuppleMayham/src/gameplay/scene.cpp @@ -11,6 +11,7 @@ #include "graphics/animation.h" #include "utility/component.h" +#include "utility/ftfont.h" #include "utility/xmlloader.h" #include "utility/resourcemanager.h" #include "utility/events.h" @@ -18,7 +19,6 @@ #include "utility/debugdraw.h" #include -#include #include @@ -118,6 +118,7 @@ void Scene::loadDebugShooterScene() } } entities.emplace(entity->getEntityID(), entity); + SDL_Delay(1); // This is to make sure each entity gets a unique ID } physicsEngine->loadCollisionMap(map->getCollisionMap(), mapData->tileSize); @@ -132,10 +133,6 @@ std::shared_ptr Scene::getPlayer() const void Scene::update(double deltaTime) { -#if _DEBUG -#else - ZoneScoped; -#endif for (const auto& [id, e] : entities) { @@ -149,10 +146,6 @@ void Scene::update(double deltaTime) void Scene::render(std::shared_ptr renderer) { -#if _DEBUG -#else - ZoneScoped; -#endif renderer->clear(); renderer->setProjAndViewMatrix(camera->getProjectionMatrix(), camera->getViewMatrix()); @@ -171,6 +164,36 @@ void Scene::render(std::shared_ptr renderer) } renderer->render(); + for (const auto& bullet : player->getHeldWeapon()->getBulletManager()->getBullets()) { + DebugDrawer::getInstance().addLine(player->getCenter(), bullet->getCenter(), glm::vec4(1.f, 0.f, 0.f, 0.f)); + DEBUG_TEXT( + glm::vec3(camera.get()->worldToLocal(bullet->getCenter()).x, + camera.get()->worldToLocal(bullet->getCenter()).y, 0.f), + glm::vec4(1.f, 0.f, 0.f, 1.f), + 0.2f, + "( {}, {}, {} )", + bullet->getCenter().x, + bullet->getCenter().y, + bullet->getCenter().z + ); + DEBUG_TEXT( + glm::vec3(camera.get()->worldToLocal(bullet->getCenter()).x, + camera.get()->worldToLocal(bullet->getCenter()).y + 10.f, 0.f), + glm::vec4(1.f, 1.f, 0.f, 1.f), + 0.2f, + "( {}, {} )", + bullet->getPhysicsComponent()->rigidBody.position.x, + bullet->getPhysicsComponent()->rigidBody.position.y + ); + DEBUG_TEXT( + glm::vec3(camera.get()->worldToLocal(bullet->getCenter()).x, + camera.get()->worldToLocal(bullet->getCenter()).y + 20.f, 0.f), + glm::vec4(0.f, 1.f, 1.f, 1.f), + 0.2f, + "( {}, {} )", + bullet->getPhysicsComponent()->rigidBody.velocity.x, + bullet->getPhysicsComponent()->rigidBody.velocity.y); + } DebugDrawer::getInstance().draw(camera->getProjectionMatrix() * camera->getViewMatrix()); } @@ -209,4 +232,4 @@ std::span> Scene::getAllEntities() const entityCache.push_back(entity); } return entityCache; -} \ No newline at end of file +} diff --git a/YuppleMayham/src/gameplay/weapons/bullet.cpp b/YuppleMayham/src/gameplay/weapons/bullet.cpp index 9ff2d36..af3dae2 100644 --- a/YuppleMayham/src/gameplay/weapons/bullet.cpp +++ b/YuppleMayham/src/gameplay/weapons/bullet.cpp @@ -1,6 +1,8 @@ #include "gameplay/weapons/bullet.h" #include "utility/component.h" +#include "utility/logger.h" + void Bullet::addComponent(Component* component) { components.push_back(component); @@ -12,6 +14,8 @@ void Bullet::update(double deltaTime) deltaPosition.x += direction.x * bulletSpeed; deltaPosition.y += direction.y * bulletSpeed; + + //LOG(INFO, "( {}, {}, {} )", deltaPosition.x, deltaPosition.y, deltaPosition.z); //physics->rigidBody.position = position; for (auto& component : components) @@ -33,4 +37,4 @@ void Bullet::draw() Bullet::~Bullet() { components.clear(); -} \ No newline at end of file +} diff --git a/YuppleMayham/src/gameplay/weapons/bulletmanager.cpp b/YuppleMayham/src/gameplay/weapons/bulletmanager.cpp index 9058187..6558593 100644 --- a/YuppleMayham/src/gameplay/weapons/bulletmanager.cpp +++ b/YuppleMayham/src/gameplay/weapons/bulletmanager.cpp @@ -53,7 +53,7 @@ void BulletManager::update(double deltaTime) { if (!bullet) continue; bullet->update(deltaTime); - float distance = glm::distance(bullet->getPhysicsComponent()->rigidBody.position, bullet->getBulletOrigin()); + float distance = glm::distance(glm::vec3(bullet->getPhysicsComponent()->rigidBody.position, 0.f), bullet->getBulletOrigin()); if (distance > bullet->getBulletDrop() || glm::length(bullet->getPhysicsComponent()->rigidBody.velocity) < 100.0f) { if (auto event = eventManager.lock()) @@ -70,4 +70,4 @@ void BulletManager::draw() if (!bullet) continue; bullet->draw(); } -} \ No newline at end of file +} diff --git a/YuppleMayham/src/gameplay/weapons/weapon.cpp b/YuppleMayham/src/gameplay/weapons/weapon.cpp index 120d8bc..ae9795f 100644 --- a/YuppleMayham/src/gameplay/weapons/weapon.cpp +++ b/YuppleMayham/src/gameplay/weapons/weapon.cpp @@ -142,7 +142,7 @@ void Weapon::attachScript(const std::shared_ptr& script) { weaponScript = script; weaponScript->lua["weapon"] = shared_from_this(); - LOG(DEBUG, "Weapon state bound"); + LOG(DEBUG, "Weapon state bound", NULL); } void Weapon::onHitCallback(GameActor* target, PhysicsComponent* bullet, const glm::vec2& normal) @@ -226,10 +226,11 @@ Weapon::BulletData Weapon::genBulletData() { BulletData b; float rotation = glm::radians(wielder->getRotation()); + float spreadOffset = glm::radians(static_cast(bulletSpread->genFloat())); b.mass = 0.1f; glm::vec2 facing = glm::vec2( - cos(rotation + glm::radians(static_cast(bulletSpread->genFloat()))), - sin(rotation + glm::radians(static_cast(bulletSpread->genFloat()))) + cos(rotation + spreadOffset), + sin(rotation + spreadOffset) ); b.direction = glm::normalize(facing); b.sizeMod = bulletModifer->genFloat(); @@ -255,7 +256,7 @@ void Weapon::createBullet(const Weapon::BulletData& data) auto bullet = std::make_shared(wielder->getEntityID(), bulletShaderID, data.origin, data.direction, bulletSpeed, bulletDrop, bulletSize); bullet->addComponent(bulletSprite.get()); bullet->addPhysicsComponent(std::make_shared(PhysicsComponentFactory::makeBullet(wielder->getEntityID(), data.origin, data.mass, bulletSize.x / 2))); - bullet->getPhysicsComponent()->rigidBody.velocity += bulletSpeed * glm::vec3(data.direction.x, data.direction.y, 0.f) / data.mass; + bullet->getPhysicsComponent()->rigidBody.velocity += bulletSpeed * data.direction / data.mass; if (auto event = eventManager.lock()) event->notify(std::make_shared(bullet)); diff --git a/YuppleMayham/src/graphics/instancedraw.cpp b/YuppleMayham/src/graphics/instancedraw.cpp index eb72356..5656146 100644 --- a/YuppleMayham/src/graphics/instancedraw.cpp +++ b/YuppleMayham/src/graphics/instancedraw.cpp @@ -1,9 +1,6 @@ #include "graphics/instancedraw.h" #include "graphics/texture.h" -#include -#include - TileTextureInstance::TileTextureInstance(const char* texturePath) { texture = new Texture(); diff --git a/YuppleMayham/src/graphics/postprocess.cpp b/YuppleMayham/src/graphics/postprocess.cpp index 523dcd2..e62322b 100644 --- a/YuppleMayham/src/graphics/postprocess.cpp +++ b/YuppleMayham/src/graphics/postprocess.cpp @@ -12,7 +12,7 @@ Postprocessor::Postprocessor(const std::shared_ptr& resourceMan ); // TODO: ADD FALLBACK SHADER! if (postProcessShader == nullptr) { - LOG(ERROR, "Failed to load post processing shader! 'shaders/GL_postprocess.*"); + LOG(ERROR, "Failed to load post processing shader! 'shaders/GL_postprocess.*", NULL); assert(postProcessShader != nullptr); // force crash } postProcessShader->use(); @@ -21,9 +21,9 @@ Postprocessor::Postprocessor(const std::shared_ptr& resourceMan unsigned int uboIndex = glGetUniformBlockIndex(postProcessShader->ID, "uPostProcess"); if (uboIndex == GL_INVALID_INDEX) { - LOG(ERROR, "Could not find 'uPostProcess'!"); + LOG(ERROR, "Could not find 'uPostProcess'!", NULL); } - unsigned int bindPoint = 0; + unsigned int bindPoint = 1; glUniformBlockBinding(postProcessShader->ID, uboIndex, bindPoint); glGenBuffers(1, &UBO); @@ -116,4 +116,4 @@ void Postprocessor::tickEffectTime(bool worldOrHud) RemoveEffects(SHAKE); } } -} \ No newline at end of file +} diff --git a/YuppleMayham/src/graphics/renderer.cpp b/YuppleMayham/src/graphics/renderer.cpp index 9f66f62..bd1c9d1 100644 --- a/YuppleMayham/src/graphics/renderer.cpp +++ b/YuppleMayham/src/graphics/renderer.cpp @@ -5,18 +5,17 @@ #include "utility/events.h" #include +#include #include #include Renderer::Renderer(const std::shared_ptr& r) : resourceManager(r) { - projMat = glm::mat4(0.f); - viewMat = glm::mat4(0.f); - - initFrameBuffers(); - screenQuad = std::make_unique(); - postProcessor = std::make_unique(r); + initFrameBuffers(); + initUniformBuffers(); + screenQuad = std::make_unique(); + postProcessor = std::make_unique(r); } void Renderer::hookEventManager(std::weak_ptr eventManager) @@ -51,48 +50,62 @@ void Renderer::initFrameBuffers() glBindTexture(GL_TEXTURE_2D, worldBuffer.texture); // !!! NEED TO CREATE STATIC WINDOW SIZING !!! glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 800, 600, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); - glBindTexture(GL_TEXTURE_2D, 0); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + glBindTexture(GL_TEXTURE_2D, 0); - //Attaching empty texture as color buffer for framebuffer - glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, worldBuffer.texture, 0); + //Attaching empty texture as color buffer for framebuffer + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, worldBuffer.texture, 0); - if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { - LOG(ERROR, "Failed to complete world framebuffer: {}", glCheckFramebufferStatus(GL_FRAMEBUFFER)); - assert(1 == 0); // force crash - } + if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { + LOG(ERROR, "Failed to complete world framebuffer: {}", glCheckFramebufferStatus(GL_FRAMEBUFFER)); + assert(1 == 0); // force crash + } glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - // same thing is done for the hud texture - glBindFramebuffer(GL_FRAMEBUFFER, hudBuffer.frame); + // same thing is done for the hud texture + glBindFramebuffer(GL_FRAMEBUFFER, hudBuffer.frame); - glGenTextures(1, &hudBuffer.texture); - glBindTexture(GL_TEXTURE_2D, hudBuffer.texture); - glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 800, 600, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); - glBindTexture(GL_TEXTURE_2D, 0); + glGenTextures(1, &hudBuffer.texture); + glBindTexture(GL_TEXTURE_2D, hudBuffer.texture); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 800, 600, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + glBindTexture(GL_TEXTURE_2D, 0); - glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, hudBuffer.texture, 0); + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, hudBuffer.texture, 0); - if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { - LOG(ERROR, "Failed to complete hud framebuffer: {}", glCheckFramebufferStatus(GL_FRAMEBUFFER)); - assert(1 == 0); // force crash - } + if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { + LOG(ERROR, "Failed to complete hud framebuffer: {}", glCheckFramebufferStatus(GL_FRAMEBUFFER)); + assert(1 == 0); // force crash + } glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - glBindFramebuffer(GL_FRAMEBUFFER, 0); + glBindFramebuffer(GL_FRAMEBUFFER, 0); +} + +void Renderer::initUniformBuffers() +{ + glGenBuffers(1, &uboMatrices); + + glBindBuffer(GL_UNIFORM_BUFFER, uboMatrices); + glBufferData(GL_UNIFORM_BUFFER, 2 * sizeof(glm::mat4), NULL, GL_STATIC_DRAW); + glBindBuffer(GL_UNIFORM_BUFFER, 0); + + glBindBufferBase(GL_UNIFORM_BUFFER, 0, uboMatrices); + //glBindBufferRange(GL_UNIFORM_BUFFER, 0, uboMatrices, 0, 2 * sizeof(glm::mat4)); } void Renderer::setProjAndViewMatrix(const glm::mat4& proj, const glm::mat4& view) { - projMat = proj; - viewMat = view; + glBindBuffer(GL_UNIFORM_BUFFER, uboMatrices); + glBufferSubData(GL_UNIFORM_BUFFER, 0, sizeof(glm::mat4), glm::value_ptr(proj)); + glBufferSubData(GL_UNIFORM_BUFFER, sizeof(glm::mat4), sizeof(glm::mat4), glm::value_ptr(view)); + glBindBuffer(GL_UNIFORM_BUFFER, 0); } void Renderer::addDrawable(RenderLayer renderLayer, std::shared_ptr drawable) @@ -153,8 +166,10 @@ void Renderer::renderPool(auto& layerPool) if (curShader) { curShader->use(); + /* curShader->setMatrix4f("projection", glm::value_ptr(projMat)); curShader->setMatrix4f("view", glm::value_ptr(viewMat)); + */ } else { LOG(ERROR, "Shader with ID {} not found!", curShaderID); continue; @@ -215,4 +230,4 @@ void Renderer::sortLayerPool(auto& layerPool) return a->getShaderID() < b->getShaderID(); }); } -} \ No newline at end of file +} diff --git a/YuppleMayham/src/graphics/shader.cpp b/YuppleMayham/src/graphics/shader.cpp index d4b8432..d257e29 100644 --- a/YuppleMayham/src/graphics/shader.cpp +++ b/YuppleMayham/src/graphics/shader.cpp @@ -79,6 +79,8 @@ Shader::Shader(const char* vertexPath, const char* fragmentPath) glDeleteShader(vertexid); glDeleteShader(fragmentid); + + glUniformBlockBinding(ID, glGetUniformBlockIndex(ID, "Matrices"), 0); } void Shader::setFloat(const std::string& name, float value) diff --git a/YuppleMayham/src/graphics/texture.cpp b/YuppleMayham/src/graphics/texture.cpp index 6af80b9..1fdd84f 100644 --- a/YuppleMayham/src/graphics/texture.cpp +++ b/YuppleMayham/src/graphics/texture.cpp @@ -2,9 +2,6 @@ #include "utility/logger.h" #include "util.h" -#include -#include - bool Texture::loadTexture(const char* imagePath) { SDL_Surface* buffer = IMG_Load(imagePath); @@ -62,9 +59,9 @@ bool TextureArray::loadTextures(std::vector imagePaths) ERROR_LOG("Failed to load image file: {}", imagePaths[i]); } if (!adjustCanvasSizes(surfaces)) - ERROR_LOG("Failed to adjust canvas size of images! \n Make sure to check that every tileset has square dimensions! (512x512, 756x756 ... etc)"); + ERROR_LOG("Failed to adjust canvas size of images! \n Make sure to check that every tileset has square dimensions! (512x512, 756x756 ... etc)", NULL); if (surfaces.empty()) - ERROR_LOG("No surfaces created!"); + ERROR_LOG("No surfaces created!", NULL); numOfLayers = imagePaths.size(); glGenTextures(1, &ID); @@ -123,7 +120,7 @@ bool TextureArray::adjustCanvasSizes(std::vector& surfaces) for (auto& surface : surfaces) { if (surface->w != surface->h) - ERROR_LOG("Image must be a square!"); + ERROR_LOG("Image must be a square!", NULL); if (surface->w > maxWidth) maxWidth = surface->w; if (surface->h > maxHeight) maxHeight = surface->h; diff --git a/YuppleMayham/src/main.cpp b/YuppleMayham/src/main.cpp index fe89119..a0584ad 100644 --- a/YuppleMayham/src/main.cpp +++ b/YuppleMayham/src/main.cpp @@ -1,9 +1,12 @@ #undef GLM_FORCE_FAST_MATH +#define GLM_FORCE_PURE +#define GLM_FORCE_CTOR_INIT +#define GLM_FORCE_COLUMN_MAJOR #include +#include #include #include -#include // TODO: Fix circular dependency issues, mostly with input.h needing gameactor.h and command.h #include "gameplay/game.h" @@ -52,9 +55,8 @@ int main(int argc, char* args[]) game->handleInput(e); - game->update(deltaTime); - game->render(); + game->update(deltaTime); lastCounter = curCounter; } @@ -63,4 +65,4 @@ int main(int argc, char* args[]) SDL_Quit(); return 0; -} \ No newline at end of file +} diff --git a/YuppleMayham/src/thirdparty/glad.c b/YuppleMayham/src/thirdparty/glad.c new file mode 100644 index 0000000..2c2d4c8 --- /dev/null +++ b/YuppleMayham/src/thirdparty/glad.c @@ -0,0 +1,1140 @@ +/* + + OpenGL loader generated by glad 0.1.36 on Wed Mar 12 13:16:49 2025. + + Language/Generator: C/C++ + Specification: gl + APIs: gl=3.3 + Profile: core + Extensions: + + Loader: True + Local files: False + Omit khrplatform: False + Reproducible: False + + Commandline: + --profile="core" --api="gl=3.3" --generator="c" --spec="gl" --extensions="" + Online: + https://glad.dav1d.de/#profile=core&language=c&specification=gl&loader=on&api=gl%3D3.3 +*/ + +#include +#include +#include +#include + +static void* get_proc(const char *namez); + +#if defined(_WIN32) || defined(__CYGWIN__) +#ifndef _WINDOWS_ +#undef APIENTRY +#endif +#include +static HMODULE libGL; + +typedef void* (APIENTRYP PFNWGLGETPROCADDRESSPROC_PRIVATE)(const char*); +static PFNWGLGETPROCADDRESSPROC_PRIVATE gladGetProcAddressPtr; + +#ifdef _MSC_VER +#ifdef __has_include + #if __has_include() + #define HAVE_WINAPIFAMILY 1 + #endif +#elif _MSC_VER >= 1700 && !_USING_V110_SDK71_ + #define HAVE_WINAPIFAMILY 1 +#endif +#endif + +#ifdef HAVE_WINAPIFAMILY + #include + #if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) + #define IS_UWP 1 + #endif +#endif + +static +int open_gl(void) { +#ifndef IS_UWP + libGL = LoadLibraryW(L"opengl32.dll"); + if(libGL != NULL) { + void (* tmp)(void); + tmp = (void(*)(void)) GetProcAddress(libGL, "wglGetProcAddress"); + gladGetProcAddressPtr = (PFNWGLGETPROCADDRESSPROC_PRIVATE) tmp; + return gladGetProcAddressPtr != NULL; + } +#endif + + return 0; +} + +static +void close_gl(void) { + if(libGL != NULL) { + FreeLibrary((HMODULE) libGL); + libGL = NULL; + } +} +#else +#include +static void* libGL; + +#if !defined(__APPLE__) && !defined(__HAIKU__) +typedef void* (APIENTRYP PFNGLXGETPROCADDRESSPROC_PRIVATE)(const char*); +static PFNGLXGETPROCADDRESSPROC_PRIVATE gladGetProcAddressPtr; +#endif + +static +int open_gl(void) { +#ifdef __APPLE__ + static const char *NAMES[] = { + "../Frameworks/OpenGL.framework/OpenGL", + "/Library/Frameworks/OpenGL.framework/OpenGL", + "/System/Library/Frameworks/OpenGL.framework/OpenGL", + "/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL" + }; +#else + static const char *NAMES[] = {"libGL.so.1", "libGL.so"}; +#endif + + unsigned int index = 0; + for(index = 0; index < (sizeof(NAMES) / sizeof(NAMES[0])); index++) { + libGL = dlopen(NAMES[index], RTLD_NOW | RTLD_GLOBAL); + + if(libGL != NULL) { +#if defined(__APPLE__) || defined(__HAIKU__) + return 1; +#else + gladGetProcAddressPtr = (PFNGLXGETPROCADDRESSPROC_PRIVATE)dlsym(libGL, + "glXGetProcAddressARB"); + return gladGetProcAddressPtr != NULL; +#endif + } + } + + return 0; +} + +static +void close_gl(void) { + if(libGL != NULL) { + dlclose(libGL); + libGL = NULL; + } +} +#endif + +static +void* get_proc(const char *namez) { + void* result = NULL; + if(libGL == NULL) return NULL; + +#if !defined(__APPLE__) && !defined(__HAIKU__) + if(gladGetProcAddressPtr != NULL) { + result = gladGetProcAddressPtr(namez); + } +#endif + if(result == NULL) { +#if defined(_WIN32) || defined(__CYGWIN__) + result = (void*)GetProcAddress((HMODULE) libGL, namez); +#else + result = dlsym(libGL, namez); +#endif + } + + return result; +} + +int gladLoadGL(void) { + int status = 0; + + if(open_gl()) { + status = gladLoadGLLoader(&get_proc); + close_gl(); + } + + return status; +} + +struct gladGLversionStruct GLVersion = { 0, 0 }; + +#if defined(GL_ES_VERSION_3_0) || defined(GL_VERSION_3_0) +#define _GLAD_IS_SOME_NEW_VERSION 1 +#endif + +static int max_loaded_major; +static int max_loaded_minor; + +static const char *exts = NULL; +static int num_exts_i = 0; +static char **exts_i = NULL; + +static int get_exts(void) { +#ifdef _GLAD_IS_SOME_NEW_VERSION + if(max_loaded_major < 3) { +#endif + exts = (const char *)glGetString(GL_EXTENSIONS); +#ifdef _GLAD_IS_SOME_NEW_VERSION + } else { + int index; + + num_exts_i = 0; + glGetIntegerv(GL_NUM_EXTENSIONS, &num_exts_i); + if (num_exts_i > 0) { + exts_i = (char **)malloc((size_t)num_exts_i * (sizeof *exts_i)); + } + + if (exts_i == NULL) { + return 0; + } + + for(index = 0; index < num_exts_i; index++) { + const char *gl_str_tmp = (const char*)glGetStringi(GL_EXTENSIONS, index); + size_t len = strlen(gl_str_tmp); + + char *local_str = (char*)malloc((len+1) * sizeof(char)); + if(local_str != NULL) { + memcpy(local_str, gl_str_tmp, (len+1) * sizeof(char)); + } + exts_i[index] = local_str; + } + } +#endif + return 1; +} + +static void free_exts(void) { + if (exts_i != NULL) { + int index; + for(index = 0; index < num_exts_i; index++) { + free((char *)exts_i[index]); + } + free((void *)exts_i); + exts_i = NULL; + } +} + +static int has_ext(const char *ext) { +#ifdef _GLAD_IS_SOME_NEW_VERSION + if(max_loaded_major < 3) { +#endif + const char *extensions; + const char *loc; + const char *terminator; + extensions = exts; + if(extensions == NULL || ext == NULL) { + return 0; + } + + while(1) { + loc = strstr(extensions, ext); + if(loc == NULL) { + return 0; + } + + terminator = loc + strlen(ext); + if((loc == extensions || *(loc - 1) == ' ') && + (*terminator == ' ' || *terminator == '\0')) { + return 1; + } + extensions = terminator; + } +#ifdef _GLAD_IS_SOME_NEW_VERSION + } else { + int index; + if(exts_i == NULL) return 0; + for(index = 0; index < num_exts_i; index++) { + const char *e = exts_i[index]; + + if(exts_i[index] != NULL && strcmp(e, ext) == 0) { + return 1; + } + } + } +#endif + + return 0; +} +int GLAD_GL_VERSION_1_0 = 0; +int GLAD_GL_VERSION_1_1 = 0; +int GLAD_GL_VERSION_1_2 = 0; +int GLAD_GL_VERSION_1_3 = 0; +int GLAD_GL_VERSION_1_4 = 0; +int GLAD_GL_VERSION_1_5 = 0; +int GLAD_GL_VERSION_2_0 = 0; +int GLAD_GL_VERSION_2_1 = 0; +int GLAD_GL_VERSION_3_0 = 0; +int GLAD_GL_VERSION_3_1 = 0; +int GLAD_GL_VERSION_3_2 = 0; +int GLAD_GL_VERSION_3_3 = 0; +PFNGLACTIVETEXTUREPROC glad_glActiveTexture = NULL; +PFNGLATTACHSHADERPROC glad_glAttachShader = NULL; +PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender = NULL; +PFNGLBEGINQUERYPROC glad_glBeginQuery = NULL; +PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback = NULL; +PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation = NULL; +PFNGLBINDBUFFERPROC glad_glBindBuffer = NULL; +PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase = NULL; +PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange = NULL; +PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation = NULL; +PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_glBindFragDataLocationIndexed = NULL; +PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer = NULL; +PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer = NULL; +PFNGLBINDSAMPLERPROC glad_glBindSampler = NULL; +PFNGLBINDTEXTUREPROC glad_glBindTexture = NULL; +PFNGLBINDVERTEXARRAYPROC glad_glBindVertexArray = NULL; +PFNGLBLENDCOLORPROC glad_glBlendColor = NULL; +PFNGLBLENDEQUATIONPROC glad_glBlendEquation = NULL; +PFNGLBLENDEQUATIONSEPARATEPROC glad_glBlendEquationSeparate = NULL; +PFNGLBLENDFUNCPROC glad_glBlendFunc = NULL; +PFNGLBLENDFUNCSEPARATEPROC glad_glBlendFuncSeparate = NULL; +PFNGLBLITFRAMEBUFFERPROC glad_glBlitFramebuffer = NULL; +PFNGLBUFFERDATAPROC glad_glBufferData = NULL; +PFNGLBUFFERSUBDATAPROC glad_glBufferSubData = NULL; +PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_glCheckFramebufferStatus = NULL; +PFNGLCLAMPCOLORPROC glad_glClampColor = NULL; +PFNGLCLEARPROC glad_glClear = NULL; +PFNGLCLEARBUFFERFIPROC glad_glClearBufferfi = NULL; +PFNGLCLEARBUFFERFVPROC glad_glClearBufferfv = NULL; +PFNGLCLEARBUFFERIVPROC glad_glClearBufferiv = NULL; +PFNGLCLEARBUFFERUIVPROC glad_glClearBufferuiv = NULL; +PFNGLCLEARCOLORPROC glad_glClearColor = NULL; +PFNGLCLEARDEPTHPROC glad_glClearDepth = NULL; +PFNGLCLEARSTENCILPROC glad_glClearStencil = NULL; +PFNGLCLIENTWAITSYNCPROC glad_glClientWaitSync = NULL; +PFNGLCOLORMASKPROC glad_glColorMask = NULL; +PFNGLCOLORMASKIPROC glad_glColorMaski = NULL; +PFNGLCOLORP3UIPROC glad_glColorP3ui = NULL; +PFNGLCOLORP3UIVPROC glad_glColorP3uiv = NULL; +PFNGLCOLORP4UIPROC glad_glColorP4ui = NULL; +PFNGLCOLORP4UIVPROC glad_glColorP4uiv = NULL; +PFNGLCOMPILESHADERPROC glad_glCompileShader = NULL; +PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_glCompressedTexImage1D = NULL; +PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_glCompressedTexImage2D = NULL; +PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_glCompressedTexImage3D = NULL; +PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_glCompressedTexSubImage1D = NULL; +PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_glCompressedTexSubImage2D = NULL; +PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_glCompressedTexSubImage3D = NULL; +PFNGLCOPYBUFFERSUBDATAPROC glad_glCopyBufferSubData = NULL; +PFNGLCOPYTEXIMAGE1DPROC glad_glCopyTexImage1D = NULL; +PFNGLCOPYTEXIMAGE2DPROC glad_glCopyTexImage2D = NULL; +PFNGLCOPYTEXSUBIMAGE1DPROC glad_glCopyTexSubImage1D = NULL; +PFNGLCOPYTEXSUBIMAGE2DPROC glad_glCopyTexSubImage2D = NULL; +PFNGLCOPYTEXSUBIMAGE3DPROC glad_glCopyTexSubImage3D = NULL; +PFNGLCREATEPROGRAMPROC glad_glCreateProgram = NULL; +PFNGLCREATESHADERPROC glad_glCreateShader = NULL; +PFNGLCULLFACEPROC glad_glCullFace = NULL; +PFNGLDELETEBUFFERSPROC glad_glDeleteBuffers = NULL; +PFNGLDELETEFRAMEBUFFERSPROC glad_glDeleteFramebuffers = NULL; +PFNGLDELETEPROGRAMPROC glad_glDeleteProgram = NULL; +PFNGLDELETEQUERIESPROC glad_glDeleteQueries = NULL; +PFNGLDELETERENDERBUFFERSPROC glad_glDeleteRenderbuffers = NULL; +PFNGLDELETESAMPLERSPROC glad_glDeleteSamplers = NULL; +PFNGLDELETESHADERPROC glad_glDeleteShader = NULL; +PFNGLDELETESYNCPROC glad_glDeleteSync = NULL; +PFNGLDELETETEXTURESPROC glad_glDeleteTextures = NULL; +PFNGLDELETEVERTEXARRAYSPROC glad_glDeleteVertexArrays = NULL; +PFNGLDEPTHFUNCPROC glad_glDepthFunc = NULL; +PFNGLDEPTHMASKPROC glad_glDepthMask = NULL; +PFNGLDEPTHRANGEPROC glad_glDepthRange = NULL; +PFNGLDETACHSHADERPROC glad_glDetachShader = NULL; +PFNGLDISABLEPROC glad_glDisable = NULL; +PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_glDisableVertexAttribArray = NULL; +PFNGLDISABLEIPROC glad_glDisablei = NULL; +PFNGLDRAWARRAYSPROC glad_glDrawArrays = NULL; +PFNGLDRAWARRAYSINSTANCEDPROC glad_glDrawArraysInstanced = NULL; +PFNGLDRAWBUFFERPROC glad_glDrawBuffer = NULL; +PFNGLDRAWBUFFERSPROC glad_glDrawBuffers = NULL; +PFNGLDRAWELEMENTSPROC glad_glDrawElements = NULL; +PFNGLDRAWELEMENTSBASEVERTEXPROC glad_glDrawElementsBaseVertex = NULL; +PFNGLDRAWELEMENTSINSTANCEDPROC glad_glDrawElementsInstanced = NULL; +PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_glDrawElementsInstancedBaseVertex = NULL; +PFNGLDRAWRANGEELEMENTSPROC glad_glDrawRangeElements = NULL; +PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_glDrawRangeElementsBaseVertex = NULL; +PFNGLENABLEPROC glad_glEnable = NULL; +PFNGLENABLEVERTEXATTRIBARRAYPROC glad_glEnableVertexAttribArray = NULL; +PFNGLENABLEIPROC glad_glEnablei = NULL; +PFNGLENDCONDITIONALRENDERPROC glad_glEndConditionalRender = NULL; +PFNGLENDQUERYPROC glad_glEndQuery = NULL; +PFNGLENDTRANSFORMFEEDBACKPROC glad_glEndTransformFeedback = NULL; +PFNGLFENCESYNCPROC glad_glFenceSync = NULL; +PFNGLFINISHPROC glad_glFinish = NULL; +PFNGLFLUSHPROC glad_glFlush = NULL; +PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_glFlushMappedBufferRange = NULL; +PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_glFramebufferRenderbuffer = NULL; +PFNGLFRAMEBUFFERTEXTUREPROC glad_glFramebufferTexture = NULL; +PFNGLFRAMEBUFFERTEXTURE1DPROC glad_glFramebufferTexture1D = NULL; +PFNGLFRAMEBUFFERTEXTURE2DPROC glad_glFramebufferTexture2D = NULL; +PFNGLFRAMEBUFFERTEXTURE3DPROC glad_glFramebufferTexture3D = NULL; +PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_glFramebufferTextureLayer = NULL; +PFNGLFRONTFACEPROC glad_glFrontFace = NULL; +PFNGLGENBUFFERSPROC glad_glGenBuffers = NULL; +PFNGLGENFRAMEBUFFERSPROC glad_glGenFramebuffers = NULL; +PFNGLGENQUERIESPROC glad_glGenQueries = NULL; +PFNGLGENRENDERBUFFERSPROC glad_glGenRenderbuffers = NULL; +PFNGLGENSAMPLERSPROC glad_glGenSamplers = NULL; +PFNGLGENTEXTURESPROC glad_glGenTextures = NULL; +PFNGLGENVERTEXARRAYSPROC glad_glGenVertexArrays = NULL; +PFNGLGENERATEMIPMAPPROC glad_glGenerateMipmap = NULL; +PFNGLGETACTIVEATTRIBPROC glad_glGetActiveAttrib = NULL; +PFNGLGETACTIVEUNIFORMPROC glad_glGetActiveUniform = NULL; +PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_glGetActiveUniformBlockName = NULL; +PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_glGetActiveUniformBlockiv = NULL; +PFNGLGETACTIVEUNIFORMNAMEPROC glad_glGetActiveUniformName = NULL; +PFNGLGETACTIVEUNIFORMSIVPROC glad_glGetActiveUniformsiv = NULL; +PFNGLGETATTACHEDSHADERSPROC glad_glGetAttachedShaders = NULL; +PFNGLGETATTRIBLOCATIONPROC glad_glGetAttribLocation = NULL; +PFNGLGETBOOLEANI_VPROC glad_glGetBooleani_v = NULL; +PFNGLGETBOOLEANVPROC glad_glGetBooleanv = NULL; +PFNGLGETBUFFERPARAMETERI64VPROC glad_glGetBufferParameteri64v = NULL; +PFNGLGETBUFFERPARAMETERIVPROC glad_glGetBufferParameteriv = NULL; +PFNGLGETBUFFERPOINTERVPROC glad_glGetBufferPointerv = NULL; +PFNGLGETBUFFERSUBDATAPROC glad_glGetBufferSubData = NULL; +PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_glGetCompressedTexImage = NULL; +PFNGLGETDOUBLEVPROC glad_glGetDoublev = NULL; +PFNGLGETERRORPROC glad_glGetError = NULL; +PFNGLGETFLOATVPROC glad_glGetFloatv = NULL; +PFNGLGETFRAGDATAINDEXPROC glad_glGetFragDataIndex = NULL; +PFNGLGETFRAGDATALOCATIONPROC glad_glGetFragDataLocation = NULL; +PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetFramebufferAttachmentParameteriv = NULL; +PFNGLGETINTEGER64I_VPROC glad_glGetInteger64i_v = NULL; +PFNGLGETINTEGER64VPROC glad_glGetInteger64v = NULL; +PFNGLGETINTEGERI_VPROC glad_glGetIntegeri_v = NULL; +PFNGLGETINTEGERVPROC glad_glGetIntegerv = NULL; +PFNGLGETMULTISAMPLEFVPROC glad_glGetMultisamplefv = NULL; +PFNGLGETPROGRAMINFOLOGPROC glad_glGetProgramInfoLog = NULL; +PFNGLGETPROGRAMIVPROC glad_glGetProgramiv = NULL; +PFNGLGETQUERYOBJECTI64VPROC glad_glGetQueryObjecti64v = NULL; +PFNGLGETQUERYOBJECTIVPROC glad_glGetQueryObjectiv = NULL; +PFNGLGETQUERYOBJECTUI64VPROC glad_glGetQueryObjectui64v = NULL; +PFNGLGETQUERYOBJECTUIVPROC glad_glGetQueryObjectuiv = NULL; +PFNGLGETQUERYIVPROC glad_glGetQueryiv = NULL; +PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_glGetRenderbufferParameteriv = NULL; +PFNGLGETSAMPLERPARAMETERIIVPROC glad_glGetSamplerParameterIiv = NULL; +PFNGLGETSAMPLERPARAMETERIUIVPROC glad_glGetSamplerParameterIuiv = NULL; +PFNGLGETSAMPLERPARAMETERFVPROC glad_glGetSamplerParameterfv = NULL; +PFNGLGETSAMPLERPARAMETERIVPROC glad_glGetSamplerParameteriv = NULL; +PFNGLGETSHADERINFOLOGPROC glad_glGetShaderInfoLog = NULL; +PFNGLGETSHADERSOURCEPROC glad_glGetShaderSource = NULL; +PFNGLGETSHADERIVPROC glad_glGetShaderiv = NULL; +PFNGLGETSTRINGPROC glad_glGetString = NULL; +PFNGLGETSTRINGIPROC glad_glGetStringi = NULL; +PFNGLGETSYNCIVPROC glad_glGetSynciv = NULL; +PFNGLGETTEXIMAGEPROC glad_glGetTexImage = NULL; +PFNGLGETTEXLEVELPARAMETERFVPROC glad_glGetTexLevelParameterfv = NULL; +PFNGLGETTEXLEVELPARAMETERIVPROC glad_glGetTexLevelParameteriv = NULL; +PFNGLGETTEXPARAMETERIIVPROC glad_glGetTexParameterIiv = NULL; +PFNGLGETTEXPARAMETERIUIVPROC glad_glGetTexParameterIuiv = NULL; +PFNGLGETTEXPARAMETERFVPROC glad_glGetTexParameterfv = NULL; +PFNGLGETTEXPARAMETERIVPROC glad_glGetTexParameteriv = NULL; +PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_glGetTransformFeedbackVarying = NULL; +PFNGLGETUNIFORMBLOCKINDEXPROC glad_glGetUniformBlockIndex = NULL; +PFNGLGETUNIFORMINDICESPROC glad_glGetUniformIndices = NULL; +PFNGLGETUNIFORMLOCATIONPROC glad_glGetUniformLocation = NULL; +PFNGLGETUNIFORMFVPROC glad_glGetUniformfv = NULL; +PFNGLGETUNIFORMIVPROC glad_glGetUniformiv = NULL; +PFNGLGETUNIFORMUIVPROC glad_glGetUniformuiv = NULL; +PFNGLGETVERTEXATTRIBIIVPROC glad_glGetVertexAttribIiv = NULL; +PFNGLGETVERTEXATTRIBIUIVPROC glad_glGetVertexAttribIuiv = NULL; +PFNGLGETVERTEXATTRIBPOINTERVPROC glad_glGetVertexAttribPointerv = NULL; +PFNGLGETVERTEXATTRIBDVPROC glad_glGetVertexAttribdv = NULL; +PFNGLGETVERTEXATTRIBFVPROC glad_glGetVertexAttribfv = NULL; +PFNGLGETVERTEXATTRIBIVPROC glad_glGetVertexAttribiv = NULL; +PFNGLHINTPROC glad_glHint = NULL; +PFNGLISBUFFERPROC glad_glIsBuffer = NULL; +PFNGLISENABLEDPROC glad_glIsEnabled = NULL; +PFNGLISENABLEDIPROC glad_glIsEnabledi = NULL; +PFNGLISFRAMEBUFFERPROC glad_glIsFramebuffer = NULL; +PFNGLISPROGRAMPROC glad_glIsProgram = NULL; +PFNGLISQUERYPROC glad_glIsQuery = NULL; +PFNGLISRENDERBUFFERPROC glad_glIsRenderbuffer = NULL; +PFNGLISSAMPLERPROC glad_glIsSampler = NULL; +PFNGLISSHADERPROC glad_glIsShader = NULL; +PFNGLISSYNCPROC glad_glIsSync = NULL; +PFNGLISTEXTUREPROC glad_glIsTexture = NULL; +PFNGLISVERTEXARRAYPROC glad_glIsVertexArray = NULL; +PFNGLLINEWIDTHPROC glad_glLineWidth = NULL; +PFNGLLINKPROGRAMPROC glad_glLinkProgram = NULL; +PFNGLLOGICOPPROC glad_glLogicOp = NULL; +PFNGLMAPBUFFERPROC glad_glMapBuffer = NULL; +PFNGLMAPBUFFERRANGEPROC glad_glMapBufferRange = NULL; +PFNGLMULTIDRAWARRAYSPROC glad_glMultiDrawArrays = NULL; +PFNGLMULTIDRAWELEMENTSPROC glad_glMultiDrawElements = NULL; +PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_glMultiDrawElementsBaseVertex = NULL; +PFNGLMULTITEXCOORDP1UIPROC glad_glMultiTexCoordP1ui = NULL; +PFNGLMULTITEXCOORDP1UIVPROC glad_glMultiTexCoordP1uiv = NULL; +PFNGLMULTITEXCOORDP2UIPROC glad_glMultiTexCoordP2ui = NULL; +PFNGLMULTITEXCOORDP2UIVPROC glad_glMultiTexCoordP2uiv = NULL; +PFNGLMULTITEXCOORDP3UIPROC glad_glMultiTexCoordP3ui = NULL; +PFNGLMULTITEXCOORDP3UIVPROC glad_glMultiTexCoordP3uiv = NULL; +PFNGLMULTITEXCOORDP4UIPROC glad_glMultiTexCoordP4ui = NULL; +PFNGLMULTITEXCOORDP4UIVPROC glad_glMultiTexCoordP4uiv = NULL; +PFNGLNORMALP3UIPROC glad_glNormalP3ui = NULL; +PFNGLNORMALP3UIVPROC glad_glNormalP3uiv = NULL; +PFNGLPIXELSTOREFPROC glad_glPixelStoref = NULL; +PFNGLPIXELSTOREIPROC glad_glPixelStorei = NULL; +PFNGLPOINTPARAMETERFPROC glad_glPointParameterf = NULL; +PFNGLPOINTPARAMETERFVPROC glad_glPointParameterfv = NULL; +PFNGLPOINTPARAMETERIPROC glad_glPointParameteri = NULL; +PFNGLPOINTPARAMETERIVPROC glad_glPointParameteriv = NULL; +PFNGLPOINTSIZEPROC glad_glPointSize = NULL; +PFNGLPOLYGONMODEPROC glad_glPolygonMode = NULL; +PFNGLPOLYGONOFFSETPROC glad_glPolygonOffset = NULL; +PFNGLPRIMITIVERESTARTINDEXPROC glad_glPrimitiveRestartIndex = NULL; +PFNGLPROVOKINGVERTEXPROC glad_glProvokingVertex = NULL; +PFNGLQUERYCOUNTERPROC glad_glQueryCounter = NULL; +PFNGLREADBUFFERPROC glad_glReadBuffer = NULL; +PFNGLREADPIXELSPROC glad_glReadPixels = NULL; +PFNGLRENDERBUFFERSTORAGEPROC glad_glRenderbufferStorage = NULL; +PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glRenderbufferStorageMultisample = NULL; +PFNGLSAMPLECOVERAGEPROC glad_glSampleCoverage = NULL; +PFNGLSAMPLEMASKIPROC glad_glSampleMaski = NULL; +PFNGLSAMPLERPARAMETERIIVPROC glad_glSamplerParameterIiv = NULL; +PFNGLSAMPLERPARAMETERIUIVPROC glad_glSamplerParameterIuiv = NULL; +PFNGLSAMPLERPARAMETERFPROC glad_glSamplerParameterf = NULL; +PFNGLSAMPLERPARAMETERFVPROC glad_glSamplerParameterfv = NULL; +PFNGLSAMPLERPARAMETERIPROC glad_glSamplerParameteri = NULL; +PFNGLSAMPLERPARAMETERIVPROC glad_glSamplerParameteriv = NULL; +PFNGLSCISSORPROC glad_glScissor = NULL; +PFNGLSECONDARYCOLORP3UIPROC glad_glSecondaryColorP3ui = NULL; +PFNGLSECONDARYCOLORP3UIVPROC glad_glSecondaryColorP3uiv = NULL; +PFNGLSHADERSOURCEPROC glad_glShaderSource = NULL; +PFNGLSTENCILFUNCPROC glad_glStencilFunc = NULL; +PFNGLSTENCILFUNCSEPARATEPROC glad_glStencilFuncSeparate = NULL; +PFNGLSTENCILMASKPROC glad_glStencilMask = NULL; +PFNGLSTENCILMASKSEPARATEPROC glad_glStencilMaskSeparate = NULL; +PFNGLSTENCILOPPROC glad_glStencilOp = NULL; +PFNGLSTENCILOPSEPARATEPROC glad_glStencilOpSeparate = NULL; +PFNGLTEXBUFFERPROC glad_glTexBuffer = NULL; +PFNGLTEXCOORDP1UIPROC glad_glTexCoordP1ui = NULL; +PFNGLTEXCOORDP1UIVPROC glad_glTexCoordP1uiv = NULL; +PFNGLTEXCOORDP2UIPROC glad_glTexCoordP2ui = NULL; +PFNGLTEXCOORDP2UIVPROC glad_glTexCoordP2uiv = NULL; +PFNGLTEXCOORDP3UIPROC glad_glTexCoordP3ui = NULL; +PFNGLTEXCOORDP3UIVPROC glad_glTexCoordP3uiv = NULL; +PFNGLTEXCOORDP4UIPROC glad_glTexCoordP4ui = NULL; +PFNGLTEXCOORDP4UIVPROC glad_glTexCoordP4uiv = NULL; +PFNGLTEXIMAGE1DPROC glad_glTexImage1D = NULL; +PFNGLTEXIMAGE2DPROC glad_glTexImage2D = NULL; +PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_glTexImage2DMultisample = NULL; +PFNGLTEXIMAGE3DPROC glad_glTexImage3D = NULL; +PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_glTexImage3DMultisample = NULL; +PFNGLTEXPARAMETERIIVPROC glad_glTexParameterIiv = NULL; +PFNGLTEXPARAMETERIUIVPROC glad_glTexParameterIuiv = NULL; +PFNGLTEXPARAMETERFPROC glad_glTexParameterf = NULL; +PFNGLTEXPARAMETERFVPROC glad_glTexParameterfv = NULL; +PFNGLTEXPARAMETERIPROC glad_glTexParameteri = NULL; +PFNGLTEXPARAMETERIVPROC glad_glTexParameteriv = NULL; +PFNGLTEXSUBIMAGE1DPROC glad_glTexSubImage1D = NULL; +PFNGLTEXSUBIMAGE2DPROC glad_glTexSubImage2D = NULL; +PFNGLTEXSUBIMAGE3DPROC glad_glTexSubImage3D = NULL; +PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_glTransformFeedbackVaryings = NULL; +PFNGLUNIFORM1FPROC glad_glUniform1f = NULL; +PFNGLUNIFORM1FVPROC glad_glUniform1fv = NULL; +PFNGLUNIFORM1IPROC glad_glUniform1i = NULL; +PFNGLUNIFORM1IVPROC glad_glUniform1iv = NULL; +PFNGLUNIFORM1UIPROC glad_glUniform1ui = NULL; +PFNGLUNIFORM1UIVPROC glad_glUniform1uiv = NULL; +PFNGLUNIFORM2FPROC glad_glUniform2f = NULL; +PFNGLUNIFORM2FVPROC glad_glUniform2fv = NULL; +PFNGLUNIFORM2IPROC glad_glUniform2i = NULL; +PFNGLUNIFORM2IVPROC glad_glUniform2iv = NULL; +PFNGLUNIFORM2UIPROC glad_glUniform2ui = NULL; +PFNGLUNIFORM2UIVPROC glad_glUniform2uiv = NULL; +PFNGLUNIFORM3FPROC glad_glUniform3f = NULL; +PFNGLUNIFORM3FVPROC glad_glUniform3fv = NULL; +PFNGLUNIFORM3IPROC glad_glUniform3i = NULL; +PFNGLUNIFORM3IVPROC glad_glUniform3iv = NULL; +PFNGLUNIFORM3UIPROC glad_glUniform3ui = NULL; +PFNGLUNIFORM3UIVPROC glad_glUniform3uiv = NULL; +PFNGLUNIFORM4FPROC glad_glUniform4f = NULL; +PFNGLUNIFORM4FVPROC glad_glUniform4fv = NULL; +PFNGLUNIFORM4IPROC glad_glUniform4i = NULL; +PFNGLUNIFORM4IVPROC glad_glUniform4iv = NULL; +PFNGLUNIFORM4UIPROC glad_glUniform4ui = NULL; +PFNGLUNIFORM4UIVPROC glad_glUniform4uiv = NULL; +PFNGLUNIFORMBLOCKBINDINGPROC glad_glUniformBlockBinding = NULL; +PFNGLUNIFORMMATRIX2FVPROC glad_glUniformMatrix2fv = NULL; +PFNGLUNIFORMMATRIX2X3FVPROC glad_glUniformMatrix2x3fv = NULL; +PFNGLUNIFORMMATRIX2X4FVPROC glad_glUniformMatrix2x4fv = NULL; +PFNGLUNIFORMMATRIX3FVPROC glad_glUniformMatrix3fv = NULL; +PFNGLUNIFORMMATRIX3X2FVPROC glad_glUniformMatrix3x2fv = NULL; +PFNGLUNIFORMMATRIX3X4FVPROC glad_glUniformMatrix3x4fv = NULL; +PFNGLUNIFORMMATRIX4FVPROC glad_glUniformMatrix4fv = NULL; +PFNGLUNIFORMMATRIX4X2FVPROC glad_glUniformMatrix4x2fv = NULL; +PFNGLUNIFORMMATRIX4X3FVPROC glad_glUniformMatrix4x3fv = NULL; +PFNGLUNMAPBUFFERPROC glad_glUnmapBuffer = NULL; +PFNGLUSEPROGRAMPROC glad_glUseProgram = NULL; +PFNGLVALIDATEPROGRAMPROC glad_glValidateProgram = NULL; +PFNGLVERTEXATTRIB1DPROC glad_glVertexAttrib1d = NULL; +PFNGLVERTEXATTRIB1DVPROC glad_glVertexAttrib1dv = NULL; +PFNGLVERTEXATTRIB1FPROC glad_glVertexAttrib1f = NULL; +PFNGLVERTEXATTRIB1FVPROC glad_glVertexAttrib1fv = NULL; +PFNGLVERTEXATTRIB1SPROC glad_glVertexAttrib1s = NULL; +PFNGLVERTEXATTRIB1SVPROC glad_glVertexAttrib1sv = NULL; +PFNGLVERTEXATTRIB2DPROC glad_glVertexAttrib2d = NULL; +PFNGLVERTEXATTRIB2DVPROC glad_glVertexAttrib2dv = NULL; +PFNGLVERTEXATTRIB2FPROC glad_glVertexAttrib2f = NULL; +PFNGLVERTEXATTRIB2FVPROC glad_glVertexAttrib2fv = NULL; +PFNGLVERTEXATTRIB2SPROC glad_glVertexAttrib2s = NULL; +PFNGLVERTEXATTRIB2SVPROC glad_glVertexAttrib2sv = NULL; +PFNGLVERTEXATTRIB3DPROC glad_glVertexAttrib3d = NULL; +PFNGLVERTEXATTRIB3DVPROC glad_glVertexAttrib3dv = NULL; +PFNGLVERTEXATTRIB3FPROC glad_glVertexAttrib3f = NULL; +PFNGLVERTEXATTRIB3FVPROC glad_glVertexAttrib3fv = NULL; +PFNGLVERTEXATTRIB3SPROC glad_glVertexAttrib3s = NULL; +PFNGLVERTEXATTRIB3SVPROC glad_glVertexAttrib3sv = NULL; +PFNGLVERTEXATTRIB4NBVPROC glad_glVertexAttrib4Nbv = NULL; +PFNGLVERTEXATTRIB4NIVPROC glad_glVertexAttrib4Niv = NULL; +PFNGLVERTEXATTRIB4NSVPROC glad_glVertexAttrib4Nsv = NULL; +PFNGLVERTEXATTRIB4NUBPROC glad_glVertexAttrib4Nub = NULL; +PFNGLVERTEXATTRIB4NUBVPROC glad_glVertexAttrib4Nubv = NULL; +PFNGLVERTEXATTRIB4NUIVPROC glad_glVertexAttrib4Nuiv = NULL; +PFNGLVERTEXATTRIB4NUSVPROC glad_glVertexAttrib4Nusv = NULL; +PFNGLVERTEXATTRIB4BVPROC glad_glVertexAttrib4bv = NULL; +PFNGLVERTEXATTRIB4DPROC glad_glVertexAttrib4d = NULL; +PFNGLVERTEXATTRIB4DVPROC glad_glVertexAttrib4dv = NULL; +PFNGLVERTEXATTRIB4FPROC glad_glVertexAttrib4f = NULL; +PFNGLVERTEXATTRIB4FVPROC glad_glVertexAttrib4fv = NULL; +PFNGLVERTEXATTRIB4IVPROC glad_glVertexAttrib4iv = NULL; +PFNGLVERTEXATTRIB4SPROC glad_glVertexAttrib4s = NULL; +PFNGLVERTEXATTRIB4SVPROC glad_glVertexAttrib4sv = NULL; +PFNGLVERTEXATTRIB4UBVPROC glad_glVertexAttrib4ubv = NULL; +PFNGLVERTEXATTRIB4UIVPROC glad_glVertexAttrib4uiv = NULL; +PFNGLVERTEXATTRIB4USVPROC glad_glVertexAttrib4usv = NULL; +PFNGLVERTEXATTRIBDIVISORPROC glad_glVertexAttribDivisor = NULL; +PFNGLVERTEXATTRIBI1IPROC glad_glVertexAttribI1i = NULL; +PFNGLVERTEXATTRIBI1IVPROC glad_glVertexAttribI1iv = NULL; +PFNGLVERTEXATTRIBI1UIPROC glad_glVertexAttribI1ui = NULL; +PFNGLVERTEXATTRIBI1UIVPROC glad_glVertexAttribI1uiv = NULL; +PFNGLVERTEXATTRIBI2IPROC glad_glVertexAttribI2i = NULL; +PFNGLVERTEXATTRIBI2IVPROC glad_glVertexAttribI2iv = NULL; +PFNGLVERTEXATTRIBI2UIPROC glad_glVertexAttribI2ui = NULL; +PFNGLVERTEXATTRIBI2UIVPROC glad_glVertexAttribI2uiv = NULL; +PFNGLVERTEXATTRIBI3IPROC glad_glVertexAttribI3i = NULL; +PFNGLVERTEXATTRIBI3IVPROC glad_glVertexAttribI3iv = NULL; +PFNGLVERTEXATTRIBI3UIPROC glad_glVertexAttribI3ui = NULL; +PFNGLVERTEXATTRIBI3UIVPROC glad_glVertexAttribI3uiv = NULL; +PFNGLVERTEXATTRIBI4BVPROC glad_glVertexAttribI4bv = NULL; +PFNGLVERTEXATTRIBI4IPROC glad_glVertexAttribI4i = NULL; +PFNGLVERTEXATTRIBI4IVPROC glad_glVertexAttribI4iv = NULL; +PFNGLVERTEXATTRIBI4SVPROC glad_glVertexAttribI4sv = NULL; +PFNGLVERTEXATTRIBI4UBVPROC glad_glVertexAttribI4ubv = NULL; +PFNGLVERTEXATTRIBI4UIPROC glad_glVertexAttribI4ui = NULL; +PFNGLVERTEXATTRIBI4UIVPROC glad_glVertexAttribI4uiv = NULL; +PFNGLVERTEXATTRIBI4USVPROC glad_glVertexAttribI4usv = NULL; +PFNGLVERTEXATTRIBIPOINTERPROC glad_glVertexAttribIPointer = NULL; +PFNGLVERTEXATTRIBP1UIPROC glad_glVertexAttribP1ui = NULL; +PFNGLVERTEXATTRIBP1UIVPROC glad_glVertexAttribP1uiv = NULL; +PFNGLVERTEXATTRIBP2UIPROC glad_glVertexAttribP2ui = NULL; +PFNGLVERTEXATTRIBP2UIVPROC glad_glVertexAttribP2uiv = NULL; +PFNGLVERTEXATTRIBP3UIPROC glad_glVertexAttribP3ui = NULL; +PFNGLVERTEXATTRIBP3UIVPROC glad_glVertexAttribP3uiv = NULL; +PFNGLVERTEXATTRIBP4UIPROC glad_glVertexAttribP4ui = NULL; +PFNGLVERTEXATTRIBP4UIVPROC glad_glVertexAttribP4uiv = NULL; +PFNGLVERTEXATTRIBPOINTERPROC glad_glVertexAttribPointer = NULL; +PFNGLVERTEXP2UIPROC glad_glVertexP2ui = NULL; +PFNGLVERTEXP2UIVPROC glad_glVertexP2uiv = NULL; +PFNGLVERTEXP3UIPROC glad_glVertexP3ui = NULL; +PFNGLVERTEXP3UIVPROC glad_glVertexP3uiv = NULL; +PFNGLVERTEXP4UIPROC glad_glVertexP4ui = NULL; +PFNGLVERTEXP4UIVPROC glad_glVertexP4uiv = NULL; +PFNGLVIEWPORTPROC glad_glViewport = NULL; +PFNGLWAITSYNCPROC glad_glWaitSync = NULL; +static void load_GL_VERSION_1_0(GLADloadproc load) { + if(!GLAD_GL_VERSION_1_0) return; + glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); + glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); + glad_glHint = (PFNGLHINTPROC)load("glHint"); + glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); + glad_glPointSize = (PFNGLPOINTSIZEPROC)load("glPointSize"); + glad_glPolygonMode = (PFNGLPOLYGONMODEPROC)load("glPolygonMode"); + glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); + glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); + glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); + glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); + glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); + glad_glTexImage1D = (PFNGLTEXIMAGE1DPROC)load("glTexImage1D"); + glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); + glad_glDrawBuffer = (PFNGLDRAWBUFFERPROC)load("glDrawBuffer"); + glad_glClear = (PFNGLCLEARPROC)load("glClear"); + glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); + glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); + glad_glClearDepth = (PFNGLCLEARDEPTHPROC)load("glClearDepth"); + glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); + glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); + glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); + glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); + glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); + glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); + glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); + glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); + glad_glLogicOp = (PFNGLLOGICOPPROC)load("glLogicOp"); + glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); + glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); + glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); + glad_glPixelStoref = (PFNGLPIXELSTOREFPROC)load("glPixelStoref"); + glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); + glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); + glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); + glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); + glad_glGetDoublev = (PFNGLGETDOUBLEVPROC)load("glGetDoublev"); + glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); + glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); + glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); + glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); + glad_glGetTexImage = (PFNGLGETTEXIMAGEPROC)load("glGetTexImage"); + glad_glGetTexParameterfv = (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); + glad_glGetTexParameteriv = (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); + glad_glGetTexLevelParameterfv = (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); + glad_glGetTexLevelParameteriv = (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); + glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); + glad_glDepthRange = (PFNGLDEPTHRANGEPROC)load("glDepthRange"); + glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); +} +static void load_GL_VERSION_1_1(GLADloadproc load) { + if(!GLAD_GL_VERSION_1_1) return; + glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); + glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); + glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); + glad_glCopyTexImage1D = (PFNGLCOPYTEXIMAGE1DPROC)load("glCopyTexImage1D"); + glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); + glad_glCopyTexSubImage1D = (PFNGLCOPYTEXSUBIMAGE1DPROC)load("glCopyTexSubImage1D"); + glad_glCopyTexSubImage2D = (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); + glad_glTexSubImage1D = (PFNGLTEXSUBIMAGE1DPROC)load("glTexSubImage1D"); + glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); + glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); + glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); + glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); + glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); +} +static void load_GL_VERSION_1_2(GLADloadproc load) { + if(!GLAD_GL_VERSION_1_2) return; + glad_glDrawRangeElements = (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); + glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); + glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); + glad_glCopyTexSubImage3D = (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); +} +static void load_GL_VERSION_1_3(GLADloadproc load) { + if(!GLAD_GL_VERSION_1_3) return; + glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); + glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); + glad_glCompressedTexImage3D = (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); + glad_glCompressedTexImage2D = (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); + glad_glCompressedTexImage1D = (PFNGLCOMPRESSEDTEXIMAGE1DPROC)load("glCompressedTexImage1D"); + glad_glCompressedTexSubImage3D = (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); + glad_glCompressedTexSubImage2D = (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); + glad_glCompressedTexSubImage1D = (PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)load("glCompressedTexSubImage1D"); + glad_glGetCompressedTexImage = (PFNGLGETCOMPRESSEDTEXIMAGEPROC)load("glGetCompressedTexImage"); +} +static void load_GL_VERSION_1_4(GLADloadproc load) { + if(!GLAD_GL_VERSION_1_4) return; + glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); + glad_glMultiDrawArrays = (PFNGLMULTIDRAWARRAYSPROC)load("glMultiDrawArrays"); + glad_glMultiDrawElements = (PFNGLMULTIDRAWELEMENTSPROC)load("glMultiDrawElements"); + glad_glPointParameterf = (PFNGLPOINTPARAMETERFPROC)load("glPointParameterf"); + glad_glPointParameterfv = (PFNGLPOINTPARAMETERFVPROC)load("glPointParameterfv"); + glad_glPointParameteri = (PFNGLPOINTPARAMETERIPROC)load("glPointParameteri"); + glad_glPointParameteriv = (PFNGLPOINTPARAMETERIVPROC)load("glPointParameteriv"); + glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); + glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); +} +static void load_GL_VERSION_1_5(GLADloadproc load) { + if(!GLAD_GL_VERSION_1_5) return; + glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); + glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); + glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); + glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); + glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); + glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); + glad_glGetQueryObjectiv = (PFNGLGETQUERYOBJECTIVPROC)load("glGetQueryObjectiv"); + glad_glGetQueryObjectuiv = (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); + glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); + glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); + glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); + glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); + glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); + glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); + glad_glGetBufferSubData = (PFNGLGETBUFFERSUBDATAPROC)load("glGetBufferSubData"); + glad_glMapBuffer = (PFNGLMAPBUFFERPROC)load("glMapBuffer"); + glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); + glad_glGetBufferParameteriv = (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); + glad_glGetBufferPointerv = (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); +} +static void load_GL_VERSION_2_0(GLADloadproc load) { + if(!GLAD_GL_VERSION_2_0) return; + glad_glBlendEquationSeparate = (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); + glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); + glad_glStencilOpSeparate = (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); + glad_glStencilFuncSeparate = (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); + glad_glStencilMaskSeparate = (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); + glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); + glad_glBindAttribLocation = (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); + glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); + glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); + glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); + glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); + glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); + glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); + glad_glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); + glad_glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); + glad_glGetActiveAttrib = (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); + glad_glGetActiveUniform = (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); + glad_glGetAttachedShaders = (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); + glad_glGetAttribLocation = (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); + glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); + glad_glGetProgramInfoLog = (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); + glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); + glad_glGetShaderInfoLog = (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); + glad_glGetShaderSource = (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); + glad_glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); + glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); + glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); + glad_glGetVertexAttribdv = (PFNGLGETVERTEXATTRIBDVPROC)load("glGetVertexAttribdv"); + glad_glGetVertexAttribfv = (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); + glad_glGetVertexAttribiv = (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); + glad_glGetVertexAttribPointerv = (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); + glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); + glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); + glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); + glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); + glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); + glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); + glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); + glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); + glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); + glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); + glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); + glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); + glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); + glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); + glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); + glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); + glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); + glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); + glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); + glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); + glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); + glad_glUniformMatrix2fv = (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); + glad_glUniformMatrix3fv = (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); + glad_glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); + glad_glValidateProgram = (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); + glad_glVertexAttrib1d = (PFNGLVERTEXATTRIB1DPROC)load("glVertexAttrib1d"); + glad_glVertexAttrib1dv = (PFNGLVERTEXATTRIB1DVPROC)load("glVertexAttrib1dv"); + glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); + glad_glVertexAttrib1fv = (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); + glad_glVertexAttrib1s = (PFNGLVERTEXATTRIB1SPROC)load("glVertexAttrib1s"); + glad_glVertexAttrib1sv = (PFNGLVERTEXATTRIB1SVPROC)load("glVertexAttrib1sv"); + glad_glVertexAttrib2d = (PFNGLVERTEXATTRIB2DPROC)load("glVertexAttrib2d"); + glad_glVertexAttrib2dv = (PFNGLVERTEXATTRIB2DVPROC)load("glVertexAttrib2dv"); + glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); + glad_glVertexAttrib2fv = (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); + glad_glVertexAttrib2s = (PFNGLVERTEXATTRIB2SPROC)load("glVertexAttrib2s"); + glad_glVertexAttrib2sv = (PFNGLVERTEXATTRIB2SVPROC)load("glVertexAttrib2sv"); + glad_glVertexAttrib3d = (PFNGLVERTEXATTRIB3DPROC)load("glVertexAttrib3d"); + glad_glVertexAttrib3dv = (PFNGLVERTEXATTRIB3DVPROC)load("glVertexAttrib3dv"); + glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); + glad_glVertexAttrib3fv = (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); + glad_glVertexAttrib3s = (PFNGLVERTEXATTRIB3SPROC)load("glVertexAttrib3s"); + glad_glVertexAttrib3sv = (PFNGLVERTEXATTRIB3SVPROC)load("glVertexAttrib3sv"); + glad_glVertexAttrib4Nbv = (PFNGLVERTEXATTRIB4NBVPROC)load("glVertexAttrib4Nbv"); + glad_glVertexAttrib4Niv = (PFNGLVERTEXATTRIB4NIVPROC)load("glVertexAttrib4Niv"); + glad_glVertexAttrib4Nsv = (PFNGLVERTEXATTRIB4NSVPROC)load("glVertexAttrib4Nsv"); + glad_glVertexAttrib4Nub = (PFNGLVERTEXATTRIB4NUBPROC)load("glVertexAttrib4Nub"); + glad_glVertexAttrib4Nubv = (PFNGLVERTEXATTRIB4NUBVPROC)load("glVertexAttrib4Nubv"); + glad_glVertexAttrib4Nuiv = (PFNGLVERTEXATTRIB4NUIVPROC)load("glVertexAttrib4Nuiv"); + glad_glVertexAttrib4Nusv = (PFNGLVERTEXATTRIB4NUSVPROC)load("glVertexAttrib4Nusv"); + glad_glVertexAttrib4bv = (PFNGLVERTEXATTRIB4BVPROC)load("glVertexAttrib4bv"); + glad_glVertexAttrib4d = (PFNGLVERTEXATTRIB4DPROC)load("glVertexAttrib4d"); + glad_glVertexAttrib4dv = (PFNGLVERTEXATTRIB4DVPROC)load("glVertexAttrib4dv"); + glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); + glad_glVertexAttrib4fv = (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); + glad_glVertexAttrib4iv = (PFNGLVERTEXATTRIB4IVPROC)load("glVertexAttrib4iv"); + glad_glVertexAttrib4s = (PFNGLVERTEXATTRIB4SPROC)load("glVertexAttrib4s"); + glad_glVertexAttrib4sv = (PFNGLVERTEXATTRIB4SVPROC)load("glVertexAttrib4sv"); + glad_glVertexAttrib4ubv = (PFNGLVERTEXATTRIB4UBVPROC)load("glVertexAttrib4ubv"); + glad_glVertexAttrib4uiv = (PFNGLVERTEXATTRIB4UIVPROC)load("glVertexAttrib4uiv"); + glad_glVertexAttrib4usv = (PFNGLVERTEXATTRIB4USVPROC)load("glVertexAttrib4usv"); + glad_glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); +} +static void load_GL_VERSION_2_1(GLADloadproc load) { + if(!GLAD_GL_VERSION_2_1) return; + glad_glUniformMatrix2x3fv = (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); + glad_glUniformMatrix3x2fv = (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); + glad_glUniformMatrix2x4fv = (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); + glad_glUniformMatrix4x2fv = (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); + glad_glUniformMatrix3x4fv = (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); + glad_glUniformMatrix4x3fv = (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); +} +static void load_GL_VERSION_3_0(GLADloadproc load) { + if(!GLAD_GL_VERSION_3_0) return; + glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); + glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); + glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); + glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); + glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); + glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); + glad_glBeginTransformFeedback = (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); + glad_glEndTransformFeedback = (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); + glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); + glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); + glad_glTransformFeedbackVaryings = (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); + glad_glGetTransformFeedbackVarying = (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load("glGetTransformFeedbackVarying"); + glad_glClampColor = (PFNGLCLAMPCOLORPROC)load("glClampColor"); + glad_glBeginConditionalRender = (PFNGLBEGINCONDITIONALRENDERPROC)load("glBeginConditionalRender"); + glad_glEndConditionalRender = (PFNGLENDCONDITIONALRENDERPROC)load("glEndConditionalRender"); + glad_glVertexAttribIPointer = (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); + glad_glGetVertexAttribIiv = (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); + glad_glGetVertexAttribIuiv = (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); + glad_glVertexAttribI1i = (PFNGLVERTEXATTRIBI1IPROC)load("glVertexAttribI1i"); + glad_glVertexAttribI2i = (PFNGLVERTEXATTRIBI2IPROC)load("glVertexAttribI2i"); + glad_glVertexAttribI3i = (PFNGLVERTEXATTRIBI3IPROC)load("glVertexAttribI3i"); + glad_glVertexAttribI4i = (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); + glad_glVertexAttribI1ui = (PFNGLVERTEXATTRIBI1UIPROC)load("glVertexAttribI1ui"); + glad_glVertexAttribI2ui = (PFNGLVERTEXATTRIBI2UIPROC)load("glVertexAttribI2ui"); + glad_glVertexAttribI3ui = (PFNGLVERTEXATTRIBI3UIPROC)load("glVertexAttribI3ui"); + glad_glVertexAttribI4ui = (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); + glad_glVertexAttribI1iv = (PFNGLVERTEXATTRIBI1IVPROC)load("glVertexAttribI1iv"); + glad_glVertexAttribI2iv = (PFNGLVERTEXATTRIBI2IVPROC)load("glVertexAttribI2iv"); + glad_glVertexAttribI3iv = (PFNGLVERTEXATTRIBI3IVPROC)load("glVertexAttribI3iv"); + glad_glVertexAttribI4iv = (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); + glad_glVertexAttribI1uiv = (PFNGLVERTEXATTRIBI1UIVPROC)load("glVertexAttribI1uiv"); + glad_glVertexAttribI2uiv = (PFNGLVERTEXATTRIBI2UIVPROC)load("glVertexAttribI2uiv"); + glad_glVertexAttribI3uiv = (PFNGLVERTEXATTRIBI3UIVPROC)load("glVertexAttribI3uiv"); + glad_glVertexAttribI4uiv = (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); + glad_glVertexAttribI4bv = (PFNGLVERTEXATTRIBI4BVPROC)load("glVertexAttribI4bv"); + glad_glVertexAttribI4sv = (PFNGLVERTEXATTRIBI4SVPROC)load("glVertexAttribI4sv"); + glad_glVertexAttribI4ubv = (PFNGLVERTEXATTRIBI4UBVPROC)load("glVertexAttribI4ubv"); + glad_glVertexAttribI4usv = (PFNGLVERTEXATTRIBI4USVPROC)load("glVertexAttribI4usv"); + glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); + glad_glBindFragDataLocation = (PFNGLBINDFRAGDATALOCATIONPROC)load("glBindFragDataLocation"); + glad_glGetFragDataLocation = (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); + glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); + glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); + glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); + glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); + glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); + glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); + glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); + glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); + glad_glTexParameterIiv = (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); + glad_glTexParameterIuiv = (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); + glad_glGetTexParameterIiv = (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); + glad_glGetTexParameterIuiv = (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); + glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); + glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); + glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); + glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); + glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); + glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); + glad_glBindRenderbuffer = (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); + glad_glDeleteRenderbuffers = (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); + glad_glGenRenderbuffers = (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); + glad_glRenderbufferStorage = (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); + glad_glGetRenderbufferParameteriv = (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load("glGetRenderbufferParameteriv"); + glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); + glad_glBindFramebuffer = (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); + glad_glDeleteFramebuffers = (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); + glad_glGenFramebuffers = (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); + glad_glCheckFramebufferStatus = (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); + glad_glFramebufferTexture1D = (PFNGLFRAMEBUFFERTEXTURE1DPROC)load("glFramebufferTexture1D"); + glad_glFramebufferTexture2D = (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); + glad_glFramebufferTexture3D = (PFNGLFRAMEBUFFERTEXTURE3DPROC)load("glFramebufferTexture3D"); + glad_glFramebufferRenderbuffer = (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); + glad_glGetFramebufferAttachmentParameteriv = (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetFramebufferAttachmentParameteriv"); + glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); + glad_glBlitFramebuffer = (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); + glad_glRenderbufferStorageMultisample = (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glRenderbufferStorageMultisample"); + glad_glFramebufferTextureLayer = (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); + glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); + glad_glFlushMappedBufferRange = (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); + glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); + glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); + glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); + glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); +} +static void load_GL_VERSION_3_1(GLADloadproc load) { + if(!GLAD_GL_VERSION_3_1) return; + glad_glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); + glad_glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); + glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); + glad_glPrimitiveRestartIndex = (PFNGLPRIMITIVERESTARTINDEXPROC)load("glPrimitiveRestartIndex"); + glad_glCopyBufferSubData = (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); + glad_glGetUniformIndices = (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); + glad_glGetActiveUniformsiv = (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); + glad_glGetActiveUniformName = (PFNGLGETACTIVEUNIFORMNAMEPROC)load("glGetActiveUniformName"); + glad_glGetUniformBlockIndex = (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); + glad_glGetActiveUniformBlockiv = (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); + glad_glGetActiveUniformBlockName = (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); + glad_glUniformBlockBinding = (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); + glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); + glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); + glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); +} +static void load_GL_VERSION_3_2(GLADloadproc load) { + if(!GLAD_GL_VERSION_3_2) return; + glad_glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); + glad_glDrawRangeElementsBaseVertex = (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load("glDrawRangeElementsBaseVertex"); + glad_glDrawElementsInstancedBaseVertex = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load("glDrawElementsInstancedBaseVertex"); + glad_glMultiDrawElementsBaseVertex = (PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)load("glMultiDrawElementsBaseVertex"); + glad_glProvokingVertex = (PFNGLPROVOKINGVERTEXPROC)load("glProvokingVertex"); + glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); + glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); + glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); + glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); + glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); + glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); + glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); + glad_glGetInteger64i_v = (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); + glad_glGetBufferParameteri64v = (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); + glad_glFramebufferTexture = (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); + glad_glTexImage2DMultisample = (PFNGLTEXIMAGE2DMULTISAMPLEPROC)load("glTexImage2DMultisample"); + glad_glTexImage3DMultisample = (PFNGLTEXIMAGE3DMULTISAMPLEPROC)load("glTexImage3DMultisample"); + glad_glGetMultisamplefv = (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); + glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); +} +static void load_GL_VERSION_3_3(GLADloadproc load) { + if(!GLAD_GL_VERSION_3_3) return; + glad_glBindFragDataLocationIndexed = (PFNGLBINDFRAGDATALOCATIONINDEXEDPROC)load("glBindFragDataLocationIndexed"); + glad_glGetFragDataIndex = (PFNGLGETFRAGDATAINDEXPROC)load("glGetFragDataIndex"); + glad_glGenSamplers = (PFNGLGENSAMPLERSPROC)load("glGenSamplers"); + glad_glDeleteSamplers = (PFNGLDELETESAMPLERSPROC)load("glDeleteSamplers"); + glad_glIsSampler = (PFNGLISSAMPLERPROC)load("glIsSampler"); + glad_glBindSampler = (PFNGLBINDSAMPLERPROC)load("glBindSampler"); + glad_glSamplerParameteri = (PFNGLSAMPLERPARAMETERIPROC)load("glSamplerParameteri"); + glad_glSamplerParameteriv = (PFNGLSAMPLERPARAMETERIVPROC)load("glSamplerParameteriv"); + glad_glSamplerParameterf = (PFNGLSAMPLERPARAMETERFPROC)load("glSamplerParameterf"); + glad_glSamplerParameterfv = (PFNGLSAMPLERPARAMETERFVPROC)load("glSamplerParameterfv"); + glad_glSamplerParameterIiv = (PFNGLSAMPLERPARAMETERIIVPROC)load("glSamplerParameterIiv"); + glad_glSamplerParameterIuiv = (PFNGLSAMPLERPARAMETERIUIVPROC)load("glSamplerParameterIuiv"); + glad_glGetSamplerParameteriv = (PFNGLGETSAMPLERPARAMETERIVPROC)load("glGetSamplerParameteriv"); + glad_glGetSamplerParameterIiv = (PFNGLGETSAMPLERPARAMETERIIVPROC)load("glGetSamplerParameterIiv"); + glad_glGetSamplerParameterfv = (PFNGLGETSAMPLERPARAMETERFVPROC)load("glGetSamplerParameterfv"); + glad_glGetSamplerParameterIuiv = (PFNGLGETSAMPLERPARAMETERIUIVPROC)load("glGetSamplerParameterIuiv"); + glad_glQueryCounter = (PFNGLQUERYCOUNTERPROC)load("glQueryCounter"); + glad_glGetQueryObjecti64v = (PFNGLGETQUERYOBJECTI64VPROC)load("glGetQueryObjecti64v"); + glad_glGetQueryObjectui64v = (PFNGLGETQUERYOBJECTUI64VPROC)load("glGetQueryObjectui64v"); + glad_glVertexAttribDivisor = (PFNGLVERTEXATTRIBDIVISORPROC)load("glVertexAttribDivisor"); + glad_glVertexAttribP1ui = (PFNGLVERTEXATTRIBP1UIPROC)load("glVertexAttribP1ui"); + glad_glVertexAttribP1uiv = (PFNGLVERTEXATTRIBP1UIVPROC)load("glVertexAttribP1uiv"); + glad_glVertexAttribP2ui = (PFNGLVERTEXATTRIBP2UIPROC)load("glVertexAttribP2ui"); + glad_glVertexAttribP2uiv = (PFNGLVERTEXATTRIBP2UIVPROC)load("glVertexAttribP2uiv"); + glad_glVertexAttribP3ui = (PFNGLVERTEXATTRIBP3UIPROC)load("glVertexAttribP3ui"); + glad_glVertexAttribP3uiv = (PFNGLVERTEXATTRIBP3UIVPROC)load("glVertexAttribP3uiv"); + glad_glVertexAttribP4ui = (PFNGLVERTEXATTRIBP4UIPROC)load("glVertexAttribP4ui"); + glad_glVertexAttribP4uiv = (PFNGLVERTEXATTRIBP4UIVPROC)load("glVertexAttribP4uiv"); + glad_glVertexP2ui = (PFNGLVERTEXP2UIPROC)load("glVertexP2ui"); + glad_glVertexP2uiv = (PFNGLVERTEXP2UIVPROC)load("glVertexP2uiv"); + glad_glVertexP3ui = (PFNGLVERTEXP3UIPROC)load("glVertexP3ui"); + glad_glVertexP3uiv = (PFNGLVERTEXP3UIVPROC)load("glVertexP3uiv"); + glad_glVertexP4ui = (PFNGLVERTEXP4UIPROC)load("glVertexP4ui"); + glad_glVertexP4uiv = (PFNGLVERTEXP4UIVPROC)load("glVertexP4uiv"); + glad_glTexCoordP1ui = (PFNGLTEXCOORDP1UIPROC)load("glTexCoordP1ui"); + glad_glTexCoordP1uiv = (PFNGLTEXCOORDP1UIVPROC)load("glTexCoordP1uiv"); + glad_glTexCoordP2ui = (PFNGLTEXCOORDP2UIPROC)load("glTexCoordP2ui"); + glad_glTexCoordP2uiv = (PFNGLTEXCOORDP2UIVPROC)load("glTexCoordP2uiv"); + glad_glTexCoordP3ui = (PFNGLTEXCOORDP3UIPROC)load("glTexCoordP3ui"); + glad_glTexCoordP3uiv = (PFNGLTEXCOORDP3UIVPROC)load("glTexCoordP3uiv"); + glad_glTexCoordP4ui = (PFNGLTEXCOORDP4UIPROC)load("glTexCoordP4ui"); + glad_glTexCoordP4uiv = (PFNGLTEXCOORDP4UIVPROC)load("glTexCoordP4uiv"); + glad_glMultiTexCoordP1ui = (PFNGLMULTITEXCOORDP1UIPROC)load("glMultiTexCoordP1ui"); + glad_glMultiTexCoordP1uiv = (PFNGLMULTITEXCOORDP1UIVPROC)load("glMultiTexCoordP1uiv"); + glad_glMultiTexCoordP2ui = (PFNGLMULTITEXCOORDP2UIPROC)load("glMultiTexCoordP2ui"); + glad_glMultiTexCoordP2uiv = (PFNGLMULTITEXCOORDP2UIVPROC)load("glMultiTexCoordP2uiv"); + glad_glMultiTexCoordP3ui = (PFNGLMULTITEXCOORDP3UIPROC)load("glMultiTexCoordP3ui"); + glad_glMultiTexCoordP3uiv = (PFNGLMULTITEXCOORDP3UIVPROC)load("glMultiTexCoordP3uiv"); + glad_glMultiTexCoordP4ui = (PFNGLMULTITEXCOORDP4UIPROC)load("glMultiTexCoordP4ui"); + glad_glMultiTexCoordP4uiv = (PFNGLMULTITEXCOORDP4UIVPROC)load("glMultiTexCoordP4uiv"); + glad_glNormalP3ui = (PFNGLNORMALP3UIPROC)load("glNormalP3ui"); + glad_glNormalP3uiv = (PFNGLNORMALP3UIVPROC)load("glNormalP3uiv"); + glad_glColorP3ui = (PFNGLCOLORP3UIPROC)load("glColorP3ui"); + glad_glColorP3uiv = (PFNGLCOLORP3UIVPROC)load("glColorP3uiv"); + glad_glColorP4ui = (PFNGLCOLORP4UIPROC)load("glColorP4ui"); + glad_glColorP4uiv = (PFNGLCOLORP4UIVPROC)load("glColorP4uiv"); + glad_glSecondaryColorP3ui = (PFNGLSECONDARYCOLORP3UIPROC)load("glSecondaryColorP3ui"); + glad_glSecondaryColorP3uiv = (PFNGLSECONDARYCOLORP3UIVPROC)load("glSecondaryColorP3uiv"); +} +static int find_extensionsGL(void) { + if (!get_exts()) return 0; + (void)&has_ext; + free_exts(); + return 1; +} + +static void find_coreGL(void) { + + /* Thank you @elmindreda + * https://github.com/elmindreda/greg/blob/master/templates/greg.c.in#L176 + * https://github.com/glfw/glfw/blob/master/src/context.c#L36 + */ + int i, major, minor; + + const char* version; + const char* prefixes[] = { + "OpenGL ES-CM ", + "OpenGL ES-CL ", + "OpenGL ES ", + NULL + }; + + version = (const char*) glGetString(GL_VERSION); + if (!version) return; + + for (i = 0; prefixes[i]; i++) { + const size_t length = strlen(prefixes[i]); + if (strncmp(version, prefixes[i], length) == 0) { + version += length; + break; + } + } + +/* PR #18 */ +#ifdef _MSC_VER + sscanf_s(version, "%d.%d", &major, &minor); +#else + sscanf(version, "%d.%d", &major, &minor); +#endif + + GLVersion.major = major; GLVersion.minor = minor; + max_loaded_major = major; max_loaded_minor = minor; + GLAD_GL_VERSION_1_0 = (major == 1 && minor >= 0) || major > 1; + GLAD_GL_VERSION_1_1 = (major == 1 && minor >= 1) || major > 1; + GLAD_GL_VERSION_1_2 = (major == 1 && minor >= 2) || major > 1; + GLAD_GL_VERSION_1_3 = (major == 1 && minor >= 3) || major > 1; + GLAD_GL_VERSION_1_4 = (major == 1 && minor >= 4) || major > 1; + GLAD_GL_VERSION_1_5 = (major == 1 && minor >= 5) || major > 1; + GLAD_GL_VERSION_2_0 = (major == 2 && minor >= 0) || major > 2; + GLAD_GL_VERSION_2_1 = (major == 2 && minor >= 1) || major > 2; + GLAD_GL_VERSION_3_0 = (major == 3 && minor >= 0) || major > 3; + GLAD_GL_VERSION_3_1 = (major == 3 && minor >= 1) || major > 3; + GLAD_GL_VERSION_3_2 = (major == 3 && minor >= 2) || major > 3; + GLAD_GL_VERSION_3_3 = (major == 3 && minor >= 3) || major > 3; + if (GLVersion.major > 3 || (GLVersion.major >= 3 && GLVersion.minor >= 3)) { + max_loaded_major = 3; + max_loaded_minor = 3; + } +} + +int gladLoadGLLoader(GLADloadproc load) { + GLVersion.major = 0; GLVersion.minor = 0; + glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); + if(glGetString == NULL) return 0; + if(glGetString(GL_VERSION) == NULL) return 0; + find_coreGL(); + load_GL_VERSION_1_0(load); + load_GL_VERSION_1_1(load); + load_GL_VERSION_1_2(load); + load_GL_VERSION_1_3(load); + load_GL_VERSION_1_4(load); + load_GL_VERSION_1_5(load); + load_GL_VERSION_2_0(load); + load_GL_VERSION_2_1(load); + load_GL_VERSION_3_0(load); + load_GL_VERSION_3_1(load); + load_GL_VERSION_3_2(load); + load_GL_VERSION_3_3(load); + + if (!find_extensionsGL()) return 0; + return GLVersion.major != 0 || GLVersion.minor != 0; +} + diff --git a/YuppleMayham/src/utility/data/font_data.c b/YuppleMayham/src/utility/data/font_data.c new file mode 100644 index 0000000..07c0582 --- /dev/null +++ b/YuppleMayham/src/utility/data/font_data.c @@ -0,0 +1,1847 @@ +/* C array of file 'Px437_IBM_VGA_9x8.ttf' */ + +#include "utility/data/font_data.h" + +const unsigned char debug_font_data[] = { + + 0x0, 0x1, 0x0, 0x0, 0x0, 0xE, 0x0, 0x80, 0x0, 0x3, 0x0, 0x60, 0x46, + 0x46, 0x54, 0x4D, 0x87, 0x9A, 0x43, 0x3B, 0x0, 0x0, 0x5D, 0x28, 0x0, 0x0, + 0x0, 0x1C, 0x47, 0x44, 0x45, 0x46, 0x0, 0x15, 0x0, 0x14, 0x0, 0x0, 0x5D, + 0xC, 0x0, 0x0, 0x0, 0x1C, 0x4F, 0x53, 0x2F, 0x32, 0x64, 0x81, 0xB, 0x9C, + 0x0, 0x0, 0x1, 0x68, 0x0, 0x0, 0x0, 0x60, 0x63, 0x6D, 0x61, 0x70, 0x1F, + 0x67, 0x93, 0xA, 0x0, 0x0, 0x4, 0x14, 0x0, 0x0, 0x4, 0xAA, 0x63, 0x76, + 0x74, 0x20, 0x0, 0x1A, 0x1, 0xFB, 0x0, 0x0, 0x8, 0xC0, 0x0, 0x0, 0x0, + 0x4, 0x67, 0x61, 0x73, 0x70, 0xFF, 0xFF, 0x0, 0x3, 0x0, 0x0, 0x5D, 0x4, + 0x0, 0x0, 0x0, 0x8, 0x67, 0x6C, 0x79, 0x66, 0x0, 0x2E, 0x3F, 0xF0, 0x0, + 0x0, 0xB, 0x8, 0x0, 0x0, 0x46, 0x18, 0x68, 0x65, 0x61, 0x64, 0xF, 0xAB, + 0x81, 0xB8, 0x0, 0x0, 0x0, 0xEC, 0x0, 0x0, 0x0, 0x36, 0x68, 0x68, 0x65, + 0x61, 0x6, 0x42, 0x3, 0x25, 0x0, 0x0, 0x1, 0x24, 0x0, 0x0, 0x0, 0x24, + 0x68, 0x6D, 0x74, 0x78, 0x1E, 0xDC, 0x15, 0xFA, 0x0, 0x0, 0x1, 0xC8, 0x0, + 0x0, 0x2, 0x4A, 0x6C, 0x6F, 0x63, 0x61, 0xDC, 0x91, 0xEE, 0x94, 0x0, 0x0, + 0x8, 0xC4, 0x0, 0x0, 0x2, 0x44, 0x6D, 0x61, 0x78, 0x70, 0x1, 0x42, 0x0, + 0xB0, 0x0, 0x0, 0x1, 0x48, 0x0, 0x0, 0x0, 0x20, 0x6E, 0x61, 0x6D, 0x65, + 0xD6, 0x26, 0x68, 0xDB, 0x0, 0x0, 0x51, 0x20, 0x0, 0x0, 0x5, 0x1F, 0x70, + 0x6F, 0x73, 0x74, 0x2C, 0x47, 0x84, 0xB4, 0x0, 0x0, 0x56, 0x40, 0x0, 0x0, + 0x6, 0xC2, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xB, 0x5A, 0xB2, + 0x9F, 0x5F, 0xF, 0x3C, 0xF5, 0x0, 0xB, 0x3, 0x20, 0x0, 0x0, 0x0, 0x0, + 0xD2, 0x32, 0xE, 0x1B, 0x0, 0x0, 0x0, 0x0, 0xDA, 0xD6, 0x31, 0x28, 0x0, + 0x0, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x0, 0x0, 0x8, 0x0, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x2, 0xBC, 0xFF, + 0x9C, 0x0, 0x0, 0x3, 0x84, 0x0, 0x0, 0x0, 0x0, 0x3, 0x84, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0x0, 0x1, 0x0, 0x0, 0x1, 0x21, 0x0, 0x80, 0x0, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2E, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x3, 0x84, + 0x1, 0x90, 0x0, 0x5, 0x0, 0x0, 0x3, 0x20, 0x3, 0x20, 0x0, 0x0, 0x1, + 0x90, 0x3, 0x20, 0x3, 0x20, 0x0, 0x0, 0x1, 0x90, 0x0, 0x64, 0x1, 0x5E, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x56, 0x2E, 0x52, 0x2E, 0x0, 0x80, 0x0, 0x0, 0x26, 0x6B, 0x2, + 0xBC, 0xFF, 0x9C, 0x0, 0x0, 0x2, 0xBC, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, + 0x80, 0x0, 0x0, 0x0, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x0, 0x0, 0x20, 0x0, + 0x1, 0x3, 0x84, 0x0, 0x1A, 0x3, 0x84, 0x0, 0x0, 0x3, 0x84, 0x0, 0x0, + 0x3, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xC8, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x64, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x64, 0x0, 0x64, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x64, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x64, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, + 0xC8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xC8, 0x0, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, + 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0xC8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x2C, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2C, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x64, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2C, 0x0, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xC8, 0x0, 0x64, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, + 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x1, 0x2C, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2C, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2C, + 0x1, 0x2C, 0x0, 0x0, 0x1, 0x2C, 0x0, 0x0, 0x1, 0x2C, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xC8, 0x1, 0x2C, 0x0, 0xC8, + 0x0, 0xC8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2C, 0x0, 0xC8, 0x0, + 0xC8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2C, 0x0, 0xC8, 0x0, 0xC8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xC8, 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3, 0x0, + 0x0, 0x0, 0x1C, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x3, 0xA4, 0x0, 0x3, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x1C, 0x0, 0x4, 0x3, 0x88, 0x0, 0x0, 0x0, + 0x9E, 0x0, 0x80, 0x0, 0x6, 0x0, 0x1E, 0x0, 0x7F, 0x0, 0xA3, 0x0, 0xA5, + 0x0, 0xA7, 0x0, 0xAC, 0x0, 0xB2, 0x0, 0xB7, 0x0, 0xBD, 0x0, 0xBF, 0x0, + 0xC7, 0x0, 0xC9, 0x0, 0xD1, 0x0, 0xD6, 0x0, 0xDC, 0x0, 0xE2, 0x0, 0xEF, + 0x0, 0xF4, 0x0, 0xF7, 0x0, 0xFC, 0x0, 0xFF, 0x1, 0x92, 0x3, 0x93, 0x3, + 0x98, 0x3, 0xA3, 0x3, 0xA6, 0x3, 0xA9, 0x3, 0xB1, 0x3, 0xB5, 0x3, 0xC0, + 0x3, 0xC4, 0x3, 0xC6, 0x20, 0x22, 0x20, 0x3C, 0x20, 0x7F, 0x20, 0xA7, 0x21, + 0x95, 0x21, 0xA8, 0x22, 0x1A, 0x22, 0x1F, 0x22, 0x29, 0x22, 0x48, 0x22, 0x61, + 0x22, 0x65, 0x23, 0x2, 0x23, 0x10, 0x23, 0x21, 0x25, 0x0, 0x25, 0x2, 0x25, + 0xC, 0x25, 0x10, 0x25, 0x14, 0x25, 0x18, 0x25, 0x1C, 0x25, 0x24, 0x25, 0x2C, + 0x25, 0x34, 0x25, 0x3C, 0x25, 0x6C, 0x25, 0x80, 0x25, 0x84, 0x25, 0x88, 0x25, + 0x8C, 0x25, 0x93, 0x25, 0xA0, 0x25, 0xAC, 0x25, 0xB2, 0x25, 0xBA, 0x25, 0xBC, + 0x25, 0xC4, 0x25, 0xCB, 0x25, 0xD9, 0x26, 0x3C, 0x26, 0x40, 0x26, 0x42, 0x26, + 0x60, 0x26, 0x63, 0x26, 0x66, 0x26, 0x6B, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xA0, 0x0, 0xA5, 0x0, 0xA7, 0x0, 0xAA, 0x0, 0xB0, 0x0, 0xB5, 0x0, + 0xBA, 0x0, 0xBF, 0x0, 0xC4, 0x0, 0xC9, 0x0, 0xD1, 0x0, 0xD6, 0x0, 0xDC, + 0x0, 0xDF, 0x0, 0xE4, 0x0, 0xF1, 0x0, 0xF6, 0x0, 0xF9, 0x0, 0xFF, 0x1, + 0x92, 0x3, 0x93, 0x3, 0x98, 0x3, 0xA3, 0x3, 0xA6, 0x3, 0xA9, 0x3, 0xB1, + 0x3, 0xB4, 0x3, 0xC0, 0x3, 0xC3, 0x3, 0xC6, 0x20, 0x22, 0x20, 0x3C, 0x20, + 0x7F, 0x20, 0xA7, 0x21, 0x90, 0x21, 0xA8, 0x22, 0x19, 0x22, 0x1E, 0x22, 0x29, + 0x22, 0x48, 0x22, 0x61, 0x22, 0x64, 0x23, 0x2, 0x23, 0x10, 0x23, 0x20, 0x25, + 0x0, 0x25, 0x2, 0x25, 0xC, 0x25, 0x10, 0x25, 0x14, 0x25, 0x18, 0x25, 0x1C, + 0x25, 0x24, 0x25, 0x2C, 0x25, 0x34, 0x25, 0x3C, 0x25, 0x50, 0x25, 0x80, 0x25, + 0x84, 0x25, 0x88, 0x25, 0x8C, 0x25, 0x90, 0x25, 0xA0, 0x25, 0xAC, 0x25, 0xB2, + 0x25, 0xBA, 0x25, 0xBC, 0x25, 0xC4, 0x25, 0xCB, 0x25, 0xD8, 0x26, 0x3A, 0x26, + 0x40, 0x26, 0x42, 0x26, 0x60, 0x26, 0x63, 0x26, 0x65, 0x26, 0x6A, 0xFF, 0xFF, + 0x0, 0x0, 0xFF, 0xE1, 0xFF, 0xE0, 0xFF, 0xDF, 0xFF, 0xDD, 0xFF, 0xDA, 0xFF, + 0xD8, 0xFF, 0xD6, 0xFF, 0xD5, 0xFF, 0xD1, 0xFF, 0xD0, 0xFF, 0xC9, 0xFF, 0xC5, + 0xFF, 0xC0, 0xFF, 0xBE, 0xFF, 0xBD, 0xFF, 0xBC, 0xFF, 0xBB, 0xFF, 0xBA, 0xFF, + 0xB8, 0xFF, 0x26, 0xFD, 0x26, 0xFD, 0x22, 0xFD, 0x18, 0xFD, 0x16, 0xFD, 0x14, + 0xFD, 0xD, 0xFD, 0xB, 0xFD, 0x1, 0xFC, 0xFF, 0xFC, 0xFE, 0xE0, 0xA3, 0xE0, + 0x8A, 0xE0, 0x48, 0xE0, 0x21, 0xDF, 0x39, 0xDF, 0x27, 0xDE, 0xB7, 0xDE, 0xB4, + 0xDE, 0xAB, 0xDE, 0x8D, 0xDE, 0x75, 0xDE, 0x73, 0xDD, 0xD7, 0xDD, 0xCA, 0xDD, + 0xBB, 0xDB, 0xDD, 0xDB, 0xDC, 0xDB, 0xD3, 0xDB, 0xD0, 0xDB, 0xCD, 0xDB, 0xCA, + 0xDB, 0xC7, 0xDB, 0xC0, 0xDB, 0xB9, 0xDB, 0xB2, 0xDB, 0xAB, 0xDB, 0x98, 0xDB, + 0x85, 0xDB, 0x82, 0xDB, 0x7F, 0xDB, 0x7C, 0xDB, 0x79, 0xDB, 0x6D, 0xDB, 0x62, + 0xDB, 0x5D, 0xDB, 0x56, 0xDB, 0x55, 0xDB, 0x4E, 0xDB, 0x48, 0xDB, 0x3C, 0xDA, + 0xDC, 0xDA, 0xD9, 0xDA, 0xD8, 0xDA, 0xBB, 0xDA, 0xB9, 0xDA, 0xB8, 0xDA, 0xB5, + 0x0, 0x1, 0x0, 0x9E, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x3, 0x0, 0x4, 0x0, 0x5, 0x0, + 0x6, 0x0, 0x7, 0x0, 0x8, 0x0, 0x9, 0x0, 0xA, 0x0, 0xB, 0x0, 0xC, + 0x0, 0xD, 0x0, 0xE, 0x0, 0x2, 0x0, 0xF, 0x0, 0x10, 0x0, 0x11, 0x0, + 0x12, 0x0, 0x13, 0x0, 0x14, 0x0, 0x15, 0x0, 0x16, 0x0, 0x17, 0x0, 0x18, + 0x0, 0x19, 0x0, 0x1A, 0x0, 0x1B, 0x0, 0x1C, 0x0, 0x1D, 0x0, 0x1E, 0x0, + 0x1F, 0x0, 0x20, 0x0, 0x21, 0x0, 0x22, 0x0, 0x23, 0x0, 0x24, 0x0, 0x25, + 0x0, 0x26, 0x0, 0x27, 0x0, 0x28, 0x0, 0x29, 0x0, 0x2A, 0x0, 0x2B, 0x0, + 0x2C, 0x0, 0x2D, 0x0, 0x2E, 0x0, 0x2F, 0x0, 0x30, 0x0, 0x31, 0x0, 0x32, + 0x0, 0x33, 0x0, 0x34, 0x0, 0x35, 0x0, 0x36, 0x0, 0x37, 0x0, 0x38, 0x0, + 0x39, 0x0, 0x3A, 0x0, 0x3B, 0x0, 0x3C, 0x0, 0x3D, 0x0, 0x3E, 0x0, 0x3F, + 0x0, 0x40, 0x0, 0x41, 0x0, 0x42, 0x0, 0x43, 0x0, 0x44, 0x0, 0x45, 0x0, + 0x46, 0x0, 0x47, 0x0, 0x48, 0x0, 0x49, 0x0, 0x4A, 0x0, 0x4B, 0x0, 0x4C, + 0x0, 0x4D, 0x0, 0x4E, 0x0, 0x4F, 0x0, 0x50, 0x0, 0x51, 0x0, 0x52, 0x0, + 0x53, 0x0, 0x54, 0x0, 0x55, 0x0, 0x56, 0x0, 0x57, 0x0, 0x58, 0x0, 0x59, + 0x0, 0x5A, 0x0, 0x5B, 0x0, 0x5C, 0x0, 0x5D, 0x0, 0x5E, 0x0, 0x5F, 0x0, + 0x60, 0x0, 0x61, 0x0, 0x62, 0x0, 0x63, 0x0, 0x64, 0x0, 0x65, 0x0, 0x66, + 0x0, 0x67, 0x0, 0x68, 0x0, 0x69, 0x0, 0x6A, 0x0, 0x6B, 0x0, 0x6C, 0x0, + 0x6D, 0x0, 0x6E, 0x0, 0x6F, 0x0, 0x70, 0x0, 0x71, 0x0, 0x72, 0x0, 0x73, + 0x0, 0x74, 0x0, 0x75, 0x0, 0x76, 0x0, 0x77, 0x0, 0x78, 0x0, 0x79, 0x0, + 0x7A, 0x0, 0x7B, 0x0, 0x7C, 0x0, 0x7D, 0x0, 0x7E, 0x0, 0x7F, 0x0, 0x80, + 0x0, 0x0, 0x1, 0x6, 0x0, 0x0, 0x1, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, + 0x9, 0xA, 0xB, 0xC, 0xD, 0xE, 0x2, 0xF, 0x10, 0x11, 0x12, 0x13, 0x14, + 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, + 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, 0x2D, 0x2E, + 0x2F, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, + 0x3C, 0x3D, 0x3E, 0x3F, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, + 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, + 0x56, 0x57, 0x58, 0x59, 0x5A, 0x5B, 0x5C, 0x5D, 0x5E, 0x5F, 0x60, 0x61, 0x62, + 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F, + 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x7B, 0x7C, + 0x7D, 0x7E, 0x7F, 0x80, 0x95, 0x96, 0x98, 0x99, 0x9A, 0x9B, 0x9C, 0x9F, 0x9E, + 0xA0, 0xA1, 0x0, 0xA2, 0xA4, 0xA6, 0xA5, 0xA7, 0xA8, 0xAA, 0xA9, 0xAB, 0xAC, + 0xAD, 0xAF, 0xAE, 0xB0, 0xB1, 0x0, 0xB4, 0xB3, 0xB5, 0xB6, 0x0, 0x8A, 0x83, + 0x84, 0x86, 0xC5, 0x8E, 0x9D, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x97, 0x0, + 0xD2, 0x8B, 0xD7, 0xD8, 0x85, 0x8D, 0x0, 0x0, 0x0, 0xC1, 0x0, 0x87, 0x90, + 0xBD, 0xA3, 0x0, 0x94, 0x82, 0x89, 0xD1, 0xB8, 0xD5, 0x0, 0x88, 0x91, 0x0, + 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xB2, + 0x0, 0xB7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8F, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1A, 0x1, 0xFB, 0x0, 0x0, 0x0, 0x2A, 0x0, + 0x2A, 0x0, 0x48, 0x0, 0x7E, 0x0, 0xA8, 0x0, 0xCA, 0x0, 0xEE, 0x1, 0x12, + 0x1, 0x36, 0x1, 0x4A, 0x1, 0x66, 0x1, 0x8A, 0x1, 0xB4, 0x1, 0xD8, 0x2, + 0x0, 0x2, 0x22, 0x2, 0x74, 0x2, 0x8C, 0x2, 0xA4, 0x2, 0xC8, 0x2, 0xE6, + 0x3, 0x4, 0x3, 0x36, 0x3, 0x44, 0x3, 0x6C, 0x3, 0x86, 0x3, 0xA0, 0x3, + 0xBC, 0x3, 0xDA, 0x3, 0xEA, 0x4, 0xE, 0x4, 0x26, 0x4, 0x3E, 0x4, 0x3E, + 0x4, 0x58, 0x4, 0x6C, 0x4, 0x96, 0x4, 0xBC, 0x4, 0xE8, 0x5, 0x1E, 0x5, + 0x2E, 0x5, 0x4C, 0x5, 0x68, 0x5, 0x8C, 0x5, 0xA0, 0x5, 0xB0, 0x5, 0xBC, + 0x5, 0xC8, 0x5, 0xEA, 0x6, 0x12, 0x6, 0x26, 0x6, 0x4A, 0x6, 0x6E, 0x6, + 0x92, 0x6, 0xB2, 0x6, 0xD4, 0x6, 0xEE, 0x7, 0x14, 0x7, 0x38, 0x7, 0x4A, + 0x7, 0x60, 0x7, 0x84, 0x7, 0x98, 0x7, 0xBC, 0x7, 0xDE, 0x7, 0xFC, 0x8, + 0x1A, 0x8, 0x3E, 0x8, 0x64, 0x8, 0x86, 0x8, 0xA8, 0x8, 0xC8, 0x8, 0xEE, + 0x9, 0x4, 0x9, 0x1A, 0x9, 0x34, 0x9, 0x5A, 0x9, 0x74, 0x9, 0x92, 0x9, + 0xB0, 0x9, 0xDC, 0x9, 0xFA, 0xA, 0x1C, 0xA, 0x3E, 0xA, 0x66, 0xA, 0x80, + 0xA, 0x92, 0xA, 0xAC, 0xA, 0xCA, 0xA, 0xF6, 0xB, 0x14, 0xB, 0x40, 0xB, + 0x52, 0xB, 0x74, 0xB, 0x86, 0xB, 0xA6, 0xB, 0xB2, 0xB, 0xC4, 0xB, 0xE6, + 0xC, 0x6, 0xC, 0x24, 0xC, 0x44, 0xC, 0x62, 0xC, 0x82, 0xC, 0xA4, 0xC, + 0xC4, 0xC, 0xDE, 0xC, 0xFA, 0xD, 0x1E, 0xD, 0x32, 0xD, 0x4C, 0xD, 0x60, + 0xD, 0x7C, 0xD, 0x9E, 0xD, 0xC0, 0xD, 0xDE, 0xD, 0xFC, 0xE, 0x1E, 0xE, + 0x3A, 0xE, 0x54, 0xE, 0x70, 0xE, 0x9C, 0xE, 0xB6, 0xE, 0xD6, 0xE, 0xF4, + 0xF, 0x6, 0xF, 0x22, 0xF, 0x3C, 0xF, 0x5E, 0xF, 0x5E, 0xF, 0x70, 0xF, + 0x8C, 0xF, 0xB2, 0xF, 0xD6, 0x10, 0x8, 0x10, 0x28, 0x10, 0x5A, 0x10, 0x6A, + 0x10, 0x84, 0x10, 0x9E, 0x10, 0xB8, 0x10, 0xD2, 0x10, 0xF0, 0x10, 0xFC, 0x11, + 0x1E, 0x11, 0x4E, 0x11, 0x84, 0x11, 0xBC, 0x11, 0xDE, 0x12, 0xC, 0x12, 0x2A, + 0x12, 0x50, 0x12, 0x78, 0x12, 0x98, 0x12, 0xB6, 0x12, 0xE4, 0x13, 0x6, 0x13, + 0x2A, 0x13, 0x50, 0x13, 0x76, 0x13, 0xA4, 0x13, 0xD0, 0x13, 0xF4, 0x14, 0x18, + 0x14, 0x36, 0x14, 0x5A, 0x14, 0x7E, 0x14, 0xAC, 0x14, 0xD4, 0x14, 0xEE, 0x15, + 0x8, 0x15, 0x2A, 0x15, 0x4A, 0x15, 0x64, 0x15, 0x86, 0x15, 0xA6, 0x15, 0xCE, + 0x15, 0xF4, 0x16, 0xC, 0x16, 0x28, 0x16, 0x44, 0x16, 0x68, 0x16, 0x8A, 0x16, + 0xAE, 0x16, 0xD4, 0x16, 0xE4, 0x17, 0x14, 0x17, 0x38, 0x17, 0x62, 0x17, 0x8C, + 0x17, 0xB6, 0x17, 0xDA, 0x17, 0xFC, 0x18, 0x12, 0x18, 0x2E, 0x18, 0x4A, 0x18, + 0x78, 0x18, 0x8C, 0x18, 0xAA, 0x18, 0xC0, 0x18, 0xEC, 0x19, 0xA, 0x19, 0x24, + 0x19, 0x40, 0x19, 0x5A, 0x19, 0x7E, 0x19, 0xA2, 0x19, 0xCA, 0x19, 0xD6, 0x19, + 0xF0, 0x1A, 0x10, 0x1A, 0x20, 0x1A, 0x36, 0x1A, 0x62, 0x1A, 0x7C, 0x1A, 0x9E, + 0x1A, 0xC0, 0x1A, 0xE2, 0x1A, 0xF2, 0x1B, 0x8, 0x1B, 0x1E, 0x1B, 0x2A, 0x1B, + 0x38, 0x1B, 0x48, 0x1B, 0x58, 0x1B, 0x68, 0x1B, 0x78, 0x1B, 0x8C, 0x1B, 0x9E, + 0x1B, 0xB0, 0x1B, 0xC2, 0x1B, 0xDA, 0x1B, 0xEC, 0x1C, 0x0, 0x1C, 0x16, 0x1C, + 0x2C, 0x1C, 0x46, 0x1C, 0x5A, 0x1C, 0x6E, 0x1C, 0x86, 0x1C, 0x9C, 0x1C, 0xB2, + 0x1C, 0xCC, 0x1C, 0xE0, 0x1C, 0xF4, 0x1D, 0xC, 0x1D, 0x24, 0x1D, 0x3E, 0x1D, + 0x5E, 0x1D, 0x74, 0x1D, 0x8C, 0x1D, 0xAA, 0x1D, 0xC2, 0x1D, 0xD8, 0x1D, 0xF6, + 0x1E, 0xE, 0x1E, 0x24, 0x1E, 0x42, 0x1E, 0x62, 0x1E, 0x82, 0x1E, 0xAA, 0x1E, + 0xB8, 0x1E, 0xC6, 0x1E, 0xD4, 0x1E, 0xE2, 0x1E, 0xF0, 0x1F, 0x50, 0x20, 0xA, + 0x20, 0x5A, 0x20, 0x68, 0x20, 0x76, 0x20, 0x8E, 0x20, 0xA6, 0x20, 0xBE, 0x20, + 0xD6, 0x20, 0xFA, 0x21, 0x16, 0x21, 0x40, 0x21, 0x76, 0x21, 0xA0, 0x21, 0xF2, + 0x22, 0x1A, 0x22, 0x3E, 0x22, 0x62, 0x22, 0x86, 0x22, 0xA8, 0x22, 0xCC, 0x22, + 0xEA, 0x23, 0xC, 0x0, 0x2, 0x0, 0x1A, 0x0, 0x0, 0x0, 0xEC, 0x2, 0x15, + 0x0, 0x3, 0x0, 0x7, 0x0, 0x2E, 0xB1, 0x1, 0x0, 0x2F, 0x3C, 0xB2, 0x7, + 0x4, 0x0, 0xED, 0x32, 0xB1, 0x6, 0x5, 0xDC, 0x3C, 0xB2, 0x3, 0x2, 0x0, + 0xED, 0x32, 0x0, 0xB1, 0x3, 0x0, 0x2F, 0x3C, 0xB2, 0x5, 0x4, 0x0, 0xED, + 0x32, 0xB2, 0x7, 0x6, 0x1, 0xFC, 0x3C, 0xB2, 0x1, 0x2, 0x0, 0xED, 0x32, + 0x33, 0x11, 0x33, 0x11, 0x27, 0x33, 0x11, 0x23, 0x1A, 0xD2, 0xB8, 0x9E, 0x9E, + 0x2, 0x15, 0xFD, 0xEB, 0x1A, 0x1, 0xE1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, + 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0xB, 0x0, 0xF, 0x0, 0x0, 0x35, + 0x33, 0x35, 0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0x23, 0x15, 0x21, 0x1, 0x33, + 0x35, 0x23, 0x64, 0x64, 0x2, 0x58, 0xFE, 0x70, 0x64, 0xFE, 0xD4, 0x1, 0x90, + 0xC8, 0xC8, 0x64, 0x64, 0x1, 0xF4, 0xFE, 0xD4, 0xFE, 0x70, 0x64, 0x2, 0x58, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, + 0xBC, 0x0, 0x3, 0x0, 0xB, 0x0, 0xF, 0x0, 0x13, 0x0, 0x17, 0x0, 0x1B, + 0x0, 0x1F, 0x0, 0x0, 0x31, 0x11, 0x33, 0x11, 0x37, 0x35, 0x21, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x27, 0x35, 0x33, 0x15, 0x25, 0x15, 0x23, 0x35, 0x1, 0x23, + 0x11, 0x33, 0x1, 0x21, 0x15, 0x21, 0x11, 0x35, 0x21, 0x15, 0x64, 0x64, 0x1, + 0x90, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xFD, + 0x44, 0x2, 0x58, 0xFD, 0xA8, 0x2, 0x58, 0x2, 0x58, 0xFD, 0xA8, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xC, 0x2, 0x58, + 0xFD, 0xA8, 0x64, 0x2, 0xBC, 0x64, 0x64, 0x0, 0x0, 0x4, 0x0, 0x0, 0xFF, + 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x13, 0x0, 0x17, 0x0, 0x1B, + 0x0, 0x0, 0x31, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, + 0x35, 0x37, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x21, 0x35, 0x15, 0x33, 0x35, + 0x21, 0x23, 0x15, 0x33, 0x64, 0x2, 0x58, 0x64, 0x64, 0xFD, 0xA8, 0x64, 0x64, + 0xC8, 0x64, 0xFE, 0x70, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x2, 0x58, 0x64, 0x64, + 0xFD, 0xA8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x0, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x17, + 0x0, 0x0, 0x19, 0x1, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, + 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, + 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, + 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, + 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x3D, + 0x1, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x33, 0x35, 0x23, + 0x35, 0xC8, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xFE, + 0xC, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, + 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x21, 0x35, 0x33, 0x35, 0x23, 0x35, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xC, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, + 0x1, 0x0, 0xC8, 0x0, 0x64, 0x2, 0x58, 0x1, 0xF4, 0x0, 0xB, 0x0, 0x0, + 0x25, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x1, + 0xF4, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x3, 0x0, + 0xF, 0x0, 0x0, 0x15, 0x11, 0x21, 0x11, 0x1, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x3, 0x20, 0xFD, 0xA8, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x3, 0x20, 0xFC, 0xE0, 0x1, 0x2C, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x0, 0x0, 0x0, 0x2, 0x0, 0x64, 0x0, 0x0, 0x2, 0xBC, 0x2, + 0x58, 0x0, 0xB, 0x0, 0x17, 0x0, 0x0, 0x37, 0x11, 0x33, 0x35, 0x21, 0x15, + 0x33, 0x11, 0x23, 0x15, 0x21, 0x3D, 0x1, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, + 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x3, 0x0, 0xF, 0x0, + 0x1B, 0x0, 0x0, 0x15, 0x11, 0x21, 0x11, 0x25, 0x15, 0x21, 0x35, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x37, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x3, 0x20, 0xFD, 0xA8, 0x1, 0x90, 0x64, 0x64, + 0xFE, 0x70, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x3, 0x20, 0xFC, + 0xE0, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, + 0xBC, 0x0, 0x13, 0x0, 0x17, 0x0, 0x0, 0x31, 0x11, 0x33, 0x35, 0x21, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x21, 0x11, 0x23, 0x35, 0x23, 0x11, 0x23, 0x15, 0x21, + 0x35, 0x3B, 0x1, 0x11, 0x23, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x1, 0x90, 0x64, + 0x64, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0x70, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x1, 0x2C, 0x0, 0x0, 0x0, 0x2, + 0x0, 0x64, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x17, 0x0, 0x1B, 0x0, + 0x0, 0x37, 0x35, 0x23, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, 0x3D, 0x1, + 0x33, 0x11, 0x23, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0xC8, 0xC8, + 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0xF, 0x0, + 0x13, 0x0, 0x0, 0x35, 0x33, 0x11, 0x21, 0x11, 0x23, 0x15, 0x23, 0x35, 0x33, + 0x35, 0x21, 0x11, 0x23, 0x15, 0x23, 0x1, 0x21, 0x35, 0x21, 0x64, 0x2, 0xBC, + 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0x1, 0x2C, 0x1, 0x2C, 0xFE, 0xD4, + 0x64, 0x2, 0x58, 0xFD, 0xA8, 0x64, 0xC8, 0xC8, 0xFE, 0x70, 0x64, 0x2, 0x58, + 0x64, 0x0, 0x0, 0x0, 0xA, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, + 0x0, 0x3, 0x0, 0x17, 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x23, 0x0, 0x27, 0x0, + 0x2B, 0x0, 0x2F, 0x0, 0x33, 0x0, 0x37, 0x0, 0x0, 0x15, 0x35, 0x33, 0x15, + 0x3, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x3, 0x35, 0x33, 0x15, 0x13, 0x15, + 0x23, 0x35, 0x13, 0x23, 0x35, 0x33, 0x1, 0x33, 0x15, 0x23, 0x11, 0x35, 0x33, + 0x15, 0x13, 0x15, 0x23, 0x35, 0x13, 0x15, 0x23, 0x35, 0x1, 0x33, 0x35, 0x23, + 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0x64, 0xC8, + 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0xC, + 0x64, 0x64, 0x1, 0x90, 0x64, 0xFE, 0xC, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xFE, + 0xC, 0x64, 0x64, 0x2, 0xBC, 0x64, 0x64, 0xFE, 0xC, 0xC8, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x31, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x23, 0x15, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x2, 0xBC, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0xC8, 0xC8, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFD, 0x44, + 0x64, 0x64, 0x64, 0x0, 0x1, 0x0, 0x64, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, + 0x0, 0x1B, 0x0, 0x0, 0x37, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x4, 0x0, + 0x64, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x7, 0x0, 0xB, + 0x0, 0xF, 0x0, 0x0, 0x33, 0x35, 0x33, 0x15, 0x27, 0x11, 0x33, 0x11, 0x17, + 0x35, 0x33, 0x15, 0x27, 0x11, 0x33, 0x11, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, + 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x1, 0xF4, 0xFE, 0xC, 0xC8, 0x64, 0x64, 0xC8, + 0x1, 0xF4, 0xFE, 0xC, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20, + 0x2, 0xBC, 0x0, 0xD, 0x0, 0x11, 0x0, 0x0, 0x21, 0x23, 0x11, 0x23, 0x11, + 0x23, 0x11, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x1, 0x33, 0x35, 0x23, + 0x3, 0x20, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x2, 0xBC, 0xFD, 0xA8, 0x64, + 0x64, 0x2, 0x58, 0xFD, 0xA8, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0xC8, + 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x23, 0x0, + 0x27, 0x0, 0x0, 0x31, 0x35, 0x33, 0x15, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x21, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, + 0x25, 0x35, 0x23, 0x15, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x1, 0xF4, + 0x64, 0xC8, 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x1, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x0, 0x1, 0x0, 0x64, + 0x0, 0x0, 0x2, 0xBC, 0x1, 0x2C, 0x0, 0x3, 0x0, 0x0, 0x33, 0x11, 0x21, + 0x11, 0x64, 0x2, 0x58, 0x1, 0x2C, 0xFE, 0xD4, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x1F, 0x0, 0x0, 0x15, + 0x35, 0x21, 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x21, 0x15, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, + 0x0, 0x13, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, + 0x23, 0x11, 0x23, 0x11, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x1, + 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x1, 0x90, 0x0, 0x0, + 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, + 0x0, 0x37, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x23, 0x35, 0x23, 0x35, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, + 0x64, 0x1, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x64, 0x2, 0xBC, 0x2, 0x58, 0x0, 0x13, 0x0, + 0x0, 0x11, 0x35, 0x21, 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x1, 0x90, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x0, 0x1, 0x0, 0x0, 0x0, 0x64, 0x2, 0xBC, 0x2, + 0x58, 0x0, 0x13, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, + 0x23, 0x15, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x64, + 0x64, 0xC8, 0x64, 0x1, 0x90, 0xFE, 0x70, 0x64, 0xC8, 0x64, 0x1, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x64, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x5, 0x0, 0x0, + 0x35, 0x11, 0x33, 0x11, 0x21, 0x15, 0xC8, 0x1, 0xF4, 0x64, 0x1, 0x90, 0xFE, + 0xD4, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x64, 0x3, 0x20, + 0x2, 0x58, 0x0, 0x1B, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x23, 0x35, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, + 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x64, 0x3, 0x20, 0x2, 0x58, 0x0, 0xF, 0x0, 0x0, + 0x3D, 0x1, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x64, 0x3, 0x20, 0x2, 0x58, 0x0, 0xF, 0x0, 0x0, 0x11, 0x35, 0x21, 0x15, + 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x3, + 0x20, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x90, 0xC8, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x0, 0x2, 0x0, 0x64, 0x0, 0x0, 0x1, 0xF4, 0x2, + 0xBC, 0x0, 0xB, 0x0, 0xF, 0x0, 0x0, 0x13, 0x35, 0x33, 0x35, 0x33, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x11, 0x35, 0x33, 0x15, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0xC8, 0x1, 0x90, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xFE, + 0x70, 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x64, 0x1, 0x90, 0x2, 0x58, 0x2, + 0xBC, 0x0, 0x3, 0x0, 0x7, 0x0, 0x0, 0x1, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x1, 0x90, 0xC8, 0xFE, 0xC, 0xC8, 0x1, 0x90, 0x1, 0x2C, 0xFE, + 0xD4, 0x1, 0x2C, 0xFE, 0xD4, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, + 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x23, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x35, 0x25, 0x23, 0x15, + 0x33, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0xC8, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, + 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x3D, + 0x1, 0x21, 0x35, 0x21, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, + 0x33, 0x15, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x1, 0x90, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xFE, 0x70, 0x1, + 0x2C, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xBC, 0x2, 0x58, 0x0, 0x17, 0x0, 0x1B, 0x0, 0x1F, 0x0, + 0x0, 0x31, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, + 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x3, + 0x35, 0x33, 0x15, 0x5, 0x33, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x1, 0x2C, 0xC8, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x90, 0xC8, + 0xC8, 0xC8, 0xC8, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xBC, 0x2, 0xBC, 0x0, 0x25, 0x0, 0x29, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, + 0x23, 0x35, 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x1, 0x35, 0x23, 0x15, 0x64, + 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0xC8, 0xFE, 0xD4, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x1, 0x90, 0x1, 0x2C, 0x2, 0xBC, 0x0, 0x7, 0x0, 0x0, 0x11, 0x35, + 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x64, 0xC8, 0x64, 0x1, 0x90, 0x64, 0xC8, + 0xC8, 0x64, 0x0, 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, 0x1, 0xF4, 0x2, 0xBC, + 0x0, 0x13, 0x0, 0x0, 0x37, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x64, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x1, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x64, 0x0, 0x0, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x0, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x15, + 0x33, 0x11, 0x23, 0x15, 0x23, 0x15, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x0, 0x1, 0x0, 0x0, 0x0, 0x64, 0x3, 0x20, 0x2, 0x58, 0x0, + 0x1B, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x35, 0x33, 0x35, 0xC8, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, + 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x64, 0x2, 0x58, 0x2, 0x58, 0x0, 0xB, 0x0, 0x0, 0x25, 0x23, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x1, 0x90, 0xC8, 0xC8, + 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x0, 0x1, 0x0, + 0x64, 0xFF, 0x9C, 0x1, 0x90, 0x0, 0xC8, 0x0, 0x7, 0x0, 0x0, 0x21, 0x23, + 0x15, 0x23, 0x35, 0x33, 0x35, 0x33, 0x1, 0x90, 0x64, 0xC8, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x0, 0x0, 0x1, 0x0, 0x0, 0x1, 0x2C, 0x2, 0x58, 0x1, 0x90, + 0x0, 0x3, 0x0, 0x0, 0x11, 0x35, 0x21, 0x15, 0x2, 0x58, 0x1, 0x2C, 0x64, + 0x64, 0x0, 0x1, 0x0, 0xC8, 0x0, 0x0, 0x1, 0x90, 0x0, 0xC8, 0x0, 0x3, + 0x0, 0x0, 0x25, 0x15, 0x23, 0x35, 0x1, 0x90, 0xC8, 0xC8, 0xC8, 0xC8, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x19, 0x0, 0x0, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, + 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, + 0xB, 0x0, 0x13, 0x0, 0x19, 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x21, 0x15, + 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0x37, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, + 0x21, 0x13, 0x23, 0x15, 0x33, 0x35, 0x23, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xFE, + 0xC, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x1, + 0xF4, 0x64, 0x64, 0xFE, 0xC, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xFE, 0x70, + 0x64, 0xC8, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, + 0xBC, 0x0, 0xB, 0x0, 0x0, 0x31, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, + 0x33, 0x11, 0x33, 0x15, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0x64, + 0x64, 0xFD, 0xA8, 0x64, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, + 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, + 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x33, 0x35, 0x33, 0x15, 0x21, 0x64, 0x64, 0xC8, 0xC8, 0xC8, + 0x64, 0x1, 0x90, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0xFD, 0xA8, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, + 0x3D, 0x1, 0x33, 0x15, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x15, 0x23, + 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x21, 0x35, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xBC, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x19, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, + 0x33, 0x35, 0x33, 0x35, 0x21, 0x11, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, + 0x35, 0x33, 0x35, 0x27, 0x15, 0x33, 0x35, 0x23, 0x15, 0x64, 0x64, 0x64, 0x1, + 0x2C, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, 0x64, + 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x13, 0x0, + 0x0, 0x3D, 0x1, 0x33, 0x15, 0x33, 0x11, 0x21, 0x11, 0x21, 0x15, 0x21, 0x15, + 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0xC8, 0xC8, 0xFE, 0x70, 0x2, + 0x58, 0xFE, 0x70, 0x1, 0x2C, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x1, + 0x2C, 0x1, 0x2C, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x0, 0x0, 0x0, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x17, + 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x3B, 0x1, 0x35, 0x23, + 0x64, 0x64, 0x1, 0x2C, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xFE, 0x70, 0x64, + 0xC8, 0xC8, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, + 0xF, 0x0, 0x0, 0x11, 0x35, 0x21, 0x11, 0x23, 0x15, 0x23, 0x11, 0x23, 0x11, + 0x33, 0x35, 0x33, 0x35, 0x23, 0x15, 0x2, 0x58, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x1, 0xF4, 0xC8, 0xFE, 0xD4, 0x64, 0xFE, 0xD4, 0x1, 0x2C, 0x64, 0xC8, + 0x64, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, + 0x13, 0x0, 0x17, 0x0, 0x1B, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x23, 0x35, + 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x35, 0x3B, 0x1, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0x1, + 0x90, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, + 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, + 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x13, 0x0, + 0x17, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, + 0x23, 0x15, 0x21, 0x35, 0x33, 0x35, 0x33, 0x35, 0x21, 0x35, 0x3B, 0x1, 0x35, + 0x23, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0xC8, 0x64, 0xFE, 0xD4, + 0x64, 0xC8, 0xC8, 0x1, 0x90, 0xC8, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0xC8, 0x0, 0x0, + 0x1, 0x90, 0x2, 0x58, 0x0, 0x3, 0x0, 0x7, 0x0, 0x0, 0x25, 0x15, 0x23, + 0x35, 0x37, 0x23, 0x35, 0x33, 0x1, 0x90, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, + 0xC8, 0xC8, 0xC8, 0x0, 0x0, 0x2, 0x0, 0x64, 0xFF, 0x9C, 0x1, 0x90, 0x2, + 0x58, 0x0, 0x7, 0x0, 0xB, 0x0, 0x0, 0x21, 0x23, 0x15, 0x23, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x1, 0x90, 0x64, 0xC8, 0x64, 0xC8, 0xC8, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x11, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, + 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x64, 0x2, 0x58, 0x1, 0xF4, + 0x0, 0x3, 0x0, 0x7, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x15, 0x1, 0x35, 0x21, + 0x15, 0x2, 0x58, 0xFD, 0xA8, 0x2, 0x58, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, 0x2, 0x58, 0x2, + 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x37, 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, + 0x23, 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x17, 0x0, + 0x0, 0x11, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x23, 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x15, 0x11, 0x35, 0x33, 0x15, 0x64, + 0x1, 0x90, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x1, 0xF4, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xFE, 0xC, 0x64, 0x64, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x11, + 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, 0x21, 0x11, 0x33, + 0x35, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x64, 0x1, 0xF4, 0x64, 0xFE, 0x70, + 0xC8, 0xFE, 0xD4, 0x1, 0x2C, 0xFE, 0x70, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xFE, + 0x70, 0x1, 0x2C, 0x64, 0xFE, 0xC, 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x13, 0x0, 0x0, 0x31, + 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x11, 0x23, 0x35, + 0x23, 0x15, 0x11, 0x15, 0x33, 0x35, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, + 0xC8, 0x1, 0xF4, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xC, 0xC8, 0xC8, 0x1, 0xF4, + 0xC8, 0xC8, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, + 0xBC, 0x0, 0xF, 0x0, 0x13, 0x0, 0x17, 0x0, 0x0, 0x31, 0x35, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x25, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, 0x2, 0x58, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0xF4, 0x64, 0x64, + 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x35, + 0x11, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, + 0x23, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x23, + 0x35, 0x64, 0x64, 0x1, 0x90, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, + 0xFE, 0x70, 0x64, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x17, 0x0, 0x0, 0x31, + 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, + 0x23, 0x15, 0x27, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x64, 0x64, 0x1, + 0xF4, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0xF4, + 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x17, 0x0, 0x0, + 0x31, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x35, 0x21, 0x15, 0x33, + 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x21, 0x35, 0x33, 0x15, 0x64, 0x64, + 0x2, 0xBC, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, + 0x1, 0xF4, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0xC8, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, + 0x15, 0x0, 0x0, 0x31, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x35, + 0x21, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x33, 0x15, 0x64, + 0x64, 0x2, 0xBC, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, + 0xF4, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x1B, + 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x11, 0x33, 0x15, 0x33, 0x35, 0x23, 0x35, 0x21, 0x11, + 0x21, 0x35, 0x23, 0x35, 0x64, 0x64, 0x1, 0x90, 0x64, 0xC8, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x1, 0x2C, 0xFE, 0xC, 0x64, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x0, + 0x31, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0xC8, + 0xC8, 0xC8, 0xC8, 0xC8, 0x2, 0xBC, 0xFE, 0xD4, 0x1, 0x2C, 0xFD, 0x44, 0x1, + 0x2C, 0xFE, 0xD4, 0x0, 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, 0x1, 0xF4, 0x2, + 0xBC, 0x0, 0xB, 0x0, 0x0, 0x25, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, + 0x35, 0x21, 0x15, 0x23, 0x1, 0x90, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x1, 0x90, + 0x64, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x3D, 0x1, 0x33, + 0x15, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x23, 0x15, 0x21, 0x35, + 0xC8, 0xC8, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0x1, + 0xF4, 0x64, 0x64, 0xFE, 0xC, 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x31, 0x35, 0x33, + 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x11, 0x64, + 0x64, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x1, 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0xC8, + 0xC8, 0x64, 0xFE, 0xD4, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x31, 0x35, 0x33, 0x11, 0x23, + 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, 0x11, 0x64, 0x64, + 0x1, 0x90, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xFE, 0xC, + 0x64, 0x64, 0xFE, 0xD4, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x0, 0x31, 0x11, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, 0x11, 0x23, 0x15, 0x23, 0x35, + 0x23, 0x11, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x2, 0xBC, + 0x64, 0x64, 0x64, 0x64, 0xFD, 0x44, 0x1, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, + 0x13, 0x0, 0x0, 0x31, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x11, + 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x23, 0x11, 0xC8, 0x64, 0x64, + 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x2, 0xBC, 0x64, 0x64, 0x64, 0x1, 0x2C, + 0xFD, 0x44, 0xC8, 0x64, 0x64, 0xFE, 0x70, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x1F, 0x0, 0x0, + 0x35, 0x11, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x23, 0x35, 0x3B, 0x1, 0x15, 0x33, 0x35, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x1, + 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x1, 0x2C, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x13, 0x0, 0x0, 0x31, 0x35, 0x33, + 0x11, 0x23, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x33, 0x15, + 0x3, 0x33, 0x35, 0x23, 0x64, 0x64, 0x2, 0x58, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0xC8, 0xC8, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x1, + 0x90, 0xC8, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, + 0xF, 0x0, 0x15, 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, + 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x23, 0x35, 0x3B, 0x1, 0x35, 0x33, 0x11, + 0x23, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0x64, + 0xC8, 0xC8, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x1, 0x2C, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, + 0x2, 0xBC, 0x0, 0x13, 0x0, 0x17, 0x0, 0x0, 0x31, 0x35, 0x33, 0x11, 0x23, + 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, + 0x23, 0x19, 0x1, 0x33, 0x35, 0x23, 0x64, 0x64, 0x2, 0x58, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xC8, 0xC8, 0xC8, + 0xC8, 0x64, 0xFE, 0xD4, 0x1, 0x90, 0xC8, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x1F, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x15, + 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x21, 0x35, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0xC8, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x11, 0x35, + 0x21, 0x15, 0x23, 0x35, 0x23, 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, + 0x15, 0x2, 0x58, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x1, 0xF4, 0xC8, + 0xC8, 0x64, 0xFE, 0xC, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x7, 0x0, 0x0, 0x31, 0x11, + 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0xC8, 0xC8, 0xC8, 0x2, 0xBC, 0xFD, 0xA8, + 0x2, 0x58, 0xFD, 0x44, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x58, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x35, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0xC8, 0xC8, + 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x1, 0xF4, 0xFE, 0xC, 0x1, 0xF4, 0xFE, + 0xC, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x0, 0x31, 0x11, 0x33, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, + 0x23, 0x15, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x2, 0xBC, + 0xFE, 0x70, 0x64, 0x64, 0x1, 0x90, 0xFD, 0x44, 0x64, 0x64, 0x64, 0x64, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, + 0x23, 0x0, 0x0, 0x31, 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x0, + 0x19, 0x1, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x21, 0x35, 0x33, 0x35, 0x23, 0x35, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, + 0xFE, 0x70, 0x64, 0x64, 0x1, 0x90, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0xFE, + 0xD4, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x21, 0x0, 0x0, 0x31, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x23, 0x15, 0x23, 0x11, + 0x21, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x11, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x2, + 0xBC, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, + 0xD4, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, 0x1, 0xF4, 0x2, + 0xBC, 0x0, 0x7, 0x0, 0x0, 0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, + 0x64, 0x1, 0x90, 0xC8, 0xC8, 0x2, 0xBC, 0x64, 0xFE, 0xC, 0x64, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x19, + 0x0, 0x0, 0x11, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, + 0x23, 0x35, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x2, 0x58, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, 0x1, 0xF4, 0x2, + 0xBC, 0x0, 0x7, 0x0, 0x0, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, + 0x64, 0xC8, 0xC8, 0x1, 0x90, 0x64, 0x1, 0xF4, 0x64, 0xFD, 0x44, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x1, 0x2C, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x17, + 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, + 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x0, 0x0, 0x0, 0x3, 0x0, + 0x0, 0x15, 0x35, 0x21, 0x15, 0x3, 0x20, 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, + 0x0, 0xC8, 0x1, 0x90, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x7, 0x0, 0x0, 0x1, + 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, 0x1, 0x90, 0x64, 0xC8, 0x64, 0xC8, + 0x1, 0xF4, 0x64, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x17, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, + 0x21, 0x35, 0x21, 0x35, 0x21, 0x15, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, + 0x35, 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x1, + 0x90, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x15, 0x0, 0x0, 0x31, + 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x21, 0x35, 0x33, 0x35, 0x23, 0x15, 0x23, 0x15, 0x64, 0x64, 0x1, 0x2C, 0x1, + 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0xC8, 0xC8, 0x64, 0x64, 0x1, 0xF4, 0x64, 0xFE, + 0xD4, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x58, 0x1, 0xF4, 0x0, 0x13, 0x0, 0x0, 0x35, 0x11, + 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x64, 0x1, 0x90, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, + 0x64, 0xFE, 0x70, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, + 0x2, 0xBC, 0x0, 0x15, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x35, 0x23, + 0x35, 0x21, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x33, 0x15, + 0x21, 0x35, 0x64, 0x1, 0x2C, 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0xC8, 0xC8, + 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0xFD, 0xA8, 0x64, 0x64, 0xC8, 0xC8, + 0x64, 0x64, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x1, + 0xF4, 0x0, 0xD, 0x0, 0x11, 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x21, 0x15, + 0x33, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x35, 0x13, 0x15, 0x33, 0x35, 0x64, + 0x1, 0x90, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0xFE, 0x70, 0x64, 0xC8, 0x64, 0x1, + 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x17, 0x0, 0x0, + 0x31, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x64, 0x64, + 0x64, 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x17, 0x0, 0x0, 0x15, + 0x35, 0x21, 0x35, 0x21, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x23, 0x15, + 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x11, 0x23, 0x15, 0x1, 0x90, 0xFE, + 0xD4, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x0, + 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xB, + 0x0, 0x13, 0x0, 0x0, 0x31, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, + 0x15, 0x23, 0x11, 0x13, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x11, 0x64, 0x64, + 0x1, 0x2C, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x1, 0xF4, 0x64, 0xFE, + 0xD4, 0x64, 0xFE, 0xD4, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, 0x1, 0x90, 0x0, + 0x0, 0x2, 0x0, 0x64, 0x0, 0x0, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x9, 0x0, + 0xD, 0x0, 0x0, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x15, + 0x1, 0x35, 0x33, 0x15, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0xFE, 0xD4, 0xC8, + 0x64, 0x1, 0x2C, 0x64, 0xFE, 0x70, 0x64, 0x2, 0x58, 0x64, 0x64, 0x0, 0x0, + 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xB, 0x0, + 0xF, 0x0, 0x0, 0x35, 0x33, 0x15, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x21, + 0x35, 0x23, 0x1, 0x35, 0x33, 0x15, 0xC8, 0xC8, 0xC8, 0x64, 0xFE, 0x70, 0x64, + 0x1, 0x90, 0xC8, 0xC8, 0xC8, 0x1, 0xF4, 0xFE, 0xC, 0x64, 0x64, 0x2, 0x58, + 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, + 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x31, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, + 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, 0xFE, + 0x70, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x0, 0x1, + 0x0, 0x64, 0x0, 0x0, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x9, 0x0, 0x0, 0x25, + 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x1, 0x90, 0x64, 0xFE, + 0x70, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x11, 0x0, 0x0, + 0x31, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x15, 0xC8, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0x1, 0xF4, 0x64, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0x64, 0x64, 0xC8, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x1, 0xF4, 0x0, 0x9, 0x0, 0x0, + 0x31, 0x11, 0x21, 0x15, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0x1, 0xF4, 0x64, + 0xC8, 0xC8, 0x1, 0xF4, 0x64, 0xFE, 0x70, 0x1, 0x90, 0xFE, 0x70, 0x0, 0x0, + 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x1, 0xF4, 0x0, 0xB, 0x0, + 0xF, 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, + 0x21, 0x35, 0x3B, 0x1, 0x11, 0x23, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, + 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x1, + 0x2C, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x1, + 0xF4, 0x0, 0x17, 0x0, 0x0, 0x15, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x15, + 0x33, 0x15, 0x33, 0x35, 0x23, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x15, 0x33, 0x15, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x1, 0x2C, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, + 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x17, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, + 0x15, 0x23, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, + 0x21, 0x35, 0x33, 0x35, 0x21, 0x35, 0x64, 0x1, 0x2C, 0xC8, 0xC8, 0x64, 0xC8, + 0x64, 0x64, 0xFE, 0x70, 0x64, 0xFE, 0xD4, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0xC8, + 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x15, 0x0, 0x0, 0x31, 0x35, + 0x33, 0x11, 0x23, 0x35, 0x33, 0x15, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x64, 0x64, 0xC8, 0x64, 0x1, 0x2C, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xC8, + 0xC8, 0x64, 0xC8, 0x64, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, + 0x1, 0xF4, 0x0, 0x13, 0x0, 0x0, 0x31, 0x35, 0x21, 0x35, 0x21, 0x35, 0x23, + 0x35, 0x33, 0x35, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x1, 0x90, 0xFE, 0xD4, 0x64, 0x64, 0x1, 0xF4, 0xFE, 0x70, 0x1, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, + 0x0, 0x2, 0x0, 0x64, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x11, 0x0, + 0x15, 0x0, 0x0, 0x13, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, + 0x23, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, 0x11, 0x1, 0x35, 0x33, 0x15, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x1, 0x90, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x1, 0x2C, 0xFE, 0xD4, + 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x1, 0xF4, + 0x0, 0x7, 0x0, 0xF, 0x0, 0x0, 0x35, 0x11, 0x33, 0x11, 0x33, 0x15, 0x21, + 0x35, 0x21, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0xC8, 0xC8, 0xFE, 0xD4, + 0x1, 0x2C, 0xC8, 0x64, 0xC8, 0x64, 0x1, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x1, + 0x90, 0xFE, 0x70, 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x58, 0x1, 0xF4, 0x0, 0xF, 0x0, 0x0, 0x35, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0xC8, 0xC8, + 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0xFE, + 0xD4, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x13, 0x0, 0x0, 0x35, 0x11, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, + 0x23, 0x35, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x1, + 0x90, 0xC8, 0x64, 0x64, 0xC8, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x23, 0x0, 0x0, 0x31, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x15, + 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, + 0x9C, 0x2, 0x58, 0x1, 0xF4, 0x0, 0xF, 0x0, 0x0, 0x15, 0x35, 0x21, 0x35, + 0x21, 0x35, 0x23, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x1, + 0x90, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, + 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0xFE, 0xC, 0x64, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x58, 0x1, 0xF4, 0x0, 0x17, 0x0, 0x0, 0x31, 0x35, 0x33, 0x35, + 0x33, 0x35, 0x33, 0x35, 0x23, 0x15, 0x23, 0x35, 0x21, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x33, 0x35, 0x33, 0x15, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x2, + 0x58, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x58, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x21, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x21, 0x35, + 0x23, 0x35, 0xC8, 0x64, 0x1, 0x2C, 0xC8, 0x64, 0x64, 0xC8, 0xFE, 0xD4, 0x64, + 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x1, 0x2C, 0x0, 0x0, 0x1, 0xF4, 0x2, 0xBC, 0x0, + 0x3, 0x0, 0x7, 0x0, 0x0, 0x21, 0x23, 0x11, 0x33, 0x35, 0x23, 0x11, 0x33, + 0x1, 0xF4, 0xC8, 0xC8, 0xC8, 0xC8, 0x1, 0x2C, 0x64, 0x1, 0x2C, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x0, + 0x31, 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, 0x21, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0xC8, 0x64, 0x64, 0xC8, 0x1, 0x2C, + 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, + 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x1, 0xF4, 0x2, 0xBC, 0x2, 0xBC, + 0x0, 0xF, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x23, 0x15, 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, + 0xFE, 0xD4, 0x64, 0x1, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0x58, + 0x0, 0xF, 0x0, 0x17, 0x0, 0x0, 0x31, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x11, 0x25, 0x21, 0x35, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xC, + 0x1, 0x2C, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x2, 0x1, 0x2C, 0x0, 0x0, 0x1, + 0xF4, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x7, 0x0, 0x0, 0x21, 0x23, 0x11, 0x33, + 0x35, 0x23, 0x35, 0x33, 0x1, 0xF4, 0xC8, 0xC8, 0xC8, 0xC8, 0x1, 0x90, 0x64, + 0xC8, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, + 0x0, 0x13, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x21, 0x15, 0x21, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x64, 0xC8, + 0xC8, 0xC8, 0xFE, 0xC, 0x1, 0xF4, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0xC8, + 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x1D, 0x0, 0x0, 0x35, 0x33, 0x35, 0x23, 0x35, + 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x21, 0x64, + 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, + 0x64, 0xFD, 0xA8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0x58, + 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x23, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0xC8, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x0, 0x0, 0x0, + 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x23, 0x0, 0x27, + 0x0, 0x0, 0x31, 0x35, 0x33, 0x15, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x21, 0x15, + 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x25, + 0x35, 0x23, 0x15, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, + 0xC8, 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x0, 0x3, 0x0, 0x64, 0x0, + 0x64, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x3, 0x0, 0xD, 0x0, 0x11, 0x0, 0x0, + 0x37, 0x35, 0x21, 0x15, 0x1, 0x35, 0x33, 0x35, 0x21, 0x11, 0x33, 0x15, 0x21, + 0x35, 0x3B, 0x1, 0x35, 0x23, 0x64, 0x2, 0x58, 0xFD, 0xA8, 0x64, 0x1, 0x90, + 0x64, 0xFE, 0xC, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x64, + 0x3, 0x20, 0x2, 0x58, 0x0, 0x13, 0x0, 0x27, 0x0, 0x0, 0x11, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, + 0x23, 0x35, 0x23, 0x35, 0x21, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x64, 0x2, 0x58, 0x1, 0x90, + 0x0, 0x5, 0x0, 0x0, 0x25, 0x35, 0x21, 0x35, 0x21, 0x11, 0x1, 0x90, 0xFE, + 0x70, 0x2, 0x58, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x0, 0x0, 0x2, 0x0, 0x64, + 0x1, 0x2C, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xB, 0x0, 0xF, 0x0, 0x0, 0x13, + 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x3B, 0x1, + 0x35, 0x23, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, + 0x1, 0x90, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x3, 0x0, 0xF, 0x0, 0x0, 0x31, + 0x35, 0x21, 0x15, 0x1, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x23, 0x35, 0x2, 0x58, 0xFD, 0xA8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x64, + 0x1, 0x90, 0x64, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, 0x0, 0x0, 0x1, 0x0, 0x64, + 0x0, 0xC8, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x11, 0x0, 0x0, 0x37, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x23, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x64, 0x64, 0x64, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0x64, 0xC8, 0xC8, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x1, 0x0, 0x0, + 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0x58, 0x0, 0xF, 0x0, 0x0, 0x15, 0x35, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x21, 0x15, 0x23, 0x15, + 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x2, 0x58, 0xFE, + 0x70, 0x1, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x20, 0x2, 0xBC, 0x0, 0xD, 0x0, 0x11, 0x0, 0x0, 0x21, + 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, + 0x1, 0x33, 0x35, 0x23, 0x3, 0x20, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x2, + 0xBC, 0xFD, 0xA8, 0x64, 0x64, 0x2, 0x58, 0xFD, 0xA8, 0x1, 0x2C, 0x64, 0xC8, + 0x64, 0xFE, 0xD4, 0xC8, 0x0, 0x1, 0x1, 0x2C, 0x0, 0xC8, 0x1, 0xF4, 0x1, + 0x2C, 0x0, 0x3, 0x0, 0x0, 0x25, 0x23, 0x35, 0x33, 0x1, 0xF4, 0xC8, 0xC8, + 0xC8, 0x64, 0x0, 0x3, 0x0, 0x64, 0x0, 0x64, 0x2, 0x58, 0x2, 0xBC, 0x0, + 0x3, 0x0, 0xF, 0x0, 0x13, 0x0, 0x0, 0x37, 0x35, 0x21, 0x15, 0x1, 0x35, + 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x3B, 0x1, 0x35, + 0x23, 0x64, 0x1, 0xF4, 0xFE, 0xC, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x64, 0x3, 0x20, + 0x2, 0x58, 0x0, 0x13, 0x0, 0x27, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x23, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x3, 0x0, + 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x29, + 0x0, 0x0, 0x31, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x23, 0x15, 0x23, 0x15, 0x3, 0x11, 0x33, 0x11, 0x17, 0x33, 0x35, 0x33, 0x35, + 0x33, 0x11, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x1, 0x2C, 0x1, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x64, 0xFE, 0xC, 0x64, + 0x0, 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x29, + 0x0, 0x2D, 0x0, 0x0, 0x31, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x3, 0x11, 0x33, 0x11, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xFE, + 0x70, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x1, 0x2C, 0x1, 0x90, 0xFE, 0x70, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x17, 0x0, 0x0, 0x3D, + 0x1, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x35, + 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x13, 0x35, 0x33, 0x15, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0xC8, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, 0x0, 0x0, + 0x4, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x13, + 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x0, 0x31, 0x11, 0x33, 0x35, 0x33, 0x35, 0x21, + 0x15, 0x33, 0x15, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x3, 0x35, 0x33, 0x1D, + 0x2, 0x21, 0x35, 0x23, 0x35, 0x23, 0x15, 0x37, 0x35, 0x33, 0x15, 0x64, 0x64, + 0x1, 0x2C, 0x64, 0x64, 0xC8, 0xFE, 0xD4, 0xC8, 0xC8, 0x1, 0x2C, 0x64, 0x64, + 0xC8, 0xC8, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x2, + 0x58, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x0, + 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xB, 0x0, + 0xF, 0x0, 0x13, 0x0, 0x0, 0x31, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, + 0x23, 0x35, 0x23, 0x15, 0x35, 0x33, 0x35, 0x23, 0x3D, 0x1, 0x33, 0x15, 0x64, + 0x1, 0x90, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0xC8, 0x0, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x19, 0x0, 0x0, 0x31, 0x11, + 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x21, 0x11, 0x23, 0x19, 0x1, 0x15, 0x33, 0x35, 0x23, 0x15, 0x64, 0x64, + 0x1, 0xF4, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0xC8, 0xC8, 0x64, 0x1, 0xF4, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0xF4, + 0x64, 0xC8, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x2, + 0x58, 0x2, 0xBC, 0x0, 0x1D, 0x0, 0x0, 0x19, 0x1, 0x33, 0x35, 0x21, 0x15, + 0x33, 0x15, 0x23, 0x35, 0x23, 0x11, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, 0x35, 0x23, 0x35, 0x64, 0x1, + 0x90, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x1, 0x2C, + 0x64, 0xC8, 0x1, 0x2C, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x13, 0x0, 0x0, 0x31, 0x35, + 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x15, 0x1, 0x35, 0x21, 0x15, 0x64, 0x64, 0x2, 0x58, 0xFE, 0xD4, 0xC8, 0xC8, + 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x2, 0x58, 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x58, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x13, 0x0, 0x0, 0x31, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, + 0x3, 0x35, 0x21, 0x15, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x2, + 0x58, 0x1, 0xF4, 0x64, 0x64, 0xC8, 0xFE, 0xC, 0x64, 0x64, 0xC8, 0x2, 0x58, + 0x64, 0x64, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20, 0x2, 0xBC, 0x0, + 0x3, 0x0, 0x17, 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x0, 0x11, 0x35, 0x33, 0x15, + 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x1, 0x35, 0x33, 0x15, 0x1, 0x33, + 0x35, 0x23, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x1, 0x90, 0xC8, 0xFE, 0xC, 0xC8, 0xC8, 0x2, 0x58, 0x64, 0x64, 0xFE, 0x70, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, + 0xFE, 0x70, 0xC8, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, + 0x0, 0xB, 0x0, 0xF, 0x0, 0x13, 0x0, 0x0, 0x35, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0x3, 0x35, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x15, 0xC8, 0xC8, 0xC8, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0xC8, 0x64, + 0x1, 0x90, 0xFE, 0x70, 0x1, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x1, 0xF4, 0x64, + 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0xFF, 0x9C, 0x2, + 0x58, 0x2, 0x58, 0x0, 0xF, 0x0, 0x13, 0x0, 0x17, 0x0, 0x0, 0x15, 0x11, + 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x15, 0x11, 0x33, 0x35, 0x23, 0x35, 0x15, 0x33, 0x35, 0x64, 0x1, 0x90, 0x64, + 0x64, 0x64, 0x64, 0xFE, 0xD4, 0xC8, 0xC8, 0xC8, 0x64, 0x2, 0x58, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x0, + 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, + 0x13, 0x0, 0x17, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x35, 0x21, 0x35, + 0x21, 0x15, 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, 0x3, 0x35, 0x21, 0x15, 0x3, + 0x15, 0x33, 0x35, 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x90, 0x64, 0x64, 0xFD, + 0xA8, 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x0, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x13, 0x0, + 0x17, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, 0x15, + 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, 0x37, 0x15, 0x33, 0x35, 0x3, 0x35, 0x21, + 0x15, 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x90, 0x64, 0x64, 0xFD, 0xA8, 0x64, + 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x0, 0x0, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x20, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x1B, 0x0, 0x1F, 0x0, + 0x0, 0x11, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x21, 0x15, + 0x11, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, 0x15, 0x33, 0x11, 0x33, 0x15, 0x21, + 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x35, 0x64, 0x2, 0x58, 0x64, 0xC8, 0xFE, + 0x70, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x90, 0x64, 0x64, 0xFD, 0xA8, 0x64, 0xC8, + 0xC8, 0x1, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x4, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x13, 0x0, 0x17, + 0x0, 0x1B, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, + 0x15, 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, 0x3, 0x35, 0x33, 0x15, 0x11, 0x15, + 0x33, 0x35, 0x11, 0x35, 0x33, 0x15, 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x90, + 0x64, 0x64, 0xFD, 0xA8, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, + 0x1, 0x90, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x17, 0x0, 0x0, 0x3D, 0x1, 0x33, + 0x35, 0x21, 0x35, 0x21, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x11, + 0x33, 0x15, 0x21, 0x35, 0x37, 0x15, 0x33, 0x35, 0x64, 0x1, 0x2C, 0xFE, 0xD4, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0xFD, 0xA8, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20, 0x1, 0xF4, 0x0, 0x13, + 0x0, 0x17, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x37, 0x15, + 0x33, 0x35, 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x2, 0xBC, 0xC8, 0xC8, 0xC8, 0xC8, + 0xFD, 0x44, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, + 0x9C, 0x2, 0x58, 0x1, 0xF4, 0x0, 0x13, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, + 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x33, + 0x35, 0x21, 0x35, 0x64, 0x1, 0x90, 0xFE, 0xD4, 0x1, 0x2C, 0x64, 0x64, 0xFE, + 0xD4, 0xC8, 0xFE, 0xD4, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, + 0x0, 0xD, 0x0, 0x11, 0x0, 0x15, 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x21, + 0x15, 0x33, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x35, 0x3, 0x35, 0x21, 0x15, + 0x7, 0x15, 0x33, 0x35, 0x64, 0x1, 0x90, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0xFE, + 0x70, 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x0, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xD, 0x0, 0x11, 0x0, 0x15, + 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x21, 0x15, 0x21, + 0x15, 0x21, 0x35, 0x13, 0x15, 0x33, 0x35, 0x27, 0x35, 0x21, 0x15, 0x64, 0x1, + 0x90, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0xFE, 0x70, 0x64, 0xC8, 0x64, 0x1, 0x2C, + 0x64, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20, 0x2, + 0xBC, 0x0, 0xB, 0x0, 0x19, 0x0, 0x1D, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, + 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x21, 0x15, 0x11, 0x23, 0x11, 0x33, 0x35, + 0x21, 0x15, 0x33, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x13, 0x15, 0x33, 0x35, + 0x64, 0x2, 0x58, 0x64, 0xC8, 0xFE, 0x70, 0x64, 0x64, 0x1, 0x90, 0x64, 0xFE, + 0x70, 0x1, 0x2C, 0xFE, 0x70, 0x64, 0xC8, 0x1, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x90, + 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, + 0x2, 0xBC, 0x0, 0xD, 0x0, 0x11, 0x0, 0x15, 0x0, 0x19, 0x0, 0x0, 0x35, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x35, + 0x3, 0x35, 0x33, 0x1D, 0x2, 0x33, 0x3D, 0x2, 0x33, 0x15, 0x64, 0x1, 0x90, + 0x64, 0xFE, 0x70, 0x1, 0x2C, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x1, + 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x3, 0x0, 0xD, 0x0, 0x0, 0x11, 0x35, 0x21, + 0x15, 0x3, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x15, 0x1, 0x2C, + 0xC8, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x2, 0x58, 0x64, 0x64, 0xFD, 0xA8, 0x64, + 0x1, 0x2C, 0x64, 0xFE, 0x70, 0x64, 0x0, 0x0, 0x2, 0x0, 0x64, 0x0, 0x0, + 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x9, 0x0, 0xD, 0x0, 0x0, 0x33, 0x35, 0x33, + 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x15, 0x1, 0x35, 0x21, 0x15, 0x64, 0x64, + 0x64, 0x1, 0x2C, 0x64, 0xFE, 0xD4, 0x1, 0x2C, 0x64, 0x1, 0x2C, 0x64, 0xFE, + 0x70, 0x64, 0x2, 0x58, 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x15, 0x0, 0x0, 0x11, 0x35, 0x33, + 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x21, 0x15, 0x11, 0x35, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x11, 0x33, 0x15, 0x64, 0x1, 0xF4, 0x64, 0xC8, 0xFE, 0xD4, + 0x64, 0x64, 0x1, 0x2C, 0x64, 0x1, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0xC, 0x64, 0x1, 0x2C, 0x64, 0xFE, 0x70, 0x64, 0x0, 0x0, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x3, 0x0, 0xD, 0x0, 0x11, + 0x0, 0x0, 0x11, 0x35, 0x33, 0x15, 0x3, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, + 0x11, 0x33, 0x15, 0x3, 0x35, 0x33, 0x15, 0xC8, 0x64, 0x64, 0x64, 0x1, 0x2C, + 0x64, 0x64, 0xC8, 0x2, 0x58, 0x64, 0x64, 0xFD, 0xA8, 0x64, 0x1, 0x2C, 0x64, + 0xFE, 0x70, 0x64, 0x2, 0x58, 0x64, 0x64, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x58, 0x2, 0x58, 0x0, 0x9, 0x0, 0xD, 0x0, 0x0, 0x31, + 0x11, 0x21, 0x15, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0x3, 0x35, 0x21, 0x15, + 0x1, 0xF4, 0x64, 0xC8, 0xC8, 0xC8, 0x1, 0xF4, 0x1, 0x90, 0x64, 0xFE, 0xD4, + 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0xF4, 0x64, 0x64, 0x0, 0x0, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x58, 0x2, 0x58, 0x0, 0xB, 0x0, 0xF, 0x0, 0x13, 0x0, + 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, + 0x3, 0x35, 0x21, 0x15, 0x3, 0x33, 0x35, 0x23, 0x64, 0x1, 0x90, 0x64, 0x64, + 0xFE, 0x70, 0x64, 0x1, 0x2C, 0x64, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0x58, 0x0, 0xB, 0x0, 0xF, + 0x0, 0x13, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x21, 0x35, 0x3B, 0x1, 0x35, 0x23, 0x37, 0x35, 0x21, 0x15, 0x64, 0x1, + 0x90, 0x64, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x0, 0x0, 0x0, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x17, 0x0, + 0x1B, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x21, 0x35, 0x3, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, + 0x15, 0x11, 0x33, 0x35, 0x23, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, 0x64, + 0x64, 0x1, 0x90, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0xC8, + 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0x58, 0x0, 0xB, 0x0, + 0xF, 0x0, 0x13, 0x0, 0x17, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x3, 0x35, 0x33, 0x15, 0x11, 0x33, 0x35, + 0x23, 0x37, 0x35, 0x33, 0x15, 0x64, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, 0x64, + 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, + 0x90, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x64, 0x64, 0x0, 0x0, 0x0, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x7, 0x0, + 0xB, 0x0, 0x0, 0x25, 0x15, 0x23, 0x35, 0x27, 0x35, 0x21, 0x15, 0x27, 0x23, + 0x35, 0x33, 0x1, 0x90, 0xC8, 0xC8, 0x2, 0x58, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, + 0xC8, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0x58, 0x0, 0xB, 0x0, 0xF, 0x0, 0x0, 0x35, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, 0x3, 0x35, 0x21, 0x15, + 0xC8, 0xC8, 0xC8, 0x64, 0xFD, 0xA8, 0x64, 0x1, 0x2C, 0x64, 0x1, 0x2C, 0xFE, + 0xD4, 0x1, 0x2C, 0xFE, 0xD4, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x0, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0x58, 0x0, 0xB, 0x0, 0xF, 0x0, + 0x0, 0x35, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, + 0x13, 0x35, 0x21, 0x15, 0xC8, 0xC8, 0xC8, 0x64, 0xFD, 0xA8, 0xC8, 0x1, 0x2C, + 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0xFE, 0xD4, 0x64, 0x64, 0x1, 0x90, + 0x64, 0x64, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, + 0xB, 0x0, 0x17, 0x0, 0x0, 0x35, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x15, 0x21, 0x35, 0x3, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0xC8, 0xC8, 0xC8, 0x64, 0xFD, 0xA8, 0x64, 0x64, 0x1, 0x90, + 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0xFE, 0xD4, 0x64, + 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xBC, 0x2, 0x58, 0x0, 0xB, 0x0, 0xF, 0x0, 0x13, 0x0, + 0x0, 0x35, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, + 0x3, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0xC8, 0xC8, 0xC8, 0x64, 0xFD, + 0xA8, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0xFE, + 0xD4, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0x58, 0x2, 0x58, 0x0, 0xF, 0x0, 0x13, + 0x0, 0x17, 0x0, 0x0, 0x15, 0x35, 0x21, 0x35, 0x21, 0x35, 0x23, 0x35, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x15, 0x1, 0x35, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x15, 0x1, 0x90, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0xFE, 0xC, + 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xFE, 0x70, 0x64, + 0x2, 0x58, 0x64, 0x64, 0x64, 0x64, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x3, + 0x20, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x31, 0x35, 0x33, 0x15, 0x33, 0x11, + 0x23, 0x35, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, + 0x15, 0x33, 0x15, 0x23, 0x11, 0x23, 0x15, 0x21, 0x35, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, + 0x58, 0x0, 0x7, 0x0, 0x0, 0x31, 0x11, 0x21, 0x15, 0x23, 0x35, 0x23, 0x11, + 0x2, 0x58, 0xC8, 0xC8, 0x2, 0x58, 0xC8, 0x64, 0xFE, 0xC, 0x0, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x1B, 0x0, 0x23, + 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x15, 0x23, 0x15, 0x21, 0x35, 0x23, 0x35, 0x3B, 0x1, 0x15, 0x33, + 0x35, 0x33, 0x35, 0x21, 0x35, 0x15, 0x21, 0x35, 0x23, 0x35, 0x23, 0x15, 0x64, + 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, + 0x1B, 0x0, 0x0, 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, 0x21, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x33, 0x35, 0x33, 0x15, 0x21, 0x64, 0x64, 0x64, 0x64, 0x2, 0x58, 0xC8, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xFD, 0xA8, 0xC8, 0x64, 0x64, 0x64, 0xC8, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x0, 0x2, 0x0, 0x0, + 0xFF, 0x9C, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x0, 0x15, + 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, + 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x1, 0x33, 0x35, 0x23, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x2, 0x58, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xFE, 0x70, 0xC8, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, + 0x2C, 0xC8, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, + 0x1F, 0x0, 0x0, 0x31, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x35, + 0x21, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, 0x11, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x11, 0x64, 0x64, 0x64, 0x64, + 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x2C, 0xC8, + 0x64, 0x64, 0xC8, 0xFE, 0xD4, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x17, 0x0, 0x1F, 0x0, 0x0, 0x35, 0x11, + 0x33, 0x35, 0x21, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x21, 0x35, 0x3B, 0x1, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x15, + 0x0, 0x19, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, + 0x35, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, + 0x3B, 0x1, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0x64, 0x64, + 0x64, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0xC8, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x17, 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, + 0x33, 0x35, 0x21, 0x15, 0x23, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x21, 0x35, 0x23, 0x35, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0x64, + 0x1, 0x2C, 0xFE, 0xD4, 0x64, 0xC8, 0xFE, 0xD4, 0x64, 0xC8, 0x1, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0x58, 0x0, 0xB, 0x0, 0x0, 0x21, + 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x1, 0x90, + 0x64, 0xC8, 0x64, 0x2, 0xBC, 0x64, 0x1, 0xF4, 0xFE, 0xC, 0x1, 0xF4, 0x64, + 0x64, 0xFE, 0xC, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x1, 0xF4, + 0x0, 0xB, 0x0, 0xF, 0x0, 0x0, 0x35, 0x11, 0x33, 0x35, 0x21, 0x15, 0x23, + 0x11, 0x23, 0x15, 0x21, 0x35, 0x3B, 0x1, 0x11, 0x23, 0x64, 0x2, 0x58, 0xC8, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x1, 0x2C, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xBC, 0x2, 0x58, 0x0, 0x11, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x21, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x15, + 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x1, 0x90, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x1, 0xF4, 0x64, 0x0, 0x0, 0x0, 0x3, + 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x19, 0x0, 0x1D, 0x0, + 0x21, 0x0, 0x0, 0x15, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x35, + 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x15, 0x23, 0x15, 0x11, 0x33, 0x35, 0x23, 0x5, 0x35, 0x23, 0x15, 0x64, 0x64, + 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, + 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0xC8, 0xC8, 0xC8, 0x0, 0x0, + 0x1, 0x0, 0xC8, 0x0, 0x64, 0x2, 0x58, 0x1, 0xF4, 0x0, 0xB, 0x0, 0x0, + 0x25, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x1, + 0xF4, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0x0, 0x4, 0x0, 0x64, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x3, 0x0, + 0x7, 0x0, 0xB, 0x0, 0xF, 0x0, 0x0, 0x33, 0x35, 0x33, 0x15, 0x27, 0x11, + 0x33, 0x11, 0x17, 0x35, 0x33, 0x15, 0x27, 0x11, 0x33, 0x11, 0x64, 0xC8, 0xC8, + 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x1, 0xF4, 0xFE, 0xC, 0xC8, + 0x64, 0x64, 0xC8, 0x1, 0xF4, 0xFE, 0xC, 0x0, 0x0, 0x1, 0x0, 0x64, 0x0, + 0xC8, 0x2, 0x58, 0x2, 0xBC, 0x0, 0x9, 0x0, 0x0, 0x25, 0x11, 0x23, 0x11, + 0x23, 0x11, 0x21, 0x15, 0x33, 0x11, 0x1, 0x90, 0x64, 0xC8, 0x1, 0x90, 0x64, + 0xC8, 0x1, 0x90, 0xFE, 0x70, 0x1, 0xF4, 0x64, 0xFE, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x3, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x9, 0x0, + 0xD, 0x0, 0x1D, 0x0, 0x0, 0x15, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x21, 0x19, 0x1, 0x33, 0x35, 0x23, 0x13, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x1, 0xF4, 0x64, 0x64, + 0xFE, 0xD4, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x3, 0x20, 0x64, 0xC8, 0x64, 0xFE, 0x70, 0x1, 0xF4, 0xC8, 0xFE, 0xC, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x64, 0x2, 0xBC, 0x2, 0x58, 0x0, 0x13, 0x0, 0x0, 0x11, 0x35, + 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x64, 0x64, 0xC8, 0x64, 0x1, 0x90, 0xFE, 0x70, + 0x64, 0xC8, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, 0x2, 0xBC, + 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x13, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, 0x23, 0x11, 0x64, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0xC8, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, + 0x70, 0x1, 0x90, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x64, 0x2, 0xBC, + 0x2, 0x58, 0x0, 0x13, 0x0, 0x0, 0x11, 0x35, 0x21, 0x35, 0x23, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, + 0x1, 0x90, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x1, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x1, 0x0, 0x64, + 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x37, 0x35, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, + 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x1, 0x90, 0xFE, + 0x70, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x64, 0x3, 0x20, 0x2, 0x58, 0x0, 0x1B, 0x0, 0x0, 0x11, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, + 0x2C, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, + 0x64, 0x64, 0x0, 0x0, 0x1, 0x0, 0x64, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, + 0x0, 0x1B, 0x0, 0x0, 0x37, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, 0x0, + 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x1F, 0x0, 0x0, 0x15, 0x35, + 0x21, 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x23, 0x15, 0x21, 0x15, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, + 0x1, 0x1, 0x2C, 0x0, 0xC8, 0x1, 0xF4, 0x1, 0x90, 0x0, 0x3, 0x0, 0x0, + 0x25, 0x23, 0x35, 0x33, 0x1, 0xF4, 0xC8, 0xC8, 0xC8, 0xC8, 0x0, 0x1, 0x0, + 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x3D, 0x1, + 0x21, 0x15, 0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x21, 0x35, 0x23, 0x35, 0x23, + 0x35, 0x1, 0x2C, 0x64, 0x1, 0x90, 0xC8, 0xFE, 0xD4, 0x64, 0x64, 0xC8, 0x64, + 0xC8, 0x2, 0x58, 0x64, 0xFD, 0x44, 0x64, 0x64, 0x64, 0x0, 0x0, 0x3, 0x0, + 0x0, 0x0, 0x64, 0x3, 0x20, 0x1, 0xF4, 0x0, 0xB, 0x0, 0xF, 0x0, 0x13, + 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x35, 0x3B, 0x1, 0x35, 0x23, 0x5, 0x33, 0x35, 0x23, 0x64, 0x2, 0x58, 0x64, + 0x64, 0xFD, 0xA8, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0xC8, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x64, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x5, 0x0, 0x0, 0x35, 0x11, 0x33, + 0x11, 0x21, 0x15, 0xC8, 0x1, 0xF4, 0x64, 0x1, 0x90, 0xFE, 0xD4, 0x64, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, 0xBC, 0x0, + 0xB, 0x0, 0x0, 0x31, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x11, + 0x23, 0x11, 0x64, 0x1, 0x90, 0x64, 0xC8, 0xC8, 0x2, 0x58, 0x64, 0x64, 0xFD, + 0xA8, 0x2, 0x58, 0xFD, 0xA8, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x64, + 0x2, 0xBC, 0x2, 0x58, 0x0, 0xF, 0x0, 0x1F, 0x0, 0x0, 0x3D, 0x1, 0x33, + 0x35, 0x21, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x23, 0x15, + 0x3, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x35, 0x23, 0x15, 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0xC8, + 0x64, 0x1, 0x2C, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x64, 0x2, 0x58, 0x2, + 0x58, 0x0, 0x3, 0x0, 0x7, 0x0, 0xB, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x15, + 0x1, 0x35, 0x21, 0x15, 0x5, 0x35, 0x21, 0x15, 0x2, 0x58, 0xFD, 0xA8, 0x2, + 0x58, 0xFD, 0xA8, 0x2, 0x58, 0x64, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x58, 0x2, + 0xBC, 0x0, 0x3, 0x0, 0x17, 0x0, 0x0, 0x31, 0x35, 0x21, 0x15, 0x1, 0x35, + 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x2, 0x58, 0xFE, 0xC, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x58, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x17, 0x0, 0x0, 0x31, 0x35, 0x21, + 0x15, 0x25, 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x35, 0x33, 0x15, + 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x2, 0x58, 0xFE, 0xC, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0x58, 0x0, 0xF, 0x0, 0x17, 0x0, 0x0, + 0x31, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x11, 0x25, 0x21, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xC, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x1, + 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0x64, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x64, 0x2, 0x58, 0x1, 0x90, 0x0, 0x5, 0x0, + 0x0, 0x35, 0x11, 0x21, 0x15, 0x21, 0x15, 0x2, 0x58, 0xFE, 0x70, 0x64, 0x1, + 0x2C, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x2C, 0xFF, 0x9C, 0x3, + 0x20, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x0, 0x1, 0x23, 0x35, 0x23, 0x11, 0x23, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x3, 0x20, 0xC8, 0x64, 0xC8, 0x64, 0x1, + 0x2C, 0x64, 0x1, 0x90, 0xC8, 0xFD, 0x44, 0x2, 0xBC, 0x64, 0x64, 0x0, 0x1, + 0x0, 0x0, 0xFF, 0x9C, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x0, 0x35, + 0x33, 0x15, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0x23, 0xC8, 0x64, + 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0x2, 0xBC, 0xFD, 0x44, 0x64, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0xC8, 0x3, 0x84, 0x1, 0x2C, + 0x0, 0x3, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x15, 0x3, 0x84, 0xC8, 0x64, 0x64, + 0x0, 0x0, 0x1, 0x1, 0x2C, 0xFF, 0x9C, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x3, + 0x0, 0x0, 0x5, 0x23, 0x11, 0x33, 0x1, 0xF4, 0xC8, 0xC8, 0x64, 0x3, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x2C, 0xFF, 0x9C, 0x3, 0x84, 0x1, 0x2C, + 0x0, 0x5, 0x0, 0x0, 0x25, 0x21, 0x11, 0x23, 0x11, 0x21, 0x3, 0x84, 0xFE, + 0x70, 0xC8, 0x2, 0x58, 0xC8, 0xFE, 0xD4, 0x1, 0x90, 0x0, 0x1, 0x0, 0x0, + 0xFF, 0x9C, 0x1, 0xF4, 0x1, 0x2C, 0x0, 0x5, 0x0, 0x0, 0x3D, 0x1, 0x21, + 0x11, 0x23, 0x11, 0x1, 0xF4, 0xC8, 0xC8, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x1, 0x2C, 0x0, 0xC8, 0x3, 0x84, 0x2, 0xBC, 0x0, + 0x5, 0x0, 0x0, 0x25, 0x21, 0x11, 0x33, 0x11, 0x21, 0x3, 0x84, 0xFD, 0xA8, + 0xC8, 0x1, 0x90, 0xC8, 0x1, 0xF4, 0xFE, 0x70, 0x0, 0x1, 0x0, 0x0, 0x0, + 0xC8, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0x5, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x11, + 0x33, 0x11, 0x1, 0x2C, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0xFE, 0xC, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x1, 0x2C, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x7, + 0x0, 0x0, 0x25, 0x21, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x3, 0x84, 0xFE, + 0x70, 0xC8, 0xC8, 0x1, 0x90, 0xC8, 0xFE, 0xD4, 0x3, 0x20, 0xFE, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x1, 0xF4, 0x2, 0xBC, 0x0, + 0x7, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x1, 0x2C, + 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0xFC, 0xE0, 0x1, 0x2C, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x84, 0x1, 0x2C, 0x0, 0x7, 0x0, 0x0, + 0x3D, 0x1, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x3, 0x84, 0xFE, 0x70, 0xC8, + 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x1, 0x2C, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0xC8, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x7, 0x0, 0x0, 0x3D, 0x1, 0x21, + 0x11, 0x33, 0x11, 0x21, 0x15, 0x1, 0x2C, 0xC8, 0x1, 0x90, 0xC8, 0x64, 0x1, + 0x90, 0xFE, 0x70, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x3, + 0x84, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x11, 0x33, 0x11, + 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x1, 0x2C, 0xC8, 0x1, 0x90, 0xFE, 0x70, + 0xC8, 0xC8, 0x64, 0x1, 0x90, 0xFE, 0x70, 0x64, 0xFE, 0xD4, 0x1, 0x2C, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0xC8, 0x3, 0x84, 0x1, 0xF4, 0x0, + 0x3, 0x0, 0x7, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x15, 0x25, 0x35, 0x21, 0x15, + 0x3, 0x84, 0xFC, 0x7C, 0x3, 0x84, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, + 0x2, 0x0, 0xC8, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x7, + 0x0, 0x0, 0x5, 0x23, 0x11, 0x33, 0x13, 0x11, 0x33, 0x11, 0x1, 0x90, 0xC8, + 0xC8, 0x64, 0xC8, 0x64, 0x3, 0x20, 0xFC, 0xE0, 0x3, 0x20, 0xFC, 0xE0, 0x0, + 0x0, 0x1, 0x1, 0x2C, 0xFF, 0x9C, 0x3, 0x84, 0x1, 0xF4, 0x0, 0x9, 0x0, + 0x0, 0x25, 0x21, 0x11, 0x23, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21, 0x3, 0x84, + 0xFE, 0x70, 0xC8, 0x2, 0x58, 0xFE, 0x70, 0x1, 0x90, 0xC8, 0xFE, 0xD4, 0x2, + 0x58, 0x64, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0xC8, 0xFF, 0x9C, 0x3, 0x84, + 0x1, 0x2C, 0x0, 0x9, 0x0, 0x0, 0x25, 0x11, 0x23, 0x11, 0x21, 0x15, 0x23, + 0x11, 0x23, 0x11, 0x1, 0x90, 0xC8, 0x2, 0xBC, 0xC8, 0xC8, 0xC8, 0xFE, 0xD4, + 0x1, 0x90, 0x64, 0xFE, 0xD4, 0x1, 0x2C, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, + 0xC8, 0xFF, 0x9C, 0x3, 0x84, 0x1, 0xF4, 0x0, 0x5, 0x0, 0xB, 0x0, 0x0, + 0x5, 0x23, 0x11, 0x21, 0x15, 0x21, 0x5, 0x23, 0x11, 0x23, 0x11, 0x21, 0x1, + 0x90, 0xC8, 0x2, 0xBC, 0xFE, 0xC, 0x1, 0xF4, 0xC8, 0xC8, 0x1, 0x90, 0x64, + 0x2, 0x58, 0x64, 0xC8, 0xFE, 0xD4, 0x1, 0x90, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0xFF, 0x9C, 0x1, 0xF4, 0x1, 0xF4, 0x0, 0x9, 0x0, 0x0, 0x3D, 0x1, + 0x21, 0x35, 0x21, 0x35, 0x21, 0x11, 0x23, 0x11, 0x1, 0x2C, 0xFE, 0xD4, 0x1, + 0xF4, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0xFD, 0xA8, 0x1, 0x2C, 0x0, 0x0, 0x1, + 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x1, 0x2C, 0x0, 0x9, 0x0, 0x0, 0x3D, + 0x1, 0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x2, 0xBC, 0xC8, 0x64, + 0xC8, 0xC8, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0x0, 0x0, + 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x1, 0xF4, 0x0, 0x5, 0x0, 0xB, + 0x0, 0x0, 0x3D, 0x1, 0x21, 0x11, 0x23, 0x11, 0x27, 0x35, 0x21, 0x11, 0x23, + 0x11, 0x1, 0x90, 0xC8, 0xC8, 0x2, 0xBC, 0xC8, 0xC8, 0x64, 0xFE, 0x70, 0x1, + 0x2C, 0xC8, 0x64, 0xFD, 0xA8, 0x1, 0xF4, 0x0, 0x0, 0x1, 0x1, 0x2C, 0x0, + 0xC8, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x9, 0x0, 0x0, 0x25, 0x21, 0x11, 0x33, + 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x3, 0x84, 0xFD, 0xA8, 0xC8, 0x1, 0x90, + 0xFE, 0x70, 0x1, 0x90, 0xC8, 0x1, 0xF4, 0xC8, 0x64, 0x64, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x0, 0xC8, 0x0, 0xC8, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x9, 0x0, + 0x0, 0x1, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x21, 0x11, 0x33, 0x1, 0x90, + 0x64, 0xC8, 0xC8, 0xFD, 0x44, 0xC8, 0x1, 0x2C, 0x1, 0x90, 0xFE, 0x70, 0x64, + 0x1, 0xF4, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0xC8, 0x0, 0xC8, 0x3, 0x84, + 0x2, 0xBC, 0x0, 0x5, 0x0, 0xB, 0x0, 0x0, 0x1, 0x21, 0x15, 0x21, 0x11, + 0x33, 0x5, 0x15, 0x21, 0x11, 0x33, 0x15, 0x1, 0x90, 0x1, 0xF4, 0xFD, 0x44, + 0xC8, 0x1, 0xF4, 0xFE, 0x70, 0xC8, 0x1, 0x2C, 0x64, 0x1, 0xF4, 0xC8, 0x64, + 0x1, 0x2C, 0xC8, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0xC8, 0x1, 0xF4, + 0x2, 0xBC, 0x0, 0x9, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x35, 0x21, 0x35, 0x21, + 0x35, 0x33, 0x11, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0xC8, 0xC8, 0x64, 0x64, + 0x64, 0xC8, 0xFE, 0xC, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0xC8, 0x2, + 0xBC, 0x2, 0xBC, 0x0, 0x9, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x11, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0xFE, + 0x70, 0x1, 0x90, 0xFE, 0xC, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0xC8, + 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x5, 0x0, 0xB, 0x0, 0x0, 0x3D, 0x1, 0x21, + 0x11, 0x33, 0x11, 0x25, 0x35, 0x33, 0x35, 0x33, 0x11, 0x1, 0xF4, 0xC8, 0xFD, + 0x44, 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0xFE, 0xC, 0xC8, 0x64, 0xC8, 0xFE, + 0xD4, 0x0, 0x0, 0x0, 0x1, 0x1, 0x2C, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, + 0x0, 0xB, 0x0, 0x0, 0x25, 0x21, 0x11, 0x23, 0x11, 0x33, 0x15, 0x21, 0x15, + 0x21, 0x15, 0x21, 0x3, 0x84, 0xFE, 0x70, 0xC8, 0xC8, 0x1, 0x90, 0xFE, 0x70, + 0x1, 0x90, 0xC8, 0xFE, 0xD4, 0x3, 0x20, 0xC8, 0x64, 0x64, 0x0, 0x0, 0x0, + 0x2, 0x0, 0xC8, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x3, 0x0, 0xB, + 0x0, 0x0, 0x5, 0x23, 0x11, 0x33, 0x1, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, + 0x33, 0x1, 0x90, 0xC8, 0xC8, 0x1, 0xF4, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x3, + 0x20, 0xFE, 0xC, 0xFE, 0xD4, 0x3, 0x20, 0xFE, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x0, 0xC8, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x5, 0x0, 0xB, + 0x0, 0xF, 0x0, 0x0, 0x25, 0x23, 0x11, 0x23, 0x11, 0x21, 0x35, 0x15, 0x21, + 0x11, 0x33, 0x15, 0x1, 0x11, 0x33, 0x11, 0x3, 0x84, 0xC8, 0xC8, 0x1, 0x90, + 0xFE, 0x70, 0xC8, 0xFE, 0xC, 0xC8, 0xC8, 0xFE, 0xD4, 0x1, 0x90, 0xC8, 0x64, + 0x1, 0x2C, 0xC8, 0xFD, 0xA8, 0x3, 0x20, 0xFC, 0xE0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0xFF, 0x9C, 0x1, 0xF4, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x0, 0x3D, + 0x1, 0x21, 0x35, 0x21, 0x35, 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x1, 0x2C, + 0xFE, 0xD4, 0x1, 0x2C, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0xFC, 0xE0, + 0x1, 0x2C, 0x0, 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, + 0x0, 0x7, 0x0, 0xB, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x11, 0x1, 0x11, 0x33, 0x11, 0xC8, 0xC8, 0xC8, 0x1, 0x2C, 0xC8, 0xC8, 0x64, + 0x1, 0x90, 0xFC, 0xE0, 0x1, 0x2C, 0xFE, 0xD4, 0x3, 0x20, 0xFC, 0xE0, 0x0, + 0x3, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x5, 0x0, 0xB, + 0x0, 0xF, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x11, 0x23, 0x11, 0x27, 0x35, 0x33, + 0x35, 0x33, 0x11, 0x13, 0x11, 0x33, 0x11, 0x1, 0x90, 0xC8, 0xC8, 0xC8, 0xC8, + 0x64, 0xC8, 0xC8, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0xC8, 0x64, 0xC8, 0xFE, 0xD4, + 0xFE, 0xC, 0x3, 0x20, 0xFC, 0xE0, 0x0, 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, + 0x3, 0x84, 0x1, 0xF4, 0x0, 0x7, 0x0, 0xB, 0x0, 0x0, 0x3D, 0x1, 0x21, + 0x15, 0x21, 0x11, 0x23, 0x11, 0x25, 0x35, 0x21, 0x15, 0x3, 0x84, 0xFE, 0x70, + 0xC8, 0xFE, 0xD4, 0x3, 0x84, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x1, 0x2C, 0xC8, + 0x64, 0x64, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x84, 0x1, 0x2C, + 0x0, 0xB, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, + 0x11, 0x23, 0x11, 0x3, 0x84, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xFE, + 0xD4, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0x0, 0x0, 0x3, 0x0, 0x0, 0xFF, + 0x9C, 0x3, 0x84, 0x1, 0xF4, 0x0, 0x5, 0x0, 0x9, 0x0, 0xF, 0x0, 0x0, + 0x3D, 0x1, 0x21, 0x11, 0x23, 0x11, 0x27, 0x35, 0x21, 0x1D, 0x1, 0x23, 0x11, + 0x23, 0x11, 0x21, 0x1, 0x90, 0xC8, 0xC8, 0x3, 0x84, 0xC8, 0xC8, 0x1, 0x90, + 0xC8, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0xC8, 0x64, 0x64, 0xC8, 0xFE, 0xD4, 0x1, + 0x90, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0xC8, 0x3, 0x84, 0x2, 0xBC, + 0x0, 0x3, 0x0, 0xB, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x15, 0x25, 0x35, 0x21, + 0x35, 0x33, 0x15, 0x21, 0x15, 0x3, 0x84, 0xFC, 0x7C, 0x1, 0x2C, 0xC8, 0x1, + 0x90, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0x0, 0xC8, 0x3, 0x84, 0x2, 0xBC, 0x0, 0xB, 0x0, 0x0, + 0x3D, 0x1, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0xC8, + 0xC8, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0xFE, 0x70, 0x1, 0x90, 0xFE, + 0x70, 0x64, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0xC8, 0x3, 0x84, 0x2, + 0xBC, 0x0, 0x3, 0x0, 0x9, 0x0, 0xF, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x15, + 0x25, 0x35, 0x33, 0x35, 0x33, 0x11, 0x25, 0x15, 0x21, 0x11, 0x33, 0x15, 0x3, + 0x84, 0xFC, 0x7C, 0xC8, 0xC8, 0x1, 0xF4, 0xFE, 0x70, 0xC8, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0xC8, 0xFE, 0xD4, 0x64, 0x64, 0x1, 0x2C, 0xC8, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x0, + 0x3D, 0x1, 0x21, 0x35, 0x21, 0x35, 0x21, 0x35, 0x33, 0x15, 0x21, 0x15, 0x21, + 0x15, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, + 0xC8, 0x1, 0x90, 0xFE, 0x70, 0x1, 0x90, 0xFE, 0x70, 0xC8, 0xC8, 0x64, 0x64, + 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x1, 0x2C, 0x0, 0x0, 0x1, + 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x13, 0x0, 0x0, 0x3D, + 0x1, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x11, + 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, + 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x90, 0xFE, 0x70, 0x1, 0x90, 0xFE, 0x70, 0x64, + 0xFE, 0xD4, 0x1, 0x2C, 0xFE, 0xD4, 0x1, 0x2C, 0x0, 0x0, 0x0, 0x4, 0x0, + 0x0, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x5, 0x0, 0xB, 0x0, 0x11, + 0x0, 0x17, 0x0, 0x0, 0x3D, 0x1, 0x21, 0x11, 0x23, 0x11, 0x27, 0x35, 0x33, + 0x35, 0x33, 0x11, 0x5, 0x23, 0x11, 0x23, 0x11, 0x21, 0x35, 0x15, 0x21, 0x11, + 0x33, 0x15, 0x1, 0x90, 0xC8, 0xC8, 0xC8, 0xC8, 0x1, 0xF4, 0xC8, 0xC8, 0x1, + 0x90, 0xFE, 0x70, 0xC8, 0xC8, 0x64, 0xFE, 0x70, 0x1, 0x2C, 0xC8, 0x64, 0xC8, + 0xFE, 0xD4, 0xC8, 0xFE, 0xD4, 0x1, 0x90, 0xC8, 0x64, 0x1, 0x2C, 0xC8, 0x0, + 0x1, 0x0, 0x0, 0x1, 0x2C, 0x3, 0x84, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x0, + 0x19, 0x1, 0x21, 0x11, 0x3, 0x84, 0x1, 0x2C, 0x1, 0x90, 0xFE, 0x70, 0x0, + 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x84, 0x1, 0x2C, 0x0, 0x3, + 0x0, 0x0, 0x15, 0x11, 0x21, 0x11, 0x3, 0x84, 0x64, 0x1, 0x90, 0xFE, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x84, 0x2, 0xBC, + 0x0, 0x3, 0x0, 0x0, 0x15, 0x11, 0x21, 0x11, 0x3, 0x84, 0x64, 0x3, 0x20, + 0xFC, 0xE0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x1, 0x90, + 0x2, 0xBC, 0x0, 0x3, 0x0, 0x0, 0x15, 0x11, 0x21, 0x11, 0x1, 0x90, 0x64, + 0x3, 0x20, 0xFC, 0xE0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x90, 0xFF, 0x9C, + 0x3, 0x84, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x0, 0x5, 0x11, 0x21, 0x11, 0x1, + 0x90, 0x1, 0xF4, 0x64, 0x3, 0x20, 0xFC, 0xE0, 0x0, 0x0, 0x10, 0x0, 0x0, + 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x7, 0x0, 0xB, 0x0, + 0xF, 0x0, 0x13, 0x0, 0x17, 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x23, 0x0, 0x27, + 0x0, 0x2B, 0x0, 0x2F, 0x0, 0x33, 0x0, 0x37, 0x0, 0x3B, 0x0, 0x3F, 0x0, + 0x0, 0x3D, 0x1, 0x33, 0x15, 0x7, 0x35, 0x33, 0x15, 0x3, 0x35, 0x33, 0x15, + 0x7, 0x35, 0x33, 0x15, 0x5, 0x35, 0x33, 0x15, 0x7, 0x35, 0x33, 0x15, 0x3, + 0x35, 0x33, 0x15, 0x7, 0x35, 0x33, 0x15, 0x7, 0x23, 0x35, 0x33, 0x1D, 0x1, + 0x23, 0x35, 0x13, 0x15, 0x23, 0x35, 0x37, 0x15, 0x23, 0x35, 0x1, 0x23, 0x35, + 0x33, 0x1D, 0x1, 0x23, 0x35, 0x13, 0x15, 0x23, 0x35, 0x37, 0x15, 0x23, 0x35, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x2, 0x58, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x2, 0x58, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, + 0x90, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0xC, 0x64, 0xC8, 0x64, 0x64, 0x1, + 0x90, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x20, 0x0, 0x0, 0xFF, 0x9C, 0x3, + 0x20, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x7, 0x0, 0xB, 0x0, 0xF, 0x0, 0x13, + 0x0, 0x17, 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x23, 0x0, 0x27, 0x0, 0x2B, 0x0, + 0x2F, 0x0, 0x33, 0x0, 0x37, 0x0, 0x3B, 0x0, 0x3F, 0x0, 0x43, 0x0, 0x47, + 0x0, 0x4B, 0x0, 0x4F, 0x0, 0x53, 0x0, 0x57, 0x0, 0x5B, 0x0, 0x5F, 0x0, + 0x63, 0x0, 0x67, 0x0, 0x6B, 0x0, 0x6F, 0x0, 0x73, 0x0, 0x77, 0x0, 0x7B, + 0x0, 0x7F, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x15, 0x7, 0x35, 0x33, 0x15, 0x3, + 0x35, 0x33, 0x15, 0x7, 0x35, 0x33, 0x15, 0x5, 0x33, 0x15, 0x23, 0x31, 0x15, + 0x23, 0x35, 0x17, 0x33, 0x15, 0x23, 0x11, 0x15, 0x23, 0x35, 0x17, 0x33, 0x15, + 0x23, 0x31, 0x15, 0x23, 0x35, 0x13, 0x15, 0x23, 0x35, 0x17, 0x33, 0x15, 0x23, + 0x1, 0x23, 0x35, 0x33, 0x1D, 0x1, 0x23, 0x35, 0x13, 0x15, 0x23, 0x35, 0x37, + 0x15, 0x23, 0x35, 0x1, 0x15, 0x23, 0x35, 0x17, 0x15, 0x23, 0x35, 0x13, 0x23, + 0x35, 0x33, 0x1D, 0x1, 0x23, 0x35, 0x5, 0x15, 0x23, 0x35, 0x17, 0x15, 0x23, + 0x35, 0x13, 0x23, 0x35, 0x33, 0x1D, 0x1, 0x23, 0x35, 0x5, 0x23, 0x35, 0x33, + 0x1D, 0x1, 0x23, 0x35, 0x13, 0x15, 0x23, 0x35, 0x37, 0x15, 0x23, 0x35, 0x1, + 0x23, 0x35, 0x33, 0x1D, 0x1, 0x23, 0x35, 0x13, 0x15, 0x23, 0x35, 0x37, 0x15, + 0x23, 0x35, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x2, 0x58, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x2, 0x58, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xFE, 0xC, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, 0xF4, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, 0xF4, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, + 0xC, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, + 0x0, 0x0, 0x3, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x29, + 0x0, 0x35, 0x0, 0x41, 0x0, 0x0, 0x35, 0x33, 0x35, 0x23, 0x11, 0x33, 0x35, + 0x23, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, + 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, 0x15, 0x33, 0x11, 0x23, 0x15, + 0x21, 0x35, 0x23, 0x35, 0x23, 0x15, 0x33, 0x15, 0x21, 0x1, 0x15, 0x33, 0x15, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x15, 0x27, 0x23, 0x35, 0x23, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x33, 0x35, 0x33, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0x1, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, 0x0, 0xC8, 0x0, 0x64, 0x2, 0x58, + 0x1, 0xF4, 0x0, 0x3, 0x0, 0x0, 0x37, 0x11, 0x21, 0x11, 0xC8, 0x1, 0x90, + 0x64, 0x1, 0x90, 0xFE, 0x70, 0x0, 0x0, 0x0, 0x1, 0x0, 0x64, 0x0, 0x0, + 0x2, 0xBC, 0x1, 0x2C, 0x0, 0x3, 0x0, 0x0, 0x33, 0x11, 0x21, 0x11, 0x64, + 0x2, 0x58, 0x1, 0x2C, 0xFE, 0xD4, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x64, 0x3, 0x20, 0x2, 0x58, 0x0, 0xF, 0x0, 0x0, 0x3D, 0x1, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, + 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x31, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x64, 0xC8, 0xC8, 0xC8, + 0xC8, 0xC8, 0xC8, 0x2, 0xBC, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, + 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x64, 0x3, 0x20, 0x2, 0x58, 0x0, 0xF, + 0x0, 0x0, 0x11, 0x35, 0x21, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x35, 0x23, 0x35, 0x3, 0x20, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x1, 0x90, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0xF, 0x0, 0x0, 0x11, 0x35, + 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x35, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0x64, + 0x64, 0xFD, 0x44, 0x64, 0x64, 0x64, 0x0, 0x2, 0x0, 0x64, 0x0, 0x0, 0x2, + 0xBC, 0x2, 0x58, 0x0, 0xB, 0x0, 0x17, 0x0, 0x0, 0x37, 0x11, 0x33, 0x35, + 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x3D, 0x1, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, + 0xFE, 0x70, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, + 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x3, 0x0, + 0xF, 0x0, 0x0, 0x15, 0x11, 0x21, 0x11, 0x1, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x3, 0x20, 0xFD, 0xA8, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x3, 0x20, 0xFC, 0xE0, 0x1, 0x2C, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, + 0xBC, 0x0, 0x3, 0x0, 0xF, 0x0, 0x1B, 0x0, 0x0, 0x15, 0x11, 0x21, 0x11, + 0x25, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x37, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x3, 0x20, + 0xFD, 0xA8, 0x1, 0x90, 0x64, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x3, 0x20, 0xFC, 0xE0, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, + 0x64, 0xFE, 0x70, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x0, 0x7, 0x0, + 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0x3, 0x0, 0xB, 0x0, 0xF, + 0x0, 0x13, 0x0, 0x17, 0x0, 0x1B, 0x0, 0x1F, 0x0, 0x0, 0x31, 0x11, 0x33, + 0x11, 0x37, 0x35, 0x21, 0x15, 0x23, 0x15, 0x23, 0x35, 0x27, 0x35, 0x33, 0x15, + 0x25, 0x15, 0x23, 0x35, 0x1, 0x23, 0x11, 0x33, 0x1, 0x21, 0x15, 0x21, 0x11, + 0x35, 0x21, 0x15, 0x64, 0x64, 0x1, 0x90, 0x64, 0xC8, 0x64, 0x64, 0x1, 0x2C, + 0x64, 0x1, 0x2C, 0x64, 0x64, 0xFD, 0x44, 0x2, 0x58, 0xFD, 0xA8, 0x2, 0x58, + 0x2, 0x58, 0xFD, 0xA8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xC, 0x2, 0x58, 0xFD, 0xA8, 0x64, 0x2, 0xBC, 0x64, 0x64, + 0x0, 0x0, 0x4, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0xB, + 0x0, 0x13, 0x0, 0x17, 0x0, 0x1B, 0x0, 0x0, 0x31, 0x11, 0x33, 0x35, 0x21, + 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0x37, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x35, 0x21, 0x35, 0x15, 0x33, 0x35, 0x21, 0x23, 0x15, 0x33, 0x64, 0x2, 0x58, + 0x64, 0x64, 0xFD, 0xA8, 0x64, 0x64, 0xC8, 0x64, 0xFE, 0x70, 0x64, 0x1, 0x2C, + 0x64, 0x64, 0x2, 0x58, 0x64, 0x64, 0xFD, 0xA8, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x0, 0x0, 0x0, 0xA, 0x0, 0x0, 0xFF, 0x9C, + 0x3, 0x20, 0x2, 0xBC, 0x0, 0x3, 0x0, 0x17, 0x0, 0x1B, 0x0, 0x1F, 0x0, + 0x23, 0x0, 0x27, 0x0, 0x2B, 0x0, 0x2F, 0x0, 0x33, 0x0, 0x37, 0x0, 0x0, + 0x15, 0x35, 0x33, 0x15, 0x3, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x3, 0x35, + 0x33, 0x15, 0x13, 0x15, 0x23, 0x35, 0x13, 0x23, 0x35, 0x33, 0x1, 0x33, 0x15, + 0x23, 0x11, 0x35, 0x33, 0x15, 0x13, 0x15, 0x23, 0x35, 0x13, 0x15, 0x23, 0x35, + 0x1, 0x33, 0x35, 0x23, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x64, + 0xC8, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x90, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x1, + 0x2C, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0xC8, 0x64, 0x1, 0x90, + 0x64, 0x64, 0xFE, 0xC, 0x64, 0x64, 0x1, 0x90, 0x64, 0xFE, 0xC, 0x64, 0x1, + 0xF4, 0x64, 0x64, 0xFE, 0xC, 0x64, 0x64, 0x2, 0xBC, 0x64, 0x64, 0xFE, 0xC, + 0xC8, 0x0, 0x0, 0x2, 0x0, 0x64, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, 0x0, + 0x17, 0x0, 0x1B, 0x0, 0x0, 0x37, 0x35, 0x23, 0x11, 0x33, 0x35, 0x21, 0x15, + 0x33, 0x11, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x35, 0x33, 0x3D, 0x1, 0x33, 0x11, 0x23, 0xC8, 0x64, 0x64, 0x1, 0x90, 0x64, + 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x1, 0x2C, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, + 0x2C, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, + 0xBC, 0x0, 0x13, 0x0, 0x17, 0x0, 0x0, 0x31, 0x11, 0x33, 0x35, 0x21, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x21, 0x11, 0x23, 0x35, 0x23, 0x11, 0x23, 0x15, 0x21, + 0x35, 0x3B, 0x1, 0x11, 0x23, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x1, 0x90, 0x64, + 0x64, 0x64, 0xFE, 0x70, 0x64, 0xC8, 0xC8, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0x70, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x1, 0x2C, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x3D, + 0x1, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x33, 0x35, 0x23, + 0x35, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xC, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x1, 0x0, 0x0, 0xFF, 0x9C, 0x2, 0xBC, + 0x2, 0xBC, 0x0, 0x1B, 0x0, 0x0, 0x3D, 0x1, 0x33, 0x35, 0x23, 0x35, 0x33, + 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x21, 0x35, 0x33, 0x35, 0x23, 0x35, 0xC8, 0x64, 0x64, 0x1, 0x2C, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xFE, 0xC, 0x64, 0x64, 0xC8, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, 0x17, 0x0, 0x0, + 0x19, 0x1, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x64, 0xC8, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x1, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0xBC, 0x2, 0xBC, 0x0, + 0x1B, 0x0, 0x0, 0x11, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, + 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x35, 0x23, 0x35, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x1, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x0, 0x0, 0x2, 0x0, 0x0, + 0xFF, 0x9C, 0x3, 0x20, 0x2, 0xBC, 0x0, 0xB, 0x0, 0xF, 0x0, 0x0, 0x35, + 0x33, 0x35, 0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0x23, 0x15, 0x21, 0x1, 0x33, + 0x35, 0x23, 0x64, 0x64, 0x2, 0x58, 0xFE, 0x70, 0x64, 0xFE, 0xD4, 0x1, 0x90, + 0xC8, 0xC8, 0x64, 0x64, 0x1, 0xF4, 0xFE, 0xD4, 0xFE, 0x70, 0x64, 0x2, 0x58, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0xFF, 0x9C, 0x3, 0x20, 0x2, + 0xBC, 0x0, 0xF, 0x0, 0x13, 0x0, 0x0, 0x35, 0x33, 0x11, 0x21, 0x11, 0x23, + 0x15, 0x23, 0x35, 0x33, 0x35, 0x21, 0x11, 0x23, 0x15, 0x23, 0x1, 0x21, 0x35, + 0x21, 0x64, 0x2, 0xBC, 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0x1, 0x2C, + 0x1, 0x2C, 0xFE, 0xD4, 0x64, 0x2, 0x58, 0xFD, 0xA8, 0x64, 0xC8, 0xC8, 0xFE, + 0x70, 0x64, 0x2, 0x58, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1C, 0x1, 0x56, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0x0, 0x50, 0x0, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x11, 0x0, 0x9C, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x7, 0x0, 0xBE, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x24, 0x1, 0x10, 0x0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x0, 0x11, 0x1, 0x59, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0x0, 0xC, 0x1, 0x85, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0x0, 0x11, 0x1, 0xB6, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0x0, 0x5, 0x1, 0xD4, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0x0, 0x5, 0x1, 0xE6, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xB, 0x0, + 0x11, 0x2, 0x10, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xC, 0x0, 0x11, + 0x2, 0x46, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xD, 0x0, 0x39, 0x2, + 0xCC, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xE, 0x0, 0x2E, 0x3, 0x64, + 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x0, 0x11, 0x3, 0xB7, 0x0, + 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, 0x0, 0x0, 0x4E, 0x0, 0x0, 0x0, 0x3, + 0x0, 0x1, 0x4, 0x9, 0x0, 0x1, 0x0, 0x22, 0x0, 0x78, 0x0, 0x3, 0x0, + 0x1, 0x4, 0x9, 0x0, 0x2, 0x0, 0xE, 0x0, 0xAE, 0x0, 0x3, 0x0, 0x1, + 0x4, 0x9, 0x0, 0x3, 0x0, 0x48, 0x0, 0xC6, 0x0, 0x3, 0x0, 0x1, 0x4, + 0x9, 0x0, 0x4, 0x0, 0x22, 0x1, 0x35, 0x0, 0x3, 0x0, 0x1, 0x4, 0x9, + 0x0, 0x5, 0x0, 0x18, 0x1, 0x6B, 0x0, 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, + 0x6, 0x0, 0x22, 0x1, 0x92, 0x0, 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, 0x8, + 0x0, 0xA, 0x1, 0xC8, 0x0, 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, 0x9, 0x0, + 0xA, 0x1, 0xDA, 0x0, 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, 0xB, 0x0, 0x22, + 0x1, 0xEC, 0x0, 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, 0xC, 0x0, 0x22, 0x2, + 0x22, 0x0, 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, 0xD, 0x0, 0x72, 0x2, 0x58, + 0x0, 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, 0xE, 0x0, 0x5C, 0x3, 0x6, 0x0, + 0x3, 0x0, 0x1, 0x4, 0x9, 0x0, 0x12, 0x0, 0x22, 0x3, 0x93, 0x0, 0x4F, + 0x0, 0x75, 0x0, 0x74, 0x0, 0x6C, 0x0, 0x69, 0x0, 0x6E, 0x0, 0x65, 0x0, + 0x20, 0x0, 0x28, 0x0, 0x76, 0x0, 0x65, 0x0, 0x63, 0x0, 0x74, 0x0, 0x6F, + 0x0, 0x72, 0x0, 0x29, 0x0, 0x20, 0x0, 0x76, 0x0, 0x65, 0x0, 0x72, 0x0, + 0x73, 0x0, 0x69, 0x0, 0x6F, 0x0, 0x6E, 0x0, 0x20, 0x0, 0x62, 0x0, 0x79, + 0x0, 0x20, 0x0, 0x56, 0x0, 0x69, 0x0, 0x6C, 0x0, 0x65, 0x0, 0x52, 0x0, + 0x2C, 0x0, 0x20, 0x0, 0x32, 0x0, 0x30, 0x0, 0x32, 0x0, 0x30, 0x0, 0x0, + 0x4F, 0x75, 0x74, 0x6C, 0x69, 0x6E, 0x65, 0x20, 0x28, 0x76, 0x65, 0x63, 0x74, + 0x6F, 0x72, 0x29, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x62, + 0x79, 0x20, 0x56, 0x69, 0x6C, 0x65, 0x52, 0x2C, 0x20, 0x32, 0x30, 0x32, 0x30, + 0x0, 0x0, 0x50, 0x0, 0x78, 0x0, 0x34, 0x0, 0x33, 0x0, 0x37, 0x0, 0x20, + 0x0, 0x49, 0x0, 0x42, 0x0, 0x4D, 0x0, 0x20, 0x0, 0x56, 0x0, 0x47, 0x0, + 0x41, 0x0, 0x20, 0x0, 0x39, 0x0, 0x78, 0x0, 0x38, 0x0, 0x0, 0x50, 0x78, + 0x34, 0x33, 0x37, 0x20, 0x49, 0x42, 0x4D, 0x20, 0x56, 0x47, 0x41, 0x20, 0x39, + 0x78, 0x38, 0x0, 0x0, 0x52, 0x0, 0x65, 0x0, 0x67, 0x0, 0x75, 0x0, 0x6C, + 0x0, 0x61, 0x0, 0x72, 0x0, 0x0, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, + 0x0, 0x0, 0x56, 0x0, 0x69, 0x0, 0x6C, 0x0, 0x65, 0x0, 0x52, 0x0, 0x3A, + 0x0, 0x50, 0x0, 0x78, 0x0, 0x34, 0x0, 0x33, 0x0, 0x37, 0x0, 0x20, 0x0, + 0x49, 0x0, 0x42, 0x0, 0x4D, 0x0, 0x20, 0x0, 0x56, 0x0, 0x47, 0x0, 0x41, + 0x0, 0x20, 0x0, 0x39, 0x0, 0x78, 0x0, 0x38, 0x0, 0x3A, 0x0, 0x76, 0x0, + 0x32, 0x0, 0x2E, 0x0, 0x32, 0x0, 0x2D, 0x0, 0x32, 0x0, 0x30, 0x0, 0x32, + 0x0, 0x30, 0x0, 0x2D, 0x0, 0x31, 0x0, 0x31, 0x0, 0x0, 0x56, 0x69, 0x6C, + 0x65, 0x52, 0x3A, 0x50, 0x78, 0x34, 0x33, 0x37, 0x20, 0x49, 0x42, 0x4D, 0x20, + 0x56, 0x47, 0x41, 0x20, 0x39, 0x78, 0x38, 0x3A, 0x76, 0x32, 0x2E, 0x32, 0x2D, + 0x32, 0x30, 0x32, 0x30, 0x2D, 0x31, 0x31, 0x0, 0x0, 0x50, 0x0, 0x78, 0x0, + 0x34, 0x0, 0x33, 0x0, 0x37, 0x0, 0x20, 0x0, 0x49, 0x0, 0x42, 0x0, 0x4D, + 0x0, 0x20, 0x0, 0x56, 0x0, 0x47, 0x0, 0x41, 0x0, 0x20, 0x0, 0x39, 0x0, + 0x78, 0x0, 0x38, 0x0, 0x0, 0x50, 0x78, 0x34, 0x33, 0x37, 0x20, 0x49, 0x42, + 0x4D, 0x20, 0x56, 0x47, 0x41, 0x20, 0x39, 0x78, 0x38, 0x0, 0x0, 0x76, 0x0, + 0x32, 0x0, 0x2E, 0x0, 0x32, 0x0, 0x2D, 0x0, 0x32, 0x0, 0x30, 0x0, 0x32, + 0x0, 0x30, 0x0, 0x2D, 0x0, 0x31, 0x0, 0x31, 0x0, 0x0, 0x76, 0x32, 0x2E, + 0x32, 0x2D, 0x32, 0x30, 0x32, 0x30, 0x2D, 0x31, 0x31, 0x0, 0x0, 0x50, 0x0, + 0x78, 0x0, 0x34, 0x0, 0x33, 0x0, 0x37, 0x0, 0x5F, 0x0, 0x49, 0x0, 0x42, + 0x0, 0x4D, 0x0, 0x5F, 0x0, 0x56, 0x0, 0x47, 0x0, 0x41, 0x0, 0x5F, 0x0, + 0x39, 0x0, 0x78, 0x0, 0x38, 0x0, 0x0, 0x50, 0x78, 0x34, 0x33, 0x37, 0x5F, + 0x49, 0x42, 0x4D, 0x5F, 0x56, 0x47, 0x41, 0x5F, 0x39, 0x78, 0x38, 0x0, 0x0, + 0x56, 0x0, 0x69, 0x0, 0x6C, 0x0, 0x65, 0x0, 0x52, 0x0, 0x0, 0x56, 0x69, + 0x6C, 0x65, 0x52, 0x0, 0x0, 0x56, 0x0, 0x69, 0x0, 0x6C, 0x0, 0x65, 0x0, + 0x52, 0x0, 0x0, 0x56, 0x69, 0x6C, 0x65, 0x52, 0x0, 0x0, 0x68, 0x0, 0x74, + 0x0, 0x74, 0x0, 0x70, 0x0, 0x3A, 0x0, 0x2F, 0x0, 0x2F, 0x0, 0x69, 0x0, + 0x6E, 0x0, 0x74, 0x0, 0x31, 0x0, 0x30, 0x0, 0x68, 0x0, 0x2E, 0x0, 0x6F, + 0x0, 0x72, 0x0, 0x67, 0x0, 0x0, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, + 0x69, 0x6E, 0x74, 0x31, 0x30, 0x68, 0x2E, 0x6F, 0x72, 0x67, 0x0, 0x0, 0x68, + 0x0, 0x74, 0x0, 0x74, 0x0, 0x70, 0x0, 0x3A, 0x0, 0x2F, 0x0, 0x2F, 0x0, + 0x69, 0x0, 0x6E, 0x0, 0x74, 0x0, 0x31, 0x0, 0x30, 0x0, 0x68, 0x0, 0x2E, + 0x0, 0x6F, 0x0, 0x72, 0x0, 0x67, 0x0, 0x0, 0x68, 0x74, 0x74, 0x70, 0x3A, + 0x2F, 0x2F, 0x69, 0x6E, 0x74, 0x31, 0x30, 0x68, 0x2E, 0x6F, 0x72, 0x67, 0x0, + 0x0, 0x43, 0x0, 0x72, 0x0, 0x65, 0x0, 0x61, 0x0, 0x74, 0x0, 0x69, 0x0, + 0x76, 0x0, 0x65, 0x0, 0x20, 0x0, 0x43, 0x0, 0x6F, 0x0, 0x6D, 0x0, 0x6D, + 0x0, 0x6F, 0x0, 0x6E, 0x0, 0x73, 0x0, 0x20, 0x0, 0x41, 0x0, 0x74, 0x0, + 0x74, 0x0, 0x72, 0x0, 0x69, 0x0, 0x62, 0x0, 0x75, 0x0, 0x74, 0x0, 0x69, + 0x0, 0x6F, 0x0, 0x6E, 0x0, 0x2D, 0x0, 0x53, 0x0, 0x68, 0x0, 0x61, 0x0, + 0x72, 0x0, 0x65, 0x0, 0x41, 0x0, 0x6C, 0x0, 0x69, 0x0, 0x6B, 0x0, 0x65, + 0x0, 0x20, 0x0, 0x34, 0x0, 0x2E, 0x0, 0x30, 0x0, 0x20, 0x0, 0x49, 0x0, + 0x6E, 0x0, 0x74, 0x0, 0x65, 0x0, 0x72, 0x0, 0x6E, 0x0, 0x61, 0x0, 0x74, + 0x0, 0x69, 0x0, 0x6F, 0x0, 0x6E, 0x0, 0x61, 0x0, 0x6C, 0x0, 0x0, 0x43, + 0x72, 0x65, 0x61, 0x74, 0x69, 0x76, 0x65, 0x20, 0x43, 0x6F, 0x6D, 0x6D, 0x6F, + 0x6E, 0x73, 0x20, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6F, + 0x6E, 0x2D, 0x53, 0x68, 0x61, 0x72, 0x65, 0x41, 0x6C, 0x69, 0x6B, 0x65, 0x20, + 0x34, 0x2E, 0x30, 0x20, 0x49, 0x6E, 0x74, 0x65, 0x72, 0x6E, 0x61, 0x74, 0x69, + 0x6F, 0x6E, 0x61, 0x6C, 0x0, 0x0, 0x68, 0x0, 0x74, 0x0, 0x74, 0x0, 0x70, + 0x0, 0x3A, 0x0, 0x2F, 0x0, 0x2F, 0x0, 0x63, 0x0, 0x72, 0x0, 0x65, 0x0, + 0x61, 0x0, 0x74, 0x0, 0x69, 0x0, 0x76, 0x0, 0x65, 0x0, 0x63, 0x0, 0x6F, + 0x0, 0x6D, 0x0, 0x6D, 0x0, 0x6F, 0x0, 0x6E, 0x0, 0x73, 0x0, 0x2E, 0x0, + 0x6F, 0x0, 0x72, 0x0, 0x67, 0x0, 0x2F, 0x0, 0x6C, 0x0, 0x69, 0x0, 0x63, + 0x0, 0x65, 0x0, 0x6E, 0x0, 0x73, 0x0, 0x65, 0x0, 0x73, 0x0, 0x2F, 0x0, + 0x62, 0x0, 0x79, 0x0, 0x2D, 0x0, 0x73, 0x0, 0x61, 0x0, 0x2F, 0x0, 0x34, + 0x0, 0x2E, 0x0, 0x30, 0x0, 0x2F, 0x0, 0x0, 0x68, 0x74, 0x74, 0x70, 0x3A, + 0x2F, 0x2F, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x76, 0x65, 0x63, 0x6F, 0x6D, + 0x6D, 0x6F, 0x6E, 0x73, 0x2E, 0x6F, 0x72, 0x67, 0x2F, 0x6C, 0x69, 0x63, 0x65, + 0x6E, 0x73, 0x65, 0x73, 0x2F, 0x62, 0x79, 0x2D, 0x73, 0x61, 0x2F, 0x34, 0x2E, + 0x30, 0x2F, 0x0, 0x0, 0x50, 0x0, 0x78, 0x0, 0x34, 0x0, 0x33, 0x0, 0x37, + 0x0, 0x20, 0x0, 0x49, 0x0, 0x42, 0x0, 0x4D, 0x0, 0x20, 0x0, 0x56, 0x0, + 0x47, 0x0, 0x41, 0x0, 0x20, 0x0, 0x39, 0x0, 0x78, 0x0, 0x38, 0x0, 0x0, + 0x50, 0x78, 0x34, 0x33, 0x37, 0x20, 0x49, 0x42, 0x4D, 0x20, 0x56, 0x47, 0x41, + 0x20, 0x39, 0x78, 0x38, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x64, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x21, 0x0, 0x0, 0x1, 0x2, 0x1, 0x3, 0x1, 0x4, 0x1, 0x5, 0x1, 0x6, + 0x1, 0x7, 0x1, 0x8, 0x1, 0x9, 0x1, 0xA, 0x1, 0xB, 0x1, 0xC, 0x1, + 0xD, 0x1, 0xE, 0x1, 0xF, 0x1, 0x10, 0x1, 0x11, 0x1, 0x12, 0x1, 0x13, + 0x1, 0x14, 0x1, 0x15, 0x1, 0x16, 0x1, 0x17, 0x1, 0x18, 0x1, 0x19, 0x1, + 0x1A, 0x1, 0x1B, 0x1, 0x1C, 0x1, 0x1D, 0x1, 0x1E, 0x1, 0x1F, 0x1, 0x20, + 0x1, 0x21, 0x0, 0x3, 0x0, 0x4, 0x0, 0x5, 0x0, 0x6, 0x0, 0x7, 0x0, + 0x8, 0x0, 0x9, 0x0, 0xA, 0x0, 0xB, 0x0, 0xC, 0x0, 0xD, 0x0, 0xE, + 0x0, 0xF, 0x0, 0x10, 0x0, 0x11, 0x0, 0x12, 0x0, 0x13, 0x0, 0x14, 0x0, + 0x15, 0x0, 0x16, 0x0, 0x17, 0x0, 0x18, 0x0, 0x19, 0x0, 0x1A, 0x0, 0x1B, + 0x0, 0x1C, 0x0, 0x1D, 0x0, 0x1E, 0x0, 0x1F, 0x0, 0x20, 0x0, 0x21, 0x0, + 0x22, 0x0, 0x23, 0x0, 0x24, 0x0, 0x25, 0x0, 0x26, 0x0, 0x27, 0x0, 0x28, + 0x0, 0x29, 0x0, 0x2A, 0x0, 0x2B, 0x0, 0x2C, 0x0, 0x2D, 0x0, 0x2E, 0x0, + 0x2F, 0x0, 0x30, 0x0, 0x31, 0x0, 0x32, 0x0, 0x33, 0x0, 0x34, 0x0, 0x35, + 0x0, 0x36, 0x0, 0x37, 0x0, 0x38, 0x0, 0x39, 0x0, 0x3A, 0x0, 0x3B, 0x0, + 0x3C, 0x0, 0x3D, 0x0, 0x3E, 0x0, 0x3F, 0x0, 0x40, 0x0, 0x41, 0x0, 0x42, + 0x0, 0x43, 0x0, 0x44, 0x0, 0x45, 0x0, 0x46, 0x0, 0x47, 0x0, 0x48, 0x0, + 0x49, 0x0, 0x4A, 0x0, 0x4B, 0x0, 0x4C, 0x0, 0x4D, 0x0, 0x4E, 0x0, 0x4F, + 0x0, 0x50, 0x0, 0x51, 0x0, 0x52, 0x0, 0x53, 0x0, 0x54, 0x0, 0x55, 0x0, + 0x56, 0x0, 0x57, 0x0, 0x58, 0x0, 0x59, 0x0, 0x5A, 0x0, 0x5B, 0x0, 0x5C, + 0x0, 0x5D, 0x0, 0x5E, 0x0, 0x5F, 0x0, 0x60, 0x0, 0x61, 0x1, 0x22, 0x1, + 0x23, 0x0, 0xA3, 0x0, 0x84, 0x0, 0x85, 0x0, 0x96, 0x0, 0x86, 0x0, 0x9D, + 0x0, 0xA9, 0x0, 0xA4, 0x0, 0x83, 0x0, 0x93, 0x1, 0x24, 0x0, 0x97, 0x0, + 0x88, 0x0, 0xC3, 0x0, 0x9E, 0x0, 0xAA, 0x0, 0xF5, 0x0, 0xF4, 0x0, 0xA2, + 0x0, 0x62, 0x0, 0x63, 0x0, 0x90, 0x0, 0x64, 0x0, 0x65, 0x0, 0x66, 0x0, + 0x67, 0x0, 0x68, 0x0, 0x89, 0x0, 0x6A, 0x0, 0x69, 0x0, 0x6B, 0x0, 0x6C, + 0x0, 0x6E, 0x0, 0xA0, 0x0, 0x6F, 0x0, 0x71, 0x0, 0x70, 0x0, 0x72, 0x0, + 0x73, 0x0, 0x75, 0x0, 0x74, 0x0, 0x76, 0x0, 0x77, 0x0, 0x78, 0x0, 0x7A, + 0x0, 0x79, 0x0, 0x7B, 0x0, 0x7C, 0x0, 0xB8, 0x0, 0x7F, 0x0, 0x7E, 0x0, + 0x80, 0x0, 0x81, 0x0, 0xBA, 0x0, 0xA6, 0x1, 0x25, 0x1, 0x26, 0x1, 0x27, + 0x1, 0x28, 0x1, 0x29, 0x1, 0x2A, 0x1, 0x2B, 0x1, 0x2C, 0x0, 0x9B, 0x1, + 0x2D, 0x1, 0x2E, 0x1, 0x2F, 0x0, 0x87, 0x1, 0x30, 0x1, 0x31, 0x1, 0x32, + 0x1, 0x33, 0x1, 0x34, 0x1, 0x35, 0x1, 0x36, 0x1, 0x37, 0x1, 0x38, 0x1, + 0x39, 0x1, 0x3A, 0x0, 0xA5, 0x0, 0x92, 0x1, 0x3B, 0x1, 0x3C, 0x0, 0xA7, + 0x1, 0x3D, 0x0, 0x94, 0x0, 0x95, 0x1, 0x3E, 0x1, 0x3F, 0x1, 0x40, 0x1, + 0x41, 0x1, 0x42, 0x1, 0x43, 0x1, 0x44, 0x1, 0x45, 0x1, 0x46, 0x1, 0x47, + 0x1, 0x48, 0x1, 0x49, 0x1, 0x4A, 0x1, 0x4B, 0x1, 0x4C, 0x1, 0x4D, 0x1, + 0x4E, 0x1, 0x4F, 0x1, 0x50, 0x1, 0x51, 0x1, 0x52, 0x1, 0x53, 0x1, 0x54, + 0x1, 0x55, 0x1, 0x56, 0x1, 0x57, 0x1, 0x58, 0x1, 0x59, 0x1, 0x5A, 0x1, + 0x5B, 0x1, 0x5C, 0x1, 0x5D, 0x1, 0x5E, 0x1, 0x5F, 0x1, 0x60, 0x1, 0x61, + 0x1, 0x62, 0x1, 0x63, 0x1, 0x64, 0x1, 0x65, 0x1, 0x66, 0x1, 0x67, 0x1, + 0x68, 0x1, 0x69, 0x1, 0x6A, 0x1, 0x6B, 0x1, 0x6C, 0x1, 0x6D, 0x1, 0x6E, + 0x1, 0x6F, 0x1, 0x70, 0x1, 0x71, 0x1, 0x72, 0x1, 0x73, 0x1, 0x74, 0x1, + 0x75, 0x1, 0x76, 0x1, 0x77, 0x1, 0x78, 0x1, 0x79, 0x1, 0x7A, 0x1, 0x7B, + 0x1, 0x7C, 0x1, 0x7D, 0x1, 0x7E, 0x1, 0x7F, 0x1, 0x80, 0x1, 0x81, 0x1, + 0x82, 0x1, 0x83, 0x1, 0x84, 0x1, 0x85, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, + 0x30, 0x30, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x44, 0x7, 0x75, 0x6E, + 0x69, 0x30, 0x30, 0x30, 0x31, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x32, + 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x33, 0x7, 0x75, 0x6E, 0x69, 0x30, + 0x30, 0x30, 0x34, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x35, 0x7, 0x75, + 0x6E, 0x69, 0x30, 0x30, 0x30, 0x36, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, + 0x37, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x38, 0x7, 0x75, 0x6E, 0x69, + 0x30, 0x30, 0x30, 0x39, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x41, 0x7, + 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x42, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, + 0x30, 0x43, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x45, 0x7, 0x75, 0x6E, + 0x69, 0x30, 0x30, 0x30, 0x46, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x30, + 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x31, 0x7, 0x75, 0x6E, 0x69, 0x30, + 0x30, 0x31, 0x32, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x33, 0x7, 0x75, + 0x6E, 0x69, 0x30, 0x30, 0x31, 0x34, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, + 0x35, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x36, 0x7, 0x75, 0x6E, 0x69, + 0x30, 0x30, 0x31, 0x37, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x38, 0x7, + 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x39, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, + 0x31, 0x41, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x42, 0x7, 0x75, 0x6E, + 0x69, 0x30, 0x30, 0x31, 0x43, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x44, + 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x31, 0x45, 0x7, 0x75, 0x6E, 0x69, 0x30, + 0x30, 0x31, 0x46, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x37, 0x46, 0x7, 0x75, + 0x6E, 0x69, 0x30, 0x30, 0x41, 0x30, 0x7, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, + 0x32, 0x5, 0x47, 0x61, 0x6D, 0x6D, 0x61, 0x5, 0x54, 0x68, 0x65, 0x74, 0x61, + 0x5, 0x53, 0x69, 0x67, 0x6D, 0x61, 0x3, 0x50, 0x68, 0x69, 0x7, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x41, 0x39, 0x5, 0x61, 0x6C, 0x70, 0x68, 0x61, 0x5, 0x64, + 0x65, 0x6C, 0x74, 0x61, 0x7, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x5, + 0x73, 0x69, 0x67, 0x6D, 0x61, 0x3, 0x74, 0x61, 0x75, 0x3, 0x70, 0x68, 0x69, + 0x9, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, 0x64, 0x62, 0x6C, 0x7, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x37, 0x46, 0x6, 0x70, 0x65, 0x73, 0x65, 0x74, 0x61, 0x9, + 0x61, 0x72, 0x72, 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, 0x7, 0x61, 0x72, 0x72, + 0x6F, 0x77, 0x75, 0x70, 0xA, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x9, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x6F, 0x77, 0x6E, 0x9, + 0x61, 0x72, 0x72, 0x6F, 0x77, 0x62, 0x6F, 0x74, 0x68, 0x9, 0x61, 0x72, 0x72, + 0x6F, 0x77, 0x75, 0x70, 0x64, 0x6E, 0xC, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x75, + 0x70, 0x64, 0x6E, 0x62, 0x73, 0x65, 0x7, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x31, + 0x39, 0xA, 0x6F, 0x72, 0x74, 0x68, 0x6F, 0x67, 0x6F, 0x6E, 0x61, 0x6C, 0xC, + 0x69, 0x6E, 0x74, 0x65, 0x72, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6F, 0x6E, 0xB, + 0x65, 0x71, 0x75, 0x69, 0x76, 0x61, 0x6C, 0x65, 0x6E, 0x63, 0x65, 0x5, 0x68, + 0x6F, 0x75, 0x73, 0x65, 0xD, 0x72, 0x65, 0x76, 0x6C, 0x6F, 0x67, 0x69, 0x63, + 0x61, 0x6C, 0x6E, 0x6F, 0x74, 0xA, 0x69, 0x6E, 0x74, 0x65, 0x67, 0x72, 0x61, + 0x6C, 0x74, 0x70, 0xA, 0x69, 0x6E, 0x74, 0x65, 0x67, 0x72, 0x61, 0x6C, 0x62, + 0x74, 0x8, 0x53, 0x46, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, + 0x31, 0x31, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x30, 0x31, 0x30, 0x30, + 0x30, 0x30, 0x8, 0x53, 0x46, 0x30, 0x33, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, + 0x46, 0x30, 0x32, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x30, 0x34, 0x30, + 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x30, 0x38, 0x30, 0x30, 0x30, 0x30, 0x8, + 0x53, 0x46, 0x30, 0x39, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x30, 0x36, + 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x30, 0x37, 0x30, 0x30, 0x30, 0x30, + 0x8, 0x53, 0x46, 0x30, 0x35, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x34, + 0x33, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x32, 0x34, 0x30, 0x30, 0x30, + 0x30, 0x8, 0x53, 0x46, 0x35, 0x31, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, + 0x35, 0x32, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x33, 0x39, 0x30, 0x30, + 0x30, 0x30, 0x8, 0x53, 0x46, 0x32, 0x32, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, + 0x46, 0x32, 0x31, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x32, 0x35, 0x30, + 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x35, 0x30, 0x30, 0x30, 0x30, 0x30, 0x8, + 0x53, 0x46, 0x34, 0x39, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x33, 0x38, + 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x32, 0x38, 0x30, 0x30, 0x30, 0x30, + 0x8, 0x53, 0x46, 0x32, 0x37, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x32, + 0x36, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x33, 0x36, 0x30, 0x30, 0x30, + 0x30, 0x8, 0x53, 0x46, 0x33, 0x37, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, + 0x34, 0x32, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x31, 0x39, 0x30, 0x30, + 0x30, 0x30, 0x8, 0x53, 0x46, 0x32, 0x30, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, + 0x46, 0x32, 0x33, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x34, 0x37, 0x30, + 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x34, 0x38, 0x30, 0x30, 0x30, 0x30, 0x8, + 0x53, 0x46, 0x34, 0x31, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x34, 0x35, + 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x34, 0x36, 0x30, 0x30, 0x30, 0x30, + 0x8, 0x53, 0x46, 0x34, 0x30, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x35, + 0x34, 0x30, 0x30, 0x30, 0x30, 0x8, 0x53, 0x46, 0x35, 0x33, 0x30, 0x30, 0x30, + 0x30, 0x8, 0x53, 0x46, 0x34, 0x34, 0x30, 0x30, 0x30, 0x30, 0x7, 0x75, 0x70, + 0x62, 0x6C, 0x6F, 0x63, 0x6B, 0x7, 0x64, 0x6E, 0x62, 0x6C, 0x6F, 0x63, 0x6B, + 0x5, 0x62, 0x6C, 0x6F, 0x63, 0x6B, 0x7, 0x6C, 0x66, 0x62, 0x6C, 0x6F, 0x63, + 0x6B, 0x7, 0x72, 0x74, 0x62, 0x6C, 0x6F, 0x63, 0x6B, 0x7, 0x6C, 0x74, 0x73, + 0x68, 0x61, 0x64, 0x65, 0x5, 0x73, 0x68, 0x61, 0x64, 0x65, 0x7, 0x64, 0x6B, + 0x73, 0x68, 0x61, 0x64, 0x65, 0x9, 0x66, 0x69, 0x6C, 0x6C, 0x65, 0x64, 0x62, + 0x6F, 0x78, 0xA, 0x66, 0x69, 0x6C, 0x6C, 0x65, 0x64, 0x72, 0x65, 0x63, 0x74, + 0x7, 0x74, 0x72, 0x69, 0x61, 0x67, 0x75, 0x70, 0x7, 0x74, 0x72, 0x69, 0x61, + 0x67, 0x72, 0x74, 0x7, 0x74, 0x72, 0x69, 0x61, 0x67, 0x64, 0x6E, 0x7, 0x74, + 0x72, 0x69, 0x61, 0x67, 0x6C, 0x66, 0x6, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, + 0x9, 0x69, 0x6E, 0x76, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, 0x9, 0x69, 0x6E, + 0x76, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x9, 0x73, 0x6D, 0x69, 0x6C, 0x65, + 0x66, 0x61, 0x63, 0x65, 0xC, 0x69, 0x6E, 0x76, 0x73, 0x6D, 0x69, 0x6C, 0x65, + 0x66, 0x61, 0x63, 0x65, 0x3, 0x73, 0x75, 0x6E, 0x6, 0x66, 0x65, 0x6D, 0x61, + 0x6C, 0x65, 0x4, 0x6D, 0x61, 0x6C, 0x65, 0x5, 0x73, 0x70, 0x61, 0x64, 0x65, + 0x4, 0x63, 0x6C, 0x75, 0x62, 0x5, 0x68, 0x65, 0x61, 0x72, 0x74, 0x7, 0x64, + 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0xB, 0x6D, 0x75, 0x73, 0x69, 0x63, 0x61, + 0x6C, 0x6E, 0x6F, 0x74, 0x65, 0xE, 0x6D, 0x75, 0x73, 0x69, 0x63, 0x61, 0x6C, + 0x6E, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xFF, 0xFF, 0x0, 0x2, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xC, 0x0, 0x14, 0x0, 0x4, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x0, 0xDA, 0x92, 0x3, 0xF7, 0x0, 0x0, 0x0, 0x0, 0xD2, 0x32, 0xE, 0x1B, + 0x0, 0x0, 0x0, 0x0, 0xDA, 0xD6, 0x31, 0x28, 0xFF + +}; + +const unsigned int debug_font_len = 23877l; diff --git a/YuppleMayham/src/utility/ftfont.cpp b/YuppleMayham/src/utility/ftfont.cpp index 2bfd8d2..943cedb 100644 --- a/YuppleMayham/src/utility/ftfont.cpp +++ b/YuppleMayham/src/utility/ftfont.cpp @@ -1,7 +1,8 @@ #include "utility/ftfont.h" +#include "freetype/freetype.h" #include "utility/logger.h" +#include "utility/data/font_data.h" -#include #include Text::Text() @@ -9,12 +10,16 @@ Text::Text() const char* vertexShader = R"( #version 330 core layout (location = 0) in vec4 vertex; + layout (std140) uniform Matrices + { + mat4 projection; + mat4 view; + }; out vec2 texCoords; - uniform mat4 projection; void main() { - gl_Position = projection * vec4(vertex.xy, 0.0, 1.0); - texCoords = vertex.zw; + gl_Position = projection * vec4(vertex.x, vertex.y, 0.0, 1.0); + texCoords = vec2(vertex.z, vertex.w); } )"; const char* fragShader = R"( @@ -42,7 +47,7 @@ Text::Text() if (!success) { glGetShaderInfoLog(vertexID, 512, 0, log); - LOG(ERROR, "ERROR::COMPILER VERTEX SHADER FAILED TO COMPILE: {}", log); + LOG(ERROR, "FONT VERTEX SHADER FAILED TO COMPILE: {}", log); return; } @@ -54,7 +59,7 @@ Text::Text() if (!success) { glGetShaderInfoLog(fragID, 512, NULL, log); - LOG(ERROR, "ERROR::COMPILER FRAGMENT SHADER FAILED TO COMPILE: {}", log); + LOG(ERROR, "FONT FRAGMENT SHADER FAILED TO COMPILE: {}", log); return; } @@ -72,7 +77,6 @@ Text::Text() } colorPos = glGetUniformLocation(programID, "textColor"); - projPos = glGetUniformLocation(programID, "projection"); glGenVertexArrays(1, &VAO); glGenBuffers(1, &VBO); @@ -86,13 +90,15 @@ Text::Text() glBindBuffer(GL_ARRAY_BUFFER, 0); glBindVertexArray(0); + + glUniformBlockBinding(programID, glGetUniformBlockIndex(programID, "Matrices"), 0); } bool Text::loadFonts(const std::string& font_folder) { FT_Library ft; if (FT_Init_FreeType(&ft)) { - ERROR_LOG("ERROR::FREETYPE Failed to init freetype library"); + ERROR_LOG("ERROR::FREETYPE Failed to init freetype library", NULL); } // load every font in the fonts folder then create corresponding textures for each character of each font. std::filesystem::path folder(font_folder); @@ -168,10 +174,10 @@ void Text::DrawText( } float x = position.x; - float y = position.y; + float y = position.y + iterator->second.characters['A'].Bearing.y * scale; glUseProgram(programID); - glUniformMatrix4fv(projPos, 1, GL_FALSE, glm::value_ptr(projMatrix)); + //glUniformMatrix4fv(projPos, 1, GL_FALSE, glm::value_ptr(projMatrix)); glUniform4fv(colorPos, 1, glm::value_ptr(color)); glActiveTexture(GL_TEXTURE0); glBindVertexArray(VAO); @@ -182,19 +188,19 @@ void Text::DrawText( Font::Character ch = iterator->second.characters[*c]; float xpos = x + ch.Bearing.x * scale; - float ypos = y - (ch.Size.y - ch.Bearing.y) * scale; + float ypos = y - (ch.Bearing.y) * scale; float w = ch.Size.x * scale; float h = ch.Size.y * scale; float vertices[6][4] = { - { xpos, ypos + h, 0.0f, 0.0f }, - { xpos, ypos, 0.0f, 1.0f }, - { xpos + w, ypos, 1.0f, 1.0f }, + { xpos, ypos + h, 0.0f, 1.0f }, + { xpos, ypos, 0.0f, 0.0f }, + { xpos + w, ypos, 1.0f, 0.0f }, - { xpos, ypos + h, 0.0f, 0.0f }, - { xpos + w, ypos, 1.0f, 1.0f }, - { xpos + w, ypos + h, 1.0f, 0.0f } + { xpos, ypos + h, 0.0f, 1.0f }, + { xpos + w, ypos, 1.0f, 0.0f }, + { xpos + w, ypos + h, 1.0f, 1.0f } }; glBindTexture(GL_TEXTURE_2D, ch.TextureID); @@ -221,3 +227,129 @@ void Text::DrawTextOutline( DrawText("comicbd.ttf", text, position, scale, glm::vec4(0.0f, 0.0f, 0.0f, 1.0f)); DrawText(fontName, text, position, scale, color); } + +DebugText::DebugText() : Text() +{ + loadDebugFont(); +} + +DebugText* DebugText::instance{ nullptr }; +std::mutex DebugText::mutex; + +DebugText* DebugText::getInstance() +{ + std::lock_guard lock(mutex); + if (instance == nullptr) { + instance = new DebugText(); + } + return instance; +} + + + +void DebugText::DrawText(const glm::vec2& pos, + const glm::vec4& color, + const float scale, + const std::string& text) +{ + float x = pos.x; + float y = pos.y + font.characters['A'].Bearing.y * scale; + + glUseProgram(programID); + glUniform4fv(colorPos, 1, glm::value_ptr(color)); + glActiveTexture(GL_TEXTURE0); + glBindVertexArray(VAO); + + std::string::const_iterator c; + for (c = text.begin(); c != text.end(); c++) + { + Font::Character ch = font.characters[*c]; + + float xpos = x + ch.Bearing.x * scale; + float ypos = y - (ch.Bearing.y) * scale; + + float w = ch.Size.x * scale; + float h = ch.Size.y * scale; + + float vertices[6][4] = { + { xpos, ypos + h, 0.0f, 1.0f }, + { xpos, ypos, 0.0f, 0.0f }, + { xpos + w, ypos, 1.0f, 0.0f }, + + { xpos, ypos + h, 0.0f, 1.0f }, + { xpos + w, ypos, 1.0f, 0.0f }, + { xpos + w, ypos + h, 1.0f, 1.0f } + }; + + glBindTexture(GL_TEXTURE_2D, ch.TextureID); + + glBindBuffer(GL_ARRAY_BUFFER, VBO); + glBufferSubData(GL_ARRAY_BUFFER, 0, sizeof(vertices), vertices); + glBindBuffer(GL_ARRAY_BUFFER, 0); + + glDrawArrays(GL_TRIANGLES, 0, 6); + x += (ch.Advance >> 6) * scale; + } + glBindVertexArray(0); + glBindTexture(GL_TEXTURE_2D, 0); +} + +void DebugText::loadDebugFont() +{ + FT_Library lib; + FT_Face face; + if (FT_Init_FreeType(&lib) != FT_Err_Ok) { + LOG(ERROR, "Failed to init freetype library!", NULL); + assert(1 == 0); // Force crash + } + if (FT_New_Memory_Face(lib, debug_font_data, debug_font_len, 0, &face) != FT_Err_Ok) { + LOG(ERROR, "Failed to load debug font face from memory!", NULL); + assert(1 == 0); // Force crash + } + FT_Set_Pixel_Sizes(face, 0, 40); + glPixelStorei(GL_UNPACK_ALIGNMENT, 1); + + for (int c = 0; c < 250; c++) { + if (FT_Load_Char(face, c, FT_LOAD_RENDER) != FT_Err_Ok) { + LOG(WARN, "Failed to load char '{}'", (char)c); + continue; + } + unsigned texture; + glGenTextures(1, &texture); + glBindTexture(GL_TEXTURE_2D, texture); + glTexImage2D(GL_TEXTURE_2D, + 0, + GL_RED, + face->glyph->bitmap.width, + face->glyph->bitmap.rows, + 0, + GL_RED, + GL_UNSIGNED_BYTE, + face->glyph->bitmap.buffer); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + + Font::Character ch = { + texture, + glm::ivec2(face->glyph->bitmap.width, face->glyph->bitmap.rows), + glm::ivec2(face->glyph->bitmap_left, face->glyph->bitmap_top), + static_cast(face->glyph->advance.x) + }; + font.characters.emplace(std::pair((char)c, ch)); + } + + FT_Done_Face(face); + FT_Done_FreeType(lib); +} + +DebugText::~DebugText() +{ + for (auto ch : font.characters) { + glDeleteBuffers(1, &VBO); + glDeleteVertexArrays(1, &VAO); + glDeleteTextures(1, &ch.second.TextureID); + } + glDeleteProgram(programID); +} diff --git a/YuppleMayham/src/utility/xmlloader.cpp b/YuppleMayham/src/utility/xmlloader.cpp index 0520430..3b16cfd 100644 --- a/YuppleMayham/src/utility/xmlloader.cpp +++ b/YuppleMayham/src/utility/xmlloader.cpp @@ -41,7 +41,7 @@ bool XMLLoader::loadXmlScene(const char* xmlFile, SceneData* out) out->id = id; if (scene->QueryStringAttribute("bg", &bgFile) != tinyxml2::XML_SUCCESS) - LOG(WARN, "No background set! attribute 'bg' is empty"); + LOG(WARN, "No background set! attribute 'bg' is empty", NULL); else out->bgFile = bgFile; @@ -406,7 +406,7 @@ bool XMLLoader::loadTile(tinyxml2::XMLElement* tileElement, TileSetData::TileDat const char* tileType; if (tileElement == NULL) - ERROR_LOG("Failed to find 'tile' tag."); + ERROR_LOG("Failed to find 'tile' tag.", NULL); if (tileElement->QueryIntAttribute("id", &tileData.id) != tinyxml2::XML_SUCCESS || tileElement->QueryStringAttribute("type", &tileType) != tinyxml2::XML_SUCCESS) ERROR_LOG("Failed to load tile id or type. {}", tileElement->Value()); @@ -430,7 +430,7 @@ bool XMLLoader::loadTile(tinyxml2::XMLElement* tileElement, TileSetData::TileDat tileData.objects.push_back(std::make_shared(objData)); } if (tileData.objects.empty()) - ERROR_LOG("No objects found"); + ERROR_LOG("No objects found", NULL); } else { @@ -470,7 +470,7 @@ bool XMLLoader::loadObject(tinyxml2::XMLElement* objElement, TileSetData::TileDa // avoid null pointer exception if (objElement == NULL) - ERROR_LOG("Failed to find 'object' tag"); + ERROR_LOG("Failed to find 'object' tag", NULL); // load id and name if (objElement->QueryIntAttribute("id", &objData.id) != tinyxml2::XML_SUCCESS || objElement->QueryStringAttribute("name", &objName) != tinyxml2::XML_SUCCESS) @@ -592,4 +592,4 @@ bool XMLLoader::loadMaps(const char* mapFolder) maps.try_emplace(mapData.name, std::make_shared(mapData)); } return true; -} \ No newline at end of file +}