commit e74154ccee612ab81dd168938e41d46d3e209859 Author: Green Sky Date: Tue Sep 29 13:47:50 2020 +0200 initial import, >900commits predate this diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..38a04ba --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +.vs/ +*.o +*.swp +~* +*~ +.idea/ +cmake-build-debug/ +cmake-build-debugandtest/ +cmake-build-release/ +*.stackdump +*.coredump +compile_commands.json +/build +.clangd + +.DS_Store +.AppleDouble +.LSOverride + +CMakeLists.txt.user* +CMakeCache.txt diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..1ab094a --- /dev/null +++ b/.gitmodules @@ -0,0 +1,39 @@ +[submodule "external/entt"] + path = external/entt + url = https://github.com/skypjack/entt.git + shallow = true +[submodule "external/glm"] + path = external/glm + url = https://github.com/g-truc/glm.git + shallow = true +[submodule "external/googletest"] + path = external/googletest + url = https://github.com/google/googletest.git +[submodule "external/IconFontCppHeaders"] + path = external/IconFontCppHeaders + url = https://github.com/juliettef/IconFontCppHeaders.git +[submodule "external/imgui/imgui"] + path = external/imgui/imgui + url = https://github.com/ocornut/imgui.git + shallow = true +[submodule "external/ImGuiColorTextEdit"] + path = external/ImGuiColorTextEdit + url = https://github.com/BalazsJako/ImGuiColorTextEdit.git +[submodule "external/physfs"] + path = external/physfs + url = https://github.com/Green-Sky/physfs.git + shallow = true +[submodule "external/soloud/soloud"] + path = external/soloud/soloud + url = https://github.com/jarikomppa/soloud.git +[submodule "external/spdlog"] + path = external/spdlog + url = https://github.com/gabime/spdlog.git + shallow = true +[submodule "external/stb/stb"] + path = external/stb/stb + url = https://github.com/nothings/stb.git +[submodule "external/tracy/tracy"] + path = external/tracy/tracy + url = https://github.com/wolfpld/tracy.git + shallow = true diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..e412913 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,60 @@ +cmake_minimum_required(VERSION 3.8 FATAL_ERROR) + +# cmake setup begin +project(MushMachine C CXX) + +# defaulting to debug mode, if not specified +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE "Debug") +endif() + +# setup my vim ycm :D +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +# paths +set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake") + +# more paths +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin") + +include("${CMAKE_CURRENT_LIST_DIR}/mm_options_and_defines.cmake") + +# external libs +add_subdirectory("external") # before increasing warn levels (sad :( ) + +set(CMAKE_CXX_EXTENSIONS OFF) + +# bump up warning levels appropriately for clang, gcc & msvc +if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang") + add_compile_options( + -Wall -Wextra # Reasonable and standard + -Wpedantic # Warn if non-standard C++ is used + -Wunused # Warn on anything being unused + -Wconversion # Warn on type conversions that may lose data + -Wsign-conversion # Warn on sign conversions + -Wshadow # Warn if a variable declaration shadows one from a parent context + ) + + #link_libraries(-fsanitize=address,undefined) + #link_libraries(-fsanitize=undefined) +elseif (${CMAKE_CXX_COMPILER_ID} STREQUAL "MSVC") + if (CMAKE_CXX_FLAGS MATCHES "/W[0-4]") + string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") + else() + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4") + endif() +endif() + +if (BUILD_TESTING) + enable_testing() +endif() + +# cmake setup end + +# MM code +add_subdirectory("framework") +add_subdirectory("systems") +add_subdirectory("screens") + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..319aaf9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,25 @@ +The Code is under the following License, if not stated otherwise: + +MIT License + +Copyright (c) 2018-2019 Felix Richter +Copyright (c) 2018-2020 Erik Scholz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/README.md b/README.md new file mode 100644 index 0000000..7effaf2 --- /dev/null +++ b/README.md @@ -0,0 +1,69 @@ +![mm](res/mm_card.png) + +# MushMachine +This is a Game Engine/Framework, originally developed for GH**deducted** (a 2D game), but has since expanded its scope to be more generic. For example it also includes 3D stuff, instead of just 2D. Furthermore it got stripped of some dependency heavy dependencies (yea that's a thing). + +The initial Developers are Erik Scholz and Felix Richter. +Currently developed and maintained by Erik Scholz. + +The private repo had over 900 commits, before the first public release. + +## Links +- [Gitlab](https://gitlab.com/MadeOfJelly/MushMachine) +- [Github](https://github.com/MadeOfJelly/MushMachine) +- [Setup](docs/setup.md) +- [Example Game Setup](docs/basic_game.md) +- The [Docs Directory](docs/) contains Documentation loosly based on the Source structure. + +## Platforms +- PC (Linux, Windows and maybe APPLE(untested)) +- Android (untested) +- Web (huh? yea! via Emscripten, wasm and WebGL2) +- anything if you put your mind to it.... +- Rendering wise, only Opengl3.3/ES3 is included in the Engine + +## Roadmap +- Rewrite the Input service (the code was ported in and is older than the Engine (2017)) +- Extend the SDL service with Vulkan support (it's 2020 so yea) +- Filesystem refactor (like a proper file type, with destructor and stuff) +- l10n support +- ImGui integration refactor (for making it usable as a game ui, not just for debugging) +- more service interfaces (with focus on networking) +- multithreading updates (maybe a jobsystem idk) + +## Limitations +- Features in general. It's more of a Personal Framework than something I want everyone to use ;). +- Only ships where OpenGL 3.3 or OpenGL ES 3 are available (includes web via emsripten's ES3 emu) +- not optimized for performance +- no multithreading in the Engine itself +- basically most of the Roadmap fits here too + +## License + +MIT you bet + +## Source Structure + +## Libraries Used +- [EnTT](https://github.com/skypjack/entt) +- [glad](https://github.com/Dav1dde/glad) +- [GLM](https://github.com/g-truc/glm) +- [googletest](https://github.com/google/googletest) +- [IconFontCppHeaders](https://github.com/juliettef/IconFontCppHeaders) +- [Dear ImGui](https://github.com/ocornut/imgui) +- [ImGuiColorTextEdit](https://github.com/BalazsJako/ImGuiColorTextEdit) +- [nlohmann::json](https://github.com/nlohmann/json) +- [OpenGLSky](https://github.com/shff/opengl_sky) (fast_sky) +- [PhysFS](https://icculus.org/physfs/) +- [SDL2](https://www.libsdl.org/) +- [SoLoud](https://sol.gfxile.net/soloud/) +- [spdlog](https://github.com/gabime/spdlog) +- [stb](https://github.com/nothings/stb) +- [Tracy](https://github.com/wolfpld/tracy) +- [Emscripten](https://emscripten.org/) +- others I might have forgotten... should be cedited in the code. (make a issue/pr if a credit is missing) + +## Thanks +- The GH**deducted**-Team, the reason this exists. +- ...and to all the developers of the libraries used in this project. <3 + diff --git a/cmake/FindSDL2.cmake b/cmake/FindSDL2.cmake new file mode 100644 index 0000000..b5817e1 --- /dev/null +++ b/cmake/FindSDL2.cmake @@ -0,0 +1,291 @@ +# Locate SDL2 library +# This module defines +# SDL2_LIBRARY, the name of the library to link against +# SDL2_FOUND, if false, do not try to link to SDL2 +# SDL2_INCLUDE_DIR, where to find SDL.h +# +# This module responds to the the flag: +# SDL2_BUILDING_LIBRARY +# If this is defined, then no SDL2_main will be linked in because +# only applications need main(). +# Otherwise, it is assumed you are building an application and this +# module will attempt to locate and set the the proper link flags +# as part of the returned SDL2_LIBRARY variable. +# +# Don't forget to include SDL2main.h and SDL2main.m your project for the +# OS X framework based version. (Other versions link to -lSDL2main which +# this module will try to find on your behalf.) Also for OS X, this +# module will automatically add the -framework Cocoa on your behalf. +# +# +# Additional Note: If you see an empty SDL2_LIBRARY_TEMP in your configuration +# and no SDL2_LIBRARY, it means CMake did not find your SDL2 library +# (SDL2.dll, libsdl2.so, SDL2.framework, etc). +# Set SDL2_LIBRARY_TEMP to point to your SDL2 library, and configure again. +# Similarly, if you see an empty SDL2MAIN_LIBRARY, you should set this value +# as appropriate. These values are used to generate the final SDL2_LIBRARY +# variable, but when these values are unset, SDL2_LIBRARY does not get created. +# +# +# $SDL2 is an environment variable that would +# correspond to the ./configure --prefix=$SDL2 +# used in building SDL2. +# l.e.galup 9-20-02 +# +# Modified by Eric Wing. +# Added code to assist with automated building by using environmental variables +# and providing a more controlled/consistent search behavior. +# Added new modifications to recognize OS X frameworks and +# additional Unix paths (FreeBSD, etc). +# Also corrected the header search path to follow "proper" SDL2 guidelines. +# Added a search for SDL2main which is needed by some platforms. +# Added a search for threads which is needed by some platforms. +# Added needed compile switches for MinGW. +# +# On OSX, this will prefer the Framework version (if found) over others. +# People will have to manually change the cache values of +# SDL2_LIBRARY to override this selection or set the CMake environment +# CMAKE_INCLUDE_PATH to modify the search paths. +# +# Note that the header path has changed from SDL2/SDL.h to just SDL.h +# This needed to change because "proper" SDL2 convention +# is #include "SDL.h", not . This is done for portability +# reasons because not all systems place things in SDL2/ (see FreeBSD). +# +# Ported by Johnny Patterson. This is a literal port for SDL2 of the FindSDL.cmake +# module with the minor edit of changing "SDL" to "SDL2" where necessary. This +# was not created for redistribution, and exists temporarily pending official +# SDL2 CMake modules. +# +# Note that on windows this will only search for the 32bit libraries, to search +# for 64bit change x86/i686-w64 to x64/x86_64-w64 + +#============================================================================= +# Copyright 2003-2009 Kitware, Inc. +# +# CMake - Cross Platform Makefile Generator +# Copyright 2000-2014 Kitware, Inc. +# Copyright 2000-2011 Insight Software Consortium +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# * Neither the names of Kitware, Inc., the Insight Software Consortium, +# nor the names of their contributors may be used to endorse or promote +# products derived from this software without specific prior written +# permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# This software is distributed WITHOUT ANY WARRANTY; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the License for more information. +#============================================================================= +# (To distribute this file outside of CMake, substitute the full +# License text for the above reference.) + +if(NOT EMSCRIPTEN) + +FIND_PATH(SDL2_INCLUDE_DIR SDL.h + HINTS + $ENV{SDL2} + PATH_SUFFIXES include/SDL2 include SDL2 + i686-w64-mingw32/include/SDL2 + x86_64-w64-mingw32/include/SDL2 + PATHS + ~/Library/Frameworks + /Library/Frameworks + /usr/local/include/SDL2 + /usr/include/SDL2 + /sw # Fink + /opt/local # DarwinPorts + /opt/csw # Blastwave + /opt +) + +# Lookup the 64 bit libs on x64 +IF(CMAKE_SIZEOF_VOID_P EQUAL 8) + FIND_LIBRARY(SDL2_LIBRARY_TEMP SDL2 + HINTS + $ENV{SDL2} + PATH_SUFFIXES lib64 lib + lib/x64 + x86_64-w64-mingw32/lib + PATHS + /sw + /opt/local + /opt/csw + /opt + ) +# On 32bit build find the 32bit libs +ELSE(CMAKE_SIZEOF_VOID_P EQUAL 8) + FIND_LIBRARY(SDL2_LIBRARY_TEMP SDL2 + HINTS + $ENV{SDL2} + PATH_SUFFIXES lib + lib/x86 + i686-w64-mingw32/lib + PATHS + /sw + /opt/local + /opt/csw + /opt + ) +ENDIF(CMAKE_SIZEOF_VOID_P EQUAL 8) + +IF(NOT SDL2_BUILDING_LIBRARY) + IF(NOT ${SDL2_INCLUDE_DIR} MATCHES ".framework") + # Non-OS X framework versions expect you to also dynamically link to + # SDL2main. This is mainly for Windows and OS X. Other (Unix) platforms + # seem to provide SDL2main for compatibility even though they don't + # necessarily need it. + # Lookup the 64 bit libs on x64 + IF(CMAKE_SIZEOF_VOID_P EQUAL 8) + FIND_LIBRARY(SDL2MAIN_LIBRARY + NAMES SDL2main + HINTS + $ENV{SDL2} + PATH_SUFFIXES lib64 lib + lib/x64 + x86_64-w64-mingw32/lib + PATHS + /sw + /opt/local + /opt/csw + /opt + ) + # On 32bit build find the 32bit libs + ELSE(CMAKE_SIZEOF_VOID_P EQUAL 8) + FIND_LIBRARY(SDL2MAIN_LIBRARY + NAMES SDL2main + HINTS + $ENV{SDL2} + PATH_SUFFIXES lib + lib/x86 + i686-w64-mingw32/lib + PATHS + /sw + /opt/local + /opt/csw + /opt + ) + ENDIF(CMAKE_SIZEOF_VOID_P EQUAL 8) + ENDIF(NOT ${SDL2_INCLUDE_DIR} MATCHES ".framework") +ENDIF(NOT SDL2_BUILDING_LIBRARY) + +# SDL2 may require threads on your system. +# The Apple build may not need an explicit flag because one of the +# frameworks may already provide it. +# But for non-OSX systems, I will use the CMake Threads package. +IF(NOT APPLE) + FIND_PACKAGE(Threads) +ENDIF(NOT APPLE) + +# MinGW needs an additional library, mwindows +# It's total link flags should look like -lmingw32 -lSDL2main -lSDL2 -lmwindows +# (Actually on second look, I think it only needs one of the m* libraries.) +IF(MINGW) + SET(MINGW32_LIBRARY mingw32 CACHE STRING "mwindows for MinGW") +ENDIF(MINGW) + +SET(SDL2_FOUND "NO") + IF(SDL2_LIBRARY_TEMP) + # For SDL2main + IF(NOT SDL2_BUILDING_LIBRARY) + IF(SDL2MAIN_LIBRARY) + SET(SDL2_LIBRARY_TEMP ${SDL2MAIN_LIBRARY} ${SDL2_LIBRARY_TEMP}) + ENDIF(SDL2MAIN_LIBRARY) + ENDIF(NOT SDL2_BUILDING_LIBRARY) + + # For OS X, SDL2 uses Cocoa as a backend so it must link to Cocoa. + # CMake doesn't display the -framework Cocoa string in the UI even + # though it actually is there if I modify a pre-used variable. + # I think it has something to do with the CACHE STRING. + # So I use a temporary variable until the end so I can set the + # "real" variable in one-shot. + IF(APPLE) + SET(SDL2_LIBRARY_TEMP ${SDL2_LIBRARY_TEMP} "-framework Cocoa") + ENDIF(APPLE) + + # For threads, as mentioned Apple doesn't need this. + # In fact, there seems to be a problem if I used the Threads package + # and try using this line, so I'm just skipping it entirely for OS X. + IF(NOT APPLE) + SET(SDL2_LIBRARY_TEMP ${SDL2_LIBRARY_TEMP} ${CMAKE_THREAD_LIBS_INIT}) + ENDIF(NOT APPLE) + + # For MinGW library + IF(MINGW) + SET(SDL2_LIBRARY_TEMP ${MINGW32_LIBRARY} ${SDL2_LIBRARY_TEMP}) + ENDIF(MINGW) + + # Set the final string here so the GUI reflects the final state. + SET(SDL2_LIBRARY ${SDL2_LIBRARY_TEMP} CACHE STRING "Where the SDL2 Library can be found") + # Set the temp variable to INTERNAL so it is not seen in the CMake GUI + SET(SDL2_LIBRARY_TEMP "${SDL2_LIBRARY_TEMP}" CACHE INTERNAL "") + + ############add_library(SDL UNKNOWN IMPORTED) + #target_link_libraries(SDL INTERFACE ${SDL2_LIBRARY}) + #target_include_directories(SDL INTERFACE ${SDL2_INCLUDE_DIR}) + #set_target_properties(SDL PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "${SDL2_LIBRARY}") + + #set_target_properties(SDL PROPERTIES + #INTERFACE_INCLUDE_DIRECTORIES "${SDL2_INCLUDE_DIR}") + + #set_target_properties(SDL PROPERTIES + #IMPORTED_LINK_INTERFACE_LANGUAGES "C" + #IMPORTED_LINK_INTERFACE_LIBRARIES "${SDL2_LIBRARY}" + #LINK_INTERFACE_LIBRARIES "${SDL2_LIBRARY}") + + #IMPORTED_LOCATION "${SDL2_LIBRARY}") + + + SET(SDL2_FOUND "YES") +ENDIF(SDL2_LIBRARY_TEMP) + +else() #emsripten + set(SDL2_INCLUDE_DIR "./") # hack + + SET(SDL2_LIBRARY "-s USE_SDL=2 -s USE_WEBGL2=1" CACHE STRING "Where the SDL2 Library can be found") + + add_library(SDL UNKNOWN IMPORTED) + #set_target_properties(SDL PROPERTIES INTERFACE_COMPILE_DEFINITIONS "-s USE_SDL=2") + #set_target_properties(SDL PROPERTIES COMPILE_FLAGS "-s USE_SDL=2 -s USE_WEBGL2=1") + #set_target_properties(SDL PROPERTIES LINK_FLAGS "-s USE_SDL=2 -s USE_WEBGL2=1") + + # HACK + set_target_properties(SDL PROPERTIES INTERFACE_COMPILE_DEFINITIONS "TMP -s USE_SDL=2") + #set_target_properties(SDL PROPERTIES INTERFACE_COMPILE_DEFINITIONS "TMP2 -s USE_SDL=2") + #set_target_properties(SDL PROPERTIES INTERFACE_COMPILE_DEFINITIONS "TMP2 -s USE_SDL=2 -s USE_WEBGL2=1") + #set_target_properties(SDL PROPERTIES INTERFACE_LINK_OPTIONS "-s USE_SDL=2 -s USE_WEBGL2=1") + + #target_link_libraries(SDL ${SDL2_LIBRARY}) + #target_include_directories(SDL ${SDL2_INCLUDE_DIR}) + + SET(SDL2_FOUND "YES") +endif(NOT EMSCRIPTEN) + +INCLUDE(FindPackageHandleStandardArgs) + +FIND_PACKAGE_HANDLE_STANDARD_ARGS(SDL2 REQUIRED_VARS SDL2_LIBRARY SDL2_INCLUDE_DIR) + + diff --git a/docs/basic_game.md b/docs/basic_game.md new file mode 100644 index 0000000..1160076 --- /dev/null +++ b/docs/basic_game.md @@ -0,0 +1,96 @@ +# Basic Engine Usage + +## General Headers + +```c++ +#include +// or +#include // forward header +``` + +# Engine Example Setup + +```c++ +#include + +// Services you want to use: +// I recommend to do this in a seperate translation unit, for good mesure. +#include +#include // requires SDL2 if not headless. +#include // requires sdl_service. +#include // every one <3 DearImGui! +#include // a simple ECS using EnTT. +#include // SoLoud for Sound! +#include // you want this, go to screen director doc for more info. + +MM::Engine engine; // at global scope, only required for emscripten. + +// adds Screens, definition at EOF. +void add_screens(MM::Engine& engine, MM::Services::ScreenDirectorSimple& sds); + +// argc, argv required for sdl2 on windows. +int main(int argc, char** argv) { + { // setup ALL Services ever used during runtime. + // 1. setup SDL + // this adds the SDLService to the engine, also returns a ref to the Service. + auto& sdl_ss = engine.addService( + SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_EVENTS | SDL_INIT_GAMECONTROLLER + ); // emscripten does not like haptic ... + + // this Enables the Service (calles service.enable()), THIS also returns if the enable was successfull!!, for simplicity omitted... + engine.enableService(); + + // this creates a OpenGL(3.3) ready Window. + sdl_ss.createGLWindow("My MM Game", 1280, 720); + // set icon here if needed. + + + // 2. filesystem, can be 1. too. + // the Construction of the fs Service takes in to arguments: + // - the path to the executable, it should be the first string in argv, but can be left empty. + // - the name of the application, of sorts. it is used for the folder to write into, so saves and configs edited by the player get written to this directory. it is not located relative to the exe/install. + engine.addService(argv[0], "my_mm_game"); + + // and immediatly enable. + engine.enableService(); + + // 3. add the the remaining Services, which get enabled, disabled during runtime, by eg. ScreenDirector. + engine.addService(); + engine.addService(); + engine.addService(); // we also could just enable this at setup + engine.addService(); + + // 4. and not add a ScreenDirector, which manages Screens, which enable/disable a set of Services. + auto& sds = engine.addService(); + + // add/setup screens, i really recommend doing this somewhere else. + add_screens(engine, sds); + + // also queue the first Screen to be enabled. + sds.queued_screen_id = "MM::Screens::mm_logo"; + + // and enable, this also switches to the queued screen, if there is one. + engine.enableService(); + } + + // run Engine + engine.run(); // blocks + // you can also call engine.update() and engine.fixedUpdate() by hand. + + // calling engine.stop() from anywhere will make engine.run() return. + + engine.cleanup(); // required for global scope engine. don't do this for emscripten, bc emsripten will leave main() on startup, since you can't have blocking JavaSript... + return 0; +} + +void add_screens(MM::Engine& engine, MM::Services::ScreenDirectorSimple& sds) { + // add built-in MM-Logo-Splash-Screen + MM::Screens::create_mm_logo( + engine, + sds.screens["MM::Screens::mm_logo"], + "MM::Screens::mm_logo", // mm_logo specific: a Screen to play after mm_logo has finished. (we loop in this example) + ); + + // add additional Screens here. +} +``` diff --git a/docs/framework/common_components/common_components.md b/docs/framework/common_components/common_components.md new file mode 100644 index 0000000..d8749a9 --- /dev/null +++ b/docs/framework/common_components/common_components.md @@ -0,0 +1,36 @@ +(draft) +# Common Components + +This is a collection of commonly used (ECS) `Components`. + +Json serialization is provided for all `Components`. + +## Name + +Contains a string. For debugging. + +It's special, since the entity widget will try to get the Name and display it in `ImGui`. + +## Transform + +Contians Positon, Rotation and Scale. +2D and 3D variants. + +Might get replaced with a Unity3D style transform system... + +## Velocity + +Contians Velocity(Position and Rotation). +2D and 3D variants. + +## View_Dir + +In almost every Project I had the need for this `Component`, so it's here. +2D and 3D variants. + + +## Color + +I use this a lot. I probably shouldn't. +Hase 4 color channels. + diff --git a/docs/framework/engine/engine.md b/docs/framework/engine/engine.md new file mode 100644 index 0000000..e0a4785 --- /dev/null +++ b/docs/framework/engine/engine.md @@ -0,0 +1,75 @@ +# Engine + +The Engine is the heart of the MushMachine framework. +It holds the Storage of all [`MM::Service`](services.md)s, update callbacks and is responsible for calling them. + +# Usage + +Provides a forwarding header ``. + +## Construction + +The `MM::Engine` provides a Constructor which accepts a time interval, in which `.fixedUpdate()` is called. The Default is 1/60. + +## Starting +```cpp +#include + +MM::Engine engine; + +// add and enable MM::Services here + +engine.run(); +``` + +The `MM::Engine` disables all enabled `MM::Service`s in reverse order on destruction or `.cleanup()`. + +## Managing [`MM::Service`](services.md)s + +### Adding a `MM::Service` + +Before a `MM::Service` can be enabled, it needs to be added to the engine. +`.addService(my, args)` adds a service and forwards args to its constructor. +There is currently no way of removing a `MM::Service`. + +### Getting a `MM::Service` + +You can get a Pointer via `.tryService()` and an asserted reference via `.getService()`. If the `MM::Service` does not exist, it returns a `nullptr. "Enablement Status" makes no difference. + +### Provide a `MM::Service` (Interfaces) + +`.provide()` registers `MyService` also as `MyServiceInterface`, so `MyService` becomes getable via `MyServiceInterface`. `MyService` needs to be added beforehand. + +### Enabling/Disabling a `MM::Service` + +`MM::Service`s can be Enabled/Disabled during `.run()` as a deferred operation (see `.addFixedDefer(...)`) + +* `.enableService()` calles the `.enable()` of `MyService`. Also returns `true` on success. +* `.disableService()` calles the `.disable()` of `MyService`. +There are also overloads, which accept a type id. + +## Update / FixedUpdate + +FixedUpdates are called with update interval (default 1/60, set on engine ctr), while Updates are called "as fast as possible". Since Rendering is usually done using Update and blocks on VSync, this is as fast as VSync. + +Since fixedUpdate callbacks don't get a time delta, querying `.getFixedDeltaTime()` is mandatory. + +### adding Update callbacks + +`.addUpdate(MyFn)` and `.addFixedUpdate(MyFn)` add `MyFn` as an update and fixedUpdate respectively and return a `FunctionDataHandle`(ptr) to remove them again. + +### removing Update callbacks + +`.removeUpdate(myHandle)` and `.removeFixedUpdate(myHandle)` remove those callbacks again. + +### `.run()` + +`.run()` is a blocking call, which calles `.fixedUpdate()` in a fixed interval with an accumulator. Inbetween those `.fixedUpdate()`s, `.update()` gets called "as fast as possible". + +You don't need to call `.run()`, instead you can call `.update()` and `.fixedUpdate()` yourself. + +### `.stop()` + +Stops the Engine... +Actually quits the loop in `.run()`. + diff --git a/docs/framework/engine/interfaces.md b/docs/framework/engine/interfaces.md new file mode 100644 index 0000000..9ceb797 --- /dev/null +++ b/docs/framework/engine/interfaces.md @@ -0,0 +1,23 @@ +# Default Shipped Interfaces + +### Index + +* `MM::Services::SceneServiceInterface` + + +## SceneServiceInterface + +Not very stable. But I use it all over the place. + +It uses [`EnTT`](https://github.com/skypjack/entt). + +### interface + +Use `.getScene()` to get current `MM::Scene`. + +Use `.changeScene(newScene)` to queue `.changeSceneNow(newScene)`. + +Use `.changeSceneNow(newScene)` to change currently held `MM::Scene`. + +Use `.addSystemToScene(fn)` to add a `MM::System` to the `MM::Scene`. + diff --git a/docs/framework/engine/services.md b/docs/framework/engine/services.md new file mode 100644 index 0000000..ac6d13f --- /dev/null +++ b/docs/framework/engine/services.md @@ -0,0 +1,18 @@ +# Services + +`MM::Service`s are the Components that get added to the `MM::Engine`. + +They need to extend `MM::Service` (included in ``) and implement the following Interface: + +* Destructor (since it is virtual) +* `bool enable(MM::Engine& engine)` +* `void disable(MM::Engine& engine)` + +and optionally + +* `const char* name(void)` + +Not implementing `name()` does not impact functionality, but it is not good practise. + +Update and FixedUpdate callbacks should only be added in `enable()` and should be removed in `disable()`. + diff --git a/docs/framework/filesystem/filesystem.md b/docs/framework/filesystem/filesystem.md new file mode 100644 index 0000000..76160f5 --- /dev/null +++ b/docs/framework/filesystem/filesystem.md @@ -0,0 +1,7 @@ +(draft) +# Filesystem + +Provides a Virtual Filesystem. Implemented using [PhysFS](https://icculus.org/physfs/). + +# Usage + diff --git a/docs/framework/logger/logger.md b/docs/framework/logger/logger.md new file mode 100644 index 0000000..8eacc1a --- /dev/null +++ b/docs/framework/logger/logger.md @@ -0,0 +1,33 @@ +# Logger + +The Logger is the [`spdlog`](https://github.com/gabime/spdlog) logging library, with some extras. Like a `Sink` for [`Tracy`](https://github.com/wolfpld/tracy) the Profiler. + +# Usage + +Each "Section" is ment to have its own "Logger". + +To Initialize a section logger with its `sink`s, do `MM::Logger::initSectionLogger("MySection");`. +Can be placed in the `.enable()` or even the Constructor of your `Service`s. + +```cpp +#include // include logger + +// here are the macros +#define LOG_CRIT(...) __LOG_CRIT( "MySection", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("MySection", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "MySection", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "MySection", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("MySection", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("MySection", __VA_ARGS__) + +// code goes here ...... + +// only if in header +//#undef LOG_CRIT +//#undef LOG_ERROR +//#undef LOG_WARN +//#undef LOG_INFO +//#undef LOG_DEBUG +//#undef LOG_TRACE +``` + diff --git a/docs/framework/opengl_primitives/opengl_primitives.md b/docs/framework/opengl_primitives/opengl_primitives.md new file mode 100644 index 0000000..795d073 --- /dev/null +++ b/docs/framework/opengl_primitives/opengl_primitives.md @@ -0,0 +1,5 @@ +(draft) +## OpenGL Primitives + +Mostly Classes wrapping the OpenGL library. + diff --git a/docs/framework/opengl_renderer/opengl_renderer.md b/docs/framework/opengl_renderer/opengl_renderer.md new file mode 100644 index 0000000..5d129b3 --- /dev/null +++ b/docs/framework/opengl_renderer/opengl_renderer.md @@ -0,0 +1,7 @@ +(draft) +# OpenGL Renderer + +This is a "Renderer" implementation. It hosts a `OpenGL::RenderTask` list, which get executed in order. + +For `OpenGL::RenderTask`s see the [render_tasks folder](render_tasks/). + diff --git a/docs/framework/opengl_renderer/render_tasks/blit_fb.md b/docs/framework/opengl_renderer/render_tasks/blit_fb.md new file mode 100644 index 0000000..39311f2 --- /dev/null +++ b/docs/framework/opengl_renderer/render_tasks/blit_fb.md @@ -0,0 +1,6 @@ +# `OpenGL::RenderTask` Blit FB + +This `RenderTask` Blits(copys) the contents of one `FrameBuffer` to another. + +There are options available for source and destination rectangle, color flags and filter mode. + diff --git a/docs/framework/opengl_renderer/render_tasks/clear.md b/docs/framework/opengl_renderer/render_tasks/clear.md new file mode 100644 index 0000000..6686223 --- /dev/null +++ b/docs/framework/opengl_renderer/render_tasks/clear.md @@ -0,0 +1,6 @@ +# `OpenGL::RenderTask` Clear + +This `RenderTask` calles glClear(). + +There are options available for clear color and color mask. + diff --git a/docs/framework/opengl_renderer/render_tasks/imgui.md b/docs/framework/opengl_renderer/render_tasks/imgui.md new file mode 100644 index 0000000..a3048eb --- /dev/null +++ b/docs/framework/opengl_renderer/render_tasks/imgui.md @@ -0,0 +1,4 @@ +# `OpenGL::RenderTask` ImGuiRT + +This `RenderTask` renders the ImGui render data. + diff --git a/docs/framework/resource_manager/resource_manager.md b/docs/framework/resource_manager/resource_manager.md new file mode 100644 index 0000000..c5cffe7 --- /dev/null +++ b/docs/framework/resource_manager/resource_manager.md @@ -0,0 +1,7 @@ +(draft) +# Resource Manager + +This is nothing more than a glorified Singelton and will be replace in the future. + +Based on https://github.com/skypjack/entt/blob/master/src/entt/resource/cache.hpp. + diff --git a/docs/framework/screen_director/screen_director.md b/docs/framework/screen_director/screen_director.md new file mode 100644 index 0000000..bc69124 --- /dev/null +++ b/docs/framework/screen_director/screen_director.md @@ -0,0 +1,31 @@ +# Screen Director + +Orchistrates `Screen`s. + +The `Screen Director` lets you define "States"(`Screen`s) which activate/deactivate `MM::Service`s on Entering and Leaving the `Screen`. + +# Usage + +The current implementation is very open and does not really use encapsulation ... + +## Adding `Screen`s + +Due to the open nature of this implementation, one does access members directly: +``` +auto& my_screen = screen_director.screens["my_screen"]; + +// filling in start_disable, start_enable, start_provide, end_disable and end_enable +// and optionally start_fn and end_fn which are called upon entering and leaving the screen. +my_screen.start_enable.push_back(engine.type()); +// [...] +``` + +## Changing to a Screen + +Changing to a `Screen` can either be done on call with `.changeScreenTo(engine, "my_screen_id")` or qued via `.queueChangeScreenTo("my_screen")`. The former should only be used when the `Engine` is not running or in a `fixedDeferUpdate`. + +## Service Enablement + +Enabling the ScreenDirector causes a queued `Screen` to be started. + + diff --git a/docs/framework/sdl_service/sdl_service.md b/docs/framework/sdl_service/sdl_service.md new file mode 100644 index 0000000..9709de6 --- /dev/null +++ b/docs/framework/sdl_service/sdl_service.md @@ -0,0 +1,9 @@ +(draft) +## SDL Service + +This is a `Service` which manages Windows, OpenGL Contexts and Events. + +The current implementation limits it to one Window and OpenGL Context. + +Support for Vulkan is planned. + diff --git a/docs/framework/simple_scene/simple_scene.md b/docs/framework/simple_scene/simple_scene.md new file mode 100644 index 0000000..03dd78f --- /dev/null +++ b/docs/framework/simple_scene/simple_scene.md @@ -0,0 +1,5 @@ +(draft) +# Simple Scene + +This is a simple `MM::SceneServiceInterface` implementation. + diff --git a/docs/setup.md b/docs/setup.md new file mode 100644 index 0000000..7629a25 --- /dev/null +++ b/docs/setup.md @@ -0,0 +1,68 @@ +# Setting up MushMachine + +## Game development + +First add MM as a git submodule if in git repo: +```bash +git submodule add --init --recursive +``` +else just git clone + +add to cmake as subdirectory +```cmake +add_subdirectory(MushMachine) +``` + +The Engine is intended to be linked statically, but you can explore dynamic-linking of course. + +## Engine development +* clone repo +* install dependencies + +### GNU/LiNUX +* install dependencies + - libsdl2 + +* navigate to (out of tree) build directory (prefer just "build" in repo-dir) +* `cmake ..` + +### OSX +never tested before. be the first one :) . + +### Windows +* install dependencies + - using install vcpkg + - install SDL2 (non static) + - or by hand + - download libSDL2 and put it somewere, and set the "SDL2" environment variable to that location (set SDL2="path/to/folder") + +#### Visual Studio (GUI) +* open cmake project with visual studio (vs2019; vs2017 may work) + - if using vcpkg and vs2017: set vcpkg cmake toolchain (vs2019 does this automaticly) + +#### Visual Studio (MSVC dev cmd) +* open dev cmd (search start menu) +* navigate to (out of tree) build directory (prefer just "build" in repo-dir) + - if using vcpkg + - `cmake .. -DCMAKE_TOOLCHAIN_FILE="\scripts\buildsystems\vcpkg.cmake" -G Ninja` + - else + - `cmake .. -G Ninja` + +#### CLion +TODO +(look at cmake in this doc) + +## Additional Notes + +### CMake +* to specify build type on console use `-DCMAKE_BUILD_TYPE=` eg. `Release`. the engine cmake defaults to `Debug` if not set. +* the engine has cmake-level defines that can be set (via cmd eg. `-DMM_HEADLESS=ON`): + - `MM_HEADLESS` (disables sdl2 and opengl usage) + - `MM_NETWORKING` (depricated) + - `MM_OPENGL_3` (disabled if `MM_HEADLESS`) + - `MM_OPENGL_3_GLES` (disabled if `MM_HEADLESS`, `MM_OPENGL_3` supplement, makes the openglrenderer use gles3 instead of gl3) + +### Emscripten +* version 2.0.1 works +* version 1.39.18 does not (webgl errors) + diff --git a/docs/terminology.md b/docs/terminology.md new file mode 100644 index 0000000..6fb8553 --- /dev/null +++ b/docs/terminology.md @@ -0,0 +1,20 @@ +# Terminology + +### Engine +is defined as [`MM::Engine`](framework/engine/engine.md). + +### Service +is defined as [`MM::Services::Service`](framework/engine/services.md), the Service's base class, which was previously known as `ServiceSystem` and `SubSystem`. + +### Scene +is defined as a ECS-style EnTT::registry. It contains Entities, Components and Systems. + +### Entity +is defined as a ECS Entity, see [`EnTT`](https://github.com/skypjack/entt). + +### System +is defined as a ECS-style System. In this case, it's a free function. + +### Screen +is defined as a State of enabled and disabled `Service`s. (see [`ScreenDirector`](framework/screen_director/screen_director.md)) + diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt new file mode 100644 index 0000000..d5c6d34 --- /dev/null +++ b/external/CMakeLists.txt @@ -0,0 +1,51 @@ +cmake_minimum_required(VERSION 3.8 FATAL_ERROR) + +# external libs + +if (BUILD_TESTING) + set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) + add_subdirectory("googletest") +endif() + +add_subdirectory("spdlog") + +#include("${CMAKE_CURRENT_SOURCE_DIR}/tracy.cmake") +add_subdirectory("tracy") + +include("${CMAKE_CURRENT_SOURCE_DIR}/entt.cmake") +include("${CMAKE_CURRENT_SOURCE_DIR}/glm.cmake") + +set(JSON_BuildTests OFF CACHE INTERNAL "") +set(JSON_MultipleHeaders ON CACHE INTERNAL "") +add_subdirectory("json") # link with "nlohmann_json::nlohmann_json" + +set(PHYSFS_BUILD_SHARED FALSE CACHE INTERNAL "") +add_subdirectory("physfs") + +if(NOT MM_HEADLESS) + if(NOT EMSCRIPTEN) + find_package(SDL2 REQUIRED) + endif() + + if(NOT MM_OPENGL_3_GLES) + # opengl3 loader + add_subdirectory("glad-debug") + endif() + + # stb utilies + add_subdirectory("stb") + + # nice symbol font integration + include("${CMAKE_CURRENT_SOURCE_DIR}/icon_font_cpp_headers.cmake") + + # (debug) gui + add_subdirectory("imgui") + + # (debug) text editor + include("${CMAKE_CURRENT_SOURCE_DIR}/ImGuiColorTextEdit.cmake") + + # sound, uses sdl2-static backend + add_subdirectory("soloud") +endif() + + diff --git a/external/IconFontCppHeaders b/external/IconFontCppHeaders new file mode 160000 index 0000000..bd33e5b --- /dev/null +++ b/external/IconFontCppHeaders @@ -0,0 +1 @@ +Subproject commit bd33e5b7b67509e0f736f01bc03889f9ac8c32f5 diff --git a/external/ImGuiColorTextEdit b/external/ImGuiColorTextEdit new file mode 160000 index 0000000..0a88824 --- /dev/null +++ b/external/ImGuiColorTextEdit @@ -0,0 +1 @@ +Subproject commit 0a88824f7de8d0bd11d8419066caa7d3469395c4 diff --git a/external/ImGuiColorTextEdit.cmake b/external/ImGuiColorTextEdit.cmake new file mode 100644 index 0000000..21adb9d --- /dev/null +++ b/external/ImGuiColorTextEdit.cmake @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) + +add_library(imgui_color_text_edit + "${CMAKE_CURRENT_LIST_DIR}/ImGuiColorTextEdit/TextEditor.h" + "${CMAKE_CURRENT_LIST_DIR}/ImGuiColorTextEdit/TextEditor.cpp" +) +target_include_directories(imgui_color_text_edit PUBLIC "${CMAKE_CURRENT_LIST_DIR}/ImGuiColorTextEdit") +target_link_libraries(imgui_color_text_edit + imgui +) + diff --git a/external/entt b/external/entt new file mode 160000 index 0000000..bf0160a --- /dev/null +++ b/external/entt @@ -0,0 +1 @@ +Subproject commit bf0160adbd8fb405d758808f879de917e81465ca diff --git a/external/entt.cmake b/external/entt.cmake new file mode 100644 index 0000000..f917f2c --- /dev/null +++ b/external/entt.cmake @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +add_library(entt INTERFACE) +target_include_directories(entt INTERFACE "${CMAKE_CURRENT_LIST_DIR}/entt/src") +target_compile_features(entt INTERFACE cxx_std_17) + diff --git a/external/glad-debug/CMakeLists.txt b/external/glad-debug/CMakeLists.txt new file mode 100644 index 0000000..c1ff085 --- /dev/null +++ b/external/glad-debug/CMakeLists.txt @@ -0,0 +1,22 @@ +cmake_minimum_required(VERSION 3.2) +project(glad C) + +set(C_FILES + "src/glad.c" +) + +set(H_FILES + "include/glad/glad.h" + "include/KHR/khrplatform.h" +) + +add_library(glad ${C_FILES} ${H_FILES}) + +target_include_directories(glad PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include") + +if(UNIX) + target_link_libraries(glad + dl + ) +endif() + diff --git a/external/glad-debug/include/KHR/khrplatform.h b/external/glad-debug/include/KHR/khrplatform.h new file mode 100644 index 0000000..dd22d92 --- /dev/null +++ b/external/glad-debug/include/KHR/khrplatform.h @@ -0,0 +1,290 @@ +#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 + +#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 _WIN64 +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +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/external/glad-debug/include/glad/glad.h b/external/glad-debug/include/glad/glad.h new file mode 100644 index 0000000..4548b50 --- /dev/null +++ b/external/glad-debug/include/glad/glad.h @@ -0,0 +1,2509 @@ +/* + + OpenGL loader generated by glad 0.1.33 on Sun Sep 6 15:11:36 2020. + + Language/Generator: C/C++ Debug + 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-debug" --spec="gl" --extensions="" + Online: + https://glad.dav1d.de/#profile=core&language=c-debug&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); + + +#define GLAD_DEBUG +typedef void (* GLADcallback)(const char *name, void *funcptr, int len_args, ...); + +GLAPI void glad_set_pre_callback(GLADcallback cb); +GLAPI void glad_set_post_callback(GLADcallback cb); +#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; +GLAPI PFNGLCULLFACEPROC glad_debug_glCullFace; +#define glCullFace glad_debug_glCullFace +typedef void (APIENTRYP PFNGLFRONTFACEPROC)(GLenum mode); +GLAPI PFNGLFRONTFACEPROC glad_glFrontFace; +GLAPI PFNGLFRONTFACEPROC glad_debug_glFrontFace; +#define glFrontFace glad_debug_glFrontFace +typedef void (APIENTRYP PFNGLHINTPROC)(GLenum target, GLenum mode); +GLAPI PFNGLHINTPROC glad_glHint; +GLAPI PFNGLHINTPROC glad_debug_glHint; +#define glHint glad_debug_glHint +typedef void (APIENTRYP PFNGLLINEWIDTHPROC)(GLfloat width); +GLAPI PFNGLLINEWIDTHPROC glad_glLineWidth; +GLAPI PFNGLLINEWIDTHPROC glad_debug_glLineWidth; +#define glLineWidth glad_debug_glLineWidth +typedef void (APIENTRYP PFNGLPOINTSIZEPROC)(GLfloat size); +GLAPI PFNGLPOINTSIZEPROC glad_glPointSize; +GLAPI PFNGLPOINTSIZEPROC glad_debug_glPointSize; +#define glPointSize glad_debug_glPointSize +typedef void (APIENTRYP PFNGLPOLYGONMODEPROC)(GLenum face, GLenum mode); +GLAPI PFNGLPOLYGONMODEPROC glad_glPolygonMode; +GLAPI PFNGLPOLYGONMODEPROC glad_debug_glPolygonMode; +#define glPolygonMode glad_debug_glPolygonMode +typedef void (APIENTRYP PFNGLSCISSORPROC)(GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLSCISSORPROC glad_glScissor; +GLAPI PFNGLSCISSORPROC glad_debug_glScissor; +#define glScissor glad_debug_glScissor +typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC)(GLenum target, GLenum pname, GLfloat param); +GLAPI PFNGLTEXPARAMETERFPROC glad_glTexParameterf; +GLAPI PFNGLTEXPARAMETERFPROC glad_debug_glTexParameterf; +#define glTexParameterf glad_debug_glTexParameterf +typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC)(GLenum target, GLenum pname, const GLfloat *params); +GLAPI PFNGLTEXPARAMETERFVPROC glad_glTexParameterfv; +GLAPI PFNGLTEXPARAMETERFVPROC glad_debug_glTexParameterfv; +#define glTexParameterfv glad_debug_glTexParameterfv +typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC)(GLenum target, GLenum pname, GLint param); +GLAPI PFNGLTEXPARAMETERIPROC glad_glTexParameteri; +GLAPI PFNGLTEXPARAMETERIPROC glad_debug_glTexParameteri; +#define glTexParameteri glad_debug_glTexParameteri +typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC)(GLenum target, GLenum pname, const GLint *params); +GLAPI PFNGLTEXPARAMETERIVPROC glad_glTexParameteriv; +GLAPI PFNGLTEXPARAMETERIVPROC glad_debug_glTexParameteriv; +#define glTexParameteriv glad_debug_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; +GLAPI PFNGLTEXIMAGE1DPROC glad_debug_glTexImage1D; +#define glTexImage1D glad_debug_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; +GLAPI PFNGLTEXIMAGE2DPROC glad_debug_glTexImage2D; +#define glTexImage2D glad_debug_glTexImage2D +typedef void (APIENTRYP PFNGLDRAWBUFFERPROC)(GLenum buf); +GLAPI PFNGLDRAWBUFFERPROC glad_glDrawBuffer; +GLAPI PFNGLDRAWBUFFERPROC glad_debug_glDrawBuffer; +#define glDrawBuffer glad_debug_glDrawBuffer +typedef void (APIENTRYP PFNGLCLEARPROC)(GLbitfield mask); +GLAPI PFNGLCLEARPROC glad_glClear; +GLAPI PFNGLCLEARPROC glad_debug_glClear; +#define glClear glad_debug_glClear +typedef void (APIENTRYP PFNGLCLEARCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI PFNGLCLEARCOLORPROC glad_glClearColor; +GLAPI PFNGLCLEARCOLORPROC glad_debug_glClearColor; +#define glClearColor glad_debug_glClearColor +typedef void (APIENTRYP PFNGLCLEARSTENCILPROC)(GLint s); +GLAPI PFNGLCLEARSTENCILPROC glad_glClearStencil; +GLAPI PFNGLCLEARSTENCILPROC glad_debug_glClearStencil; +#define glClearStencil glad_debug_glClearStencil +typedef void (APIENTRYP PFNGLCLEARDEPTHPROC)(GLdouble depth); +GLAPI PFNGLCLEARDEPTHPROC glad_glClearDepth; +GLAPI PFNGLCLEARDEPTHPROC glad_debug_glClearDepth; +#define glClearDepth glad_debug_glClearDepth +typedef void (APIENTRYP PFNGLSTENCILMASKPROC)(GLuint mask); +GLAPI PFNGLSTENCILMASKPROC glad_glStencilMask; +GLAPI PFNGLSTENCILMASKPROC glad_debug_glStencilMask; +#define glStencilMask glad_debug_glStencilMask +typedef void (APIENTRYP PFNGLCOLORMASKPROC)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GLAPI PFNGLCOLORMASKPROC glad_glColorMask; +GLAPI PFNGLCOLORMASKPROC glad_debug_glColorMask; +#define glColorMask glad_debug_glColorMask +typedef void (APIENTRYP PFNGLDEPTHMASKPROC)(GLboolean flag); +GLAPI PFNGLDEPTHMASKPROC glad_glDepthMask; +GLAPI PFNGLDEPTHMASKPROC glad_debug_glDepthMask; +#define glDepthMask glad_debug_glDepthMask +typedef void (APIENTRYP PFNGLDISABLEPROC)(GLenum cap); +GLAPI PFNGLDISABLEPROC glad_glDisable; +GLAPI PFNGLDISABLEPROC glad_debug_glDisable; +#define glDisable glad_debug_glDisable +typedef void (APIENTRYP PFNGLENABLEPROC)(GLenum cap); +GLAPI PFNGLENABLEPROC glad_glEnable; +GLAPI PFNGLENABLEPROC glad_debug_glEnable; +#define glEnable glad_debug_glEnable +typedef void (APIENTRYP PFNGLFINISHPROC)(void); +GLAPI PFNGLFINISHPROC glad_glFinish; +GLAPI PFNGLFINISHPROC glad_debug_glFinish; +#define glFinish glad_debug_glFinish +typedef void (APIENTRYP PFNGLFLUSHPROC)(void); +GLAPI PFNGLFLUSHPROC glad_glFlush; +GLAPI PFNGLFLUSHPROC glad_debug_glFlush; +#define glFlush glad_debug_glFlush +typedef void (APIENTRYP PFNGLBLENDFUNCPROC)(GLenum sfactor, GLenum dfactor); +GLAPI PFNGLBLENDFUNCPROC glad_glBlendFunc; +GLAPI PFNGLBLENDFUNCPROC glad_debug_glBlendFunc; +#define glBlendFunc glad_debug_glBlendFunc +typedef void (APIENTRYP PFNGLLOGICOPPROC)(GLenum opcode); +GLAPI PFNGLLOGICOPPROC glad_glLogicOp; +GLAPI PFNGLLOGICOPPROC glad_debug_glLogicOp; +#define glLogicOp glad_debug_glLogicOp +typedef void (APIENTRYP PFNGLSTENCILFUNCPROC)(GLenum func, GLint ref, GLuint mask); +GLAPI PFNGLSTENCILFUNCPROC glad_glStencilFunc; +GLAPI PFNGLSTENCILFUNCPROC glad_debug_glStencilFunc; +#define glStencilFunc glad_debug_glStencilFunc +typedef void (APIENTRYP PFNGLSTENCILOPPROC)(GLenum fail, GLenum zfail, GLenum zpass); +GLAPI PFNGLSTENCILOPPROC glad_glStencilOp; +GLAPI PFNGLSTENCILOPPROC glad_debug_glStencilOp; +#define glStencilOp glad_debug_glStencilOp +typedef void (APIENTRYP PFNGLDEPTHFUNCPROC)(GLenum func); +GLAPI PFNGLDEPTHFUNCPROC glad_glDepthFunc; +GLAPI PFNGLDEPTHFUNCPROC glad_debug_glDepthFunc; +#define glDepthFunc glad_debug_glDepthFunc +typedef void (APIENTRYP PFNGLPIXELSTOREFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLPIXELSTOREFPROC glad_glPixelStoref; +GLAPI PFNGLPIXELSTOREFPROC glad_debug_glPixelStoref; +#define glPixelStoref glad_debug_glPixelStoref +typedef void (APIENTRYP PFNGLPIXELSTOREIPROC)(GLenum pname, GLint param); +GLAPI PFNGLPIXELSTOREIPROC glad_glPixelStorei; +GLAPI PFNGLPIXELSTOREIPROC glad_debug_glPixelStorei; +#define glPixelStorei glad_debug_glPixelStorei +typedef void (APIENTRYP PFNGLREADBUFFERPROC)(GLenum src); +GLAPI PFNGLREADBUFFERPROC glad_glReadBuffer; +GLAPI PFNGLREADBUFFERPROC glad_debug_glReadBuffer; +#define glReadBuffer glad_debug_glReadBuffer +typedef void (APIENTRYP PFNGLREADPIXELSPROC)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GLAPI PFNGLREADPIXELSPROC glad_glReadPixels; +GLAPI PFNGLREADPIXELSPROC glad_debug_glReadPixels; +#define glReadPixels glad_debug_glReadPixels +typedef void (APIENTRYP PFNGLGETBOOLEANVPROC)(GLenum pname, GLboolean *data); +GLAPI PFNGLGETBOOLEANVPROC glad_glGetBooleanv; +GLAPI PFNGLGETBOOLEANVPROC glad_debug_glGetBooleanv; +#define glGetBooleanv glad_debug_glGetBooleanv +typedef void (APIENTRYP PFNGLGETDOUBLEVPROC)(GLenum pname, GLdouble *data); +GLAPI PFNGLGETDOUBLEVPROC glad_glGetDoublev; +GLAPI PFNGLGETDOUBLEVPROC glad_debug_glGetDoublev; +#define glGetDoublev glad_debug_glGetDoublev +typedef GLenum (APIENTRYP PFNGLGETERRORPROC)(void); +GLAPI PFNGLGETERRORPROC glad_glGetError; +GLAPI PFNGLGETERRORPROC glad_debug_glGetError; +#define glGetError glad_debug_glGetError +typedef void (APIENTRYP PFNGLGETFLOATVPROC)(GLenum pname, GLfloat *data); +GLAPI PFNGLGETFLOATVPROC glad_glGetFloatv; +GLAPI PFNGLGETFLOATVPROC glad_debug_glGetFloatv; +#define glGetFloatv glad_debug_glGetFloatv +typedef void (APIENTRYP PFNGLGETINTEGERVPROC)(GLenum pname, GLint *data); +GLAPI PFNGLGETINTEGERVPROC glad_glGetIntegerv; +GLAPI PFNGLGETINTEGERVPROC glad_debug_glGetIntegerv; +#define glGetIntegerv glad_debug_glGetIntegerv +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC)(GLenum name); +GLAPI PFNGLGETSTRINGPROC glad_glGetString; +GLAPI PFNGLGETSTRINGPROC glad_debug_glGetString; +#define glGetString glad_debug_glGetString +typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC)(GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI PFNGLGETTEXIMAGEPROC glad_glGetTexImage; +GLAPI PFNGLGETTEXIMAGEPROC glad_debug_glGetTexImage; +#define glGetTexImage glad_debug_glGetTexImage +typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC)(GLenum target, GLenum pname, GLfloat *params); +GLAPI PFNGLGETTEXPARAMETERFVPROC glad_glGetTexParameterfv; +GLAPI PFNGLGETTEXPARAMETERFVPROC glad_debug_glGetTexParameterfv; +#define glGetTexParameterfv glad_debug_glGetTexParameterfv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXPARAMETERIVPROC glad_glGetTexParameteriv; +GLAPI PFNGLGETTEXPARAMETERIVPROC glad_debug_glGetTexParameteriv; +#define glGetTexParameteriv glad_debug_glGetTexParameteriv +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC)(GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI PFNGLGETTEXLEVELPARAMETERFVPROC glad_glGetTexLevelParameterfv; +GLAPI PFNGLGETTEXLEVELPARAMETERFVPROC glad_debug_glGetTexLevelParameterfv; +#define glGetTexLevelParameterfv glad_debug_glGetTexLevelParameterfv +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC)(GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXLEVELPARAMETERIVPROC glad_glGetTexLevelParameteriv; +GLAPI PFNGLGETTEXLEVELPARAMETERIVPROC glad_debug_glGetTexLevelParameteriv; +#define glGetTexLevelParameteriv glad_debug_glGetTexLevelParameteriv +typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC)(GLenum cap); +GLAPI PFNGLISENABLEDPROC glad_glIsEnabled; +GLAPI PFNGLISENABLEDPROC glad_debug_glIsEnabled; +#define glIsEnabled glad_debug_glIsEnabled +typedef void (APIENTRYP PFNGLDEPTHRANGEPROC)(GLdouble n, GLdouble f); +GLAPI PFNGLDEPTHRANGEPROC glad_glDepthRange; +GLAPI PFNGLDEPTHRANGEPROC glad_debug_glDepthRange; +#define glDepthRange glad_debug_glDepthRange +typedef void (APIENTRYP PFNGLVIEWPORTPROC)(GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLVIEWPORTPROC glad_glViewport; +GLAPI PFNGLVIEWPORTPROC glad_debug_glViewport; +#define glViewport glad_debug_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; +GLAPI PFNGLDRAWARRAYSPROC glad_debug_glDrawArrays; +#define glDrawArrays glad_debug_glDrawArrays +typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices); +GLAPI PFNGLDRAWELEMENTSPROC glad_glDrawElements; +GLAPI PFNGLDRAWELEMENTSPROC glad_debug_glDrawElements; +#define glDrawElements glad_debug_glDrawElements +typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC)(GLfloat factor, GLfloat units); +GLAPI PFNGLPOLYGONOFFSETPROC glad_glPolygonOffset; +GLAPI PFNGLPOLYGONOFFSETPROC glad_debug_glPolygonOffset; +#define glPolygonOffset glad_debug_glPolygonOffset +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI PFNGLCOPYTEXIMAGE1DPROC glad_glCopyTexImage1D; +GLAPI PFNGLCOPYTEXIMAGE1DPROC glad_debug_glCopyTexImage1D; +#define glCopyTexImage1D glad_debug_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; +GLAPI PFNGLCOPYTEXIMAGE2DPROC glad_debug_glCopyTexImage2D; +#define glCopyTexImage2D glad_debug_glCopyTexImage2D +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI PFNGLCOPYTEXSUBIMAGE1DPROC glad_glCopyTexSubImage1D; +GLAPI PFNGLCOPYTEXSUBIMAGE1DPROC glad_debug_glCopyTexSubImage1D; +#define glCopyTexSubImage1D glad_debug_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; +GLAPI PFNGLCOPYTEXSUBIMAGE2DPROC glad_debug_glCopyTexSubImage2D; +#define glCopyTexSubImage2D glad_debug_glCopyTexSubImage2D +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXSUBIMAGE1DPROC glad_glTexSubImage1D; +GLAPI PFNGLTEXSUBIMAGE1DPROC glad_debug_glTexSubImage1D; +#define glTexSubImage1D glad_debug_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; +GLAPI PFNGLTEXSUBIMAGE2DPROC glad_debug_glTexSubImage2D; +#define glTexSubImage2D glad_debug_glTexSubImage2D +typedef void (APIENTRYP PFNGLBINDTEXTUREPROC)(GLenum target, GLuint texture); +GLAPI PFNGLBINDTEXTUREPROC glad_glBindTexture; +GLAPI PFNGLBINDTEXTUREPROC glad_debug_glBindTexture; +#define glBindTexture glad_debug_glBindTexture +typedef void (APIENTRYP PFNGLDELETETEXTURESPROC)(GLsizei n, const GLuint *textures); +GLAPI PFNGLDELETETEXTURESPROC glad_glDeleteTextures; +GLAPI PFNGLDELETETEXTURESPROC glad_debug_glDeleteTextures; +#define glDeleteTextures glad_debug_glDeleteTextures +typedef void (APIENTRYP PFNGLGENTEXTURESPROC)(GLsizei n, GLuint *textures); +GLAPI PFNGLGENTEXTURESPROC glad_glGenTextures; +GLAPI PFNGLGENTEXTURESPROC glad_debug_glGenTextures; +#define glGenTextures glad_debug_glGenTextures +typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC)(GLuint texture); +GLAPI PFNGLISTEXTUREPROC glad_glIsTexture; +GLAPI PFNGLISTEXTUREPROC glad_debug_glIsTexture; +#define glIsTexture glad_debug_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; +GLAPI PFNGLDRAWRANGEELEMENTSPROC glad_debug_glDrawRangeElements; +#define glDrawRangeElements glad_debug_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; +GLAPI PFNGLTEXIMAGE3DPROC glad_debug_glTexImage3D; +#define glTexImage3D glad_debug_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; +GLAPI PFNGLTEXSUBIMAGE3DPROC glad_debug_glTexSubImage3D; +#define glTexSubImage3D glad_debug_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; +GLAPI PFNGLCOPYTEXSUBIMAGE3DPROC glad_debug_glCopyTexSubImage3D; +#define glCopyTexSubImage3D glad_debug_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; +GLAPI PFNGLACTIVETEXTUREPROC glad_debug_glActiveTexture; +#define glActiveTexture glad_debug_glActiveTexture +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC)(GLfloat value, GLboolean invert); +GLAPI PFNGLSAMPLECOVERAGEPROC glad_glSampleCoverage; +GLAPI PFNGLSAMPLECOVERAGEPROC glad_debug_glSampleCoverage; +#define glSampleCoverage glad_debug_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; +GLAPI PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_debug_glCompressedTexImage3D; +#define glCompressedTexImage3D glad_debug_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; +GLAPI PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_debug_glCompressedTexImage2D; +#define glCompressedTexImage2D glad_debug_glCompressedTexImage2D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_glCompressedTexImage1D; +GLAPI PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_debug_glCompressedTexImage1D; +#define glCompressedTexImage1D glad_debug_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; +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_debug_glCompressedTexSubImage3D; +#define glCompressedTexSubImage3D glad_debug_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; +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_debug_glCompressedTexSubImage2D; +#define glCompressedTexSubImage2D glad_debug_glCompressedTexSubImage2D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_glCompressedTexSubImage1D; +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_debug_glCompressedTexSubImage1D; +#define glCompressedTexSubImage1D glad_debug_glCompressedTexSubImage1D +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC)(GLenum target, GLint level, void *img); +GLAPI PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_glGetCompressedTexImage; +GLAPI PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_debug_glGetCompressedTexImage; +#define glGetCompressedTexImage glad_debug_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; +GLAPI PFNGLBLENDFUNCSEPARATEPROC glad_debug_glBlendFuncSeparate; +#define glBlendFuncSeparate glad_debug_glBlendFuncSeparate +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +GLAPI PFNGLMULTIDRAWARRAYSPROC glad_glMultiDrawArrays; +GLAPI PFNGLMULTIDRAWARRAYSPROC glad_debug_glMultiDrawArrays; +#define glMultiDrawArrays glad_debug_glMultiDrawArrays +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC)(GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +GLAPI PFNGLMULTIDRAWELEMENTSPROC glad_glMultiDrawElements; +GLAPI PFNGLMULTIDRAWELEMENTSPROC glad_debug_glMultiDrawElements; +#define glMultiDrawElements glad_debug_glMultiDrawElements +typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLPOINTPARAMETERFPROC glad_glPointParameterf; +GLAPI PFNGLPOINTPARAMETERFPROC glad_debug_glPointParameterf; +#define glPointParameterf glad_debug_glPointParameterf +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC)(GLenum pname, const GLfloat *params); +GLAPI PFNGLPOINTPARAMETERFVPROC glad_glPointParameterfv; +GLAPI PFNGLPOINTPARAMETERFVPROC glad_debug_glPointParameterfv; +#define glPointParameterfv glad_debug_glPointParameterfv +typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC)(GLenum pname, GLint param); +GLAPI PFNGLPOINTPARAMETERIPROC glad_glPointParameteri; +GLAPI PFNGLPOINTPARAMETERIPROC glad_debug_glPointParameteri; +#define glPointParameteri glad_debug_glPointParameteri +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC)(GLenum pname, const GLint *params); +GLAPI PFNGLPOINTPARAMETERIVPROC glad_glPointParameteriv; +GLAPI PFNGLPOINTPARAMETERIVPROC glad_debug_glPointParameteriv; +#define glPointParameteriv glad_debug_glPointParameteriv +typedef void (APIENTRYP PFNGLBLENDCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI PFNGLBLENDCOLORPROC glad_glBlendColor; +GLAPI PFNGLBLENDCOLORPROC glad_debug_glBlendColor; +#define glBlendColor glad_debug_glBlendColor +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC)(GLenum mode); +GLAPI PFNGLBLENDEQUATIONPROC glad_glBlendEquation; +GLAPI PFNGLBLENDEQUATIONPROC glad_debug_glBlendEquation; +#define glBlendEquation glad_debug_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; +GLAPI PFNGLGENQUERIESPROC glad_debug_glGenQueries; +#define glGenQueries glad_debug_glGenQueries +typedef void (APIENTRYP PFNGLDELETEQUERIESPROC)(GLsizei n, const GLuint *ids); +GLAPI PFNGLDELETEQUERIESPROC glad_glDeleteQueries; +GLAPI PFNGLDELETEQUERIESPROC glad_debug_glDeleteQueries; +#define glDeleteQueries glad_debug_glDeleteQueries +typedef GLboolean (APIENTRYP PFNGLISQUERYPROC)(GLuint id); +GLAPI PFNGLISQUERYPROC glad_glIsQuery; +GLAPI PFNGLISQUERYPROC glad_debug_glIsQuery; +#define glIsQuery glad_debug_glIsQuery +typedef void (APIENTRYP PFNGLBEGINQUERYPROC)(GLenum target, GLuint id); +GLAPI PFNGLBEGINQUERYPROC glad_glBeginQuery; +GLAPI PFNGLBEGINQUERYPROC glad_debug_glBeginQuery; +#define glBeginQuery glad_debug_glBeginQuery +typedef void (APIENTRYP PFNGLENDQUERYPROC)(GLenum target); +GLAPI PFNGLENDQUERYPROC glad_glEndQuery; +GLAPI PFNGLENDQUERYPROC glad_debug_glEndQuery; +#define glEndQuery glad_debug_glEndQuery +typedef void (APIENTRYP PFNGLGETQUERYIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETQUERYIVPROC glad_glGetQueryiv; +GLAPI PFNGLGETQUERYIVPROC glad_debug_glGetQueryiv; +#define glGetQueryiv glad_debug_glGetQueryiv +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC)(GLuint id, GLenum pname, GLint *params); +GLAPI PFNGLGETQUERYOBJECTIVPROC glad_glGetQueryObjectiv; +GLAPI PFNGLGETQUERYOBJECTIVPROC glad_debug_glGetQueryObjectiv; +#define glGetQueryObjectiv glad_debug_glGetQueryObjectiv +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC)(GLuint id, GLenum pname, GLuint *params); +GLAPI PFNGLGETQUERYOBJECTUIVPROC glad_glGetQueryObjectuiv; +GLAPI PFNGLGETQUERYOBJECTUIVPROC glad_debug_glGetQueryObjectuiv; +#define glGetQueryObjectuiv glad_debug_glGetQueryObjectuiv +typedef void (APIENTRYP PFNGLBINDBUFFERPROC)(GLenum target, GLuint buffer); +GLAPI PFNGLBINDBUFFERPROC glad_glBindBuffer; +GLAPI PFNGLBINDBUFFERPROC glad_debug_glBindBuffer; +#define glBindBuffer glad_debug_glBindBuffer +typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC)(GLsizei n, const GLuint *buffers); +GLAPI PFNGLDELETEBUFFERSPROC glad_glDeleteBuffers; +GLAPI PFNGLDELETEBUFFERSPROC glad_debug_glDeleteBuffers; +#define glDeleteBuffers glad_debug_glDeleteBuffers +typedef void (APIENTRYP PFNGLGENBUFFERSPROC)(GLsizei n, GLuint *buffers); +GLAPI PFNGLGENBUFFERSPROC glad_glGenBuffers; +GLAPI PFNGLGENBUFFERSPROC glad_debug_glGenBuffers; +#define glGenBuffers glad_debug_glGenBuffers +typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC)(GLuint buffer); +GLAPI PFNGLISBUFFERPROC glad_glIsBuffer; +GLAPI PFNGLISBUFFERPROC glad_debug_glIsBuffer; +#define glIsBuffer glad_debug_glIsBuffer +typedef void (APIENTRYP PFNGLBUFFERDATAPROC)(GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GLAPI PFNGLBUFFERDATAPROC glad_glBufferData; +GLAPI PFNGLBUFFERDATAPROC glad_debug_glBufferData; +#define glBufferData glad_debug_glBufferData +typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC)(GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI PFNGLBUFFERSUBDATAPROC glad_glBufferSubData; +GLAPI PFNGLBUFFERSUBDATAPROC glad_debug_glBufferSubData; +#define glBufferSubData glad_debug_glBufferSubData +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC)(GLenum target, GLintptr offset, GLsizeiptr size, void *data); +GLAPI PFNGLGETBUFFERSUBDATAPROC glad_glGetBufferSubData; +GLAPI PFNGLGETBUFFERSUBDATAPROC glad_debug_glGetBufferSubData; +#define glGetBufferSubData glad_debug_glGetBufferSubData +typedef void * (APIENTRYP PFNGLMAPBUFFERPROC)(GLenum target, GLenum access); +GLAPI PFNGLMAPBUFFERPROC glad_glMapBuffer; +GLAPI PFNGLMAPBUFFERPROC glad_debug_glMapBuffer; +#define glMapBuffer glad_debug_glMapBuffer +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC)(GLenum target); +GLAPI PFNGLUNMAPBUFFERPROC glad_glUnmapBuffer; +GLAPI PFNGLUNMAPBUFFERPROC glad_debug_glUnmapBuffer; +#define glUnmapBuffer glad_debug_glUnmapBuffer +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETBUFFERPARAMETERIVPROC glad_glGetBufferParameteriv; +GLAPI PFNGLGETBUFFERPARAMETERIVPROC glad_debug_glGetBufferParameteriv; +#define glGetBufferParameteriv glad_debug_glGetBufferParameteriv +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC)(GLenum target, GLenum pname, void **params); +GLAPI PFNGLGETBUFFERPOINTERVPROC glad_glGetBufferPointerv; +GLAPI PFNGLGETBUFFERPOINTERVPROC glad_debug_glGetBufferPointerv; +#define glGetBufferPointerv glad_debug_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; +GLAPI PFNGLBLENDEQUATIONSEPARATEPROC glad_debug_glBlendEquationSeparate; +#define glBlendEquationSeparate glad_debug_glBlendEquationSeparate +typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC)(GLsizei n, const GLenum *bufs); +GLAPI PFNGLDRAWBUFFERSPROC glad_glDrawBuffers; +GLAPI PFNGLDRAWBUFFERSPROC glad_debug_glDrawBuffers; +#define glDrawBuffers glad_debug_glDrawBuffers +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC)(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI PFNGLSTENCILOPSEPARATEPROC glad_glStencilOpSeparate; +GLAPI PFNGLSTENCILOPSEPARATEPROC glad_debug_glStencilOpSeparate; +#define glStencilOpSeparate glad_debug_glStencilOpSeparate +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC)(GLenum face, GLenum func, GLint ref, GLuint mask); +GLAPI PFNGLSTENCILFUNCSEPARATEPROC glad_glStencilFuncSeparate; +GLAPI PFNGLSTENCILFUNCSEPARATEPROC glad_debug_glStencilFuncSeparate; +#define glStencilFuncSeparate glad_debug_glStencilFuncSeparate +typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC)(GLenum face, GLuint mask); +GLAPI PFNGLSTENCILMASKSEPARATEPROC glad_glStencilMaskSeparate; +GLAPI PFNGLSTENCILMASKSEPARATEPROC glad_debug_glStencilMaskSeparate; +#define glStencilMaskSeparate glad_debug_glStencilMaskSeparate +typedef void (APIENTRYP PFNGLATTACHSHADERPROC)(GLuint program, GLuint shader); +GLAPI PFNGLATTACHSHADERPROC glad_glAttachShader; +GLAPI PFNGLATTACHSHADERPROC glad_debug_glAttachShader; +#define glAttachShader glad_debug_glAttachShader +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC)(GLuint program, GLuint index, const GLchar *name); +GLAPI PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation; +GLAPI PFNGLBINDATTRIBLOCATIONPROC glad_debug_glBindAttribLocation; +#define glBindAttribLocation glad_debug_glBindAttribLocation +typedef void (APIENTRYP PFNGLCOMPILESHADERPROC)(GLuint shader); +GLAPI PFNGLCOMPILESHADERPROC glad_glCompileShader; +GLAPI PFNGLCOMPILESHADERPROC glad_debug_glCompileShader; +#define glCompileShader glad_debug_glCompileShader +typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC)(void); +GLAPI PFNGLCREATEPROGRAMPROC glad_glCreateProgram; +GLAPI PFNGLCREATEPROGRAMPROC glad_debug_glCreateProgram; +#define glCreateProgram glad_debug_glCreateProgram +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC)(GLenum type); +GLAPI PFNGLCREATESHADERPROC glad_glCreateShader; +GLAPI PFNGLCREATESHADERPROC glad_debug_glCreateShader; +#define glCreateShader glad_debug_glCreateShader +typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC)(GLuint program); +GLAPI PFNGLDELETEPROGRAMPROC glad_glDeleteProgram; +GLAPI PFNGLDELETEPROGRAMPROC glad_debug_glDeleteProgram; +#define glDeleteProgram glad_debug_glDeleteProgram +typedef void (APIENTRYP PFNGLDELETESHADERPROC)(GLuint shader); +GLAPI PFNGLDELETESHADERPROC glad_glDeleteShader; +GLAPI PFNGLDELETESHADERPROC glad_debug_glDeleteShader; +#define glDeleteShader glad_debug_glDeleteShader +typedef void (APIENTRYP PFNGLDETACHSHADERPROC)(GLuint program, GLuint shader); +GLAPI PFNGLDETACHSHADERPROC glad_glDetachShader; +GLAPI PFNGLDETACHSHADERPROC glad_debug_glDetachShader; +#define glDetachShader glad_debug_glDetachShader +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC)(GLuint index); +GLAPI PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_glDisableVertexAttribArray; +GLAPI PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_debug_glDisableVertexAttribArray; +#define glDisableVertexAttribArray glad_debug_glDisableVertexAttribArray +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC)(GLuint index); +GLAPI PFNGLENABLEVERTEXATTRIBARRAYPROC glad_glEnableVertexAttribArray; +GLAPI PFNGLENABLEVERTEXATTRIBARRAYPROC glad_debug_glEnableVertexAttribArray; +#define glEnableVertexAttribArray glad_debug_glEnableVertexAttribArray +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETACTIVEATTRIBPROC glad_glGetActiveAttrib; +GLAPI PFNGLGETACTIVEATTRIBPROC glad_debug_glGetActiveAttrib; +#define glGetActiveAttrib glad_debug_glGetActiveAttrib +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETACTIVEUNIFORMPROC glad_glGetActiveUniform; +GLAPI PFNGLGETACTIVEUNIFORMPROC glad_debug_glGetActiveUniform; +#define glGetActiveUniform glad_debug_glGetActiveUniform +typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC)(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GLAPI PFNGLGETATTACHEDSHADERSPROC glad_glGetAttachedShaders; +GLAPI PFNGLGETATTACHEDSHADERSPROC glad_debug_glGetAttachedShaders; +#define glGetAttachedShaders glad_debug_glGetAttachedShaders +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETATTRIBLOCATIONPROC glad_glGetAttribLocation; +GLAPI PFNGLGETATTRIBLOCATIONPROC glad_debug_glGetAttribLocation; +#define glGetAttribLocation glad_debug_glGetAttribLocation +typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC)(GLuint program, GLenum pname, GLint *params); +GLAPI PFNGLGETPROGRAMIVPROC glad_glGetProgramiv; +GLAPI PFNGLGETPROGRAMIVPROC glad_debug_glGetProgramiv; +#define glGetProgramiv glad_debug_glGetProgramiv +typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC)(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI PFNGLGETPROGRAMINFOLOGPROC glad_glGetProgramInfoLog; +GLAPI PFNGLGETPROGRAMINFOLOGPROC glad_debug_glGetProgramInfoLog; +#define glGetProgramInfoLog glad_debug_glGetProgramInfoLog +typedef void (APIENTRYP PFNGLGETSHADERIVPROC)(GLuint shader, GLenum pname, GLint *params); +GLAPI PFNGLGETSHADERIVPROC glad_glGetShaderiv; +GLAPI PFNGLGETSHADERIVPROC glad_debug_glGetShaderiv; +#define glGetShaderiv glad_debug_glGetShaderiv +typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC)(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI PFNGLGETSHADERINFOLOGPROC glad_glGetShaderInfoLog; +GLAPI PFNGLGETSHADERINFOLOGPROC glad_debug_glGetShaderInfoLog; +#define glGetShaderInfoLog glad_debug_glGetShaderInfoLog +typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC)(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GLAPI PFNGLGETSHADERSOURCEPROC glad_glGetShaderSource; +GLAPI PFNGLGETSHADERSOURCEPROC glad_debug_glGetShaderSource; +#define glGetShaderSource glad_debug_glGetShaderSource +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETUNIFORMLOCATIONPROC glad_glGetUniformLocation; +GLAPI PFNGLGETUNIFORMLOCATIONPROC glad_debug_glGetUniformLocation; +#define glGetUniformLocation glad_debug_glGetUniformLocation +typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC)(GLuint program, GLint location, GLfloat *params); +GLAPI PFNGLGETUNIFORMFVPROC glad_glGetUniformfv; +GLAPI PFNGLGETUNIFORMFVPROC glad_debug_glGetUniformfv; +#define glGetUniformfv glad_debug_glGetUniformfv +typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC)(GLuint program, GLint location, GLint *params); +GLAPI PFNGLGETUNIFORMIVPROC glad_glGetUniformiv; +GLAPI PFNGLGETUNIFORMIVPROC glad_debug_glGetUniformiv; +#define glGetUniformiv glad_debug_glGetUniformiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC)(GLuint index, GLenum pname, GLdouble *params); +GLAPI PFNGLGETVERTEXATTRIBDVPROC glad_glGetVertexAttribdv; +GLAPI PFNGLGETVERTEXATTRIBDVPROC glad_debug_glGetVertexAttribdv; +#define glGetVertexAttribdv glad_debug_glGetVertexAttribdv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC)(GLuint index, GLenum pname, GLfloat *params); +GLAPI PFNGLGETVERTEXATTRIBFVPROC glad_glGetVertexAttribfv; +GLAPI PFNGLGETVERTEXATTRIBFVPROC glad_debug_glGetVertexAttribfv; +#define glGetVertexAttribfv glad_debug_glGetVertexAttribfv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC)(GLuint index, GLenum pname, GLint *params); +GLAPI PFNGLGETVERTEXATTRIBIVPROC glad_glGetVertexAttribiv; +GLAPI PFNGLGETVERTEXATTRIBIVPROC glad_debug_glGetVertexAttribiv; +#define glGetVertexAttribiv glad_debug_glGetVertexAttribiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC)(GLuint index, GLenum pname, void **pointer); +GLAPI PFNGLGETVERTEXATTRIBPOINTERVPROC glad_glGetVertexAttribPointerv; +GLAPI PFNGLGETVERTEXATTRIBPOINTERVPROC glad_debug_glGetVertexAttribPointerv; +#define glGetVertexAttribPointerv glad_debug_glGetVertexAttribPointerv +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC)(GLuint program); +GLAPI PFNGLISPROGRAMPROC glad_glIsProgram; +GLAPI PFNGLISPROGRAMPROC glad_debug_glIsProgram; +#define glIsProgram glad_debug_glIsProgram +typedef GLboolean (APIENTRYP PFNGLISSHADERPROC)(GLuint shader); +GLAPI PFNGLISSHADERPROC glad_glIsShader; +GLAPI PFNGLISSHADERPROC glad_debug_glIsShader; +#define glIsShader glad_debug_glIsShader +typedef void (APIENTRYP PFNGLLINKPROGRAMPROC)(GLuint program); +GLAPI PFNGLLINKPROGRAMPROC glad_glLinkProgram; +GLAPI PFNGLLINKPROGRAMPROC glad_debug_glLinkProgram; +#define glLinkProgram glad_debug_glLinkProgram +typedef void (APIENTRYP PFNGLSHADERSOURCEPROC)(GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GLAPI PFNGLSHADERSOURCEPROC glad_glShaderSource; +GLAPI PFNGLSHADERSOURCEPROC glad_debug_glShaderSource; +#define glShaderSource glad_debug_glShaderSource +typedef void (APIENTRYP PFNGLUSEPROGRAMPROC)(GLuint program); +GLAPI PFNGLUSEPROGRAMPROC glad_glUseProgram; +GLAPI PFNGLUSEPROGRAMPROC glad_debug_glUseProgram; +#define glUseProgram glad_debug_glUseProgram +typedef void (APIENTRYP PFNGLUNIFORM1FPROC)(GLint location, GLfloat v0); +GLAPI PFNGLUNIFORM1FPROC glad_glUniform1f; +GLAPI PFNGLUNIFORM1FPROC glad_debug_glUniform1f; +#define glUniform1f glad_debug_glUniform1f +typedef void (APIENTRYP PFNGLUNIFORM2FPROC)(GLint location, GLfloat v0, GLfloat v1); +GLAPI PFNGLUNIFORM2FPROC glad_glUniform2f; +GLAPI PFNGLUNIFORM2FPROC glad_debug_glUniform2f; +#define glUniform2f glad_debug_glUniform2f +typedef void (APIENTRYP PFNGLUNIFORM3FPROC)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI PFNGLUNIFORM3FPROC glad_glUniform3f; +GLAPI PFNGLUNIFORM3FPROC glad_debug_glUniform3f; +#define glUniform3f glad_debug_glUniform3f +typedef void (APIENTRYP PFNGLUNIFORM4FPROC)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI PFNGLUNIFORM4FPROC glad_glUniform4f; +GLAPI PFNGLUNIFORM4FPROC glad_debug_glUniform4f; +#define glUniform4f glad_debug_glUniform4f +typedef void (APIENTRYP PFNGLUNIFORM1IPROC)(GLint location, GLint v0); +GLAPI PFNGLUNIFORM1IPROC glad_glUniform1i; +GLAPI PFNGLUNIFORM1IPROC glad_debug_glUniform1i; +#define glUniform1i glad_debug_glUniform1i +typedef void (APIENTRYP PFNGLUNIFORM2IPROC)(GLint location, GLint v0, GLint v1); +GLAPI PFNGLUNIFORM2IPROC glad_glUniform2i; +GLAPI PFNGLUNIFORM2IPROC glad_debug_glUniform2i; +#define glUniform2i glad_debug_glUniform2i +typedef void (APIENTRYP PFNGLUNIFORM3IPROC)(GLint location, GLint v0, GLint v1, GLint v2); +GLAPI PFNGLUNIFORM3IPROC glad_glUniform3i; +GLAPI PFNGLUNIFORM3IPROC glad_debug_glUniform3i; +#define glUniform3i glad_debug_glUniform3i +typedef void (APIENTRYP PFNGLUNIFORM4IPROC)(GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI PFNGLUNIFORM4IPROC glad_glUniform4i; +GLAPI PFNGLUNIFORM4IPROC glad_debug_glUniform4i; +#define glUniform4i glad_debug_glUniform4i +typedef void (APIENTRYP PFNGLUNIFORM1FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM1FVPROC glad_glUniform1fv; +GLAPI PFNGLUNIFORM1FVPROC glad_debug_glUniform1fv; +#define glUniform1fv glad_debug_glUniform1fv +typedef void (APIENTRYP PFNGLUNIFORM2FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM2FVPROC glad_glUniform2fv; +GLAPI PFNGLUNIFORM2FVPROC glad_debug_glUniform2fv; +#define glUniform2fv glad_debug_glUniform2fv +typedef void (APIENTRYP PFNGLUNIFORM3FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM3FVPROC glad_glUniform3fv; +GLAPI PFNGLUNIFORM3FVPROC glad_debug_glUniform3fv; +#define glUniform3fv glad_debug_glUniform3fv +typedef void (APIENTRYP PFNGLUNIFORM4FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM4FVPROC glad_glUniform4fv; +GLAPI PFNGLUNIFORM4FVPROC glad_debug_glUniform4fv; +#define glUniform4fv glad_debug_glUniform4fv +typedef void (APIENTRYP PFNGLUNIFORM1IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM1IVPROC glad_glUniform1iv; +GLAPI PFNGLUNIFORM1IVPROC glad_debug_glUniform1iv; +#define glUniform1iv glad_debug_glUniform1iv +typedef void (APIENTRYP PFNGLUNIFORM2IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM2IVPROC glad_glUniform2iv; +GLAPI PFNGLUNIFORM2IVPROC glad_debug_glUniform2iv; +#define glUniform2iv glad_debug_glUniform2iv +typedef void (APIENTRYP PFNGLUNIFORM3IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM3IVPROC glad_glUniform3iv; +GLAPI PFNGLUNIFORM3IVPROC glad_debug_glUniform3iv; +#define glUniform3iv glad_debug_glUniform3iv +typedef void (APIENTRYP PFNGLUNIFORM4IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM4IVPROC glad_glUniform4iv; +GLAPI PFNGLUNIFORM4IVPROC glad_debug_glUniform4iv; +#define glUniform4iv glad_debug_glUniform4iv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX2FVPROC glad_glUniformMatrix2fv; +GLAPI PFNGLUNIFORMMATRIX2FVPROC glad_debug_glUniformMatrix2fv; +#define glUniformMatrix2fv glad_debug_glUniformMatrix2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3FVPROC glad_glUniformMatrix3fv; +GLAPI PFNGLUNIFORMMATRIX3FVPROC glad_debug_glUniformMatrix3fv; +#define glUniformMatrix3fv glad_debug_glUniformMatrix3fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4FVPROC glad_glUniformMatrix4fv; +GLAPI PFNGLUNIFORMMATRIX4FVPROC glad_debug_glUniformMatrix4fv; +#define glUniformMatrix4fv glad_debug_glUniformMatrix4fv +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC)(GLuint program); +GLAPI PFNGLVALIDATEPROGRAMPROC glad_glValidateProgram; +GLAPI PFNGLVALIDATEPROGRAMPROC glad_debug_glValidateProgram; +#define glValidateProgram glad_debug_glValidateProgram +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC)(GLuint index, GLdouble x); +GLAPI PFNGLVERTEXATTRIB1DPROC glad_glVertexAttrib1d; +GLAPI PFNGLVERTEXATTRIB1DPROC glad_debug_glVertexAttrib1d; +#define glVertexAttrib1d glad_debug_glVertexAttrib1d +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB1DVPROC glad_glVertexAttrib1dv; +GLAPI PFNGLVERTEXATTRIB1DVPROC glad_debug_glVertexAttrib1dv; +#define glVertexAttrib1dv glad_debug_glVertexAttrib1dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC)(GLuint index, GLfloat x); +GLAPI PFNGLVERTEXATTRIB1FPROC glad_glVertexAttrib1f; +GLAPI PFNGLVERTEXATTRIB1FPROC glad_debug_glVertexAttrib1f; +#define glVertexAttrib1f glad_debug_glVertexAttrib1f +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB1FVPROC glad_glVertexAttrib1fv; +GLAPI PFNGLVERTEXATTRIB1FVPROC glad_debug_glVertexAttrib1fv; +#define glVertexAttrib1fv glad_debug_glVertexAttrib1fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC)(GLuint index, GLshort x); +GLAPI PFNGLVERTEXATTRIB1SPROC glad_glVertexAttrib1s; +GLAPI PFNGLVERTEXATTRIB1SPROC glad_debug_glVertexAttrib1s; +#define glVertexAttrib1s glad_debug_glVertexAttrib1s +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB1SVPROC glad_glVertexAttrib1sv; +GLAPI PFNGLVERTEXATTRIB1SVPROC glad_debug_glVertexAttrib1sv; +#define glVertexAttrib1sv glad_debug_glVertexAttrib1sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC)(GLuint index, GLdouble x, GLdouble y); +GLAPI PFNGLVERTEXATTRIB2DPROC glad_glVertexAttrib2d; +GLAPI PFNGLVERTEXATTRIB2DPROC glad_debug_glVertexAttrib2d; +#define glVertexAttrib2d glad_debug_glVertexAttrib2d +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB2DVPROC glad_glVertexAttrib2dv; +GLAPI PFNGLVERTEXATTRIB2DVPROC glad_debug_glVertexAttrib2dv; +#define glVertexAttrib2dv glad_debug_glVertexAttrib2dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC)(GLuint index, GLfloat x, GLfloat y); +GLAPI PFNGLVERTEXATTRIB2FPROC glad_glVertexAttrib2f; +GLAPI PFNGLVERTEXATTRIB2FPROC glad_debug_glVertexAttrib2f; +#define glVertexAttrib2f glad_debug_glVertexAttrib2f +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB2FVPROC glad_glVertexAttrib2fv; +GLAPI PFNGLVERTEXATTRIB2FVPROC glad_debug_glVertexAttrib2fv; +#define glVertexAttrib2fv glad_debug_glVertexAttrib2fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC)(GLuint index, GLshort x, GLshort y); +GLAPI PFNGLVERTEXATTRIB2SPROC glad_glVertexAttrib2s; +GLAPI PFNGLVERTEXATTRIB2SPROC glad_debug_glVertexAttrib2s; +#define glVertexAttrib2s glad_debug_glVertexAttrib2s +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB2SVPROC glad_glVertexAttrib2sv; +GLAPI PFNGLVERTEXATTRIB2SVPROC glad_debug_glVertexAttrib2sv; +#define glVertexAttrib2sv glad_debug_glVertexAttrib2sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLVERTEXATTRIB3DPROC glad_glVertexAttrib3d; +GLAPI PFNGLVERTEXATTRIB3DPROC glad_debug_glVertexAttrib3d; +#define glVertexAttrib3d glad_debug_glVertexAttrib3d +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB3DVPROC glad_glVertexAttrib3dv; +GLAPI PFNGLVERTEXATTRIB3DVPROC glad_debug_glVertexAttrib3dv; +#define glVertexAttrib3dv glad_debug_glVertexAttrib3dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLVERTEXATTRIB3FPROC glad_glVertexAttrib3f; +GLAPI PFNGLVERTEXATTRIB3FPROC glad_debug_glVertexAttrib3f; +#define glVertexAttrib3f glad_debug_glVertexAttrib3f +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB3FVPROC glad_glVertexAttrib3fv; +GLAPI PFNGLVERTEXATTRIB3FVPROC glad_debug_glVertexAttrib3fv; +#define glVertexAttrib3fv glad_debug_glVertexAttrib3fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC)(GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI PFNGLVERTEXATTRIB3SPROC glad_glVertexAttrib3s; +GLAPI PFNGLVERTEXATTRIB3SPROC glad_debug_glVertexAttrib3s; +#define glVertexAttrib3s glad_debug_glVertexAttrib3s +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB3SVPROC glad_glVertexAttrib3sv; +GLAPI PFNGLVERTEXATTRIB3SVPROC glad_debug_glVertexAttrib3sv; +#define glVertexAttrib3sv glad_debug_glVertexAttrib3sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIB4NBVPROC glad_glVertexAttrib4Nbv; +GLAPI PFNGLVERTEXATTRIB4NBVPROC glad_debug_glVertexAttrib4Nbv; +#define glVertexAttrib4Nbv glad_debug_glVertexAttrib4Nbv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIB4NIVPROC glad_glVertexAttrib4Niv; +GLAPI PFNGLVERTEXATTRIB4NIVPROC glad_debug_glVertexAttrib4Niv; +#define glVertexAttrib4Niv glad_debug_glVertexAttrib4Niv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB4NSVPROC glad_glVertexAttrib4Nsv; +GLAPI PFNGLVERTEXATTRIB4NSVPROC glad_debug_glVertexAttrib4Nsv; +#define glVertexAttrib4Nsv glad_debug_glVertexAttrib4Nsv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI PFNGLVERTEXATTRIB4NUBPROC glad_glVertexAttrib4Nub; +GLAPI PFNGLVERTEXATTRIB4NUBPROC glad_debug_glVertexAttrib4Nub; +#define glVertexAttrib4Nub glad_debug_glVertexAttrib4Nub +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIB4NUBVPROC glad_glVertexAttrib4Nubv; +GLAPI PFNGLVERTEXATTRIB4NUBVPROC glad_debug_glVertexAttrib4Nubv; +#define glVertexAttrib4Nubv glad_debug_glVertexAttrib4Nubv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIB4NUIVPROC glad_glVertexAttrib4Nuiv; +GLAPI PFNGLVERTEXATTRIB4NUIVPROC glad_debug_glVertexAttrib4Nuiv; +#define glVertexAttrib4Nuiv glad_debug_glVertexAttrib4Nuiv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIB4NUSVPROC glad_glVertexAttrib4Nusv; +GLAPI PFNGLVERTEXATTRIB4NUSVPROC glad_debug_glVertexAttrib4Nusv; +#define glVertexAttrib4Nusv glad_debug_glVertexAttrib4Nusv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIB4BVPROC glad_glVertexAttrib4bv; +GLAPI PFNGLVERTEXATTRIB4BVPROC glad_debug_glVertexAttrib4bv; +#define glVertexAttrib4bv glad_debug_glVertexAttrib4bv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI PFNGLVERTEXATTRIB4DPROC glad_glVertexAttrib4d; +GLAPI PFNGLVERTEXATTRIB4DPROC glad_debug_glVertexAttrib4d; +#define glVertexAttrib4d glad_debug_glVertexAttrib4d +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB4DVPROC glad_glVertexAttrib4dv; +GLAPI PFNGLVERTEXATTRIB4DVPROC glad_debug_glVertexAttrib4dv; +#define glVertexAttrib4dv glad_debug_glVertexAttrib4dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI PFNGLVERTEXATTRIB4FPROC glad_glVertexAttrib4f; +GLAPI PFNGLVERTEXATTRIB4FPROC glad_debug_glVertexAttrib4f; +#define glVertexAttrib4f glad_debug_glVertexAttrib4f +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB4FVPROC glad_glVertexAttrib4fv; +GLAPI PFNGLVERTEXATTRIB4FVPROC glad_debug_glVertexAttrib4fv; +#define glVertexAttrib4fv glad_debug_glVertexAttrib4fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIB4IVPROC glad_glVertexAttrib4iv; +GLAPI PFNGLVERTEXATTRIB4IVPROC glad_debug_glVertexAttrib4iv; +#define glVertexAttrib4iv glad_debug_glVertexAttrib4iv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI PFNGLVERTEXATTRIB4SPROC glad_glVertexAttrib4s; +GLAPI PFNGLVERTEXATTRIB4SPROC glad_debug_glVertexAttrib4s; +#define glVertexAttrib4s glad_debug_glVertexAttrib4s +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB4SVPROC glad_glVertexAttrib4sv; +GLAPI PFNGLVERTEXATTRIB4SVPROC glad_debug_glVertexAttrib4sv; +#define glVertexAttrib4sv glad_debug_glVertexAttrib4sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIB4UBVPROC glad_glVertexAttrib4ubv; +GLAPI PFNGLVERTEXATTRIB4UBVPROC glad_debug_glVertexAttrib4ubv; +#define glVertexAttrib4ubv glad_debug_glVertexAttrib4ubv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIB4UIVPROC glad_glVertexAttrib4uiv; +GLAPI PFNGLVERTEXATTRIB4UIVPROC glad_debug_glVertexAttrib4uiv; +#define glVertexAttrib4uiv glad_debug_glVertexAttrib4uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIB4USVPROC glad_glVertexAttrib4usv; +GLAPI PFNGLVERTEXATTRIB4USVPROC glad_debug_glVertexAttrib4usv; +#define glVertexAttrib4usv glad_debug_glVertexAttrib4usv +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC)(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GLAPI PFNGLVERTEXATTRIBPOINTERPROC glad_glVertexAttribPointer; +GLAPI PFNGLVERTEXATTRIBPOINTERPROC glad_debug_glVertexAttribPointer; +#define glVertexAttribPointer glad_debug_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; +GLAPI PFNGLUNIFORMMATRIX2X3FVPROC glad_debug_glUniformMatrix2x3fv; +#define glUniformMatrix2x3fv glad_debug_glUniformMatrix2x3fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3X2FVPROC glad_glUniformMatrix3x2fv; +GLAPI PFNGLUNIFORMMATRIX3X2FVPROC glad_debug_glUniformMatrix3x2fv; +#define glUniformMatrix3x2fv glad_debug_glUniformMatrix3x2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX2X4FVPROC glad_glUniformMatrix2x4fv; +GLAPI PFNGLUNIFORMMATRIX2X4FVPROC glad_debug_glUniformMatrix2x4fv; +#define glUniformMatrix2x4fv glad_debug_glUniformMatrix2x4fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4X2FVPROC glad_glUniformMatrix4x2fv; +GLAPI PFNGLUNIFORMMATRIX4X2FVPROC glad_debug_glUniformMatrix4x2fv; +#define glUniformMatrix4x2fv glad_debug_glUniformMatrix4x2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3X4FVPROC glad_glUniformMatrix3x4fv; +GLAPI PFNGLUNIFORMMATRIX3X4FVPROC glad_debug_glUniformMatrix3x4fv; +#define glUniformMatrix3x4fv glad_debug_glUniformMatrix3x4fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4X3FVPROC glad_glUniformMatrix4x3fv; +GLAPI PFNGLUNIFORMMATRIX4X3FVPROC glad_debug_glUniformMatrix4x3fv; +#define glUniformMatrix4x3fv glad_debug_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; +GLAPI PFNGLCOLORMASKIPROC glad_debug_glColorMaski; +#define glColorMaski glad_debug_glColorMaski +typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC)(GLenum target, GLuint index, GLboolean *data); +GLAPI PFNGLGETBOOLEANI_VPROC glad_glGetBooleani_v; +GLAPI PFNGLGETBOOLEANI_VPROC glad_debug_glGetBooleani_v; +#define glGetBooleani_v glad_debug_glGetBooleani_v +typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC)(GLenum target, GLuint index, GLint *data); +GLAPI PFNGLGETINTEGERI_VPROC glad_glGetIntegeri_v; +GLAPI PFNGLGETINTEGERI_VPROC glad_debug_glGetIntegeri_v; +#define glGetIntegeri_v glad_debug_glGetIntegeri_v +typedef void (APIENTRYP PFNGLENABLEIPROC)(GLenum target, GLuint index); +GLAPI PFNGLENABLEIPROC glad_glEnablei; +GLAPI PFNGLENABLEIPROC glad_debug_glEnablei; +#define glEnablei glad_debug_glEnablei +typedef void (APIENTRYP PFNGLDISABLEIPROC)(GLenum target, GLuint index); +GLAPI PFNGLDISABLEIPROC glad_glDisablei; +GLAPI PFNGLDISABLEIPROC glad_debug_glDisablei; +#define glDisablei glad_debug_glDisablei +typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC)(GLenum target, GLuint index); +GLAPI PFNGLISENABLEDIPROC glad_glIsEnabledi; +GLAPI PFNGLISENABLEDIPROC glad_debug_glIsEnabledi; +#define glIsEnabledi glad_debug_glIsEnabledi +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC)(GLenum primitiveMode); +GLAPI PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback; +GLAPI PFNGLBEGINTRANSFORMFEEDBACKPROC glad_debug_glBeginTransformFeedback; +#define glBeginTransformFeedback glad_debug_glBeginTransformFeedback +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC)(void); +GLAPI PFNGLENDTRANSFORMFEEDBACKPROC glad_glEndTransformFeedback; +GLAPI PFNGLENDTRANSFORMFEEDBACKPROC glad_debug_glEndTransformFeedback; +#define glEndTransformFeedback glad_debug_glEndTransformFeedback +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange; +GLAPI PFNGLBINDBUFFERRANGEPROC glad_debug_glBindBufferRange; +#define glBindBufferRange glad_debug_glBindBufferRange +typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC)(GLenum target, GLuint index, GLuint buffer); +GLAPI PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase; +GLAPI PFNGLBINDBUFFERBASEPROC glad_debug_glBindBufferBase; +#define glBindBufferBase glad_debug_glBindBufferBase +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC)(GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_glTransformFeedbackVaryings; +GLAPI PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_debug_glTransformFeedbackVaryings; +#define glTransformFeedbackVaryings glad_debug_glTransformFeedbackVaryings +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_glGetTransformFeedbackVarying; +GLAPI PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_debug_glGetTransformFeedbackVarying; +#define glGetTransformFeedbackVarying glad_debug_glGetTransformFeedbackVarying +typedef void (APIENTRYP PFNGLCLAMPCOLORPROC)(GLenum target, GLenum clamp); +GLAPI PFNGLCLAMPCOLORPROC glad_glClampColor; +GLAPI PFNGLCLAMPCOLORPROC glad_debug_glClampColor; +#define glClampColor glad_debug_glClampColor +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC)(GLuint id, GLenum mode); +GLAPI PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender; +GLAPI PFNGLBEGINCONDITIONALRENDERPROC glad_debug_glBeginConditionalRender; +#define glBeginConditionalRender glad_debug_glBeginConditionalRender +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC)(void); +GLAPI PFNGLENDCONDITIONALRENDERPROC glad_glEndConditionalRender; +GLAPI PFNGLENDCONDITIONALRENDERPROC glad_debug_glEndConditionalRender; +#define glEndConditionalRender glad_debug_glEndConditionalRender +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC)(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLVERTEXATTRIBIPOINTERPROC glad_glVertexAttribIPointer; +GLAPI PFNGLVERTEXATTRIBIPOINTERPROC glad_debug_glVertexAttribIPointer; +#define glVertexAttribIPointer glad_debug_glVertexAttribIPointer +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC)(GLuint index, GLenum pname, GLint *params); +GLAPI PFNGLGETVERTEXATTRIBIIVPROC glad_glGetVertexAttribIiv; +GLAPI PFNGLGETVERTEXATTRIBIIVPROC glad_debug_glGetVertexAttribIiv; +#define glGetVertexAttribIiv glad_debug_glGetVertexAttribIiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC)(GLuint index, GLenum pname, GLuint *params); +GLAPI PFNGLGETVERTEXATTRIBIUIVPROC glad_glGetVertexAttribIuiv; +GLAPI PFNGLGETVERTEXATTRIBIUIVPROC glad_debug_glGetVertexAttribIuiv; +#define glGetVertexAttribIuiv glad_debug_glGetVertexAttribIuiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC)(GLuint index, GLint x); +GLAPI PFNGLVERTEXATTRIBI1IPROC glad_glVertexAttribI1i; +GLAPI PFNGLVERTEXATTRIBI1IPROC glad_debug_glVertexAttribI1i; +#define glVertexAttribI1i glad_debug_glVertexAttribI1i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC)(GLuint index, GLint x, GLint y); +GLAPI PFNGLVERTEXATTRIBI2IPROC glad_glVertexAttribI2i; +GLAPI PFNGLVERTEXATTRIBI2IPROC glad_debug_glVertexAttribI2i; +#define glVertexAttribI2i glad_debug_glVertexAttribI2i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC)(GLuint index, GLint x, GLint y, GLint z); +GLAPI PFNGLVERTEXATTRIBI3IPROC glad_glVertexAttribI3i; +GLAPI PFNGLVERTEXATTRIBI3IPROC glad_debug_glVertexAttribI3i; +#define glVertexAttribI3i glad_debug_glVertexAttribI3i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC)(GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI PFNGLVERTEXATTRIBI4IPROC glad_glVertexAttribI4i; +GLAPI PFNGLVERTEXATTRIBI4IPROC glad_debug_glVertexAttribI4i; +#define glVertexAttribI4i glad_debug_glVertexAttribI4i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC)(GLuint index, GLuint x); +GLAPI PFNGLVERTEXATTRIBI1UIPROC glad_glVertexAttribI1ui; +GLAPI PFNGLVERTEXATTRIBI1UIPROC glad_debug_glVertexAttribI1ui; +#define glVertexAttribI1ui glad_debug_glVertexAttribI1ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC)(GLuint index, GLuint x, GLuint y); +GLAPI PFNGLVERTEXATTRIBI2UIPROC glad_glVertexAttribI2ui; +GLAPI PFNGLVERTEXATTRIBI2UIPROC glad_debug_glVertexAttribI2ui; +#define glVertexAttribI2ui glad_debug_glVertexAttribI2ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC)(GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI PFNGLVERTEXATTRIBI3UIPROC glad_glVertexAttribI3ui; +GLAPI PFNGLVERTEXATTRIBI3UIPROC glad_debug_glVertexAttribI3ui; +#define glVertexAttribI3ui glad_debug_glVertexAttribI3ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI PFNGLVERTEXATTRIBI4UIPROC glad_glVertexAttribI4ui; +GLAPI PFNGLVERTEXATTRIBI4UIPROC glad_debug_glVertexAttribI4ui; +#define glVertexAttribI4ui glad_debug_glVertexAttribI4ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI1IVPROC glad_glVertexAttribI1iv; +GLAPI PFNGLVERTEXATTRIBI1IVPROC glad_debug_glVertexAttribI1iv; +#define glVertexAttribI1iv glad_debug_glVertexAttribI1iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI2IVPROC glad_glVertexAttribI2iv; +GLAPI PFNGLVERTEXATTRIBI2IVPROC glad_debug_glVertexAttribI2iv; +#define glVertexAttribI2iv glad_debug_glVertexAttribI2iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI3IVPROC glad_glVertexAttribI3iv; +GLAPI PFNGLVERTEXATTRIBI3IVPROC glad_debug_glVertexAttribI3iv; +#define glVertexAttribI3iv glad_debug_glVertexAttribI3iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI4IVPROC glad_glVertexAttribI4iv; +GLAPI PFNGLVERTEXATTRIBI4IVPROC glad_debug_glVertexAttribI4iv; +#define glVertexAttribI4iv glad_debug_glVertexAttribI4iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI1UIVPROC glad_glVertexAttribI1uiv; +GLAPI PFNGLVERTEXATTRIBI1UIVPROC glad_debug_glVertexAttribI1uiv; +#define glVertexAttribI1uiv glad_debug_glVertexAttribI1uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI2UIVPROC glad_glVertexAttribI2uiv; +GLAPI PFNGLVERTEXATTRIBI2UIVPROC glad_debug_glVertexAttribI2uiv; +#define glVertexAttribI2uiv glad_debug_glVertexAttribI2uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI3UIVPROC glad_glVertexAttribI3uiv; +GLAPI PFNGLVERTEXATTRIBI3UIVPROC glad_debug_glVertexAttribI3uiv; +#define glVertexAttribI3uiv glad_debug_glVertexAttribI3uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI4UIVPROC glad_glVertexAttribI4uiv; +GLAPI PFNGLVERTEXATTRIBI4UIVPROC glad_debug_glVertexAttribI4uiv; +#define glVertexAttribI4uiv glad_debug_glVertexAttribI4uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIBI4BVPROC glad_glVertexAttribI4bv; +GLAPI PFNGLVERTEXATTRIBI4BVPROC glad_debug_glVertexAttribI4bv; +#define glVertexAttribI4bv glad_debug_glVertexAttribI4bv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIBI4SVPROC glad_glVertexAttribI4sv; +GLAPI PFNGLVERTEXATTRIBI4SVPROC glad_debug_glVertexAttribI4sv; +#define glVertexAttribI4sv glad_debug_glVertexAttribI4sv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIBI4UBVPROC glad_glVertexAttribI4ubv; +GLAPI PFNGLVERTEXATTRIBI4UBVPROC glad_debug_glVertexAttribI4ubv; +#define glVertexAttribI4ubv glad_debug_glVertexAttribI4ubv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIBI4USVPROC glad_glVertexAttribI4usv; +GLAPI PFNGLVERTEXATTRIBI4USVPROC glad_debug_glVertexAttribI4usv; +#define glVertexAttribI4usv glad_debug_glVertexAttribI4usv +typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC)(GLuint program, GLint location, GLuint *params); +GLAPI PFNGLGETUNIFORMUIVPROC glad_glGetUniformuiv; +GLAPI PFNGLGETUNIFORMUIVPROC glad_debug_glGetUniformuiv; +#define glGetUniformuiv glad_debug_glGetUniformuiv +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC)(GLuint program, GLuint color, const GLchar *name); +GLAPI PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation; +GLAPI PFNGLBINDFRAGDATALOCATIONPROC glad_debug_glBindFragDataLocation; +#define glBindFragDataLocation glad_debug_glBindFragDataLocation +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETFRAGDATALOCATIONPROC glad_glGetFragDataLocation; +GLAPI PFNGLGETFRAGDATALOCATIONPROC glad_debug_glGetFragDataLocation; +#define glGetFragDataLocation glad_debug_glGetFragDataLocation +typedef void (APIENTRYP PFNGLUNIFORM1UIPROC)(GLint location, GLuint v0); +GLAPI PFNGLUNIFORM1UIPROC glad_glUniform1ui; +GLAPI PFNGLUNIFORM1UIPROC glad_debug_glUniform1ui; +#define glUniform1ui glad_debug_glUniform1ui +typedef void (APIENTRYP PFNGLUNIFORM2UIPROC)(GLint location, GLuint v0, GLuint v1); +GLAPI PFNGLUNIFORM2UIPROC glad_glUniform2ui; +GLAPI PFNGLUNIFORM2UIPROC glad_debug_glUniform2ui; +#define glUniform2ui glad_debug_glUniform2ui +typedef void (APIENTRYP PFNGLUNIFORM3UIPROC)(GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI PFNGLUNIFORM3UIPROC glad_glUniform3ui; +GLAPI PFNGLUNIFORM3UIPROC glad_debug_glUniform3ui; +#define glUniform3ui glad_debug_glUniform3ui +typedef void (APIENTRYP PFNGLUNIFORM4UIPROC)(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI PFNGLUNIFORM4UIPROC glad_glUniform4ui; +GLAPI PFNGLUNIFORM4UIPROC glad_debug_glUniform4ui; +#define glUniform4ui glad_debug_glUniform4ui +typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM1UIVPROC glad_glUniform1uiv; +GLAPI PFNGLUNIFORM1UIVPROC glad_debug_glUniform1uiv; +#define glUniform1uiv glad_debug_glUniform1uiv +typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM2UIVPROC glad_glUniform2uiv; +GLAPI PFNGLUNIFORM2UIVPROC glad_debug_glUniform2uiv; +#define glUniform2uiv glad_debug_glUniform2uiv +typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM3UIVPROC glad_glUniform3uiv; +GLAPI PFNGLUNIFORM3UIVPROC glad_debug_glUniform3uiv; +#define glUniform3uiv glad_debug_glUniform3uiv +typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM4UIVPROC glad_glUniform4uiv; +GLAPI PFNGLUNIFORM4UIVPROC glad_debug_glUniform4uiv; +#define glUniform4uiv glad_debug_glUniform4uiv +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC)(GLenum target, GLenum pname, const GLint *params); +GLAPI PFNGLTEXPARAMETERIIVPROC glad_glTexParameterIiv; +GLAPI PFNGLTEXPARAMETERIIVPROC glad_debug_glTexParameterIiv; +#define glTexParameterIiv glad_debug_glTexParameterIiv +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC)(GLenum target, GLenum pname, const GLuint *params); +GLAPI PFNGLTEXPARAMETERIUIVPROC glad_glTexParameterIuiv; +GLAPI PFNGLTEXPARAMETERIUIVPROC glad_debug_glTexParameterIuiv; +#define glTexParameterIuiv glad_debug_glTexParameterIuiv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXPARAMETERIIVPROC glad_glGetTexParameterIiv; +GLAPI PFNGLGETTEXPARAMETERIIVPROC glad_debug_glGetTexParameterIiv; +#define glGetTexParameterIiv glad_debug_glGetTexParameterIiv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC)(GLenum target, GLenum pname, GLuint *params); +GLAPI PFNGLGETTEXPARAMETERIUIVPROC glad_glGetTexParameterIuiv; +GLAPI PFNGLGETTEXPARAMETERIUIVPROC glad_debug_glGetTexParameterIuiv; +#define glGetTexParameterIuiv glad_debug_glGetTexParameterIuiv +typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC)(GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI PFNGLCLEARBUFFERIVPROC glad_glClearBufferiv; +GLAPI PFNGLCLEARBUFFERIVPROC glad_debug_glClearBufferiv; +#define glClearBufferiv glad_debug_glClearBufferiv +typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC)(GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI PFNGLCLEARBUFFERUIVPROC glad_glClearBufferuiv; +GLAPI PFNGLCLEARBUFFERUIVPROC glad_debug_glClearBufferuiv; +#define glClearBufferuiv glad_debug_glClearBufferuiv +typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC)(GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI PFNGLCLEARBUFFERFVPROC glad_glClearBufferfv; +GLAPI PFNGLCLEARBUFFERFVPROC glad_debug_glClearBufferfv; +#define glClearBufferfv glad_debug_glClearBufferfv +typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC)(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI PFNGLCLEARBUFFERFIPROC glad_glClearBufferfi; +GLAPI PFNGLCLEARBUFFERFIPROC glad_debug_glClearBufferfi; +#define glClearBufferfi glad_debug_glClearBufferfi +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGIPROC)(GLenum name, GLuint index); +GLAPI PFNGLGETSTRINGIPROC glad_glGetStringi; +GLAPI PFNGLGETSTRINGIPROC glad_debug_glGetStringi; +#define glGetStringi glad_debug_glGetStringi +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC)(GLuint renderbuffer); +GLAPI PFNGLISRENDERBUFFERPROC glad_glIsRenderbuffer; +GLAPI PFNGLISRENDERBUFFERPROC glad_debug_glIsRenderbuffer; +#define glIsRenderbuffer glad_debug_glIsRenderbuffer +typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC)(GLenum target, GLuint renderbuffer); +GLAPI PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer; +GLAPI PFNGLBINDRENDERBUFFERPROC glad_debug_glBindRenderbuffer; +#define glBindRenderbuffer glad_debug_glBindRenderbuffer +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC)(GLsizei n, const GLuint *renderbuffers); +GLAPI PFNGLDELETERENDERBUFFERSPROC glad_glDeleteRenderbuffers; +GLAPI PFNGLDELETERENDERBUFFERSPROC glad_debug_glDeleteRenderbuffers; +#define glDeleteRenderbuffers glad_debug_glDeleteRenderbuffers +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC)(GLsizei n, GLuint *renderbuffers); +GLAPI PFNGLGENRENDERBUFFERSPROC glad_glGenRenderbuffers; +GLAPI PFNGLGENRENDERBUFFERSPROC glad_debug_glGenRenderbuffers; +#define glGenRenderbuffers glad_debug_glGenRenderbuffers +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI PFNGLRENDERBUFFERSTORAGEPROC glad_glRenderbufferStorage; +GLAPI PFNGLRENDERBUFFERSTORAGEPROC glad_debug_glRenderbufferStorage; +#define glRenderbufferStorage glad_debug_glRenderbufferStorage +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_glGetRenderbufferParameteriv; +GLAPI PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_debug_glGetRenderbufferParameteriv; +#define glGetRenderbufferParameteriv glad_debug_glGetRenderbufferParameteriv +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC)(GLuint framebuffer); +GLAPI PFNGLISFRAMEBUFFERPROC glad_glIsFramebuffer; +GLAPI PFNGLISFRAMEBUFFERPROC glad_debug_glIsFramebuffer; +#define glIsFramebuffer glad_debug_glIsFramebuffer +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC)(GLenum target, GLuint framebuffer); +GLAPI PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer; +GLAPI PFNGLBINDFRAMEBUFFERPROC glad_debug_glBindFramebuffer; +#define glBindFramebuffer glad_debug_glBindFramebuffer +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC)(GLsizei n, const GLuint *framebuffers); +GLAPI PFNGLDELETEFRAMEBUFFERSPROC glad_glDeleteFramebuffers; +GLAPI PFNGLDELETEFRAMEBUFFERSPROC glad_debug_glDeleteFramebuffers; +#define glDeleteFramebuffers glad_debug_glDeleteFramebuffers +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC)(GLsizei n, GLuint *framebuffers); +GLAPI PFNGLGENFRAMEBUFFERSPROC glad_glGenFramebuffers; +GLAPI PFNGLGENFRAMEBUFFERSPROC glad_debug_glGenFramebuffers; +#define glGenFramebuffers glad_debug_glGenFramebuffers +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC)(GLenum target); +GLAPI PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_glCheckFramebufferStatus; +GLAPI PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_debug_glCheckFramebufferStatus; +#define glCheckFramebufferStatus glad_debug_glCheckFramebufferStatus +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTURE1DPROC glad_glFramebufferTexture1D; +GLAPI PFNGLFRAMEBUFFERTEXTURE1DPROC glad_debug_glFramebufferTexture1D; +#define glFramebufferTexture1D glad_debug_glFramebufferTexture1D +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTURE2DPROC glad_glFramebufferTexture2D; +GLAPI PFNGLFRAMEBUFFERTEXTURE2DPROC glad_debug_glFramebufferTexture2D; +#define glFramebufferTexture2D glad_debug_glFramebufferTexture2D +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI PFNGLFRAMEBUFFERTEXTURE3DPROC glad_glFramebufferTexture3D; +GLAPI PFNGLFRAMEBUFFERTEXTURE3DPROC glad_debug_glFramebufferTexture3D; +#define glFramebufferTexture3D glad_debug_glFramebufferTexture3D +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_glFramebufferRenderbuffer; +GLAPI PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_debug_glFramebufferRenderbuffer; +#define glFramebufferRenderbuffer glad_debug_glFramebufferRenderbuffer +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)(GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetFramebufferAttachmentParameteriv; +GLAPI PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_debug_glGetFramebufferAttachmentParameteriv; +#define glGetFramebufferAttachmentParameteriv glad_debug_glGetFramebufferAttachmentParameteriv +typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC)(GLenum target); +GLAPI PFNGLGENERATEMIPMAPPROC glad_glGenerateMipmap; +GLAPI PFNGLGENERATEMIPMAPPROC glad_debug_glGenerateMipmap; +#define glGenerateMipmap glad_debug_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; +GLAPI PFNGLBLITFRAMEBUFFERPROC glad_debug_glBlitFramebuffer; +#define glBlitFramebuffer glad_debug_glBlitFramebuffer +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glRenderbufferStorageMultisample; +GLAPI PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_debug_glRenderbufferStorageMultisample; +#define glRenderbufferStorageMultisample glad_debug_glRenderbufferStorageMultisample +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_glFramebufferTextureLayer; +GLAPI PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_debug_glFramebufferTextureLayer; +#define glFramebufferTextureLayer glad_debug_glFramebufferTextureLayer +typedef void * (APIENTRYP PFNGLMAPBUFFERRANGEPROC)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI PFNGLMAPBUFFERRANGEPROC glad_glMapBufferRange; +GLAPI PFNGLMAPBUFFERRANGEPROC glad_debug_glMapBufferRange; +#define glMapBufferRange glad_debug_glMapBufferRange +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC)(GLenum target, GLintptr offset, GLsizeiptr length); +GLAPI PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_glFlushMappedBufferRange; +GLAPI PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_debug_glFlushMappedBufferRange; +#define glFlushMappedBufferRange glad_debug_glFlushMappedBufferRange +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC)(GLuint array); +GLAPI PFNGLBINDVERTEXARRAYPROC glad_glBindVertexArray; +GLAPI PFNGLBINDVERTEXARRAYPROC glad_debug_glBindVertexArray; +#define glBindVertexArray glad_debug_glBindVertexArray +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC)(GLsizei n, const GLuint *arrays); +GLAPI PFNGLDELETEVERTEXARRAYSPROC glad_glDeleteVertexArrays; +GLAPI PFNGLDELETEVERTEXARRAYSPROC glad_debug_glDeleteVertexArrays; +#define glDeleteVertexArrays glad_debug_glDeleteVertexArrays +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC)(GLsizei n, GLuint *arrays); +GLAPI PFNGLGENVERTEXARRAYSPROC glad_glGenVertexArrays; +GLAPI PFNGLGENVERTEXARRAYSPROC glad_debug_glGenVertexArrays; +#define glGenVertexArrays glad_debug_glGenVertexArrays +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC)(GLuint array); +GLAPI PFNGLISVERTEXARRAYPROC glad_glIsVertexArray; +GLAPI PFNGLISVERTEXARRAYPROC glad_debug_glIsVertexArray; +#define glIsVertexArray glad_debug_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; +GLAPI PFNGLDRAWARRAYSINSTANCEDPROC glad_debug_glDrawArraysInstanced; +#define glDrawArraysInstanced glad_debug_glDrawArraysInstanced +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +GLAPI PFNGLDRAWELEMENTSINSTANCEDPROC glad_glDrawElementsInstanced; +GLAPI PFNGLDRAWELEMENTSINSTANCEDPROC glad_debug_glDrawElementsInstanced; +#define glDrawElementsInstanced glad_debug_glDrawElementsInstanced +typedef void (APIENTRYP PFNGLTEXBUFFERPROC)(GLenum target, GLenum internalformat, GLuint buffer); +GLAPI PFNGLTEXBUFFERPROC glad_glTexBuffer; +GLAPI PFNGLTEXBUFFERPROC glad_debug_glTexBuffer; +#define glTexBuffer glad_debug_glTexBuffer +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC)(GLuint index); +GLAPI PFNGLPRIMITIVERESTARTINDEXPROC glad_glPrimitiveRestartIndex; +GLAPI PFNGLPRIMITIVERESTARTINDEXPROC glad_debug_glPrimitiveRestartIndex; +#define glPrimitiveRestartIndex glad_debug_glPrimitiveRestartIndex +typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI PFNGLCOPYBUFFERSUBDATAPROC glad_glCopyBufferSubData; +GLAPI PFNGLCOPYBUFFERSUBDATAPROC glad_debug_glCopyBufferSubData; +#define glCopyBufferSubData glad_debug_glCopyBufferSubData +typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC)(GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +GLAPI PFNGLGETUNIFORMINDICESPROC glad_glGetUniformIndices; +GLAPI PFNGLGETUNIFORMINDICESPROC glad_debug_glGetUniformIndices; +#define glGetUniformIndices glad_debug_glGetUniformIndices +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC)(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +GLAPI PFNGLGETACTIVEUNIFORMSIVPROC glad_glGetActiveUniformsiv; +GLAPI PFNGLGETACTIVEUNIFORMSIVPROC glad_debug_glGetActiveUniformsiv; +#define glGetActiveUniformsiv glad_debug_glGetActiveUniformsiv +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC)(GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +GLAPI PFNGLGETACTIVEUNIFORMNAMEPROC glad_glGetActiveUniformName; +GLAPI PFNGLGETACTIVEUNIFORMNAMEPROC glad_debug_glGetActiveUniformName; +#define glGetActiveUniformName glad_debug_glGetActiveUniformName +typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC)(GLuint program, const GLchar *uniformBlockName); +GLAPI PFNGLGETUNIFORMBLOCKINDEXPROC glad_glGetUniformBlockIndex; +GLAPI PFNGLGETUNIFORMBLOCKINDEXPROC glad_debug_glGetUniformBlockIndex; +#define glGetUniformBlockIndex glad_debug_glGetUniformBlockIndex +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC)(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +GLAPI PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_glGetActiveUniformBlockiv; +GLAPI PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_debug_glGetActiveUniformBlockiv; +#define glGetActiveUniformBlockiv glad_debug_glGetActiveUniformBlockiv +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +GLAPI PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_glGetActiveUniformBlockName; +GLAPI PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_debug_glGetActiveUniformBlockName; +#define glGetActiveUniformBlockName glad_debug_glGetActiveUniformBlockName +typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC)(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +GLAPI PFNGLUNIFORMBLOCKBINDINGPROC glad_glUniformBlockBinding; +GLAPI PFNGLUNIFORMBLOCKBINDINGPROC glad_debug_glUniformBlockBinding; +#define glUniformBlockBinding glad_debug_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; +GLAPI PFNGLDRAWELEMENTSBASEVERTEXPROC glad_debug_glDrawElementsBaseVertex; +#define glDrawElementsBaseVertex glad_debug_glDrawElementsBaseVertex +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_glDrawRangeElementsBaseVertex; +GLAPI PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_debug_glDrawRangeElementsBaseVertex; +#define glDrawRangeElementsBaseVertex glad_debug_glDrawRangeElementsBaseVertex +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GLAPI PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_glDrawElementsInstancedBaseVertex; +GLAPI PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_debug_glDrawElementsInstancedBaseVertex; +#define glDrawElementsInstancedBaseVertex glad_debug_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; +GLAPI PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_debug_glMultiDrawElementsBaseVertex; +#define glMultiDrawElementsBaseVertex glad_debug_glMultiDrawElementsBaseVertex +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC)(GLenum mode); +GLAPI PFNGLPROVOKINGVERTEXPROC glad_glProvokingVertex; +GLAPI PFNGLPROVOKINGVERTEXPROC glad_debug_glProvokingVertex; +#define glProvokingVertex glad_debug_glProvokingVertex +typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC)(GLenum condition, GLbitfield flags); +GLAPI PFNGLFENCESYNCPROC glad_glFenceSync; +GLAPI PFNGLFENCESYNCPROC glad_debug_glFenceSync; +#define glFenceSync glad_debug_glFenceSync +typedef GLboolean (APIENTRYP PFNGLISSYNCPROC)(GLsync sync); +GLAPI PFNGLISSYNCPROC glad_glIsSync; +GLAPI PFNGLISSYNCPROC glad_debug_glIsSync; +#define glIsSync glad_debug_glIsSync +typedef void (APIENTRYP PFNGLDELETESYNCPROC)(GLsync sync); +GLAPI PFNGLDELETESYNCPROC glad_glDeleteSync; +GLAPI PFNGLDELETESYNCPROC glad_debug_glDeleteSync; +#define glDeleteSync glad_debug_glDeleteSync +typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC)(GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI PFNGLCLIENTWAITSYNCPROC glad_glClientWaitSync; +GLAPI PFNGLCLIENTWAITSYNCPROC glad_debug_glClientWaitSync; +#define glClientWaitSync glad_debug_glClientWaitSync +typedef void (APIENTRYP PFNGLWAITSYNCPROC)(GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI PFNGLWAITSYNCPROC glad_glWaitSync; +GLAPI PFNGLWAITSYNCPROC glad_debug_glWaitSync; +#define glWaitSync glad_debug_glWaitSync +typedef void (APIENTRYP PFNGLGETINTEGER64VPROC)(GLenum pname, GLint64 *data); +GLAPI PFNGLGETINTEGER64VPROC glad_glGetInteger64v; +GLAPI PFNGLGETINTEGER64VPROC glad_debug_glGetInteger64v; +#define glGetInteger64v glad_debug_glGetInteger64v +typedef void (APIENTRYP PFNGLGETSYNCIVPROC)(GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI PFNGLGETSYNCIVPROC glad_glGetSynciv; +GLAPI PFNGLGETSYNCIVPROC glad_debug_glGetSynciv; +#define glGetSynciv glad_debug_glGetSynciv +typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC)(GLenum target, GLuint index, GLint64 *data); +GLAPI PFNGLGETINTEGER64I_VPROC glad_glGetInteger64i_v; +GLAPI PFNGLGETINTEGER64I_VPROC glad_debug_glGetInteger64i_v; +#define glGetInteger64i_v glad_debug_glGetInteger64i_v +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC)(GLenum target, GLenum pname, GLint64 *params); +GLAPI PFNGLGETBUFFERPARAMETERI64VPROC glad_glGetBufferParameteri64v; +GLAPI PFNGLGETBUFFERPARAMETERI64VPROC glad_debug_glGetBufferParameteri64v; +#define glGetBufferParameteri64v glad_debug_glGetBufferParameteri64v +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC)(GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTUREPROC glad_glFramebufferTexture; +GLAPI PFNGLFRAMEBUFFERTEXTUREPROC glad_debug_glFramebufferTexture; +#define glFramebufferTexture glad_debug_glFramebufferTexture +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_glTexImage2DMultisample; +GLAPI PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_debug_glTexImage2DMultisample; +#define glTexImage2DMultisample glad_debug_glTexImage2DMultisample +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_glTexImage3DMultisample; +GLAPI PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_debug_glTexImage3DMultisample; +#define glTexImage3DMultisample glad_debug_glTexImage3DMultisample +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC)(GLenum pname, GLuint index, GLfloat *val); +GLAPI PFNGLGETMULTISAMPLEFVPROC glad_glGetMultisamplefv; +GLAPI PFNGLGETMULTISAMPLEFVPROC glad_debug_glGetMultisamplefv; +#define glGetMultisamplefv glad_debug_glGetMultisamplefv +typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC)(GLuint maskNumber, GLbitfield mask); +GLAPI PFNGLSAMPLEMASKIPROC glad_glSampleMaski; +GLAPI PFNGLSAMPLEMASKIPROC glad_debug_glSampleMaski; +#define glSampleMaski glad_debug_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; +GLAPI PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_debug_glBindFragDataLocationIndexed; +#define glBindFragDataLocationIndexed glad_debug_glBindFragDataLocationIndexed +typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETFRAGDATAINDEXPROC glad_glGetFragDataIndex; +GLAPI PFNGLGETFRAGDATAINDEXPROC glad_debug_glGetFragDataIndex; +#define glGetFragDataIndex glad_debug_glGetFragDataIndex +typedef void (APIENTRYP PFNGLGENSAMPLERSPROC)(GLsizei count, GLuint *samplers); +GLAPI PFNGLGENSAMPLERSPROC glad_glGenSamplers; +GLAPI PFNGLGENSAMPLERSPROC glad_debug_glGenSamplers; +#define glGenSamplers glad_debug_glGenSamplers +typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC)(GLsizei count, const GLuint *samplers); +GLAPI PFNGLDELETESAMPLERSPROC glad_glDeleteSamplers; +GLAPI PFNGLDELETESAMPLERSPROC glad_debug_glDeleteSamplers; +#define glDeleteSamplers glad_debug_glDeleteSamplers +typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC)(GLuint sampler); +GLAPI PFNGLISSAMPLERPROC glad_glIsSampler; +GLAPI PFNGLISSAMPLERPROC glad_debug_glIsSampler; +#define glIsSampler glad_debug_glIsSampler +typedef void (APIENTRYP PFNGLBINDSAMPLERPROC)(GLuint unit, GLuint sampler); +GLAPI PFNGLBINDSAMPLERPROC glad_glBindSampler; +GLAPI PFNGLBINDSAMPLERPROC glad_debug_glBindSampler; +#define glBindSampler glad_debug_glBindSampler +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC)(GLuint sampler, GLenum pname, GLint param); +GLAPI PFNGLSAMPLERPARAMETERIPROC glad_glSamplerParameteri; +GLAPI PFNGLSAMPLERPARAMETERIPROC glad_debug_glSamplerParameteri; +#define glSamplerParameteri glad_debug_glSamplerParameteri +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC)(GLuint sampler, GLenum pname, const GLint *param); +GLAPI PFNGLSAMPLERPARAMETERIVPROC glad_glSamplerParameteriv; +GLAPI PFNGLSAMPLERPARAMETERIVPROC glad_debug_glSamplerParameteriv; +#define glSamplerParameteriv glad_debug_glSamplerParameteriv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC)(GLuint sampler, GLenum pname, GLfloat param); +GLAPI PFNGLSAMPLERPARAMETERFPROC glad_glSamplerParameterf; +GLAPI PFNGLSAMPLERPARAMETERFPROC glad_debug_glSamplerParameterf; +#define glSamplerParameterf glad_debug_glSamplerParameterf +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC)(GLuint sampler, GLenum pname, const GLfloat *param); +GLAPI PFNGLSAMPLERPARAMETERFVPROC glad_glSamplerParameterfv; +GLAPI PFNGLSAMPLERPARAMETERFVPROC glad_debug_glSamplerParameterfv; +#define glSamplerParameterfv glad_debug_glSamplerParameterfv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC)(GLuint sampler, GLenum pname, const GLint *param); +GLAPI PFNGLSAMPLERPARAMETERIIVPROC glad_glSamplerParameterIiv; +GLAPI PFNGLSAMPLERPARAMETERIIVPROC glad_debug_glSamplerParameterIiv; +#define glSamplerParameterIiv glad_debug_glSamplerParameterIiv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC)(GLuint sampler, GLenum pname, const GLuint *param); +GLAPI PFNGLSAMPLERPARAMETERIUIVPROC glad_glSamplerParameterIuiv; +GLAPI PFNGLSAMPLERPARAMETERIUIVPROC glad_debug_glSamplerParameterIuiv; +#define glSamplerParameterIuiv glad_debug_glSamplerParameterIuiv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC)(GLuint sampler, GLenum pname, GLint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIVPROC glad_glGetSamplerParameteriv; +GLAPI PFNGLGETSAMPLERPARAMETERIVPROC glad_debug_glGetSamplerParameteriv; +#define glGetSamplerParameteriv glad_debug_glGetSamplerParameteriv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC)(GLuint sampler, GLenum pname, GLint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIIVPROC glad_glGetSamplerParameterIiv; +GLAPI PFNGLGETSAMPLERPARAMETERIIVPROC glad_debug_glGetSamplerParameterIiv; +#define glGetSamplerParameterIiv glad_debug_glGetSamplerParameterIiv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC)(GLuint sampler, GLenum pname, GLfloat *params); +GLAPI PFNGLGETSAMPLERPARAMETERFVPROC glad_glGetSamplerParameterfv; +GLAPI PFNGLGETSAMPLERPARAMETERFVPROC glad_debug_glGetSamplerParameterfv; +#define glGetSamplerParameterfv glad_debug_glGetSamplerParameterfv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC)(GLuint sampler, GLenum pname, GLuint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIUIVPROC glad_glGetSamplerParameterIuiv; +GLAPI PFNGLGETSAMPLERPARAMETERIUIVPROC glad_debug_glGetSamplerParameterIuiv; +#define glGetSamplerParameterIuiv glad_debug_glGetSamplerParameterIuiv +typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC)(GLuint id, GLenum target); +GLAPI PFNGLQUERYCOUNTERPROC glad_glQueryCounter; +GLAPI PFNGLQUERYCOUNTERPROC glad_debug_glQueryCounter; +#define glQueryCounter glad_debug_glQueryCounter +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC)(GLuint id, GLenum pname, GLint64 *params); +GLAPI PFNGLGETQUERYOBJECTI64VPROC glad_glGetQueryObjecti64v; +GLAPI PFNGLGETQUERYOBJECTI64VPROC glad_debug_glGetQueryObjecti64v; +#define glGetQueryObjecti64v glad_debug_glGetQueryObjecti64v +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC)(GLuint id, GLenum pname, GLuint64 *params); +GLAPI PFNGLGETQUERYOBJECTUI64VPROC glad_glGetQueryObjectui64v; +GLAPI PFNGLGETQUERYOBJECTUI64VPROC glad_debug_glGetQueryObjectui64v; +#define glGetQueryObjectui64v glad_debug_glGetQueryObjectui64v +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC)(GLuint index, GLuint divisor); +GLAPI PFNGLVERTEXATTRIBDIVISORPROC glad_glVertexAttribDivisor; +GLAPI PFNGLVERTEXATTRIBDIVISORPROC glad_debug_glVertexAttribDivisor; +#define glVertexAttribDivisor glad_debug_glVertexAttribDivisor +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP1UIPROC glad_glVertexAttribP1ui; +GLAPI PFNGLVERTEXATTRIBP1UIPROC glad_debug_glVertexAttribP1ui; +#define glVertexAttribP1ui glad_debug_glVertexAttribP1ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP1UIVPROC glad_glVertexAttribP1uiv; +GLAPI PFNGLVERTEXATTRIBP1UIVPROC glad_debug_glVertexAttribP1uiv; +#define glVertexAttribP1uiv glad_debug_glVertexAttribP1uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP2UIPROC glad_glVertexAttribP2ui; +GLAPI PFNGLVERTEXATTRIBP2UIPROC glad_debug_glVertexAttribP2ui; +#define glVertexAttribP2ui glad_debug_glVertexAttribP2ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP2UIVPROC glad_glVertexAttribP2uiv; +GLAPI PFNGLVERTEXATTRIBP2UIVPROC glad_debug_glVertexAttribP2uiv; +#define glVertexAttribP2uiv glad_debug_glVertexAttribP2uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP3UIPROC glad_glVertexAttribP3ui; +GLAPI PFNGLVERTEXATTRIBP3UIPROC glad_debug_glVertexAttribP3ui; +#define glVertexAttribP3ui glad_debug_glVertexAttribP3ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP3UIVPROC glad_glVertexAttribP3uiv; +GLAPI PFNGLVERTEXATTRIBP3UIVPROC glad_debug_glVertexAttribP3uiv; +#define glVertexAttribP3uiv glad_debug_glVertexAttribP3uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP4UIPROC glad_glVertexAttribP4ui; +GLAPI PFNGLVERTEXATTRIBP4UIPROC glad_debug_glVertexAttribP4ui; +#define glVertexAttribP4ui glad_debug_glVertexAttribP4ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP4UIVPROC glad_glVertexAttribP4uiv; +GLAPI PFNGLVERTEXATTRIBP4UIVPROC glad_debug_glVertexAttribP4uiv; +#define glVertexAttribP4uiv glad_debug_glVertexAttribP4uiv +typedef void (APIENTRYP PFNGLVERTEXP2UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP2UIPROC glad_glVertexP2ui; +GLAPI PFNGLVERTEXP2UIPROC glad_debug_glVertexP2ui; +#define glVertexP2ui glad_debug_glVertexP2ui +typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP2UIVPROC glad_glVertexP2uiv; +GLAPI PFNGLVERTEXP2UIVPROC glad_debug_glVertexP2uiv; +#define glVertexP2uiv glad_debug_glVertexP2uiv +typedef void (APIENTRYP PFNGLVERTEXP3UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP3UIPROC glad_glVertexP3ui; +GLAPI PFNGLVERTEXP3UIPROC glad_debug_glVertexP3ui; +#define glVertexP3ui glad_debug_glVertexP3ui +typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP3UIVPROC glad_glVertexP3uiv; +GLAPI PFNGLVERTEXP3UIVPROC glad_debug_glVertexP3uiv; +#define glVertexP3uiv glad_debug_glVertexP3uiv +typedef void (APIENTRYP PFNGLVERTEXP4UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP4UIPROC glad_glVertexP4ui; +GLAPI PFNGLVERTEXP4UIPROC glad_debug_glVertexP4ui; +#define glVertexP4ui glad_debug_glVertexP4ui +typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP4UIVPROC glad_glVertexP4uiv; +GLAPI PFNGLVERTEXP4UIVPROC glad_debug_glVertexP4uiv; +#define glVertexP4uiv glad_debug_glVertexP4uiv +typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP1UIPROC glad_glTexCoordP1ui; +GLAPI PFNGLTEXCOORDP1UIPROC glad_debug_glTexCoordP1ui; +#define glTexCoordP1ui glad_debug_glTexCoordP1ui +typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP1UIVPROC glad_glTexCoordP1uiv; +GLAPI PFNGLTEXCOORDP1UIVPROC glad_debug_glTexCoordP1uiv; +#define glTexCoordP1uiv glad_debug_glTexCoordP1uiv +typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP2UIPROC glad_glTexCoordP2ui; +GLAPI PFNGLTEXCOORDP2UIPROC glad_debug_glTexCoordP2ui; +#define glTexCoordP2ui glad_debug_glTexCoordP2ui +typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP2UIVPROC glad_glTexCoordP2uiv; +GLAPI PFNGLTEXCOORDP2UIVPROC glad_debug_glTexCoordP2uiv; +#define glTexCoordP2uiv glad_debug_glTexCoordP2uiv +typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP3UIPROC glad_glTexCoordP3ui; +GLAPI PFNGLTEXCOORDP3UIPROC glad_debug_glTexCoordP3ui; +#define glTexCoordP3ui glad_debug_glTexCoordP3ui +typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP3UIVPROC glad_glTexCoordP3uiv; +GLAPI PFNGLTEXCOORDP3UIVPROC glad_debug_glTexCoordP3uiv; +#define glTexCoordP3uiv glad_debug_glTexCoordP3uiv +typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP4UIPROC glad_glTexCoordP4ui; +GLAPI PFNGLTEXCOORDP4UIPROC glad_debug_glTexCoordP4ui; +#define glTexCoordP4ui glad_debug_glTexCoordP4ui +typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP4UIVPROC glad_glTexCoordP4uiv; +GLAPI PFNGLTEXCOORDP4UIVPROC glad_debug_glTexCoordP4uiv; +#define glTexCoordP4uiv glad_debug_glTexCoordP4uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP1UIPROC glad_glMultiTexCoordP1ui; +GLAPI PFNGLMULTITEXCOORDP1UIPROC glad_debug_glMultiTexCoordP1ui; +#define glMultiTexCoordP1ui glad_debug_glMultiTexCoordP1ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP1UIVPROC glad_glMultiTexCoordP1uiv; +GLAPI PFNGLMULTITEXCOORDP1UIVPROC glad_debug_glMultiTexCoordP1uiv; +#define glMultiTexCoordP1uiv glad_debug_glMultiTexCoordP1uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP2UIPROC glad_glMultiTexCoordP2ui; +GLAPI PFNGLMULTITEXCOORDP2UIPROC glad_debug_glMultiTexCoordP2ui; +#define glMultiTexCoordP2ui glad_debug_glMultiTexCoordP2ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP2UIVPROC glad_glMultiTexCoordP2uiv; +GLAPI PFNGLMULTITEXCOORDP2UIVPROC glad_debug_glMultiTexCoordP2uiv; +#define glMultiTexCoordP2uiv glad_debug_glMultiTexCoordP2uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP3UIPROC glad_glMultiTexCoordP3ui; +GLAPI PFNGLMULTITEXCOORDP3UIPROC glad_debug_glMultiTexCoordP3ui; +#define glMultiTexCoordP3ui glad_debug_glMultiTexCoordP3ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP3UIVPROC glad_glMultiTexCoordP3uiv; +GLAPI PFNGLMULTITEXCOORDP3UIVPROC glad_debug_glMultiTexCoordP3uiv; +#define glMultiTexCoordP3uiv glad_debug_glMultiTexCoordP3uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP4UIPROC glad_glMultiTexCoordP4ui; +GLAPI PFNGLMULTITEXCOORDP4UIPROC glad_debug_glMultiTexCoordP4ui; +#define glMultiTexCoordP4ui glad_debug_glMultiTexCoordP4ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP4UIVPROC glad_glMultiTexCoordP4uiv; +GLAPI PFNGLMULTITEXCOORDP4UIVPROC glad_debug_glMultiTexCoordP4uiv; +#define glMultiTexCoordP4uiv glad_debug_glMultiTexCoordP4uiv +typedef void (APIENTRYP PFNGLNORMALP3UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLNORMALP3UIPROC glad_glNormalP3ui; +GLAPI PFNGLNORMALP3UIPROC glad_debug_glNormalP3ui; +#define glNormalP3ui glad_debug_glNormalP3ui +typedef void (APIENTRYP PFNGLNORMALP3UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLNORMALP3UIVPROC glad_glNormalP3uiv; +GLAPI PFNGLNORMALP3UIVPROC glad_debug_glNormalP3uiv; +#define glNormalP3uiv glad_debug_glNormalP3uiv +typedef void (APIENTRYP PFNGLCOLORP3UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLCOLORP3UIPROC glad_glColorP3ui; +GLAPI PFNGLCOLORP3UIPROC glad_debug_glColorP3ui; +#define glColorP3ui glad_debug_glColorP3ui +typedef void (APIENTRYP PFNGLCOLORP3UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLCOLORP3UIVPROC glad_glColorP3uiv; +GLAPI PFNGLCOLORP3UIVPROC glad_debug_glColorP3uiv; +#define glColorP3uiv glad_debug_glColorP3uiv +typedef void (APIENTRYP PFNGLCOLORP4UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLCOLORP4UIPROC glad_glColorP4ui; +GLAPI PFNGLCOLORP4UIPROC glad_debug_glColorP4ui; +#define glColorP4ui glad_debug_glColorP4ui +typedef void (APIENTRYP PFNGLCOLORP4UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLCOLORP4UIVPROC glad_glColorP4uiv; +GLAPI PFNGLCOLORP4UIVPROC glad_debug_glColorP4uiv; +#define glColorP4uiv glad_debug_glColorP4uiv +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLSECONDARYCOLORP3UIPROC glad_glSecondaryColorP3ui; +GLAPI PFNGLSECONDARYCOLORP3UIPROC glad_debug_glSecondaryColorP3ui; +#define glSecondaryColorP3ui glad_debug_glSecondaryColorP3ui +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLSECONDARYCOLORP3UIVPROC glad_glSecondaryColorP3uiv; +GLAPI PFNGLSECONDARYCOLORP3UIVPROC glad_debug_glSecondaryColorP3uiv; +#define glSecondaryColorP3uiv glad_debug_glSecondaryColorP3uiv +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/external/glad-debug/src/glad.c b/external/glad-debug/src/glad.c new file mode 100644 index 0000000..a368109 --- /dev/null +++ b/external/glad-debug/src/glad.c @@ -0,0 +1,3814 @@ +/* + + OpenGL loader generated by glad 0.1.33 on Sun Sep 6 15:11:36 2020. + + Language/Generator: C/C++ Debug + 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-debug" --spec="gl" --extensions="" + Online: + https://glad.dav1d.de/#profile=core&language=c-debug&specification=gl&loader=on&api=gl%3D3.3 +*/ + +#include +#include +#include +#include + +void _pre_call_callback_default(const char *name, void *funcptr, int len_args, ...) { + (void) name; + (void) funcptr; + (void) len_args; +} +void _post_call_callback_default(const char *name, void *funcptr, int len_args, ...) { + GLenum error_code; + + (void) funcptr; + (void) len_args; + + error_code = glad_glGetError(); + + if (error_code != GL_NO_ERROR) { + fprintf(stderr, "ERROR %d in %s\n", error_code, name); + } +} + +static GLADcallback _pre_call_callback = _pre_call_callback_default; +void glad_set_pre_callback(GLADcallback cb) { + _pre_call_callback = cb; +} + +static GLADcallback _post_call_callback = _post_call_callback_default; +void glad_set_post_callback(GLADcallback cb) { + _post_call_callback = cb; +} + +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 { + unsigned 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 < (unsigned)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; +void APIENTRY glad_debug_impl_glActiveTexture(GLenum arg0) { + _pre_call_callback("glActiveTexture", (void*)glActiveTexture, 1, arg0); + glad_glActiveTexture(arg0); + _post_call_callback("glActiveTexture", (void*)glActiveTexture, 1, arg0); + +} +PFNGLACTIVETEXTUREPROC glad_debug_glActiveTexture = glad_debug_impl_glActiveTexture; +PFNGLATTACHSHADERPROC glad_glAttachShader; +void APIENTRY glad_debug_impl_glAttachShader(GLuint arg0, GLuint arg1) { + _pre_call_callback("glAttachShader", (void*)glAttachShader, 2, arg0, arg1); + glad_glAttachShader(arg0, arg1); + _post_call_callback("glAttachShader", (void*)glAttachShader, 2, arg0, arg1); + +} +PFNGLATTACHSHADERPROC glad_debug_glAttachShader = glad_debug_impl_glAttachShader; +PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender; +void APIENTRY glad_debug_impl_glBeginConditionalRender(GLuint arg0, GLenum arg1) { + _pre_call_callback("glBeginConditionalRender", (void*)glBeginConditionalRender, 2, arg0, arg1); + glad_glBeginConditionalRender(arg0, arg1); + _post_call_callback("glBeginConditionalRender", (void*)glBeginConditionalRender, 2, arg0, arg1); + +} +PFNGLBEGINCONDITIONALRENDERPROC glad_debug_glBeginConditionalRender = glad_debug_impl_glBeginConditionalRender; +PFNGLBEGINQUERYPROC glad_glBeginQuery; +void APIENTRY glad_debug_impl_glBeginQuery(GLenum arg0, GLuint arg1) { + _pre_call_callback("glBeginQuery", (void*)glBeginQuery, 2, arg0, arg1); + glad_glBeginQuery(arg0, arg1); + _post_call_callback("glBeginQuery", (void*)glBeginQuery, 2, arg0, arg1); + +} +PFNGLBEGINQUERYPROC glad_debug_glBeginQuery = glad_debug_impl_glBeginQuery; +PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback; +void APIENTRY glad_debug_impl_glBeginTransformFeedback(GLenum arg0) { + _pre_call_callback("glBeginTransformFeedback", (void*)glBeginTransformFeedback, 1, arg0); + glad_glBeginTransformFeedback(arg0); + _post_call_callback("glBeginTransformFeedback", (void*)glBeginTransformFeedback, 1, arg0); + +} +PFNGLBEGINTRANSFORMFEEDBACKPROC glad_debug_glBeginTransformFeedback = glad_debug_impl_glBeginTransformFeedback; +PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation; +void APIENTRY glad_debug_impl_glBindAttribLocation(GLuint arg0, GLuint arg1, const GLchar * arg2) { + _pre_call_callback("glBindAttribLocation", (void*)glBindAttribLocation, 3, arg0, arg1, arg2); + glad_glBindAttribLocation(arg0, arg1, arg2); + _post_call_callback("glBindAttribLocation", (void*)glBindAttribLocation, 3, arg0, arg1, arg2); + +} +PFNGLBINDATTRIBLOCATIONPROC glad_debug_glBindAttribLocation = glad_debug_impl_glBindAttribLocation; +PFNGLBINDBUFFERPROC glad_glBindBuffer; +void APIENTRY glad_debug_impl_glBindBuffer(GLenum arg0, GLuint arg1) { + _pre_call_callback("glBindBuffer", (void*)glBindBuffer, 2, arg0, arg1); + glad_glBindBuffer(arg0, arg1); + _post_call_callback("glBindBuffer", (void*)glBindBuffer, 2, arg0, arg1); + +} +PFNGLBINDBUFFERPROC glad_debug_glBindBuffer = glad_debug_impl_glBindBuffer; +PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase; +void APIENTRY glad_debug_impl_glBindBufferBase(GLenum arg0, GLuint arg1, GLuint arg2) { + _pre_call_callback("glBindBufferBase", (void*)glBindBufferBase, 3, arg0, arg1, arg2); + glad_glBindBufferBase(arg0, arg1, arg2); + _post_call_callback("glBindBufferBase", (void*)glBindBufferBase, 3, arg0, arg1, arg2); + +} +PFNGLBINDBUFFERBASEPROC glad_debug_glBindBufferBase = glad_debug_impl_glBindBufferBase; +PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange; +void APIENTRY glad_debug_impl_glBindBufferRange(GLenum arg0, GLuint arg1, GLuint arg2, GLintptr arg3, GLsizeiptr arg4) { + _pre_call_callback("glBindBufferRange", (void*)glBindBufferRange, 5, arg0, arg1, arg2, arg3, arg4); + glad_glBindBufferRange(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glBindBufferRange", (void*)glBindBufferRange, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLBINDBUFFERRANGEPROC glad_debug_glBindBufferRange = glad_debug_impl_glBindBufferRange; +PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation; +void APIENTRY glad_debug_impl_glBindFragDataLocation(GLuint arg0, GLuint arg1, const GLchar * arg2) { + _pre_call_callback("glBindFragDataLocation", (void*)glBindFragDataLocation, 3, arg0, arg1, arg2); + glad_glBindFragDataLocation(arg0, arg1, arg2); + _post_call_callback("glBindFragDataLocation", (void*)glBindFragDataLocation, 3, arg0, arg1, arg2); + +} +PFNGLBINDFRAGDATALOCATIONPROC glad_debug_glBindFragDataLocation = glad_debug_impl_glBindFragDataLocation; +PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_glBindFragDataLocationIndexed; +void APIENTRY glad_debug_impl_glBindFragDataLocationIndexed(GLuint arg0, GLuint arg1, GLuint arg2, const GLchar * arg3) { + _pre_call_callback("glBindFragDataLocationIndexed", (void*)glBindFragDataLocationIndexed, 4, arg0, arg1, arg2, arg3); + glad_glBindFragDataLocationIndexed(arg0, arg1, arg2, arg3); + _post_call_callback("glBindFragDataLocationIndexed", (void*)glBindFragDataLocationIndexed, 4, arg0, arg1, arg2, arg3); + +} +PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_debug_glBindFragDataLocationIndexed = glad_debug_impl_glBindFragDataLocationIndexed; +PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer; +void APIENTRY glad_debug_impl_glBindFramebuffer(GLenum arg0, GLuint arg1) { + _pre_call_callback("glBindFramebuffer", (void*)glBindFramebuffer, 2, arg0, arg1); + glad_glBindFramebuffer(arg0, arg1); + _post_call_callback("glBindFramebuffer", (void*)glBindFramebuffer, 2, arg0, arg1); + +} +PFNGLBINDFRAMEBUFFERPROC glad_debug_glBindFramebuffer = glad_debug_impl_glBindFramebuffer; +PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer; +void APIENTRY glad_debug_impl_glBindRenderbuffer(GLenum arg0, GLuint arg1) { + _pre_call_callback("glBindRenderbuffer", (void*)glBindRenderbuffer, 2, arg0, arg1); + glad_glBindRenderbuffer(arg0, arg1); + _post_call_callback("glBindRenderbuffer", (void*)glBindRenderbuffer, 2, arg0, arg1); + +} +PFNGLBINDRENDERBUFFERPROC glad_debug_glBindRenderbuffer = glad_debug_impl_glBindRenderbuffer; +PFNGLBINDSAMPLERPROC glad_glBindSampler; +void APIENTRY glad_debug_impl_glBindSampler(GLuint arg0, GLuint arg1) { + _pre_call_callback("glBindSampler", (void*)glBindSampler, 2, arg0, arg1); + glad_glBindSampler(arg0, arg1); + _post_call_callback("glBindSampler", (void*)glBindSampler, 2, arg0, arg1); + +} +PFNGLBINDSAMPLERPROC glad_debug_glBindSampler = glad_debug_impl_glBindSampler; +PFNGLBINDTEXTUREPROC glad_glBindTexture; +void APIENTRY glad_debug_impl_glBindTexture(GLenum arg0, GLuint arg1) { + _pre_call_callback("glBindTexture", (void*)glBindTexture, 2, arg0, arg1); + glad_glBindTexture(arg0, arg1); + _post_call_callback("glBindTexture", (void*)glBindTexture, 2, arg0, arg1); + +} +PFNGLBINDTEXTUREPROC glad_debug_glBindTexture = glad_debug_impl_glBindTexture; +PFNGLBINDVERTEXARRAYPROC glad_glBindVertexArray; +void APIENTRY glad_debug_impl_glBindVertexArray(GLuint arg0) { + _pre_call_callback("glBindVertexArray", (void*)glBindVertexArray, 1, arg0); + glad_glBindVertexArray(arg0); + _post_call_callback("glBindVertexArray", (void*)glBindVertexArray, 1, arg0); + +} +PFNGLBINDVERTEXARRAYPROC glad_debug_glBindVertexArray = glad_debug_impl_glBindVertexArray; +PFNGLBLENDCOLORPROC glad_glBlendColor; +void APIENTRY glad_debug_impl_glBlendColor(GLfloat arg0, GLfloat arg1, GLfloat arg2, GLfloat arg3) { + _pre_call_callback("glBlendColor", (void*)glBlendColor, 4, arg0, arg1, arg2, arg3); + glad_glBlendColor(arg0, arg1, arg2, arg3); + _post_call_callback("glBlendColor", (void*)glBlendColor, 4, arg0, arg1, arg2, arg3); + +} +PFNGLBLENDCOLORPROC glad_debug_glBlendColor = glad_debug_impl_glBlendColor; +PFNGLBLENDEQUATIONPROC glad_glBlendEquation; +void APIENTRY glad_debug_impl_glBlendEquation(GLenum arg0) { + _pre_call_callback("glBlendEquation", (void*)glBlendEquation, 1, arg0); + glad_glBlendEquation(arg0); + _post_call_callback("glBlendEquation", (void*)glBlendEquation, 1, arg0); + +} +PFNGLBLENDEQUATIONPROC glad_debug_glBlendEquation = glad_debug_impl_glBlendEquation; +PFNGLBLENDEQUATIONSEPARATEPROC glad_glBlendEquationSeparate; +void APIENTRY glad_debug_impl_glBlendEquationSeparate(GLenum arg0, GLenum arg1) { + _pre_call_callback("glBlendEquationSeparate", (void*)glBlendEquationSeparate, 2, arg0, arg1); + glad_glBlendEquationSeparate(arg0, arg1); + _post_call_callback("glBlendEquationSeparate", (void*)glBlendEquationSeparate, 2, arg0, arg1); + +} +PFNGLBLENDEQUATIONSEPARATEPROC glad_debug_glBlendEquationSeparate = glad_debug_impl_glBlendEquationSeparate; +PFNGLBLENDFUNCPROC glad_glBlendFunc; +void APIENTRY glad_debug_impl_glBlendFunc(GLenum arg0, GLenum arg1) { + _pre_call_callback("glBlendFunc", (void*)glBlendFunc, 2, arg0, arg1); + glad_glBlendFunc(arg0, arg1); + _post_call_callback("glBlendFunc", (void*)glBlendFunc, 2, arg0, arg1); + +} +PFNGLBLENDFUNCPROC glad_debug_glBlendFunc = glad_debug_impl_glBlendFunc; +PFNGLBLENDFUNCSEPARATEPROC glad_glBlendFuncSeparate; +void APIENTRY glad_debug_impl_glBlendFuncSeparate(GLenum arg0, GLenum arg1, GLenum arg2, GLenum arg3) { + _pre_call_callback("glBlendFuncSeparate", (void*)glBlendFuncSeparate, 4, arg0, arg1, arg2, arg3); + glad_glBlendFuncSeparate(arg0, arg1, arg2, arg3); + _post_call_callback("glBlendFuncSeparate", (void*)glBlendFuncSeparate, 4, arg0, arg1, arg2, arg3); + +} +PFNGLBLENDFUNCSEPARATEPROC glad_debug_glBlendFuncSeparate = glad_debug_impl_glBlendFuncSeparate; +PFNGLBLITFRAMEBUFFERPROC glad_glBlitFramebuffer; +void APIENTRY glad_debug_impl_glBlitFramebuffer(GLint arg0, GLint arg1, GLint arg2, GLint arg3, GLint arg4, GLint arg5, GLint arg6, GLint arg7, GLbitfield arg8, GLenum arg9) { + _pre_call_callback("glBlitFramebuffer", (void*)glBlitFramebuffer, 10, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); + glad_glBlitFramebuffer(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); + _post_call_callback("glBlitFramebuffer", (void*)glBlitFramebuffer, 10, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); + +} +PFNGLBLITFRAMEBUFFERPROC glad_debug_glBlitFramebuffer = glad_debug_impl_glBlitFramebuffer; +PFNGLBUFFERDATAPROC glad_glBufferData; +void APIENTRY glad_debug_impl_glBufferData(GLenum arg0, GLsizeiptr arg1, const void * arg2, GLenum arg3) { + _pre_call_callback("glBufferData", (void*)glBufferData, 4, arg0, arg1, arg2, arg3); + glad_glBufferData(arg0, arg1, arg2, arg3); + _post_call_callback("glBufferData", (void*)glBufferData, 4, arg0, arg1, arg2, arg3); + +} +PFNGLBUFFERDATAPROC glad_debug_glBufferData = glad_debug_impl_glBufferData; +PFNGLBUFFERSUBDATAPROC glad_glBufferSubData; +void APIENTRY glad_debug_impl_glBufferSubData(GLenum arg0, GLintptr arg1, GLsizeiptr arg2, const void * arg3) { + _pre_call_callback("glBufferSubData", (void*)glBufferSubData, 4, arg0, arg1, arg2, arg3); + glad_glBufferSubData(arg0, arg1, arg2, arg3); + _post_call_callback("glBufferSubData", (void*)glBufferSubData, 4, arg0, arg1, arg2, arg3); + +} +PFNGLBUFFERSUBDATAPROC glad_debug_glBufferSubData = glad_debug_impl_glBufferSubData; +PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_glCheckFramebufferStatus; +GLenum APIENTRY glad_debug_impl_glCheckFramebufferStatus(GLenum arg0) { + GLenum ret; + _pre_call_callback("glCheckFramebufferStatus", (void*)glCheckFramebufferStatus, 1, arg0); + ret = glad_glCheckFramebufferStatus(arg0); + _post_call_callback("glCheckFramebufferStatus", (void*)glCheckFramebufferStatus, 1, arg0); + return ret; +} +PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_debug_glCheckFramebufferStatus = glad_debug_impl_glCheckFramebufferStatus; +PFNGLCLAMPCOLORPROC glad_glClampColor; +void APIENTRY glad_debug_impl_glClampColor(GLenum arg0, GLenum arg1) { + _pre_call_callback("glClampColor", (void*)glClampColor, 2, arg0, arg1); + glad_glClampColor(arg0, arg1); + _post_call_callback("glClampColor", (void*)glClampColor, 2, arg0, arg1); + +} +PFNGLCLAMPCOLORPROC glad_debug_glClampColor = glad_debug_impl_glClampColor; +PFNGLCLEARPROC glad_glClear; +void APIENTRY glad_debug_impl_glClear(GLbitfield arg0) { + _pre_call_callback("glClear", (void*)glClear, 1, arg0); + glad_glClear(arg0); + _post_call_callback("glClear", (void*)glClear, 1, arg0); + +} +PFNGLCLEARPROC glad_debug_glClear = glad_debug_impl_glClear; +PFNGLCLEARBUFFERFIPROC glad_glClearBufferfi; +void APIENTRY glad_debug_impl_glClearBufferfi(GLenum arg0, GLint arg1, GLfloat arg2, GLint arg3) { + _pre_call_callback("glClearBufferfi", (void*)glClearBufferfi, 4, arg0, arg1, arg2, arg3); + glad_glClearBufferfi(arg0, arg1, arg2, arg3); + _post_call_callback("glClearBufferfi", (void*)glClearBufferfi, 4, arg0, arg1, arg2, arg3); + +} +PFNGLCLEARBUFFERFIPROC glad_debug_glClearBufferfi = glad_debug_impl_glClearBufferfi; +PFNGLCLEARBUFFERFVPROC glad_glClearBufferfv; +void APIENTRY glad_debug_impl_glClearBufferfv(GLenum arg0, GLint arg1, const GLfloat * arg2) { + _pre_call_callback("glClearBufferfv", (void*)glClearBufferfv, 3, arg0, arg1, arg2); + glad_glClearBufferfv(arg0, arg1, arg2); + _post_call_callback("glClearBufferfv", (void*)glClearBufferfv, 3, arg0, arg1, arg2); + +} +PFNGLCLEARBUFFERFVPROC glad_debug_glClearBufferfv = glad_debug_impl_glClearBufferfv; +PFNGLCLEARBUFFERIVPROC glad_glClearBufferiv; +void APIENTRY glad_debug_impl_glClearBufferiv(GLenum arg0, GLint arg1, const GLint * arg2) { + _pre_call_callback("glClearBufferiv", (void*)glClearBufferiv, 3, arg0, arg1, arg2); + glad_glClearBufferiv(arg0, arg1, arg2); + _post_call_callback("glClearBufferiv", (void*)glClearBufferiv, 3, arg0, arg1, arg2); + +} +PFNGLCLEARBUFFERIVPROC glad_debug_glClearBufferiv = glad_debug_impl_glClearBufferiv; +PFNGLCLEARBUFFERUIVPROC glad_glClearBufferuiv; +void APIENTRY glad_debug_impl_glClearBufferuiv(GLenum arg0, GLint arg1, const GLuint * arg2) { + _pre_call_callback("glClearBufferuiv", (void*)glClearBufferuiv, 3, arg0, arg1, arg2); + glad_glClearBufferuiv(arg0, arg1, arg2); + _post_call_callback("glClearBufferuiv", (void*)glClearBufferuiv, 3, arg0, arg1, arg2); + +} +PFNGLCLEARBUFFERUIVPROC glad_debug_glClearBufferuiv = glad_debug_impl_glClearBufferuiv; +PFNGLCLEARCOLORPROC glad_glClearColor; +void APIENTRY glad_debug_impl_glClearColor(GLfloat arg0, GLfloat arg1, GLfloat arg2, GLfloat arg3) { + _pre_call_callback("glClearColor", (void*)glClearColor, 4, arg0, arg1, arg2, arg3); + glad_glClearColor(arg0, arg1, arg2, arg3); + _post_call_callback("glClearColor", (void*)glClearColor, 4, arg0, arg1, arg2, arg3); + +} +PFNGLCLEARCOLORPROC glad_debug_glClearColor = glad_debug_impl_glClearColor; +PFNGLCLEARDEPTHPROC glad_glClearDepth; +void APIENTRY glad_debug_impl_glClearDepth(GLdouble arg0) { + _pre_call_callback("glClearDepth", (void*)glClearDepth, 1, arg0); + glad_glClearDepth(arg0); + _post_call_callback("glClearDepth", (void*)glClearDepth, 1, arg0); + +} +PFNGLCLEARDEPTHPROC glad_debug_glClearDepth = glad_debug_impl_glClearDepth; +PFNGLCLEARSTENCILPROC glad_glClearStencil; +void APIENTRY glad_debug_impl_glClearStencil(GLint arg0) { + _pre_call_callback("glClearStencil", (void*)glClearStencil, 1, arg0); + glad_glClearStencil(arg0); + _post_call_callback("glClearStencil", (void*)glClearStencil, 1, arg0); + +} +PFNGLCLEARSTENCILPROC glad_debug_glClearStencil = glad_debug_impl_glClearStencil; +PFNGLCLIENTWAITSYNCPROC glad_glClientWaitSync; +GLenum APIENTRY glad_debug_impl_glClientWaitSync(GLsync arg0, GLbitfield arg1, GLuint64 arg2) { + GLenum ret; + _pre_call_callback("glClientWaitSync", (void*)glClientWaitSync, 3, arg0, arg1, arg2); + ret = glad_glClientWaitSync(arg0, arg1, arg2); + _post_call_callback("glClientWaitSync", (void*)glClientWaitSync, 3, arg0, arg1, arg2); + return ret; +} +PFNGLCLIENTWAITSYNCPROC glad_debug_glClientWaitSync = glad_debug_impl_glClientWaitSync; +PFNGLCOLORMASKPROC glad_glColorMask; +void APIENTRY glad_debug_impl_glColorMask(GLboolean arg0, GLboolean arg1, GLboolean arg2, GLboolean arg3) { + _pre_call_callback("glColorMask", (void*)glColorMask, 4, arg0, arg1, arg2, arg3); + glad_glColorMask(arg0, arg1, arg2, arg3); + _post_call_callback("glColorMask", (void*)glColorMask, 4, arg0, arg1, arg2, arg3); + +} +PFNGLCOLORMASKPROC glad_debug_glColorMask = glad_debug_impl_glColorMask; +PFNGLCOLORMASKIPROC glad_glColorMaski; +void APIENTRY glad_debug_impl_glColorMaski(GLuint arg0, GLboolean arg1, GLboolean arg2, GLboolean arg3, GLboolean arg4) { + _pre_call_callback("glColorMaski", (void*)glColorMaski, 5, arg0, arg1, arg2, arg3, arg4); + glad_glColorMaski(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glColorMaski", (void*)glColorMaski, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLCOLORMASKIPROC glad_debug_glColorMaski = glad_debug_impl_glColorMaski; +PFNGLCOLORP3UIPROC glad_glColorP3ui; +void APIENTRY glad_debug_impl_glColorP3ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glColorP3ui", (void*)glColorP3ui, 2, arg0, arg1); + glad_glColorP3ui(arg0, arg1); + _post_call_callback("glColorP3ui", (void*)glColorP3ui, 2, arg0, arg1); + +} +PFNGLCOLORP3UIPROC glad_debug_glColorP3ui = glad_debug_impl_glColorP3ui; +PFNGLCOLORP3UIVPROC glad_glColorP3uiv; +void APIENTRY glad_debug_impl_glColorP3uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glColorP3uiv", (void*)glColorP3uiv, 2, arg0, arg1); + glad_glColorP3uiv(arg0, arg1); + _post_call_callback("glColorP3uiv", (void*)glColorP3uiv, 2, arg0, arg1); + +} +PFNGLCOLORP3UIVPROC glad_debug_glColorP3uiv = glad_debug_impl_glColorP3uiv; +PFNGLCOLORP4UIPROC glad_glColorP4ui; +void APIENTRY glad_debug_impl_glColorP4ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glColorP4ui", (void*)glColorP4ui, 2, arg0, arg1); + glad_glColorP4ui(arg0, arg1); + _post_call_callback("glColorP4ui", (void*)glColorP4ui, 2, arg0, arg1); + +} +PFNGLCOLORP4UIPROC glad_debug_glColorP4ui = glad_debug_impl_glColorP4ui; +PFNGLCOLORP4UIVPROC glad_glColorP4uiv; +void APIENTRY glad_debug_impl_glColorP4uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glColorP4uiv", (void*)glColorP4uiv, 2, arg0, arg1); + glad_glColorP4uiv(arg0, arg1); + _post_call_callback("glColorP4uiv", (void*)glColorP4uiv, 2, arg0, arg1); + +} +PFNGLCOLORP4UIVPROC glad_debug_glColorP4uiv = glad_debug_impl_glColorP4uiv; +PFNGLCOMPILESHADERPROC glad_glCompileShader; +void APIENTRY glad_debug_impl_glCompileShader(GLuint arg0) { + _pre_call_callback("glCompileShader", (void*)glCompileShader, 1, arg0); + glad_glCompileShader(arg0); + _post_call_callback("glCompileShader", (void*)glCompileShader, 1, arg0); + +} +PFNGLCOMPILESHADERPROC glad_debug_glCompileShader = glad_debug_impl_glCompileShader; +PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_glCompressedTexImage1D; +void APIENTRY glad_debug_impl_glCompressedTexImage1D(GLenum arg0, GLint arg1, GLenum arg2, GLsizei arg3, GLint arg4, GLsizei arg5, const void * arg6) { + _pre_call_callback("glCompressedTexImage1D", (void*)glCompressedTexImage1D, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glCompressedTexImage1D(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glCompressedTexImage1D", (void*)glCompressedTexImage1D, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_debug_glCompressedTexImage1D = glad_debug_impl_glCompressedTexImage1D; +PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_glCompressedTexImage2D; +void APIENTRY glad_debug_impl_glCompressedTexImage2D(GLenum arg0, GLint arg1, GLenum arg2, GLsizei arg3, GLsizei arg4, GLint arg5, GLsizei arg6, const void * arg7) { + _pre_call_callback("glCompressedTexImage2D", (void*)glCompressedTexImage2D, 8, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + glad_glCompressedTexImage2D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + _post_call_callback("glCompressedTexImage2D", (void*)glCompressedTexImage2D, 8, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + +} +PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_debug_glCompressedTexImage2D = glad_debug_impl_glCompressedTexImage2D; +PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_glCompressedTexImage3D; +void APIENTRY glad_debug_impl_glCompressedTexImage3D(GLenum arg0, GLint arg1, GLenum arg2, GLsizei arg3, GLsizei arg4, GLsizei arg5, GLint arg6, GLsizei arg7, const void * arg8) { + _pre_call_callback("glCompressedTexImage3D", (void*)glCompressedTexImage3D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + glad_glCompressedTexImage3D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + _post_call_callback("glCompressedTexImage3D", (void*)glCompressedTexImage3D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + +} +PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_debug_glCompressedTexImage3D = glad_debug_impl_glCompressedTexImage3D; +PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_glCompressedTexSubImage1D; +void APIENTRY glad_debug_impl_glCompressedTexSubImage1D(GLenum arg0, GLint arg1, GLint arg2, GLsizei arg3, GLenum arg4, GLsizei arg5, const void * arg6) { + _pre_call_callback("glCompressedTexSubImage1D", (void*)glCompressedTexSubImage1D, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glCompressedTexSubImage1D(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glCompressedTexSubImage1D", (void*)glCompressedTexSubImage1D, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_debug_glCompressedTexSubImage1D = glad_debug_impl_glCompressedTexSubImage1D; +PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_glCompressedTexSubImage2D; +void APIENTRY glad_debug_impl_glCompressedTexSubImage2D(GLenum arg0, GLint arg1, GLint arg2, GLint arg3, GLsizei arg4, GLsizei arg5, GLenum arg6, GLsizei arg7, const void * arg8) { + _pre_call_callback("glCompressedTexSubImage2D", (void*)glCompressedTexSubImage2D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + glad_glCompressedTexSubImage2D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + _post_call_callback("glCompressedTexSubImage2D", (void*)glCompressedTexSubImage2D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + +} +PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_debug_glCompressedTexSubImage2D = glad_debug_impl_glCompressedTexSubImage2D; +PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_glCompressedTexSubImage3D; +void APIENTRY glad_debug_impl_glCompressedTexSubImage3D(GLenum arg0, GLint arg1, GLint arg2, GLint arg3, GLint arg4, GLsizei arg5, GLsizei arg6, GLsizei arg7, GLenum arg8, GLsizei arg9, const void * arg10) { + _pre_call_callback("glCompressedTexSubImage3D", (void*)glCompressedTexSubImage3D, 11, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + glad_glCompressedTexSubImage3D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + _post_call_callback("glCompressedTexSubImage3D", (void*)glCompressedTexSubImage3D, 11, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + +} +PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_debug_glCompressedTexSubImage3D = glad_debug_impl_glCompressedTexSubImage3D; +PFNGLCOPYBUFFERSUBDATAPROC glad_glCopyBufferSubData; +void APIENTRY glad_debug_impl_glCopyBufferSubData(GLenum arg0, GLenum arg1, GLintptr arg2, GLintptr arg3, GLsizeiptr arg4) { + _pre_call_callback("glCopyBufferSubData", (void*)glCopyBufferSubData, 5, arg0, arg1, arg2, arg3, arg4); + glad_glCopyBufferSubData(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glCopyBufferSubData", (void*)glCopyBufferSubData, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLCOPYBUFFERSUBDATAPROC glad_debug_glCopyBufferSubData = glad_debug_impl_glCopyBufferSubData; +PFNGLCOPYTEXIMAGE1DPROC glad_glCopyTexImage1D; +void APIENTRY glad_debug_impl_glCopyTexImage1D(GLenum arg0, GLint arg1, GLenum arg2, GLint arg3, GLint arg4, GLsizei arg5, GLint arg6) { + _pre_call_callback("glCopyTexImage1D", (void*)glCopyTexImage1D, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glCopyTexImage1D(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glCopyTexImage1D", (void*)glCopyTexImage1D, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLCOPYTEXIMAGE1DPROC glad_debug_glCopyTexImage1D = glad_debug_impl_glCopyTexImage1D; +PFNGLCOPYTEXIMAGE2DPROC glad_glCopyTexImage2D; +void APIENTRY glad_debug_impl_glCopyTexImage2D(GLenum arg0, GLint arg1, GLenum arg2, GLint arg3, GLint arg4, GLsizei arg5, GLsizei arg6, GLint arg7) { + _pre_call_callback("glCopyTexImage2D", (void*)glCopyTexImage2D, 8, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + glad_glCopyTexImage2D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + _post_call_callback("glCopyTexImage2D", (void*)glCopyTexImage2D, 8, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + +} +PFNGLCOPYTEXIMAGE2DPROC glad_debug_glCopyTexImage2D = glad_debug_impl_glCopyTexImage2D; +PFNGLCOPYTEXSUBIMAGE1DPROC glad_glCopyTexSubImage1D; +void APIENTRY glad_debug_impl_glCopyTexSubImage1D(GLenum arg0, GLint arg1, GLint arg2, GLint arg3, GLint arg4, GLsizei arg5) { + _pre_call_callback("glCopyTexSubImage1D", (void*)glCopyTexSubImage1D, 6, arg0, arg1, arg2, arg3, arg4, arg5); + glad_glCopyTexSubImage1D(arg0, arg1, arg2, arg3, arg4, arg5); + _post_call_callback("glCopyTexSubImage1D", (void*)glCopyTexSubImage1D, 6, arg0, arg1, arg2, arg3, arg4, arg5); + +} +PFNGLCOPYTEXSUBIMAGE1DPROC glad_debug_glCopyTexSubImage1D = glad_debug_impl_glCopyTexSubImage1D; +PFNGLCOPYTEXSUBIMAGE2DPROC glad_glCopyTexSubImage2D; +void APIENTRY glad_debug_impl_glCopyTexSubImage2D(GLenum arg0, GLint arg1, GLint arg2, GLint arg3, GLint arg4, GLint arg5, GLsizei arg6, GLsizei arg7) { + _pre_call_callback("glCopyTexSubImage2D", (void*)glCopyTexSubImage2D, 8, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + glad_glCopyTexSubImage2D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + _post_call_callback("glCopyTexSubImage2D", (void*)glCopyTexSubImage2D, 8, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + +} +PFNGLCOPYTEXSUBIMAGE2DPROC glad_debug_glCopyTexSubImage2D = glad_debug_impl_glCopyTexSubImage2D; +PFNGLCOPYTEXSUBIMAGE3DPROC glad_glCopyTexSubImage3D; +void APIENTRY glad_debug_impl_glCopyTexSubImage3D(GLenum arg0, GLint arg1, GLint arg2, GLint arg3, GLint arg4, GLint arg5, GLint arg6, GLsizei arg7, GLsizei arg8) { + _pre_call_callback("glCopyTexSubImage3D", (void*)glCopyTexSubImage3D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + glad_glCopyTexSubImage3D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + _post_call_callback("glCopyTexSubImage3D", (void*)glCopyTexSubImage3D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + +} +PFNGLCOPYTEXSUBIMAGE3DPROC glad_debug_glCopyTexSubImage3D = glad_debug_impl_glCopyTexSubImage3D; +PFNGLCREATEPROGRAMPROC glad_glCreateProgram; +GLuint APIENTRY glad_debug_impl_glCreateProgram(void) { + GLuint ret; + _pre_call_callback("glCreateProgram", (void*)glCreateProgram, 0); + ret = glad_glCreateProgram(); + _post_call_callback("glCreateProgram", (void*)glCreateProgram, 0); + return ret; +} +PFNGLCREATEPROGRAMPROC glad_debug_glCreateProgram = glad_debug_impl_glCreateProgram; +PFNGLCREATESHADERPROC glad_glCreateShader; +GLuint APIENTRY glad_debug_impl_glCreateShader(GLenum arg0) { + GLuint ret; + _pre_call_callback("glCreateShader", (void*)glCreateShader, 1, arg0); + ret = glad_glCreateShader(arg0); + _post_call_callback("glCreateShader", (void*)glCreateShader, 1, arg0); + return ret; +} +PFNGLCREATESHADERPROC glad_debug_glCreateShader = glad_debug_impl_glCreateShader; +PFNGLCULLFACEPROC glad_glCullFace; +void APIENTRY glad_debug_impl_glCullFace(GLenum arg0) { + _pre_call_callback("glCullFace", (void*)glCullFace, 1, arg0); + glad_glCullFace(arg0); + _post_call_callback("glCullFace", (void*)glCullFace, 1, arg0); + +} +PFNGLCULLFACEPROC glad_debug_glCullFace = glad_debug_impl_glCullFace; +PFNGLDELETEBUFFERSPROC glad_glDeleteBuffers; +void APIENTRY glad_debug_impl_glDeleteBuffers(GLsizei arg0, const GLuint * arg1) { + _pre_call_callback("glDeleteBuffers", (void*)glDeleteBuffers, 2, arg0, arg1); + glad_glDeleteBuffers(arg0, arg1); + _post_call_callback("glDeleteBuffers", (void*)glDeleteBuffers, 2, arg0, arg1); + +} +PFNGLDELETEBUFFERSPROC glad_debug_glDeleteBuffers = glad_debug_impl_glDeleteBuffers; +PFNGLDELETEFRAMEBUFFERSPROC glad_glDeleteFramebuffers; +void APIENTRY glad_debug_impl_glDeleteFramebuffers(GLsizei arg0, const GLuint * arg1) { + _pre_call_callback("glDeleteFramebuffers", (void*)glDeleteFramebuffers, 2, arg0, arg1); + glad_glDeleteFramebuffers(arg0, arg1); + _post_call_callback("glDeleteFramebuffers", (void*)glDeleteFramebuffers, 2, arg0, arg1); + +} +PFNGLDELETEFRAMEBUFFERSPROC glad_debug_glDeleteFramebuffers = glad_debug_impl_glDeleteFramebuffers; +PFNGLDELETEPROGRAMPROC glad_glDeleteProgram; +void APIENTRY glad_debug_impl_glDeleteProgram(GLuint arg0) { + _pre_call_callback("glDeleteProgram", (void*)glDeleteProgram, 1, arg0); + glad_glDeleteProgram(arg0); + _post_call_callback("glDeleteProgram", (void*)glDeleteProgram, 1, arg0); + +} +PFNGLDELETEPROGRAMPROC glad_debug_glDeleteProgram = glad_debug_impl_glDeleteProgram; +PFNGLDELETEQUERIESPROC glad_glDeleteQueries; +void APIENTRY glad_debug_impl_glDeleteQueries(GLsizei arg0, const GLuint * arg1) { + _pre_call_callback("glDeleteQueries", (void*)glDeleteQueries, 2, arg0, arg1); + glad_glDeleteQueries(arg0, arg1); + _post_call_callback("glDeleteQueries", (void*)glDeleteQueries, 2, arg0, arg1); + +} +PFNGLDELETEQUERIESPROC glad_debug_glDeleteQueries = glad_debug_impl_glDeleteQueries; +PFNGLDELETERENDERBUFFERSPROC glad_glDeleteRenderbuffers; +void APIENTRY glad_debug_impl_glDeleteRenderbuffers(GLsizei arg0, const GLuint * arg1) { + _pre_call_callback("glDeleteRenderbuffers", (void*)glDeleteRenderbuffers, 2, arg0, arg1); + glad_glDeleteRenderbuffers(arg0, arg1); + _post_call_callback("glDeleteRenderbuffers", (void*)glDeleteRenderbuffers, 2, arg0, arg1); + +} +PFNGLDELETERENDERBUFFERSPROC glad_debug_glDeleteRenderbuffers = glad_debug_impl_glDeleteRenderbuffers; +PFNGLDELETESAMPLERSPROC glad_glDeleteSamplers; +void APIENTRY glad_debug_impl_glDeleteSamplers(GLsizei arg0, const GLuint * arg1) { + _pre_call_callback("glDeleteSamplers", (void*)glDeleteSamplers, 2, arg0, arg1); + glad_glDeleteSamplers(arg0, arg1); + _post_call_callback("glDeleteSamplers", (void*)glDeleteSamplers, 2, arg0, arg1); + +} +PFNGLDELETESAMPLERSPROC glad_debug_glDeleteSamplers = glad_debug_impl_glDeleteSamplers; +PFNGLDELETESHADERPROC glad_glDeleteShader; +void APIENTRY glad_debug_impl_glDeleteShader(GLuint arg0) { + _pre_call_callback("glDeleteShader", (void*)glDeleteShader, 1, arg0); + glad_glDeleteShader(arg0); + _post_call_callback("glDeleteShader", (void*)glDeleteShader, 1, arg0); + +} +PFNGLDELETESHADERPROC glad_debug_glDeleteShader = glad_debug_impl_glDeleteShader; +PFNGLDELETESYNCPROC glad_glDeleteSync; +void APIENTRY glad_debug_impl_glDeleteSync(GLsync arg0) { + _pre_call_callback("glDeleteSync", (void*)glDeleteSync, 1, arg0); + glad_glDeleteSync(arg0); + _post_call_callback("glDeleteSync", (void*)glDeleteSync, 1, arg0); + +} +PFNGLDELETESYNCPROC glad_debug_glDeleteSync = glad_debug_impl_glDeleteSync; +PFNGLDELETETEXTURESPROC glad_glDeleteTextures; +void APIENTRY glad_debug_impl_glDeleteTextures(GLsizei arg0, const GLuint * arg1) { + _pre_call_callback("glDeleteTextures", (void*)glDeleteTextures, 2, arg0, arg1); + glad_glDeleteTextures(arg0, arg1); + _post_call_callback("glDeleteTextures", (void*)glDeleteTextures, 2, arg0, arg1); + +} +PFNGLDELETETEXTURESPROC glad_debug_glDeleteTextures = glad_debug_impl_glDeleteTextures; +PFNGLDELETEVERTEXARRAYSPROC glad_glDeleteVertexArrays; +void APIENTRY glad_debug_impl_glDeleteVertexArrays(GLsizei arg0, const GLuint * arg1) { + _pre_call_callback("glDeleteVertexArrays", (void*)glDeleteVertexArrays, 2, arg0, arg1); + glad_glDeleteVertexArrays(arg0, arg1); + _post_call_callback("glDeleteVertexArrays", (void*)glDeleteVertexArrays, 2, arg0, arg1); + +} +PFNGLDELETEVERTEXARRAYSPROC glad_debug_glDeleteVertexArrays = glad_debug_impl_glDeleteVertexArrays; +PFNGLDEPTHFUNCPROC glad_glDepthFunc; +void APIENTRY glad_debug_impl_glDepthFunc(GLenum arg0) { + _pre_call_callback("glDepthFunc", (void*)glDepthFunc, 1, arg0); + glad_glDepthFunc(arg0); + _post_call_callback("glDepthFunc", (void*)glDepthFunc, 1, arg0); + +} +PFNGLDEPTHFUNCPROC glad_debug_glDepthFunc = glad_debug_impl_glDepthFunc; +PFNGLDEPTHMASKPROC glad_glDepthMask; +void APIENTRY glad_debug_impl_glDepthMask(GLboolean arg0) { + _pre_call_callback("glDepthMask", (void*)glDepthMask, 1, arg0); + glad_glDepthMask(arg0); + _post_call_callback("glDepthMask", (void*)glDepthMask, 1, arg0); + +} +PFNGLDEPTHMASKPROC glad_debug_glDepthMask = glad_debug_impl_glDepthMask; +PFNGLDEPTHRANGEPROC glad_glDepthRange; +void APIENTRY glad_debug_impl_glDepthRange(GLdouble arg0, GLdouble arg1) { + _pre_call_callback("glDepthRange", (void*)glDepthRange, 2, arg0, arg1); + glad_glDepthRange(arg0, arg1); + _post_call_callback("glDepthRange", (void*)glDepthRange, 2, arg0, arg1); + +} +PFNGLDEPTHRANGEPROC glad_debug_glDepthRange = glad_debug_impl_glDepthRange; +PFNGLDETACHSHADERPROC glad_glDetachShader; +void APIENTRY glad_debug_impl_glDetachShader(GLuint arg0, GLuint arg1) { + _pre_call_callback("glDetachShader", (void*)glDetachShader, 2, arg0, arg1); + glad_glDetachShader(arg0, arg1); + _post_call_callback("glDetachShader", (void*)glDetachShader, 2, arg0, arg1); + +} +PFNGLDETACHSHADERPROC glad_debug_glDetachShader = glad_debug_impl_glDetachShader; +PFNGLDISABLEPROC glad_glDisable; +void APIENTRY glad_debug_impl_glDisable(GLenum arg0) { + _pre_call_callback("glDisable", (void*)glDisable, 1, arg0); + glad_glDisable(arg0); + _post_call_callback("glDisable", (void*)glDisable, 1, arg0); + +} +PFNGLDISABLEPROC glad_debug_glDisable = glad_debug_impl_glDisable; +PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_glDisableVertexAttribArray; +void APIENTRY glad_debug_impl_glDisableVertexAttribArray(GLuint arg0) { + _pre_call_callback("glDisableVertexAttribArray", (void*)glDisableVertexAttribArray, 1, arg0); + glad_glDisableVertexAttribArray(arg0); + _post_call_callback("glDisableVertexAttribArray", (void*)glDisableVertexAttribArray, 1, arg0); + +} +PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_debug_glDisableVertexAttribArray = glad_debug_impl_glDisableVertexAttribArray; +PFNGLDISABLEIPROC glad_glDisablei; +void APIENTRY glad_debug_impl_glDisablei(GLenum arg0, GLuint arg1) { + _pre_call_callback("glDisablei", (void*)glDisablei, 2, arg0, arg1); + glad_glDisablei(arg0, arg1); + _post_call_callback("glDisablei", (void*)glDisablei, 2, arg0, arg1); + +} +PFNGLDISABLEIPROC glad_debug_glDisablei = glad_debug_impl_glDisablei; +PFNGLDRAWARRAYSPROC glad_glDrawArrays; +void APIENTRY glad_debug_impl_glDrawArrays(GLenum arg0, GLint arg1, GLsizei arg2) { + _pre_call_callback("glDrawArrays", (void*)glDrawArrays, 3, arg0, arg1, arg2); + glad_glDrawArrays(arg0, arg1, arg2); + _post_call_callback("glDrawArrays", (void*)glDrawArrays, 3, arg0, arg1, arg2); + +} +PFNGLDRAWARRAYSPROC glad_debug_glDrawArrays = glad_debug_impl_glDrawArrays; +PFNGLDRAWARRAYSINSTANCEDPROC glad_glDrawArraysInstanced; +void APIENTRY glad_debug_impl_glDrawArraysInstanced(GLenum arg0, GLint arg1, GLsizei arg2, GLsizei arg3) { + _pre_call_callback("glDrawArraysInstanced", (void*)glDrawArraysInstanced, 4, arg0, arg1, arg2, arg3); + glad_glDrawArraysInstanced(arg0, arg1, arg2, arg3); + _post_call_callback("glDrawArraysInstanced", (void*)glDrawArraysInstanced, 4, arg0, arg1, arg2, arg3); + +} +PFNGLDRAWARRAYSINSTANCEDPROC glad_debug_glDrawArraysInstanced = glad_debug_impl_glDrawArraysInstanced; +PFNGLDRAWBUFFERPROC glad_glDrawBuffer; +void APIENTRY glad_debug_impl_glDrawBuffer(GLenum arg0) { + _pre_call_callback("glDrawBuffer", (void*)glDrawBuffer, 1, arg0); + glad_glDrawBuffer(arg0); + _post_call_callback("glDrawBuffer", (void*)glDrawBuffer, 1, arg0); + +} +PFNGLDRAWBUFFERPROC glad_debug_glDrawBuffer = glad_debug_impl_glDrawBuffer; +PFNGLDRAWBUFFERSPROC glad_glDrawBuffers; +void APIENTRY glad_debug_impl_glDrawBuffers(GLsizei arg0, const GLenum * arg1) { + _pre_call_callback("glDrawBuffers", (void*)glDrawBuffers, 2, arg0, arg1); + glad_glDrawBuffers(arg0, arg1); + _post_call_callback("glDrawBuffers", (void*)glDrawBuffers, 2, arg0, arg1); + +} +PFNGLDRAWBUFFERSPROC glad_debug_glDrawBuffers = glad_debug_impl_glDrawBuffers; +PFNGLDRAWELEMENTSPROC glad_glDrawElements; +void APIENTRY glad_debug_impl_glDrawElements(GLenum arg0, GLsizei arg1, GLenum arg2, const void * arg3) { + _pre_call_callback("glDrawElements", (void*)glDrawElements, 4, arg0, arg1, arg2, arg3); + glad_glDrawElements(arg0, arg1, arg2, arg3); + _post_call_callback("glDrawElements", (void*)glDrawElements, 4, arg0, arg1, arg2, arg3); + +} +PFNGLDRAWELEMENTSPROC glad_debug_glDrawElements = glad_debug_impl_glDrawElements; +PFNGLDRAWELEMENTSBASEVERTEXPROC glad_glDrawElementsBaseVertex; +void APIENTRY glad_debug_impl_glDrawElementsBaseVertex(GLenum arg0, GLsizei arg1, GLenum arg2, const void * arg3, GLint arg4) { + _pre_call_callback("glDrawElementsBaseVertex", (void*)glDrawElementsBaseVertex, 5, arg0, arg1, arg2, arg3, arg4); + glad_glDrawElementsBaseVertex(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glDrawElementsBaseVertex", (void*)glDrawElementsBaseVertex, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLDRAWELEMENTSBASEVERTEXPROC glad_debug_glDrawElementsBaseVertex = glad_debug_impl_glDrawElementsBaseVertex; +PFNGLDRAWELEMENTSINSTANCEDPROC glad_glDrawElementsInstanced; +void APIENTRY glad_debug_impl_glDrawElementsInstanced(GLenum arg0, GLsizei arg1, GLenum arg2, const void * arg3, GLsizei arg4) { + _pre_call_callback("glDrawElementsInstanced", (void*)glDrawElementsInstanced, 5, arg0, arg1, arg2, arg3, arg4); + glad_glDrawElementsInstanced(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glDrawElementsInstanced", (void*)glDrawElementsInstanced, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLDRAWELEMENTSINSTANCEDPROC glad_debug_glDrawElementsInstanced = glad_debug_impl_glDrawElementsInstanced; +PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_glDrawElementsInstancedBaseVertex; +void APIENTRY glad_debug_impl_glDrawElementsInstancedBaseVertex(GLenum arg0, GLsizei arg1, GLenum arg2, const void * arg3, GLsizei arg4, GLint arg5) { + _pre_call_callback("glDrawElementsInstancedBaseVertex", (void*)glDrawElementsInstancedBaseVertex, 6, arg0, arg1, arg2, arg3, arg4, arg5); + glad_glDrawElementsInstancedBaseVertex(arg0, arg1, arg2, arg3, arg4, arg5); + _post_call_callback("glDrawElementsInstancedBaseVertex", (void*)glDrawElementsInstancedBaseVertex, 6, arg0, arg1, arg2, arg3, arg4, arg5); + +} +PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_debug_glDrawElementsInstancedBaseVertex = glad_debug_impl_glDrawElementsInstancedBaseVertex; +PFNGLDRAWRANGEELEMENTSPROC glad_glDrawRangeElements; +void APIENTRY glad_debug_impl_glDrawRangeElements(GLenum arg0, GLuint arg1, GLuint arg2, GLsizei arg3, GLenum arg4, const void * arg5) { + _pre_call_callback("glDrawRangeElements", (void*)glDrawRangeElements, 6, arg0, arg1, arg2, arg3, arg4, arg5); + glad_glDrawRangeElements(arg0, arg1, arg2, arg3, arg4, arg5); + _post_call_callback("glDrawRangeElements", (void*)glDrawRangeElements, 6, arg0, arg1, arg2, arg3, arg4, arg5); + +} +PFNGLDRAWRANGEELEMENTSPROC glad_debug_glDrawRangeElements = glad_debug_impl_glDrawRangeElements; +PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_glDrawRangeElementsBaseVertex; +void APIENTRY glad_debug_impl_glDrawRangeElementsBaseVertex(GLenum arg0, GLuint arg1, GLuint arg2, GLsizei arg3, GLenum arg4, const void * arg5, GLint arg6) { + _pre_call_callback("glDrawRangeElementsBaseVertex", (void*)glDrawRangeElementsBaseVertex, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glDrawRangeElementsBaseVertex(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glDrawRangeElementsBaseVertex", (void*)glDrawRangeElementsBaseVertex, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_debug_glDrawRangeElementsBaseVertex = glad_debug_impl_glDrawRangeElementsBaseVertex; +PFNGLENABLEPROC glad_glEnable; +void APIENTRY glad_debug_impl_glEnable(GLenum arg0) { + _pre_call_callback("glEnable", (void*)glEnable, 1, arg0); + glad_glEnable(arg0); + _post_call_callback("glEnable", (void*)glEnable, 1, arg0); + +} +PFNGLENABLEPROC glad_debug_glEnable = glad_debug_impl_glEnable; +PFNGLENABLEVERTEXATTRIBARRAYPROC glad_glEnableVertexAttribArray; +void APIENTRY glad_debug_impl_glEnableVertexAttribArray(GLuint arg0) { + _pre_call_callback("glEnableVertexAttribArray", (void*)glEnableVertexAttribArray, 1, arg0); + glad_glEnableVertexAttribArray(arg0); + _post_call_callback("glEnableVertexAttribArray", (void*)glEnableVertexAttribArray, 1, arg0); + +} +PFNGLENABLEVERTEXATTRIBARRAYPROC glad_debug_glEnableVertexAttribArray = glad_debug_impl_glEnableVertexAttribArray; +PFNGLENABLEIPROC glad_glEnablei; +void APIENTRY glad_debug_impl_glEnablei(GLenum arg0, GLuint arg1) { + _pre_call_callback("glEnablei", (void*)glEnablei, 2, arg0, arg1); + glad_glEnablei(arg0, arg1); + _post_call_callback("glEnablei", (void*)glEnablei, 2, arg0, arg1); + +} +PFNGLENABLEIPROC glad_debug_glEnablei = glad_debug_impl_glEnablei; +PFNGLENDCONDITIONALRENDERPROC glad_glEndConditionalRender; +void APIENTRY glad_debug_impl_glEndConditionalRender(void) { + _pre_call_callback("glEndConditionalRender", (void*)glEndConditionalRender, 0); + glad_glEndConditionalRender(); + _post_call_callback("glEndConditionalRender", (void*)glEndConditionalRender, 0); + +} +PFNGLENDCONDITIONALRENDERPROC glad_debug_glEndConditionalRender = glad_debug_impl_glEndConditionalRender; +PFNGLENDQUERYPROC glad_glEndQuery; +void APIENTRY glad_debug_impl_glEndQuery(GLenum arg0) { + _pre_call_callback("glEndQuery", (void*)glEndQuery, 1, arg0); + glad_glEndQuery(arg0); + _post_call_callback("glEndQuery", (void*)glEndQuery, 1, arg0); + +} +PFNGLENDQUERYPROC glad_debug_glEndQuery = glad_debug_impl_glEndQuery; +PFNGLENDTRANSFORMFEEDBACKPROC glad_glEndTransformFeedback; +void APIENTRY glad_debug_impl_glEndTransformFeedback(void) { + _pre_call_callback("glEndTransformFeedback", (void*)glEndTransformFeedback, 0); + glad_glEndTransformFeedback(); + _post_call_callback("glEndTransformFeedback", (void*)glEndTransformFeedback, 0); + +} +PFNGLENDTRANSFORMFEEDBACKPROC glad_debug_glEndTransformFeedback = glad_debug_impl_glEndTransformFeedback; +PFNGLFENCESYNCPROC glad_glFenceSync; +GLsync APIENTRY glad_debug_impl_glFenceSync(GLenum arg0, GLbitfield arg1) { + GLsync ret; + _pre_call_callback("glFenceSync", (void*)glFenceSync, 2, arg0, arg1); + ret = glad_glFenceSync(arg0, arg1); + _post_call_callback("glFenceSync", (void*)glFenceSync, 2, arg0, arg1); + return ret; +} +PFNGLFENCESYNCPROC glad_debug_glFenceSync = glad_debug_impl_glFenceSync; +PFNGLFINISHPROC glad_glFinish; +void APIENTRY glad_debug_impl_glFinish(void) { + _pre_call_callback("glFinish", (void*)glFinish, 0); + glad_glFinish(); + _post_call_callback("glFinish", (void*)glFinish, 0); + +} +PFNGLFINISHPROC glad_debug_glFinish = glad_debug_impl_glFinish; +PFNGLFLUSHPROC glad_glFlush; +void APIENTRY glad_debug_impl_glFlush(void) { + _pre_call_callback("glFlush", (void*)glFlush, 0); + glad_glFlush(); + _post_call_callback("glFlush", (void*)glFlush, 0); + +} +PFNGLFLUSHPROC glad_debug_glFlush = glad_debug_impl_glFlush; +PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_glFlushMappedBufferRange; +void APIENTRY glad_debug_impl_glFlushMappedBufferRange(GLenum arg0, GLintptr arg1, GLsizeiptr arg2) { + _pre_call_callback("glFlushMappedBufferRange", (void*)glFlushMappedBufferRange, 3, arg0, arg1, arg2); + glad_glFlushMappedBufferRange(arg0, arg1, arg2); + _post_call_callback("glFlushMappedBufferRange", (void*)glFlushMappedBufferRange, 3, arg0, arg1, arg2); + +} +PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_debug_glFlushMappedBufferRange = glad_debug_impl_glFlushMappedBufferRange; +PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_glFramebufferRenderbuffer; +void APIENTRY glad_debug_impl_glFramebufferRenderbuffer(GLenum arg0, GLenum arg1, GLenum arg2, GLuint arg3) { + _pre_call_callback("glFramebufferRenderbuffer", (void*)glFramebufferRenderbuffer, 4, arg0, arg1, arg2, arg3); + glad_glFramebufferRenderbuffer(arg0, arg1, arg2, arg3); + _post_call_callback("glFramebufferRenderbuffer", (void*)glFramebufferRenderbuffer, 4, arg0, arg1, arg2, arg3); + +} +PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_debug_glFramebufferRenderbuffer = glad_debug_impl_glFramebufferRenderbuffer; +PFNGLFRAMEBUFFERTEXTUREPROC glad_glFramebufferTexture; +void APIENTRY glad_debug_impl_glFramebufferTexture(GLenum arg0, GLenum arg1, GLuint arg2, GLint arg3) { + _pre_call_callback("glFramebufferTexture", (void*)glFramebufferTexture, 4, arg0, arg1, arg2, arg3); + glad_glFramebufferTexture(arg0, arg1, arg2, arg3); + _post_call_callback("glFramebufferTexture", (void*)glFramebufferTexture, 4, arg0, arg1, arg2, arg3); + +} +PFNGLFRAMEBUFFERTEXTUREPROC glad_debug_glFramebufferTexture = glad_debug_impl_glFramebufferTexture; +PFNGLFRAMEBUFFERTEXTURE1DPROC glad_glFramebufferTexture1D; +void APIENTRY glad_debug_impl_glFramebufferTexture1D(GLenum arg0, GLenum arg1, GLenum arg2, GLuint arg3, GLint arg4) { + _pre_call_callback("glFramebufferTexture1D", (void*)glFramebufferTexture1D, 5, arg0, arg1, arg2, arg3, arg4); + glad_glFramebufferTexture1D(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glFramebufferTexture1D", (void*)glFramebufferTexture1D, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLFRAMEBUFFERTEXTURE1DPROC glad_debug_glFramebufferTexture1D = glad_debug_impl_glFramebufferTexture1D; +PFNGLFRAMEBUFFERTEXTURE2DPROC glad_glFramebufferTexture2D; +void APIENTRY glad_debug_impl_glFramebufferTexture2D(GLenum arg0, GLenum arg1, GLenum arg2, GLuint arg3, GLint arg4) { + _pre_call_callback("glFramebufferTexture2D", (void*)glFramebufferTexture2D, 5, arg0, arg1, arg2, arg3, arg4); + glad_glFramebufferTexture2D(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glFramebufferTexture2D", (void*)glFramebufferTexture2D, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLFRAMEBUFFERTEXTURE2DPROC glad_debug_glFramebufferTexture2D = glad_debug_impl_glFramebufferTexture2D; +PFNGLFRAMEBUFFERTEXTURE3DPROC glad_glFramebufferTexture3D; +void APIENTRY glad_debug_impl_glFramebufferTexture3D(GLenum arg0, GLenum arg1, GLenum arg2, GLuint arg3, GLint arg4, GLint arg5) { + _pre_call_callback("glFramebufferTexture3D", (void*)glFramebufferTexture3D, 6, arg0, arg1, arg2, arg3, arg4, arg5); + glad_glFramebufferTexture3D(arg0, arg1, arg2, arg3, arg4, arg5); + _post_call_callback("glFramebufferTexture3D", (void*)glFramebufferTexture3D, 6, arg0, arg1, arg2, arg3, arg4, arg5); + +} +PFNGLFRAMEBUFFERTEXTURE3DPROC glad_debug_glFramebufferTexture3D = glad_debug_impl_glFramebufferTexture3D; +PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_glFramebufferTextureLayer; +void APIENTRY glad_debug_impl_glFramebufferTextureLayer(GLenum arg0, GLenum arg1, GLuint arg2, GLint arg3, GLint arg4) { + _pre_call_callback("glFramebufferTextureLayer", (void*)glFramebufferTextureLayer, 5, arg0, arg1, arg2, arg3, arg4); + glad_glFramebufferTextureLayer(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glFramebufferTextureLayer", (void*)glFramebufferTextureLayer, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_debug_glFramebufferTextureLayer = glad_debug_impl_glFramebufferTextureLayer; +PFNGLFRONTFACEPROC glad_glFrontFace; +void APIENTRY glad_debug_impl_glFrontFace(GLenum arg0) { + _pre_call_callback("glFrontFace", (void*)glFrontFace, 1, arg0); + glad_glFrontFace(arg0); + _post_call_callback("glFrontFace", (void*)glFrontFace, 1, arg0); + +} +PFNGLFRONTFACEPROC glad_debug_glFrontFace = glad_debug_impl_glFrontFace; +PFNGLGENBUFFERSPROC glad_glGenBuffers; +void APIENTRY glad_debug_impl_glGenBuffers(GLsizei arg0, GLuint * arg1) { + _pre_call_callback("glGenBuffers", (void*)glGenBuffers, 2, arg0, arg1); + glad_glGenBuffers(arg0, arg1); + _post_call_callback("glGenBuffers", (void*)glGenBuffers, 2, arg0, arg1); + +} +PFNGLGENBUFFERSPROC glad_debug_glGenBuffers = glad_debug_impl_glGenBuffers; +PFNGLGENFRAMEBUFFERSPROC glad_glGenFramebuffers; +void APIENTRY glad_debug_impl_glGenFramebuffers(GLsizei arg0, GLuint * arg1) { + _pre_call_callback("glGenFramebuffers", (void*)glGenFramebuffers, 2, arg0, arg1); + glad_glGenFramebuffers(arg0, arg1); + _post_call_callback("glGenFramebuffers", (void*)glGenFramebuffers, 2, arg0, arg1); + +} +PFNGLGENFRAMEBUFFERSPROC glad_debug_glGenFramebuffers = glad_debug_impl_glGenFramebuffers; +PFNGLGENQUERIESPROC glad_glGenQueries; +void APIENTRY glad_debug_impl_glGenQueries(GLsizei arg0, GLuint * arg1) { + _pre_call_callback("glGenQueries", (void*)glGenQueries, 2, arg0, arg1); + glad_glGenQueries(arg0, arg1); + _post_call_callback("glGenQueries", (void*)glGenQueries, 2, arg0, arg1); + +} +PFNGLGENQUERIESPROC glad_debug_glGenQueries = glad_debug_impl_glGenQueries; +PFNGLGENRENDERBUFFERSPROC glad_glGenRenderbuffers; +void APIENTRY glad_debug_impl_glGenRenderbuffers(GLsizei arg0, GLuint * arg1) { + _pre_call_callback("glGenRenderbuffers", (void*)glGenRenderbuffers, 2, arg0, arg1); + glad_glGenRenderbuffers(arg0, arg1); + _post_call_callback("glGenRenderbuffers", (void*)glGenRenderbuffers, 2, arg0, arg1); + +} +PFNGLGENRENDERBUFFERSPROC glad_debug_glGenRenderbuffers = glad_debug_impl_glGenRenderbuffers; +PFNGLGENSAMPLERSPROC glad_glGenSamplers; +void APIENTRY glad_debug_impl_glGenSamplers(GLsizei arg0, GLuint * arg1) { + _pre_call_callback("glGenSamplers", (void*)glGenSamplers, 2, arg0, arg1); + glad_glGenSamplers(arg0, arg1); + _post_call_callback("glGenSamplers", (void*)glGenSamplers, 2, arg0, arg1); + +} +PFNGLGENSAMPLERSPROC glad_debug_glGenSamplers = glad_debug_impl_glGenSamplers; +PFNGLGENTEXTURESPROC glad_glGenTextures; +void APIENTRY glad_debug_impl_glGenTextures(GLsizei arg0, GLuint * arg1) { + _pre_call_callback("glGenTextures", (void*)glGenTextures, 2, arg0, arg1); + glad_glGenTextures(arg0, arg1); + _post_call_callback("glGenTextures", (void*)glGenTextures, 2, arg0, arg1); + +} +PFNGLGENTEXTURESPROC glad_debug_glGenTextures = glad_debug_impl_glGenTextures; +PFNGLGENVERTEXARRAYSPROC glad_glGenVertexArrays; +void APIENTRY glad_debug_impl_glGenVertexArrays(GLsizei arg0, GLuint * arg1) { + _pre_call_callback("glGenVertexArrays", (void*)glGenVertexArrays, 2, arg0, arg1); + glad_glGenVertexArrays(arg0, arg1); + _post_call_callback("glGenVertexArrays", (void*)glGenVertexArrays, 2, arg0, arg1); + +} +PFNGLGENVERTEXARRAYSPROC glad_debug_glGenVertexArrays = glad_debug_impl_glGenVertexArrays; +PFNGLGENERATEMIPMAPPROC glad_glGenerateMipmap; +void APIENTRY glad_debug_impl_glGenerateMipmap(GLenum arg0) { + _pre_call_callback("glGenerateMipmap", (void*)glGenerateMipmap, 1, arg0); + glad_glGenerateMipmap(arg0); + _post_call_callback("glGenerateMipmap", (void*)glGenerateMipmap, 1, arg0); + +} +PFNGLGENERATEMIPMAPPROC glad_debug_glGenerateMipmap = glad_debug_impl_glGenerateMipmap; +PFNGLGETACTIVEATTRIBPROC glad_glGetActiveAttrib; +void APIENTRY glad_debug_impl_glGetActiveAttrib(GLuint arg0, GLuint arg1, GLsizei arg2, GLsizei * arg3, GLint * arg4, GLenum * arg5, GLchar * arg6) { + _pre_call_callback("glGetActiveAttrib", (void*)glGetActiveAttrib, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glGetActiveAttrib(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glGetActiveAttrib", (void*)glGetActiveAttrib, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLGETACTIVEATTRIBPROC glad_debug_glGetActiveAttrib = glad_debug_impl_glGetActiveAttrib; +PFNGLGETACTIVEUNIFORMPROC glad_glGetActiveUniform; +void APIENTRY glad_debug_impl_glGetActiveUniform(GLuint arg0, GLuint arg1, GLsizei arg2, GLsizei * arg3, GLint * arg4, GLenum * arg5, GLchar * arg6) { + _pre_call_callback("glGetActiveUniform", (void*)glGetActiveUniform, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glGetActiveUniform(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glGetActiveUniform", (void*)glGetActiveUniform, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLGETACTIVEUNIFORMPROC glad_debug_glGetActiveUniform = glad_debug_impl_glGetActiveUniform; +PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_glGetActiveUniformBlockName; +void APIENTRY glad_debug_impl_glGetActiveUniformBlockName(GLuint arg0, GLuint arg1, GLsizei arg2, GLsizei * arg3, GLchar * arg4) { + _pre_call_callback("glGetActiveUniformBlockName", (void*)glGetActiveUniformBlockName, 5, arg0, arg1, arg2, arg3, arg4); + glad_glGetActiveUniformBlockName(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glGetActiveUniformBlockName", (void*)glGetActiveUniformBlockName, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_debug_glGetActiveUniformBlockName = glad_debug_impl_glGetActiveUniformBlockName; +PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_glGetActiveUniformBlockiv; +void APIENTRY glad_debug_impl_glGetActiveUniformBlockiv(GLuint arg0, GLuint arg1, GLenum arg2, GLint * arg3) { + _pre_call_callback("glGetActiveUniformBlockiv", (void*)glGetActiveUniformBlockiv, 4, arg0, arg1, arg2, arg3); + glad_glGetActiveUniformBlockiv(arg0, arg1, arg2, arg3); + _post_call_callback("glGetActiveUniformBlockiv", (void*)glGetActiveUniformBlockiv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_debug_glGetActiveUniformBlockiv = glad_debug_impl_glGetActiveUniformBlockiv; +PFNGLGETACTIVEUNIFORMNAMEPROC glad_glGetActiveUniformName; +void APIENTRY glad_debug_impl_glGetActiveUniformName(GLuint arg0, GLuint arg1, GLsizei arg2, GLsizei * arg3, GLchar * arg4) { + _pre_call_callback("glGetActiveUniformName", (void*)glGetActiveUniformName, 5, arg0, arg1, arg2, arg3, arg4); + glad_glGetActiveUniformName(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glGetActiveUniformName", (void*)glGetActiveUniformName, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLGETACTIVEUNIFORMNAMEPROC glad_debug_glGetActiveUniformName = glad_debug_impl_glGetActiveUniformName; +PFNGLGETACTIVEUNIFORMSIVPROC glad_glGetActiveUniformsiv; +void APIENTRY glad_debug_impl_glGetActiveUniformsiv(GLuint arg0, GLsizei arg1, const GLuint * arg2, GLenum arg3, GLint * arg4) { + _pre_call_callback("glGetActiveUniformsiv", (void*)glGetActiveUniformsiv, 5, arg0, arg1, arg2, arg3, arg4); + glad_glGetActiveUniformsiv(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glGetActiveUniformsiv", (void*)glGetActiveUniformsiv, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLGETACTIVEUNIFORMSIVPROC glad_debug_glGetActiveUniformsiv = glad_debug_impl_glGetActiveUniformsiv; +PFNGLGETATTACHEDSHADERSPROC glad_glGetAttachedShaders; +void APIENTRY glad_debug_impl_glGetAttachedShaders(GLuint arg0, GLsizei arg1, GLsizei * arg2, GLuint * arg3) { + _pre_call_callback("glGetAttachedShaders", (void*)glGetAttachedShaders, 4, arg0, arg1, arg2, arg3); + glad_glGetAttachedShaders(arg0, arg1, arg2, arg3); + _post_call_callback("glGetAttachedShaders", (void*)glGetAttachedShaders, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETATTACHEDSHADERSPROC glad_debug_glGetAttachedShaders = glad_debug_impl_glGetAttachedShaders; +PFNGLGETATTRIBLOCATIONPROC glad_glGetAttribLocation; +GLint APIENTRY glad_debug_impl_glGetAttribLocation(GLuint arg0, const GLchar * arg1) { + GLint ret; + _pre_call_callback("glGetAttribLocation", (void*)glGetAttribLocation, 2, arg0, arg1); + ret = glad_glGetAttribLocation(arg0, arg1); + _post_call_callback("glGetAttribLocation", (void*)glGetAttribLocation, 2, arg0, arg1); + return ret; +} +PFNGLGETATTRIBLOCATIONPROC glad_debug_glGetAttribLocation = glad_debug_impl_glGetAttribLocation; +PFNGLGETBOOLEANI_VPROC glad_glGetBooleani_v; +void APIENTRY glad_debug_impl_glGetBooleani_v(GLenum arg0, GLuint arg1, GLboolean * arg2) { + _pre_call_callback("glGetBooleani_v", (void*)glGetBooleani_v, 3, arg0, arg1, arg2); + glad_glGetBooleani_v(arg0, arg1, arg2); + _post_call_callback("glGetBooleani_v", (void*)glGetBooleani_v, 3, arg0, arg1, arg2); + +} +PFNGLGETBOOLEANI_VPROC glad_debug_glGetBooleani_v = glad_debug_impl_glGetBooleani_v; +PFNGLGETBOOLEANVPROC glad_glGetBooleanv; +void APIENTRY glad_debug_impl_glGetBooleanv(GLenum arg0, GLboolean * arg1) { + _pre_call_callback("glGetBooleanv", (void*)glGetBooleanv, 2, arg0, arg1); + glad_glGetBooleanv(arg0, arg1); + _post_call_callback("glGetBooleanv", (void*)glGetBooleanv, 2, arg0, arg1); + +} +PFNGLGETBOOLEANVPROC glad_debug_glGetBooleanv = glad_debug_impl_glGetBooleanv; +PFNGLGETBUFFERPARAMETERI64VPROC glad_glGetBufferParameteri64v; +void APIENTRY glad_debug_impl_glGetBufferParameteri64v(GLenum arg0, GLenum arg1, GLint64 * arg2) { + _pre_call_callback("glGetBufferParameteri64v", (void*)glGetBufferParameteri64v, 3, arg0, arg1, arg2); + glad_glGetBufferParameteri64v(arg0, arg1, arg2); + _post_call_callback("glGetBufferParameteri64v", (void*)glGetBufferParameteri64v, 3, arg0, arg1, arg2); + +} +PFNGLGETBUFFERPARAMETERI64VPROC glad_debug_glGetBufferParameteri64v = glad_debug_impl_glGetBufferParameteri64v; +PFNGLGETBUFFERPARAMETERIVPROC glad_glGetBufferParameteriv; +void APIENTRY glad_debug_impl_glGetBufferParameteriv(GLenum arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetBufferParameteriv", (void*)glGetBufferParameteriv, 3, arg0, arg1, arg2); + glad_glGetBufferParameteriv(arg0, arg1, arg2); + _post_call_callback("glGetBufferParameteriv", (void*)glGetBufferParameteriv, 3, arg0, arg1, arg2); + +} +PFNGLGETBUFFERPARAMETERIVPROC glad_debug_glGetBufferParameteriv = glad_debug_impl_glGetBufferParameteriv; +PFNGLGETBUFFERPOINTERVPROC glad_glGetBufferPointerv; +void APIENTRY glad_debug_impl_glGetBufferPointerv(GLenum arg0, GLenum arg1, void ** arg2) { + _pre_call_callback("glGetBufferPointerv", (void*)glGetBufferPointerv, 3, arg0, arg1, arg2); + glad_glGetBufferPointerv(arg0, arg1, arg2); + _post_call_callback("glGetBufferPointerv", (void*)glGetBufferPointerv, 3, arg0, arg1, arg2); + +} +PFNGLGETBUFFERPOINTERVPROC glad_debug_glGetBufferPointerv = glad_debug_impl_glGetBufferPointerv; +PFNGLGETBUFFERSUBDATAPROC glad_glGetBufferSubData; +void APIENTRY glad_debug_impl_glGetBufferSubData(GLenum arg0, GLintptr arg1, GLsizeiptr arg2, void * arg3) { + _pre_call_callback("glGetBufferSubData", (void*)glGetBufferSubData, 4, arg0, arg1, arg2, arg3); + glad_glGetBufferSubData(arg0, arg1, arg2, arg3); + _post_call_callback("glGetBufferSubData", (void*)glGetBufferSubData, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETBUFFERSUBDATAPROC glad_debug_glGetBufferSubData = glad_debug_impl_glGetBufferSubData; +PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_glGetCompressedTexImage; +void APIENTRY glad_debug_impl_glGetCompressedTexImage(GLenum arg0, GLint arg1, void * arg2) { + _pre_call_callback("glGetCompressedTexImage", (void*)glGetCompressedTexImage, 3, arg0, arg1, arg2); + glad_glGetCompressedTexImage(arg0, arg1, arg2); + _post_call_callback("glGetCompressedTexImage", (void*)glGetCompressedTexImage, 3, arg0, arg1, arg2); + +} +PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_debug_glGetCompressedTexImage = glad_debug_impl_glGetCompressedTexImage; +PFNGLGETDOUBLEVPROC glad_glGetDoublev; +void APIENTRY glad_debug_impl_glGetDoublev(GLenum arg0, GLdouble * arg1) { + _pre_call_callback("glGetDoublev", (void*)glGetDoublev, 2, arg0, arg1); + glad_glGetDoublev(arg0, arg1); + _post_call_callback("glGetDoublev", (void*)glGetDoublev, 2, arg0, arg1); + +} +PFNGLGETDOUBLEVPROC glad_debug_glGetDoublev = glad_debug_impl_glGetDoublev; +PFNGLGETERRORPROC glad_glGetError; +GLenum APIENTRY glad_debug_impl_glGetError(void) { + GLenum ret; + _pre_call_callback("glGetError", (void*)glGetError, 0); + ret = glad_glGetError(); + _post_call_callback("glGetError", (void*)glGetError, 0); + return ret; +} +PFNGLGETERRORPROC glad_debug_glGetError = glad_debug_impl_glGetError; +PFNGLGETFLOATVPROC glad_glGetFloatv; +void APIENTRY glad_debug_impl_glGetFloatv(GLenum arg0, GLfloat * arg1) { + _pre_call_callback("glGetFloatv", (void*)glGetFloatv, 2, arg0, arg1); + glad_glGetFloatv(arg0, arg1); + _post_call_callback("glGetFloatv", (void*)glGetFloatv, 2, arg0, arg1); + +} +PFNGLGETFLOATVPROC glad_debug_glGetFloatv = glad_debug_impl_glGetFloatv; +PFNGLGETFRAGDATAINDEXPROC glad_glGetFragDataIndex; +GLint APIENTRY glad_debug_impl_glGetFragDataIndex(GLuint arg0, const GLchar * arg1) { + GLint ret; + _pre_call_callback("glGetFragDataIndex", (void*)glGetFragDataIndex, 2, arg0, arg1); + ret = glad_glGetFragDataIndex(arg0, arg1); + _post_call_callback("glGetFragDataIndex", (void*)glGetFragDataIndex, 2, arg0, arg1); + return ret; +} +PFNGLGETFRAGDATAINDEXPROC glad_debug_glGetFragDataIndex = glad_debug_impl_glGetFragDataIndex; +PFNGLGETFRAGDATALOCATIONPROC glad_glGetFragDataLocation; +GLint APIENTRY glad_debug_impl_glGetFragDataLocation(GLuint arg0, const GLchar * arg1) { + GLint ret; + _pre_call_callback("glGetFragDataLocation", (void*)glGetFragDataLocation, 2, arg0, arg1); + ret = glad_glGetFragDataLocation(arg0, arg1); + _post_call_callback("glGetFragDataLocation", (void*)glGetFragDataLocation, 2, arg0, arg1); + return ret; +} +PFNGLGETFRAGDATALOCATIONPROC glad_debug_glGetFragDataLocation = glad_debug_impl_glGetFragDataLocation; +PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetFramebufferAttachmentParameteriv; +void APIENTRY glad_debug_impl_glGetFramebufferAttachmentParameteriv(GLenum arg0, GLenum arg1, GLenum arg2, GLint * arg3) { + _pre_call_callback("glGetFramebufferAttachmentParameteriv", (void*)glGetFramebufferAttachmentParameteriv, 4, arg0, arg1, arg2, arg3); + glad_glGetFramebufferAttachmentParameteriv(arg0, arg1, arg2, arg3); + _post_call_callback("glGetFramebufferAttachmentParameteriv", (void*)glGetFramebufferAttachmentParameteriv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_debug_glGetFramebufferAttachmentParameteriv = glad_debug_impl_glGetFramebufferAttachmentParameteriv; +PFNGLGETINTEGER64I_VPROC glad_glGetInteger64i_v; +void APIENTRY glad_debug_impl_glGetInteger64i_v(GLenum arg0, GLuint arg1, GLint64 * arg2) { + _pre_call_callback("glGetInteger64i_v", (void*)glGetInteger64i_v, 3, arg0, arg1, arg2); + glad_glGetInteger64i_v(arg0, arg1, arg2); + _post_call_callback("glGetInteger64i_v", (void*)glGetInteger64i_v, 3, arg0, arg1, arg2); + +} +PFNGLGETINTEGER64I_VPROC glad_debug_glGetInteger64i_v = glad_debug_impl_glGetInteger64i_v; +PFNGLGETINTEGER64VPROC glad_glGetInteger64v; +void APIENTRY glad_debug_impl_glGetInteger64v(GLenum arg0, GLint64 * arg1) { + _pre_call_callback("glGetInteger64v", (void*)glGetInteger64v, 2, arg0, arg1); + glad_glGetInteger64v(arg0, arg1); + _post_call_callback("glGetInteger64v", (void*)glGetInteger64v, 2, arg0, arg1); + +} +PFNGLGETINTEGER64VPROC glad_debug_glGetInteger64v = glad_debug_impl_glGetInteger64v; +PFNGLGETINTEGERI_VPROC glad_glGetIntegeri_v; +void APIENTRY glad_debug_impl_glGetIntegeri_v(GLenum arg0, GLuint arg1, GLint * arg2) { + _pre_call_callback("glGetIntegeri_v", (void*)glGetIntegeri_v, 3, arg0, arg1, arg2); + glad_glGetIntegeri_v(arg0, arg1, arg2); + _post_call_callback("glGetIntegeri_v", (void*)glGetIntegeri_v, 3, arg0, arg1, arg2); + +} +PFNGLGETINTEGERI_VPROC glad_debug_glGetIntegeri_v = glad_debug_impl_glGetIntegeri_v; +PFNGLGETINTEGERVPROC glad_glGetIntegerv; +void APIENTRY glad_debug_impl_glGetIntegerv(GLenum arg0, GLint * arg1) { + _pre_call_callback("glGetIntegerv", (void*)glGetIntegerv, 2, arg0, arg1); + glad_glGetIntegerv(arg0, arg1); + _post_call_callback("glGetIntegerv", (void*)glGetIntegerv, 2, arg0, arg1); + +} +PFNGLGETINTEGERVPROC glad_debug_glGetIntegerv = glad_debug_impl_glGetIntegerv; +PFNGLGETMULTISAMPLEFVPROC glad_glGetMultisamplefv; +void APIENTRY glad_debug_impl_glGetMultisamplefv(GLenum arg0, GLuint arg1, GLfloat * arg2) { + _pre_call_callback("glGetMultisamplefv", (void*)glGetMultisamplefv, 3, arg0, arg1, arg2); + glad_glGetMultisamplefv(arg0, arg1, arg2); + _post_call_callback("glGetMultisamplefv", (void*)glGetMultisamplefv, 3, arg0, arg1, arg2); + +} +PFNGLGETMULTISAMPLEFVPROC glad_debug_glGetMultisamplefv = glad_debug_impl_glGetMultisamplefv; +PFNGLGETPROGRAMINFOLOGPROC glad_glGetProgramInfoLog; +void APIENTRY glad_debug_impl_glGetProgramInfoLog(GLuint arg0, GLsizei arg1, GLsizei * arg2, GLchar * arg3) { + _pre_call_callback("glGetProgramInfoLog", (void*)glGetProgramInfoLog, 4, arg0, arg1, arg2, arg3); + glad_glGetProgramInfoLog(arg0, arg1, arg2, arg3); + _post_call_callback("glGetProgramInfoLog", (void*)glGetProgramInfoLog, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETPROGRAMINFOLOGPROC glad_debug_glGetProgramInfoLog = glad_debug_impl_glGetProgramInfoLog; +PFNGLGETPROGRAMIVPROC glad_glGetProgramiv; +void APIENTRY glad_debug_impl_glGetProgramiv(GLuint arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetProgramiv", (void*)glGetProgramiv, 3, arg0, arg1, arg2); + glad_glGetProgramiv(arg0, arg1, arg2); + _post_call_callback("glGetProgramiv", (void*)glGetProgramiv, 3, arg0, arg1, arg2); + +} +PFNGLGETPROGRAMIVPROC glad_debug_glGetProgramiv = glad_debug_impl_glGetProgramiv; +PFNGLGETQUERYOBJECTI64VPROC glad_glGetQueryObjecti64v; +void APIENTRY glad_debug_impl_glGetQueryObjecti64v(GLuint arg0, GLenum arg1, GLint64 * arg2) { + _pre_call_callback("glGetQueryObjecti64v", (void*)glGetQueryObjecti64v, 3, arg0, arg1, arg2); + glad_glGetQueryObjecti64v(arg0, arg1, arg2); + _post_call_callback("glGetQueryObjecti64v", (void*)glGetQueryObjecti64v, 3, arg0, arg1, arg2); + +} +PFNGLGETQUERYOBJECTI64VPROC glad_debug_glGetQueryObjecti64v = glad_debug_impl_glGetQueryObjecti64v; +PFNGLGETQUERYOBJECTIVPROC glad_glGetQueryObjectiv; +void APIENTRY glad_debug_impl_glGetQueryObjectiv(GLuint arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetQueryObjectiv", (void*)glGetQueryObjectiv, 3, arg0, arg1, arg2); + glad_glGetQueryObjectiv(arg0, arg1, arg2); + _post_call_callback("glGetQueryObjectiv", (void*)glGetQueryObjectiv, 3, arg0, arg1, arg2); + +} +PFNGLGETQUERYOBJECTIVPROC glad_debug_glGetQueryObjectiv = glad_debug_impl_glGetQueryObjectiv; +PFNGLGETQUERYOBJECTUI64VPROC glad_glGetQueryObjectui64v; +void APIENTRY glad_debug_impl_glGetQueryObjectui64v(GLuint arg0, GLenum arg1, GLuint64 * arg2) { + _pre_call_callback("glGetQueryObjectui64v", (void*)glGetQueryObjectui64v, 3, arg0, arg1, arg2); + glad_glGetQueryObjectui64v(arg0, arg1, arg2); + _post_call_callback("glGetQueryObjectui64v", (void*)glGetQueryObjectui64v, 3, arg0, arg1, arg2); + +} +PFNGLGETQUERYOBJECTUI64VPROC glad_debug_glGetQueryObjectui64v = glad_debug_impl_glGetQueryObjectui64v; +PFNGLGETQUERYOBJECTUIVPROC glad_glGetQueryObjectuiv; +void APIENTRY glad_debug_impl_glGetQueryObjectuiv(GLuint arg0, GLenum arg1, GLuint * arg2) { + _pre_call_callback("glGetQueryObjectuiv", (void*)glGetQueryObjectuiv, 3, arg0, arg1, arg2); + glad_glGetQueryObjectuiv(arg0, arg1, arg2); + _post_call_callback("glGetQueryObjectuiv", (void*)glGetQueryObjectuiv, 3, arg0, arg1, arg2); + +} +PFNGLGETQUERYOBJECTUIVPROC glad_debug_glGetQueryObjectuiv = glad_debug_impl_glGetQueryObjectuiv; +PFNGLGETQUERYIVPROC glad_glGetQueryiv; +void APIENTRY glad_debug_impl_glGetQueryiv(GLenum arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetQueryiv", (void*)glGetQueryiv, 3, arg0, arg1, arg2); + glad_glGetQueryiv(arg0, arg1, arg2); + _post_call_callback("glGetQueryiv", (void*)glGetQueryiv, 3, arg0, arg1, arg2); + +} +PFNGLGETQUERYIVPROC glad_debug_glGetQueryiv = glad_debug_impl_glGetQueryiv; +PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_glGetRenderbufferParameteriv; +void APIENTRY glad_debug_impl_glGetRenderbufferParameteriv(GLenum arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetRenderbufferParameteriv", (void*)glGetRenderbufferParameteriv, 3, arg0, arg1, arg2); + glad_glGetRenderbufferParameteriv(arg0, arg1, arg2); + _post_call_callback("glGetRenderbufferParameteriv", (void*)glGetRenderbufferParameteriv, 3, arg0, arg1, arg2); + +} +PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_debug_glGetRenderbufferParameteriv = glad_debug_impl_glGetRenderbufferParameteriv; +PFNGLGETSAMPLERPARAMETERIIVPROC glad_glGetSamplerParameterIiv; +void APIENTRY glad_debug_impl_glGetSamplerParameterIiv(GLuint arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetSamplerParameterIiv", (void*)glGetSamplerParameterIiv, 3, arg0, arg1, arg2); + glad_glGetSamplerParameterIiv(arg0, arg1, arg2); + _post_call_callback("glGetSamplerParameterIiv", (void*)glGetSamplerParameterIiv, 3, arg0, arg1, arg2); + +} +PFNGLGETSAMPLERPARAMETERIIVPROC glad_debug_glGetSamplerParameterIiv = glad_debug_impl_glGetSamplerParameterIiv; +PFNGLGETSAMPLERPARAMETERIUIVPROC glad_glGetSamplerParameterIuiv; +void APIENTRY glad_debug_impl_glGetSamplerParameterIuiv(GLuint arg0, GLenum arg1, GLuint * arg2) { + _pre_call_callback("glGetSamplerParameterIuiv", (void*)glGetSamplerParameterIuiv, 3, arg0, arg1, arg2); + glad_glGetSamplerParameterIuiv(arg0, arg1, arg2); + _post_call_callback("glGetSamplerParameterIuiv", (void*)glGetSamplerParameterIuiv, 3, arg0, arg1, arg2); + +} +PFNGLGETSAMPLERPARAMETERIUIVPROC glad_debug_glGetSamplerParameterIuiv = glad_debug_impl_glGetSamplerParameterIuiv; +PFNGLGETSAMPLERPARAMETERFVPROC glad_glGetSamplerParameterfv; +void APIENTRY glad_debug_impl_glGetSamplerParameterfv(GLuint arg0, GLenum arg1, GLfloat * arg2) { + _pre_call_callback("glGetSamplerParameterfv", (void*)glGetSamplerParameterfv, 3, arg0, arg1, arg2); + glad_glGetSamplerParameterfv(arg0, arg1, arg2); + _post_call_callback("glGetSamplerParameterfv", (void*)glGetSamplerParameterfv, 3, arg0, arg1, arg2); + +} +PFNGLGETSAMPLERPARAMETERFVPROC glad_debug_glGetSamplerParameterfv = glad_debug_impl_glGetSamplerParameterfv; +PFNGLGETSAMPLERPARAMETERIVPROC glad_glGetSamplerParameteriv; +void APIENTRY glad_debug_impl_glGetSamplerParameteriv(GLuint arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetSamplerParameteriv", (void*)glGetSamplerParameteriv, 3, arg0, arg1, arg2); + glad_glGetSamplerParameteriv(arg0, arg1, arg2); + _post_call_callback("glGetSamplerParameteriv", (void*)glGetSamplerParameteriv, 3, arg0, arg1, arg2); + +} +PFNGLGETSAMPLERPARAMETERIVPROC glad_debug_glGetSamplerParameteriv = glad_debug_impl_glGetSamplerParameteriv; +PFNGLGETSHADERINFOLOGPROC glad_glGetShaderInfoLog; +void APIENTRY glad_debug_impl_glGetShaderInfoLog(GLuint arg0, GLsizei arg1, GLsizei * arg2, GLchar * arg3) { + _pre_call_callback("glGetShaderInfoLog", (void*)glGetShaderInfoLog, 4, arg0, arg1, arg2, arg3); + glad_glGetShaderInfoLog(arg0, arg1, arg2, arg3); + _post_call_callback("glGetShaderInfoLog", (void*)glGetShaderInfoLog, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETSHADERINFOLOGPROC glad_debug_glGetShaderInfoLog = glad_debug_impl_glGetShaderInfoLog; +PFNGLGETSHADERSOURCEPROC glad_glGetShaderSource; +void APIENTRY glad_debug_impl_glGetShaderSource(GLuint arg0, GLsizei arg1, GLsizei * arg2, GLchar * arg3) { + _pre_call_callback("glGetShaderSource", (void*)glGetShaderSource, 4, arg0, arg1, arg2, arg3); + glad_glGetShaderSource(arg0, arg1, arg2, arg3); + _post_call_callback("glGetShaderSource", (void*)glGetShaderSource, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETSHADERSOURCEPROC glad_debug_glGetShaderSource = glad_debug_impl_glGetShaderSource; +PFNGLGETSHADERIVPROC glad_glGetShaderiv; +void APIENTRY glad_debug_impl_glGetShaderiv(GLuint arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetShaderiv", (void*)glGetShaderiv, 3, arg0, arg1, arg2); + glad_glGetShaderiv(arg0, arg1, arg2); + _post_call_callback("glGetShaderiv", (void*)glGetShaderiv, 3, arg0, arg1, arg2); + +} +PFNGLGETSHADERIVPROC glad_debug_glGetShaderiv = glad_debug_impl_glGetShaderiv; +PFNGLGETSTRINGPROC glad_glGetString; +const GLubyte * APIENTRY glad_debug_impl_glGetString(GLenum arg0) { + const GLubyte * ret; + _pre_call_callback("glGetString", (void*)glGetString, 1, arg0); + ret = glad_glGetString(arg0); + _post_call_callback("glGetString", (void*)glGetString, 1, arg0); + return ret; +} +PFNGLGETSTRINGPROC glad_debug_glGetString = glad_debug_impl_glGetString; +PFNGLGETSTRINGIPROC glad_glGetStringi; +const GLubyte * APIENTRY glad_debug_impl_glGetStringi(GLenum arg0, GLuint arg1) { + const GLubyte * ret; + _pre_call_callback("glGetStringi", (void*)glGetStringi, 2, arg0, arg1); + ret = glad_glGetStringi(arg0, arg1); + _post_call_callback("glGetStringi", (void*)glGetStringi, 2, arg0, arg1); + return ret; +} +PFNGLGETSTRINGIPROC glad_debug_glGetStringi = glad_debug_impl_glGetStringi; +PFNGLGETSYNCIVPROC glad_glGetSynciv; +void APIENTRY glad_debug_impl_glGetSynciv(GLsync arg0, GLenum arg1, GLsizei arg2, GLsizei * arg3, GLint * arg4) { + _pre_call_callback("glGetSynciv", (void*)glGetSynciv, 5, arg0, arg1, arg2, arg3, arg4); + glad_glGetSynciv(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glGetSynciv", (void*)glGetSynciv, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLGETSYNCIVPROC glad_debug_glGetSynciv = glad_debug_impl_glGetSynciv; +PFNGLGETTEXIMAGEPROC glad_glGetTexImage; +void APIENTRY glad_debug_impl_glGetTexImage(GLenum arg0, GLint arg1, GLenum arg2, GLenum arg3, void * arg4) { + _pre_call_callback("glGetTexImage", (void*)glGetTexImage, 5, arg0, arg1, arg2, arg3, arg4); + glad_glGetTexImage(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glGetTexImage", (void*)glGetTexImage, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLGETTEXIMAGEPROC glad_debug_glGetTexImage = glad_debug_impl_glGetTexImage; +PFNGLGETTEXLEVELPARAMETERFVPROC glad_glGetTexLevelParameterfv; +void APIENTRY glad_debug_impl_glGetTexLevelParameterfv(GLenum arg0, GLint arg1, GLenum arg2, GLfloat * arg3) { + _pre_call_callback("glGetTexLevelParameterfv", (void*)glGetTexLevelParameterfv, 4, arg0, arg1, arg2, arg3); + glad_glGetTexLevelParameterfv(arg0, arg1, arg2, arg3); + _post_call_callback("glGetTexLevelParameterfv", (void*)glGetTexLevelParameterfv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETTEXLEVELPARAMETERFVPROC glad_debug_glGetTexLevelParameterfv = glad_debug_impl_glGetTexLevelParameterfv; +PFNGLGETTEXLEVELPARAMETERIVPROC glad_glGetTexLevelParameteriv; +void APIENTRY glad_debug_impl_glGetTexLevelParameteriv(GLenum arg0, GLint arg1, GLenum arg2, GLint * arg3) { + _pre_call_callback("glGetTexLevelParameteriv", (void*)glGetTexLevelParameteriv, 4, arg0, arg1, arg2, arg3); + glad_glGetTexLevelParameteriv(arg0, arg1, arg2, arg3); + _post_call_callback("glGetTexLevelParameteriv", (void*)glGetTexLevelParameteriv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETTEXLEVELPARAMETERIVPROC glad_debug_glGetTexLevelParameteriv = glad_debug_impl_glGetTexLevelParameteriv; +PFNGLGETTEXPARAMETERIIVPROC glad_glGetTexParameterIiv; +void APIENTRY glad_debug_impl_glGetTexParameterIiv(GLenum arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetTexParameterIiv", (void*)glGetTexParameterIiv, 3, arg0, arg1, arg2); + glad_glGetTexParameterIiv(arg0, arg1, arg2); + _post_call_callback("glGetTexParameterIiv", (void*)glGetTexParameterIiv, 3, arg0, arg1, arg2); + +} +PFNGLGETTEXPARAMETERIIVPROC glad_debug_glGetTexParameterIiv = glad_debug_impl_glGetTexParameterIiv; +PFNGLGETTEXPARAMETERIUIVPROC glad_glGetTexParameterIuiv; +void APIENTRY glad_debug_impl_glGetTexParameterIuiv(GLenum arg0, GLenum arg1, GLuint * arg2) { + _pre_call_callback("glGetTexParameterIuiv", (void*)glGetTexParameterIuiv, 3, arg0, arg1, arg2); + glad_glGetTexParameterIuiv(arg0, arg1, arg2); + _post_call_callback("glGetTexParameterIuiv", (void*)glGetTexParameterIuiv, 3, arg0, arg1, arg2); + +} +PFNGLGETTEXPARAMETERIUIVPROC glad_debug_glGetTexParameterIuiv = glad_debug_impl_glGetTexParameterIuiv; +PFNGLGETTEXPARAMETERFVPROC glad_glGetTexParameterfv; +void APIENTRY glad_debug_impl_glGetTexParameterfv(GLenum arg0, GLenum arg1, GLfloat * arg2) { + _pre_call_callback("glGetTexParameterfv", (void*)glGetTexParameterfv, 3, arg0, arg1, arg2); + glad_glGetTexParameterfv(arg0, arg1, arg2); + _post_call_callback("glGetTexParameterfv", (void*)glGetTexParameterfv, 3, arg0, arg1, arg2); + +} +PFNGLGETTEXPARAMETERFVPROC glad_debug_glGetTexParameterfv = glad_debug_impl_glGetTexParameterfv; +PFNGLGETTEXPARAMETERIVPROC glad_glGetTexParameteriv; +void APIENTRY glad_debug_impl_glGetTexParameteriv(GLenum arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetTexParameteriv", (void*)glGetTexParameteriv, 3, arg0, arg1, arg2); + glad_glGetTexParameteriv(arg0, arg1, arg2); + _post_call_callback("glGetTexParameteriv", (void*)glGetTexParameteriv, 3, arg0, arg1, arg2); + +} +PFNGLGETTEXPARAMETERIVPROC glad_debug_glGetTexParameteriv = glad_debug_impl_glGetTexParameteriv; +PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_glGetTransformFeedbackVarying; +void APIENTRY glad_debug_impl_glGetTransformFeedbackVarying(GLuint arg0, GLuint arg1, GLsizei arg2, GLsizei * arg3, GLsizei * arg4, GLenum * arg5, GLchar * arg6) { + _pre_call_callback("glGetTransformFeedbackVarying", (void*)glGetTransformFeedbackVarying, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glGetTransformFeedbackVarying(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glGetTransformFeedbackVarying", (void*)glGetTransformFeedbackVarying, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_debug_glGetTransformFeedbackVarying = glad_debug_impl_glGetTransformFeedbackVarying; +PFNGLGETUNIFORMBLOCKINDEXPROC glad_glGetUniformBlockIndex; +GLuint APIENTRY glad_debug_impl_glGetUniformBlockIndex(GLuint arg0, const GLchar * arg1) { + GLuint ret; + _pre_call_callback("glGetUniformBlockIndex", (void*)glGetUniformBlockIndex, 2, arg0, arg1); + ret = glad_glGetUniformBlockIndex(arg0, arg1); + _post_call_callback("glGetUniformBlockIndex", (void*)glGetUniformBlockIndex, 2, arg0, arg1); + return ret; +} +PFNGLGETUNIFORMBLOCKINDEXPROC glad_debug_glGetUniformBlockIndex = glad_debug_impl_glGetUniformBlockIndex; +PFNGLGETUNIFORMINDICESPROC glad_glGetUniformIndices; +void APIENTRY glad_debug_impl_glGetUniformIndices(GLuint arg0, GLsizei arg1, const GLchar *const* arg2, GLuint * arg3) { + _pre_call_callback("glGetUniformIndices", (void*)glGetUniformIndices, 4, arg0, arg1, arg2, arg3); + glad_glGetUniformIndices(arg0, arg1, arg2, arg3); + _post_call_callback("glGetUniformIndices", (void*)glGetUniformIndices, 4, arg0, arg1, arg2, arg3); + +} +PFNGLGETUNIFORMINDICESPROC glad_debug_glGetUniformIndices = glad_debug_impl_glGetUniformIndices; +PFNGLGETUNIFORMLOCATIONPROC glad_glGetUniformLocation; +GLint APIENTRY glad_debug_impl_glGetUniformLocation(GLuint arg0, const GLchar * arg1) { + GLint ret; + _pre_call_callback("glGetUniformLocation", (void*)glGetUniformLocation, 2, arg0, arg1); + ret = glad_glGetUniformLocation(arg0, arg1); + _post_call_callback("glGetUniformLocation", (void*)glGetUniformLocation, 2, arg0, arg1); + return ret; +} +PFNGLGETUNIFORMLOCATIONPROC glad_debug_glGetUniformLocation = glad_debug_impl_glGetUniformLocation; +PFNGLGETUNIFORMFVPROC glad_glGetUniformfv; +void APIENTRY glad_debug_impl_glGetUniformfv(GLuint arg0, GLint arg1, GLfloat * arg2) { + _pre_call_callback("glGetUniformfv", (void*)glGetUniformfv, 3, arg0, arg1, arg2); + glad_glGetUniformfv(arg0, arg1, arg2); + _post_call_callback("glGetUniformfv", (void*)glGetUniformfv, 3, arg0, arg1, arg2); + +} +PFNGLGETUNIFORMFVPROC glad_debug_glGetUniformfv = glad_debug_impl_glGetUniformfv; +PFNGLGETUNIFORMIVPROC glad_glGetUniformiv; +void APIENTRY glad_debug_impl_glGetUniformiv(GLuint arg0, GLint arg1, GLint * arg2) { + _pre_call_callback("glGetUniformiv", (void*)glGetUniformiv, 3, arg0, arg1, arg2); + glad_glGetUniformiv(arg0, arg1, arg2); + _post_call_callback("glGetUniformiv", (void*)glGetUniformiv, 3, arg0, arg1, arg2); + +} +PFNGLGETUNIFORMIVPROC glad_debug_glGetUniformiv = glad_debug_impl_glGetUniformiv; +PFNGLGETUNIFORMUIVPROC glad_glGetUniformuiv; +void APIENTRY glad_debug_impl_glGetUniformuiv(GLuint arg0, GLint arg1, GLuint * arg2) { + _pre_call_callback("glGetUniformuiv", (void*)glGetUniformuiv, 3, arg0, arg1, arg2); + glad_glGetUniformuiv(arg0, arg1, arg2); + _post_call_callback("glGetUniformuiv", (void*)glGetUniformuiv, 3, arg0, arg1, arg2); + +} +PFNGLGETUNIFORMUIVPROC glad_debug_glGetUniformuiv = glad_debug_impl_glGetUniformuiv; +PFNGLGETVERTEXATTRIBIIVPROC glad_glGetVertexAttribIiv; +void APIENTRY glad_debug_impl_glGetVertexAttribIiv(GLuint arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetVertexAttribIiv", (void*)glGetVertexAttribIiv, 3, arg0, arg1, arg2); + glad_glGetVertexAttribIiv(arg0, arg1, arg2); + _post_call_callback("glGetVertexAttribIiv", (void*)glGetVertexAttribIiv, 3, arg0, arg1, arg2); + +} +PFNGLGETVERTEXATTRIBIIVPROC glad_debug_glGetVertexAttribIiv = glad_debug_impl_glGetVertexAttribIiv; +PFNGLGETVERTEXATTRIBIUIVPROC glad_glGetVertexAttribIuiv; +void APIENTRY glad_debug_impl_glGetVertexAttribIuiv(GLuint arg0, GLenum arg1, GLuint * arg2) { + _pre_call_callback("glGetVertexAttribIuiv", (void*)glGetVertexAttribIuiv, 3, arg0, arg1, arg2); + glad_glGetVertexAttribIuiv(arg0, arg1, arg2); + _post_call_callback("glGetVertexAttribIuiv", (void*)glGetVertexAttribIuiv, 3, arg0, arg1, arg2); + +} +PFNGLGETVERTEXATTRIBIUIVPROC glad_debug_glGetVertexAttribIuiv = glad_debug_impl_glGetVertexAttribIuiv; +PFNGLGETVERTEXATTRIBPOINTERVPROC glad_glGetVertexAttribPointerv; +void APIENTRY glad_debug_impl_glGetVertexAttribPointerv(GLuint arg0, GLenum arg1, void ** arg2) { + _pre_call_callback("glGetVertexAttribPointerv", (void*)glGetVertexAttribPointerv, 3, arg0, arg1, arg2); + glad_glGetVertexAttribPointerv(arg0, arg1, arg2); + _post_call_callback("glGetVertexAttribPointerv", (void*)glGetVertexAttribPointerv, 3, arg0, arg1, arg2); + +} +PFNGLGETVERTEXATTRIBPOINTERVPROC glad_debug_glGetVertexAttribPointerv = glad_debug_impl_glGetVertexAttribPointerv; +PFNGLGETVERTEXATTRIBDVPROC glad_glGetVertexAttribdv; +void APIENTRY glad_debug_impl_glGetVertexAttribdv(GLuint arg0, GLenum arg1, GLdouble * arg2) { + _pre_call_callback("glGetVertexAttribdv", (void*)glGetVertexAttribdv, 3, arg0, arg1, arg2); + glad_glGetVertexAttribdv(arg0, arg1, arg2); + _post_call_callback("glGetVertexAttribdv", (void*)glGetVertexAttribdv, 3, arg0, arg1, arg2); + +} +PFNGLGETVERTEXATTRIBDVPROC glad_debug_glGetVertexAttribdv = glad_debug_impl_glGetVertexAttribdv; +PFNGLGETVERTEXATTRIBFVPROC glad_glGetVertexAttribfv; +void APIENTRY glad_debug_impl_glGetVertexAttribfv(GLuint arg0, GLenum arg1, GLfloat * arg2) { + _pre_call_callback("glGetVertexAttribfv", (void*)glGetVertexAttribfv, 3, arg0, arg1, arg2); + glad_glGetVertexAttribfv(arg0, arg1, arg2); + _post_call_callback("glGetVertexAttribfv", (void*)glGetVertexAttribfv, 3, arg0, arg1, arg2); + +} +PFNGLGETVERTEXATTRIBFVPROC glad_debug_glGetVertexAttribfv = glad_debug_impl_glGetVertexAttribfv; +PFNGLGETVERTEXATTRIBIVPROC glad_glGetVertexAttribiv; +void APIENTRY glad_debug_impl_glGetVertexAttribiv(GLuint arg0, GLenum arg1, GLint * arg2) { + _pre_call_callback("glGetVertexAttribiv", (void*)glGetVertexAttribiv, 3, arg0, arg1, arg2); + glad_glGetVertexAttribiv(arg0, arg1, arg2); + _post_call_callback("glGetVertexAttribiv", (void*)glGetVertexAttribiv, 3, arg0, arg1, arg2); + +} +PFNGLGETVERTEXATTRIBIVPROC glad_debug_glGetVertexAttribiv = glad_debug_impl_glGetVertexAttribiv; +PFNGLHINTPROC glad_glHint; +void APIENTRY glad_debug_impl_glHint(GLenum arg0, GLenum arg1) { + _pre_call_callback("glHint", (void*)glHint, 2, arg0, arg1); + glad_glHint(arg0, arg1); + _post_call_callback("glHint", (void*)glHint, 2, arg0, arg1); + +} +PFNGLHINTPROC glad_debug_glHint = glad_debug_impl_glHint; +PFNGLISBUFFERPROC glad_glIsBuffer; +GLboolean APIENTRY glad_debug_impl_glIsBuffer(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsBuffer", (void*)glIsBuffer, 1, arg0); + ret = glad_glIsBuffer(arg0); + _post_call_callback("glIsBuffer", (void*)glIsBuffer, 1, arg0); + return ret; +} +PFNGLISBUFFERPROC glad_debug_glIsBuffer = glad_debug_impl_glIsBuffer; +PFNGLISENABLEDPROC glad_glIsEnabled; +GLboolean APIENTRY glad_debug_impl_glIsEnabled(GLenum arg0) { + GLboolean ret; + _pre_call_callback("glIsEnabled", (void*)glIsEnabled, 1, arg0); + ret = glad_glIsEnabled(arg0); + _post_call_callback("glIsEnabled", (void*)glIsEnabled, 1, arg0); + return ret; +} +PFNGLISENABLEDPROC glad_debug_glIsEnabled = glad_debug_impl_glIsEnabled; +PFNGLISENABLEDIPROC glad_glIsEnabledi; +GLboolean APIENTRY glad_debug_impl_glIsEnabledi(GLenum arg0, GLuint arg1) { + GLboolean ret; + _pre_call_callback("glIsEnabledi", (void*)glIsEnabledi, 2, arg0, arg1); + ret = glad_glIsEnabledi(arg0, arg1); + _post_call_callback("glIsEnabledi", (void*)glIsEnabledi, 2, arg0, arg1); + return ret; +} +PFNGLISENABLEDIPROC glad_debug_glIsEnabledi = glad_debug_impl_glIsEnabledi; +PFNGLISFRAMEBUFFERPROC glad_glIsFramebuffer; +GLboolean APIENTRY glad_debug_impl_glIsFramebuffer(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsFramebuffer", (void*)glIsFramebuffer, 1, arg0); + ret = glad_glIsFramebuffer(arg0); + _post_call_callback("glIsFramebuffer", (void*)glIsFramebuffer, 1, arg0); + return ret; +} +PFNGLISFRAMEBUFFERPROC glad_debug_glIsFramebuffer = glad_debug_impl_glIsFramebuffer; +PFNGLISPROGRAMPROC glad_glIsProgram; +GLboolean APIENTRY glad_debug_impl_glIsProgram(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsProgram", (void*)glIsProgram, 1, arg0); + ret = glad_glIsProgram(arg0); + _post_call_callback("glIsProgram", (void*)glIsProgram, 1, arg0); + return ret; +} +PFNGLISPROGRAMPROC glad_debug_glIsProgram = glad_debug_impl_glIsProgram; +PFNGLISQUERYPROC glad_glIsQuery; +GLboolean APIENTRY glad_debug_impl_glIsQuery(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsQuery", (void*)glIsQuery, 1, arg0); + ret = glad_glIsQuery(arg0); + _post_call_callback("glIsQuery", (void*)glIsQuery, 1, arg0); + return ret; +} +PFNGLISQUERYPROC glad_debug_glIsQuery = glad_debug_impl_glIsQuery; +PFNGLISRENDERBUFFERPROC glad_glIsRenderbuffer; +GLboolean APIENTRY glad_debug_impl_glIsRenderbuffer(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsRenderbuffer", (void*)glIsRenderbuffer, 1, arg0); + ret = glad_glIsRenderbuffer(arg0); + _post_call_callback("glIsRenderbuffer", (void*)glIsRenderbuffer, 1, arg0); + return ret; +} +PFNGLISRENDERBUFFERPROC glad_debug_glIsRenderbuffer = glad_debug_impl_glIsRenderbuffer; +PFNGLISSAMPLERPROC glad_glIsSampler; +GLboolean APIENTRY glad_debug_impl_glIsSampler(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsSampler", (void*)glIsSampler, 1, arg0); + ret = glad_glIsSampler(arg0); + _post_call_callback("glIsSampler", (void*)glIsSampler, 1, arg0); + return ret; +} +PFNGLISSAMPLERPROC glad_debug_glIsSampler = glad_debug_impl_glIsSampler; +PFNGLISSHADERPROC glad_glIsShader; +GLboolean APIENTRY glad_debug_impl_glIsShader(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsShader", (void*)glIsShader, 1, arg0); + ret = glad_glIsShader(arg0); + _post_call_callback("glIsShader", (void*)glIsShader, 1, arg0); + return ret; +} +PFNGLISSHADERPROC glad_debug_glIsShader = glad_debug_impl_glIsShader; +PFNGLISSYNCPROC glad_glIsSync; +GLboolean APIENTRY glad_debug_impl_glIsSync(GLsync arg0) { + GLboolean ret; + _pre_call_callback("glIsSync", (void*)glIsSync, 1, arg0); + ret = glad_glIsSync(arg0); + _post_call_callback("glIsSync", (void*)glIsSync, 1, arg0); + return ret; +} +PFNGLISSYNCPROC glad_debug_glIsSync = glad_debug_impl_glIsSync; +PFNGLISTEXTUREPROC glad_glIsTexture; +GLboolean APIENTRY glad_debug_impl_glIsTexture(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsTexture", (void*)glIsTexture, 1, arg0); + ret = glad_glIsTexture(arg0); + _post_call_callback("glIsTexture", (void*)glIsTexture, 1, arg0); + return ret; +} +PFNGLISTEXTUREPROC glad_debug_glIsTexture = glad_debug_impl_glIsTexture; +PFNGLISVERTEXARRAYPROC glad_glIsVertexArray; +GLboolean APIENTRY glad_debug_impl_glIsVertexArray(GLuint arg0) { + GLboolean ret; + _pre_call_callback("glIsVertexArray", (void*)glIsVertexArray, 1, arg0); + ret = glad_glIsVertexArray(arg0); + _post_call_callback("glIsVertexArray", (void*)glIsVertexArray, 1, arg0); + return ret; +} +PFNGLISVERTEXARRAYPROC glad_debug_glIsVertexArray = glad_debug_impl_glIsVertexArray; +PFNGLLINEWIDTHPROC glad_glLineWidth; +void APIENTRY glad_debug_impl_glLineWidth(GLfloat arg0) { + _pre_call_callback("glLineWidth", (void*)glLineWidth, 1, arg0); + glad_glLineWidth(arg0); + _post_call_callback("glLineWidth", (void*)glLineWidth, 1, arg0); + +} +PFNGLLINEWIDTHPROC glad_debug_glLineWidth = glad_debug_impl_glLineWidth; +PFNGLLINKPROGRAMPROC glad_glLinkProgram; +void APIENTRY glad_debug_impl_glLinkProgram(GLuint arg0) { + _pre_call_callback("glLinkProgram", (void*)glLinkProgram, 1, arg0); + glad_glLinkProgram(arg0); + _post_call_callback("glLinkProgram", (void*)glLinkProgram, 1, arg0); + +} +PFNGLLINKPROGRAMPROC glad_debug_glLinkProgram = glad_debug_impl_glLinkProgram; +PFNGLLOGICOPPROC glad_glLogicOp; +void APIENTRY glad_debug_impl_glLogicOp(GLenum arg0) { + _pre_call_callback("glLogicOp", (void*)glLogicOp, 1, arg0); + glad_glLogicOp(arg0); + _post_call_callback("glLogicOp", (void*)glLogicOp, 1, arg0); + +} +PFNGLLOGICOPPROC glad_debug_glLogicOp = glad_debug_impl_glLogicOp; +PFNGLMAPBUFFERPROC glad_glMapBuffer; +void * APIENTRY glad_debug_impl_glMapBuffer(GLenum arg0, GLenum arg1) { + void * ret; + _pre_call_callback("glMapBuffer", (void*)glMapBuffer, 2, arg0, arg1); + ret = glad_glMapBuffer(arg0, arg1); + _post_call_callback("glMapBuffer", (void*)glMapBuffer, 2, arg0, arg1); + return ret; +} +PFNGLMAPBUFFERPROC glad_debug_glMapBuffer = glad_debug_impl_glMapBuffer; +PFNGLMAPBUFFERRANGEPROC glad_glMapBufferRange; +void * APIENTRY glad_debug_impl_glMapBufferRange(GLenum arg0, GLintptr arg1, GLsizeiptr arg2, GLbitfield arg3) { + void * ret; + _pre_call_callback("glMapBufferRange", (void*)glMapBufferRange, 4, arg0, arg1, arg2, arg3); + ret = glad_glMapBufferRange(arg0, arg1, arg2, arg3); + _post_call_callback("glMapBufferRange", (void*)glMapBufferRange, 4, arg0, arg1, arg2, arg3); + return ret; +} +PFNGLMAPBUFFERRANGEPROC glad_debug_glMapBufferRange = glad_debug_impl_glMapBufferRange; +PFNGLMULTIDRAWARRAYSPROC glad_glMultiDrawArrays; +void APIENTRY glad_debug_impl_glMultiDrawArrays(GLenum arg0, const GLint * arg1, const GLsizei * arg2, GLsizei arg3) { + _pre_call_callback("glMultiDrawArrays", (void*)glMultiDrawArrays, 4, arg0, arg1, arg2, arg3); + glad_glMultiDrawArrays(arg0, arg1, arg2, arg3); + _post_call_callback("glMultiDrawArrays", (void*)glMultiDrawArrays, 4, arg0, arg1, arg2, arg3); + +} +PFNGLMULTIDRAWARRAYSPROC glad_debug_glMultiDrawArrays = glad_debug_impl_glMultiDrawArrays; +PFNGLMULTIDRAWELEMENTSPROC glad_glMultiDrawElements; +void APIENTRY glad_debug_impl_glMultiDrawElements(GLenum arg0, const GLsizei * arg1, GLenum arg2, const void *const* arg3, GLsizei arg4) { + _pre_call_callback("glMultiDrawElements", (void*)glMultiDrawElements, 5, arg0, arg1, arg2, arg3, arg4); + glad_glMultiDrawElements(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glMultiDrawElements", (void*)glMultiDrawElements, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLMULTIDRAWELEMENTSPROC glad_debug_glMultiDrawElements = glad_debug_impl_glMultiDrawElements; +PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_glMultiDrawElementsBaseVertex; +void APIENTRY glad_debug_impl_glMultiDrawElementsBaseVertex(GLenum arg0, const GLsizei * arg1, GLenum arg2, const void *const* arg3, GLsizei arg4, const GLint * arg5) { + _pre_call_callback("glMultiDrawElementsBaseVertex", (void*)glMultiDrawElementsBaseVertex, 6, arg0, arg1, arg2, arg3, arg4, arg5); + glad_glMultiDrawElementsBaseVertex(arg0, arg1, arg2, arg3, arg4, arg5); + _post_call_callback("glMultiDrawElementsBaseVertex", (void*)glMultiDrawElementsBaseVertex, 6, arg0, arg1, arg2, arg3, arg4, arg5); + +} +PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_debug_glMultiDrawElementsBaseVertex = glad_debug_impl_glMultiDrawElementsBaseVertex; +PFNGLMULTITEXCOORDP1UIPROC glad_glMultiTexCoordP1ui; +void APIENTRY glad_debug_impl_glMultiTexCoordP1ui(GLenum arg0, GLenum arg1, GLuint arg2) { + _pre_call_callback("glMultiTexCoordP1ui", (void*)glMultiTexCoordP1ui, 3, arg0, arg1, arg2); + glad_glMultiTexCoordP1ui(arg0, arg1, arg2); + _post_call_callback("glMultiTexCoordP1ui", (void*)glMultiTexCoordP1ui, 3, arg0, arg1, arg2); + +} +PFNGLMULTITEXCOORDP1UIPROC glad_debug_glMultiTexCoordP1ui = glad_debug_impl_glMultiTexCoordP1ui; +PFNGLMULTITEXCOORDP1UIVPROC glad_glMultiTexCoordP1uiv; +void APIENTRY glad_debug_impl_glMultiTexCoordP1uiv(GLenum arg0, GLenum arg1, const GLuint * arg2) { + _pre_call_callback("glMultiTexCoordP1uiv", (void*)glMultiTexCoordP1uiv, 3, arg0, arg1, arg2); + glad_glMultiTexCoordP1uiv(arg0, arg1, arg2); + _post_call_callback("glMultiTexCoordP1uiv", (void*)glMultiTexCoordP1uiv, 3, arg0, arg1, arg2); + +} +PFNGLMULTITEXCOORDP1UIVPROC glad_debug_glMultiTexCoordP1uiv = glad_debug_impl_glMultiTexCoordP1uiv; +PFNGLMULTITEXCOORDP2UIPROC glad_glMultiTexCoordP2ui; +void APIENTRY glad_debug_impl_glMultiTexCoordP2ui(GLenum arg0, GLenum arg1, GLuint arg2) { + _pre_call_callback("glMultiTexCoordP2ui", (void*)glMultiTexCoordP2ui, 3, arg0, arg1, arg2); + glad_glMultiTexCoordP2ui(arg0, arg1, arg2); + _post_call_callback("glMultiTexCoordP2ui", (void*)glMultiTexCoordP2ui, 3, arg0, arg1, arg2); + +} +PFNGLMULTITEXCOORDP2UIPROC glad_debug_glMultiTexCoordP2ui = glad_debug_impl_glMultiTexCoordP2ui; +PFNGLMULTITEXCOORDP2UIVPROC glad_glMultiTexCoordP2uiv; +void APIENTRY glad_debug_impl_glMultiTexCoordP2uiv(GLenum arg0, GLenum arg1, const GLuint * arg2) { + _pre_call_callback("glMultiTexCoordP2uiv", (void*)glMultiTexCoordP2uiv, 3, arg0, arg1, arg2); + glad_glMultiTexCoordP2uiv(arg0, arg1, arg2); + _post_call_callback("glMultiTexCoordP2uiv", (void*)glMultiTexCoordP2uiv, 3, arg0, arg1, arg2); + +} +PFNGLMULTITEXCOORDP2UIVPROC glad_debug_glMultiTexCoordP2uiv = glad_debug_impl_glMultiTexCoordP2uiv; +PFNGLMULTITEXCOORDP3UIPROC glad_glMultiTexCoordP3ui; +void APIENTRY glad_debug_impl_glMultiTexCoordP3ui(GLenum arg0, GLenum arg1, GLuint arg2) { + _pre_call_callback("glMultiTexCoordP3ui", (void*)glMultiTexCoordP3ui, 3, arg0, arg1, arg2); + glad_glMultiTexCoordP3ui(arg0, arg1, arg2); + _post_call_callback("glMultiTexCoordP3ui", (void*)glMultiTexCoordP3ui, 3, arg0, arg1, arg2); + +} +PFNGLMULTITEXCOORDP3UIPROC glad_debug_glMultiTexCoordP3ui = glad_debug_impl_glMultiTexCoordP3ui; +PFNGLMULTITEXCOORDP3UIVPROC glad_glMultiTexCoordP3uiv; +void APIENTRY glad_debug_impl_glMultiTexCoordP3uiv(GLenum arg0, GLenum arg1, const GLuint * arg2) { + _pre_call_callback("glMultiTexCoordP3uiv", (void*)glMultiTexCoordP3uiv, 3, arg0, arg1, arg2); + glad_glMultiTexCoordP3uiv(arg0, arg1, arg2); + _post_call_callback("glMultiTexCoordP3uiv", (void*)glMultiTexCoordP3uiv, 3, arg0, arg1, arg2); + +} +PFNGLMULTITEXCOORDP3UIVPROC glad_debug_glMultiTexCoordP3uiv = glad_debug_impl_glMultiTexCoordP3uiv; +PFNGLMULTITEXCOORDP4UIPROC glad_glMultiTexCoordP4ui; +void APIENTRY glad_debug_impl_glMultiTexCoordP4ui(GLenum arg0, GLenum arg1, GLuint arg2) { + _pre_call_callback("glMultiTexCoordP4ui", (void*)glMultiTexCoordP4ui, 3, arg0, arg1, arg2); + glad_glMultiTexCoordP4ui(arg0, arg1, arg2); + _post_call_callback("glMultiTexCoordP4ui", (void*)glMultiTexCoordP4ui, 3, arg0, arg1, arg2); + +} +PFNGLMULTITEXCOORDP4UIPROC glad_debug_glMultiTexCoordP4ui = glad_debug_impl_glMultiTexCoordP4ui; +PFNGLMULTITEXCOORDP4UIVPROC glad_glMultiTexCoordP4uiv; +void APIENTRY glad_debug_impl_glMultiTexCoordP4uiv(GLenum arg0, GLenum arg1, const GLuint * arg2) { + _pre_call_callback("glMultiTexCoordP4uiv", (void*)glMultiTexCoordP4uiv, 3, arg0, arg1, arg2); + glad_glMultiTexCoordP4uiv(arg0, arg1, arg2); + _post_call_callback("glMultiTexCoordP4uiv", (void*)glMultiTexCoordP4uiv, 3, arg0, arg1, arg2); + +} +PFNGLMULTITEXCOORDP4UIVPROC glad_debug_glMultiTexCoordP4uiv = glad_debug_impl_glMultiTexCoordP4uiv; +PFNGLNORMALP3UIPROC glad_glNormalP3ui; +void APIENTRY glad_debug_impl_glNormalP3ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glNormalP3ui", (void*)glNormalP3ui, 2, arg0, arg1); + glad_glNormalP3ui(arg0, arg1); + _post_call_callback("glNormalP3ui", (void*)glNormalP3ui, 2, arg0, arg1); + +} +PFNGLNORMALP3UIPROC glad_debug_glNormalP3ui = glad_debug_impl_glNormalP3ui; +PFNGLNORMALP3UIVPROC glad_glNormalP3uiv; +void APIENTRY glad_debug_impl_glNormalP3uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glNormalP3uiv", (void*)glNormalP3uiv, 2, arg0, arg1); + glad_glNormalP3uiv(arg0, arg1); + _post_call_callback("glNormalP3uiv", (void*)glNormalP3uiv, 2, arg0, arg1); + +} +PFNGLNORMALP3UIVPROC glad_debug_glNormalP3uiv = glad_debug_impl_glNormalP3uiv; +PFNGLPIXELSTOREFPROC glad_glPixelStoref; +void APIENTRY glad_debug_impl_glPixelStoref(GLenum arg0, GLfloat arg1) { + _pre_call_callback("glPixelStoref", (void*)glPixelStoref, 2, arg0, arg1); + glad_glPixelStoref(arg0, arg1); + _post_call_callback("glPixelStoref", (void*)glPixelStoref, 2, arg0, arg1); + +} +PFNGLPIXELSTOREFPROC glad_debug_glPixelStoref = glad_debug_impl_glPixelStoref; +PFNGLPIXELSTOREIPROC glad_glPixelStorei; +void APIENTRY glad_debug_impl_glPixelStorei(GLenum arg0, GLint arg1) { + _pre_call_callback("glPixelStorei", (void*)glPixelStorei, 2, arg0, arg1); + glad_glPixelStorei(arg0, arg1); + _post_call_callback("glPixelStorei", (void*)glPixelStorei, 2, arg0, arg1); + +} +PFNGLPIXELSTOREIPROC glad_debug_glPixelStorei = glad_debug_impl_glPixelStorei; +PFNGLPOINTPARAMETERFPROC glad_glPointParameterf; +void APIENTRY glad_debug_impl_glPointParameterf(GLenum arg0, GLfloat arg1) { + _pre_call_callback("glPointParameterf", (void*)glPointParameterf, 2, arg0, arg1); + glad_glPointParameterf(arg0, arg1); + _post_call_callback("glPointParameterf", (void*)glPointParameterf, 2, arg0, arg1); + +} +PFNGLPOINTPARAMETERFPROC glad_debug_glPointParameterf = glad_debug_impl_glPointParameterf; +PFNGLPOINTPARAMETERFVPROC glad_glPointParameterfv; +void APIENTRY glad_debug_impl_glPointParameterfv(GLenum arg0, const GLfloat * arg1) { + _pre_call_callback("glPointParameterfv", (void*)glPointParameterfv, 2, arg0, arg1); + glad_glPointParameterfv(arg0, arg1); + _post_call_callback("glPointParameterfv", (void*)glPointParameterfv, 2, arg0, arg1); + +} +PFNGLPOINTPARAMETERFVPROC glad_debug_glPointParameterfv = glad_debug_impl_glPointParameterfv; +PFNGLPOINTPARAMETERIPROC glad_glPointParameteri; +void APIENTRY glad_debug_impl_glPointParameteri(GLenum arg0, GLint arg1) { + _pre_call_callback("glPointParameteri", (void*)glPointParameteri, 2, arg0, arg1); + glad_glPointParameteri(arg0, arg1); + _post_call_callback("glPointParameteri", (void*)glPointParameteri, 2, arg0, arg1); + +} +PFNGLPOINTPARAMETERIPROC glad_debug_glPointParameteri = glad_debug_impl_glPointParameteri; +PFNGLPOINTPARAMETERIVPROC glad_glPointParameteriv; +void APIENTRY glad_debug_impl_glPointParameteriv(GLenum arg0, const GLint * arg1) { + _pre_call_callback("glPointParameteriv", (void*)glPointParameteriv, 2, arg0, arg1); + glad_glPointParameteriv(arg0, arg1); + _post_call_callback("glPointParameteriv", (void*)glPointParameteriv, 2, arg0, arg1); + +} +PFNGLPOINTPARAMETERIVPROC glad_debug_glPointParameteriv = glad_debug_impl_glPointParameteriv; +PFNGLPOINTSIZEPROC glad_glPointSize; +void APIENTRY glad_debug_impl_glPointSize(GLfloat arg0) { + _pre_call_callback("glPointSize", (void*)glPointSize, 1, arg0); + glad_glPointSize(arg0); + _post_call_callback("glPointSize", (void*)glPointSize, 1, arg0); + +} +PFNGLPOINTSIZEPROC glad_debug_glPointSize = glad_debug_impl_glPointSize; +PFNGLPOLYGONMODEPROC glad_glPolygonMode; +void APIENTRY glad_debug_impl_glPolygonMode(GLenum arg0, GLenum arg1) { + _pre_call_callback("glPolygonMode", (void*)glPolygonMode, 2, arg0, arg1); + glad_glPolygonMode(arg0, arg1); + _post_call_callback("glPolygonMode", (void*)glPolygonMode, 2, arg0, arg1); + +} +PFNGLPOLYGONMODEPROC glad_debug_glPolygonMode = glad_debug_impl_glPolygonMode; +PFNGLPOLYGONOFFSETPROC glad_glPolygonOffset; +void APIENTRY glad_debug_impl_glPolygonOffset(GLfloat arg0, GLfloat arg1) { + _pre_call_callback("glPolygonOffset", (void*)glPolygonOffset, 2, arg0, arg1); + glad_glPolygonOffset(arg0, arg1); + _post_call_callback("glPolygonOffset", (void*)glPolygonOffset, 2, arg0, arg1); + +} +PFNGLPOLYGONOFFSETPROC glad_debug_glPolygonOffset = glad_debug_impl_glPolygonOffset; +PFNGLPRIMITIVERESTARTINDEXPROC glad_glPrimitiveRestartIndex; +void APIENTRY glad_debug_impl_glPrimitiveRestartIndex(GLuint arg0) { + _pre_call_callback("glPrimitiveRestartIndex", (void*)glPrimitiveRestartIndex, 1, arg0); + glad_glPrimitiveRestartIndex(arg0); + _post_call_callback("glPrimitiveRestartIndex", (void*)glPrimitiveRestartIndex, 1, arg0); + +} +PFNGLPRIMITIVERESTARTINDEXPROC glad_debug_glPrimitiveRestartIndex = glad_debug_impl_glPrimitiveRestartIndex; +PFNGLPROVOKINGVERTEXPROC glad_glProvokingVertex; +void APIENTRY glad_debug_impl_glProvokingVertex(GLenum arg0) { + _pre_call_callback("glProvokingVertex", (void*)glProvokingVertex, 1, arg0); + glad_glProvokingVertex(arg0); + _post_call_callback("glProvokingVertex", (void*)glProvokingVertex, 1, arg0); + +} +PFNGLPROVOKINGVERTEXPROC glad_debug_glProvokingVertex = glad_debug_impl_glProvokingVertex; +PFNGLQUERYCOUNTERPROC glad_glQueryCounter; +void APIENTRY glad_debug_impl_glQueryCounter(GLuint arg0, GLenum arg1) { + _pre_call_callback("glQueryCounter", (void*)glQueryCounter, 2, arg0, arg1); + glad_glQueryCounter(arg0, arg1); + _post_call_callback("glQueryCounter", (void*)glQueryCounter, 2, arg0, arg1); + +} +PFNGLQUERYCOUNTERPROC glad_debug_glQueryCounter = glad_debug_impl_glQueryCounter; +PFNGLREADBUFFERPROC glad_glReadBuffer; +void APIENTRY glad_debug_impl_glReadBuffer(GLenum arg0) { + _pre_call_callback("glReadBuffer", (void*)glReadBuffer, 1, arg0); + glad_glReadBuffer(arg0); + _post_call_callback("glReadBuffer", (void*)glReadBuffer, 1, arg0); + +} +PFNGLREADBUFFERPROC glad_debug_glReadBuffer = glad_debug_impl_glReadBuffer; +PFNGLREADPIXELSPROC glad_glReadPixels; +void APIENTRY glad_debug_impl_glReadPixels(GLint arg0, GLint arg1, GLsizei arg2, GLsizei arg3, GLenum arg4, GLenum arg5, void * arg6) { + _pre_call_callback("glReadPixels", (void*)glReadPixels, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glReadPixels(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glReadPixels", (void*)glReadPixels, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLREADPIXELSPROC glad_debug_glReadPixels = glad_debug_impl_glReadPixels; +PFNGLRENDERBUFFERSTORAGEPROC glad_glRenderbufferStorage; +void APIENTRY glad_debug_impl_glRenderbufferStorage(GLenum arg0, GLenum arg1, GLsizei arg2, GLsizei arg3) { + _pre_call_callback("glRenderbufferStorage", (void*)glRenderbufferStorage, 4, arg0, arg1, arg2, arg3); + glad_glRenderbufferStorage(arg0, arg1, arg2, arg3); + _post_call_callback("glRenderbufferStorage", (void*)glRenderbufferStorage, 4, arg0, arg1, arg2, arg3); + +} +PFNGLRENDERBUFFERSTORAGEPROC glad_debug_glRenderbufferStorage = glad_debug_impl_glRenderbufferStorage; +PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glRenderbufferStorageMultisample; +void APIENTRY glad_debug_impl_glRenderbufferStorageMultisample(GLenum arg0, GLsizei arg1, GLenum arg2, GLsizei arg3, GLsizei arg4) { + _pre_call_callback("glRenderbufferStorageMultisample", (void*)glRenderbufferStorageMultisample, 5, arg0, arg1, arg2, arg3, arg4); + glad_glRenderbufferStorageMultisample(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glRenderbufferStorageMultisample", (void*)glRenderbufferStorageMultisample, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_debug_glRenderbufferStorageMultisample = glad_debug_impl_glRenderbufferStorageMultisample; +PFNGLSAMPLECOVERAGEPROC glad_glSampleCoverage; +void APIENTRY glad_debug_impl_glSampleCoverage(GLfloat arg0, GLboolean arg1) { + _pre_call_callback("glSampleCoverage", (void*)glSampleCoverage, 2, arg0, arg1); + glad_glSampleCoverage(arg0, arg1); + _post_call_callback("glSampleCoverage", (void*)glSampleCoverage, 2, arg0, arg1); + +} +PFNGLSAMPLECOVERAGEPROC glad_debug_glSampleCoverage = glad_debug_impl_glSampleCoverage; +PFNGLSAMPLEMASKIPROC glad_glSampleMaski; +void APIENTRY glad_debug_impl_glSampleMaski(GLuint arg0, GLbitfield arg1) { + _pre_call_callback("glSampleMaski", (void*)glSampleMaski, 2, arg0, arg1); + glad_glSampleMaski(arg0, arg1); + _post_call_callback("glSampleMaski", (void*)glSampleMaski, 2, arg0, arg1); + +} +PFNGLSAMPLEMASKIPROC glad_debug_glSampleMaski = glad_debug_impl_glSampleMaski; +PFNGLSAMPLERPARAMETERIIVPROC glad_glSamplerParameterIiv; +void APIENTRY glad_debug_impl_glSamplerParameterIiv(GLuint arg0, GLenum arg1, const GLint * arg2) { + _pre_call_callback("glSamplerParameterIiv", (void*)glSamplerParameterIiv, 3, arg0, arg1, arg2); + glad_glSamplerParameterIiv(arg0, arg1, arg2); + _post_call_callback("glSamplerParameterIiv", (void*)glSamplerParameterIiv, 3, arg0, arg1, arg2); + +} +PFNGLSAMPLERPARAMETERIIVPROC glad_debug_glSamplerParameterIiv = glad_debug_impl_glSamplerParameterIiv; +PFNGLSAMPLERPARAMETERIUIVPROC glad_glSamplerParameterIuiv; +void APIENTRY glad_debug_impl_glSamplerParameterIuiv(GLuint arg0, GLenum arg1, const GLuint * arg2) { + _pre_call_callback("glSamplerParameterIuiv", (void*)glSamplerParameterIuiv, 3, arg0, arg1, arg2); + glad_glSamplerParameterIuiv(arg0, arg1, arg2); + _post_call_callback("glSamplerParameterIuiv", (void*)glSamplerParameterIuiv, 3, arg0, arg1, arg2); + +} +PFNGLSAMPLERPARAMETERIUIVPROC glad_debug_glSamplerParameterIuiv = glad_debug_impl_glSamplerParameterIuiv; +PFNGLSAMPLERPARAMETERFPROC glad_glSamplerParameterf; +void APIENTRY glad_debug_impl_glSamplerParameterf(GLuint arg0, GLenum arg1, GLfloat arg2) { + _pre_call_callback("glSamplerParameterf", (void*)glSamplerParameterf, 3, arg0, arg1, arg2); + glad_glSamplerParameterf(arg0, arg1, arg2); + _post_call_callback("glSamplerParameterf", (void*)glSamplerParameterf, 3, arg0, arg1, arg2); + +} +PFNGLSAMPLERPARAMETERFPROC glad_debug_glSamplerParameterf = glad_debug_impl_glSamplerParameterf; +PFNGLSAMPLERPARAMETERFVPROC glad_glSamplerParameterfv; +void APIENTRY glad_debug_impl_glSamplerParameterfv(GLuint arg0, GLenum arg1, const GLfloat * arg2) { + _pre_call_callback("glSamplerParameterfv", (void*)glSamplerParameterfv, 3, arg0, arg1, arg2); + glad_glSamplerParameterfv(arg0, arg1, arg2); + _post_call_callback("glSamplerParameterfv", (void*)glSamplerParameterfv, 3, arg0, arg1, arg2); + +} +PFNGLSAMPLERPARAMETERFVPROC glad_debug_glSamplerParameterfv = glad_debug_impl_glSamplerParameterfv; +PFNGLSAMPLERPARAMETERIPROC glad_glSamplerParameteri; +void APIENTRY glad_debug_impl_glSamplerParameteri(GLuint arg0, GLenum arg1, GLint arg2) { + _pre_call_callback("glSamplerParameteri", (void*)glSamplerParameteri, 3, arg0, arg1, arg2); + glad_glSamplerParameteri(arg0, arg1, arg2); + _post_call_callback("glSamplerParameteri", (void*)glSamplerParameteri, 3, arg0, arg1, arg2); + +} +PFNGLSAMPLERPARAMETERIPROC glad_debug_glSamplerParameteri = glad_debug_impl_glSamplerParameteri; +PFNGLSAMPLERPARAMETERIVPROC glad_glSamplerParameteriv; +void APIENTRY glad_debug_impl_glSamplerParameteriv(GLuint arg0, GLenum arg1, const GLint * arg2) { + _pre_call_callback("glSamplerParameteriv", (void*)glSamplerParameteriv, 3, arg0, arg1, arg2); + glad_glSamplerParameteriv(arg0, arg1, arg2); + _post_call_callback("glSamplerParameteriv", (void*)glSamplerParameteriv, 3, arg0, arg1, arg2); + +} +PFNGLSAMPLERPARAMETERIVPROC glad_debug_glSamplerParameteriv = glad_debug_impl_glSamplerParameteriv; +PFNGLSCISSORPROC glad_glScissor; +void APIENTRY glad_debug_impl_glScissor(GLint arg0, GLint arg1, GLsizei arg2, GLsizei arg3) { + _pre_call_callback("glScissor", (void*)glScissor, 4, arg0, arg1, arg2, arg3); + glad_glScissor(arg0, arg1, arg2, arg3); + _post_call_callback("glScissor", (void*)glScissor, 4, arg0, arg1, arg2, arg3); + +} +PFNGLSCISSORPROC glad_debug_glScissor = glad_debug_impl_glScissor; +PFNGLSECONDARYCOLORP3UIPROC glad_glSecondaryColorP3ui; +void APIENTRY glad_debug_impl_glSecondaryColorP3ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glSecondaryColorP3ui", (void*)glSecondaryColorP3ui, 2, arg0, arg1); + glad_glSecondaryColorP3ui(arg0, arg1); + _post_call_callback("glSecondaryColorP3ui", (void*)glSecondaryColorP3ui, 2, arg0, arg1); + +} +PFNGLSECONDARYCOLORP3UIPROC glad_debug_glSecondaryColorP3ui = glad_debug_impl_glSecondaryColorP3ui; +PFNGLSECONDARYCOLORP3UIVPROC glad_glSecondaryColorP3uiv; +void APIENTRY glad_debug_impl_glSecondaryColorP3uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glSecondaryColorP3uiv", (void*)glSecondaryColorP3uiv, 2, arg0, arg1); + glad_glSecondaryColorP3uiv(arg0, arg1); + _post_call_callback("glSecondaryColorP3uiv", (void*)glSecondaryColorP3uiv, 2, arg0, arg1); + +} +PFNGLSECONDARYCOLORP3UIVPROC glad_debug_glSecondaryColorP3uiv = glad_debug_impl_glSecondaryColorP3uiv; +PFNGLSHADERSOURCEPROC glad_glShaderSource; +void APIENTRY glad_debug_impl_glShaderSource(GLuint arg0, GLsizei arg1, const GLchar *const* arg2, const GLint * arg3) { + _pre_call_callback("glShaderSource", (void*)glShaderSource, 4, arg0, arg1, arg2, arg3); + glad_glShaderSource(arg0, arg1, arg2, arg3); + _post_call_callback("glShaderSource", (void*)glShaderSource, 4, arg0, arg1, arg2, arg3); + +} +PFNGLSHADERSOURCEPROC glad_debug_glShaderSource = glad_debug_impl_glShaderSource; +PFNGLSTENCILFUNCPROC glad_glStencilFunc; +void APIENTRY glad_debug_impl_glStencilFunc(GLenum arg0, GLint arg1, GLuint arg2) { + _pre_call_callback("glStencilFunc", (void*)glStencilFunc, 3, arg0, arg1, arg2); + glad_glStencilFunc(arg0, arg1, arg2); + _post_call_callback("glStencilFunc", (void*)glStencilFunc, 3, arg0, arg1, arg2); + +} +PFNGLSTENCILFUNCPROC glad_debug_glStencilFunc = glad_debug_impl_glStencilFunc; +PFNGLSTENCILFUNCSEPARATEPROC glad_glStencilFuncSeparate; +void APIENTRY glad_debug_impl_glStencilFuncSeparate(GLenum arg0, GLenum arg1, GLint arg2, GLuint arg3) { + _pre_call_callback("glStencilFuncSeparate", (void*)glStencilFuncSeparate, 4, arg0, arg1, arg2, arg3); + glad_glStencilFuncSeparate(arg0, arg1, arg2, arg3); + _post_call_callback("glStencilFuncSeparate", (void*)glStencilFuncSeparate, 4, arg0, arg1, arg2, arg3); + +} +PFNGLSTENCILFUNCSEPARATEPROC glad_debug_glStencilFuncSeparate = glad_debug_impl_glStencilFuncSeparate; +PFNGLSTENCILMASKPROC glad_glStencilMask; +void APIENTRY glad_debug_impl_glStencilMask(GLuint arg0) { + _pre_call_callback("glStencilMask", (void*)glStencilMask, 1, arg0); + glad_glStencilMask(arg0); + _post_call_callback("glStencilMask", (void*)glStencilMask, 1, arg0); + +} +PFNGLSTENCILMASKPROC glad_debug_glStencilMask = glad_debug_impl_glStencilMask; +PFNGLSTENCILMASKSEPARATEPROC glad_glStencilMaskSeparate; +void APIENTRY glad_debug_impl_glStencilMaskSeparate(GLenum arg0, GLuint arg1) { + _pre_call_callback("glStencilMaskSeparate", (void*)glStencilMaskSeparate, 2, arg0, arg1); + glad_glStencilMaskSeparate(arg0, arg1); + _post_call_callback("glStencilMaskSeparate", (void*)glStencilMaskSeparate, 2, arg0, arg1); + +} +PFNGLSTENCILMASKSEPARATEPROC glad_debug_glStencilMaskSeparate = glad_debug_impl_glStencilMaskSeparate; +PFNGLSTENCILOPPROC glad_glStencilOp; +void APIENTRY glad_debug_impl_glStencilOp(GLenum arg0, GLenum arg1, GLenum arg2) { + _pre_call_callback("glStencilOp", (void*)glStencilOp, 3, arg0, arg1, arg2); + glad_glStencilOp(arg0, arg1, arg2); + _post_call_callback("glStencilOp", (void*)glStencilOp, 3, arg0, arg1, arg2); + +} +PFNGLSTENCILOPPROC glad_debug_glStencilOp = glad_debug_impl_glStencilOp; +PFNGLSTENCILOPSEPARATEPROC glad_glStencilOpSeparate; +void APIENTRY glad_debug_impl_glStencilOpSeparate(GLenum arg0, GLenum arg1, GLenum arg2, GLenum arg3) { + _pre_call_callback("glStencilOpSeparate", (void*)glStencilOpSeparate, 4, arg0, arg1, arg2, arg3); + glad_glStencilOpSeparate(arg0, arg1, arg2, arg3); + _post_call_callback("glStencilOpSeparate", (void*)glStencilOpSeparate, 4, arg0, arg1, arg2, arg3); + +} +PFNGLSTENCILOPSEPARATEPROC glad_debug_glStencilOpSeparate = glad_debug_impl_glStencilOpSeparate; +PFNGLTEXBUFFERPROC glad_glTexBuffer; +void APIENTRY glad_debug_impl_glTexBuffer(GLenum arg0, GLenum arg1, GLuint arg2) { + _pre_call_callback("glTexBuffer", (void*)glTexBuffer, 3, arg0, arg1, arg2); + glad_glTexBuffer(arg0, arg1, arg2); + _post_call_callback("glTexBuffer", (void*)glTexBuffer, 3, arg0, arg1, arg2); + +} +PFNGLTEXBUFFERPROC glad_debug_glTexBuffer = glad_debug_impl_glTexBuffer; +PFNGLTEXCOORDP1UIPROC glad_glTexCoordP1ui; +void APIENTRY glad_debug_impl_glTexCoordP1ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glTexCoordP1ui", (void*)glTexCoordP1ui, 2, arg0, arg1); + glad_glTexCoordP1ui(arg0, arg1); + _post_call_callback("glTexCoordP1ui", (void*)glTexCoordP1ui, 2, arg0, arg1); + +} +PFNGLTEXCOORDP1UIPROC glad_debug_glTexCoordP1ui = glad_debug_impl_glTexCoordP1ui; +PFNGLTEXCOORDP1UIVPROC glad_glTexCoordP1uiv; +void APIENTRY glad_debug_impl_glTexCoordP1uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glTexCoordP1uiv", (void*)glTexCoordP1uiv, 2, arg0, arg1); + glad_glTexCoordP1uiv(arg0, arg1); + _post_call_callback("glTexCoordP1uiv", (void*)glTexCoordP1uiv, 2, arg0, arg1); + +} +PFNGLTEXCOORDP1UIVPROC glad_debug_glTexCoordP1uiv = glad_debug_impl_glTexCoordP1uiv; +PFNGLTEXCOORDP2UIPROC glad_glTexCoordP2ui; +void APIENTRY glad_debug_impl_glTexCoordP2ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glTexCoordP2ui", (void*)glTexCoordP2ui, 2, arg0, arg1); + glad_glTexCoordP2ui(arg0, arg1); + _post_call_callback("glTexCoordP2ui", (void*)glTexCoordP2ui, 2, arg0, arg1); + +} +PFNGLTEXCOORDP2UIPROC glad_debug_glTexCoordP2ui = glad_debug_impl_glTexCoordP2ui; +PFNGLTEXCOORDP2UIVPROC glad_glTexCoordP2uiv; +void APIENTRY glad_debug_impl_glTexCoordP2uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glTexCoordP2uiv", (void*)glTexCoordP2uiv, 2, arg0, arg1); + glad_glTexCoordP2uiv(arg0, arg1); + _post_call_callback("glTexCoordP2uiv", (void*)glTexCoordP2uiv, 2, arg0, arg1); + +} +PFNGLTEXCOORDP2UIVPROC glad_debug_glTexCoordP2uiv = glad_debug_impl_glTexCoordP2uiv; +PFNGLTEXCOORDP3UIPROC glad_glTexCoordP3ui; +void APIENTRY glad_debug_impl_glTexCoordP3ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glTexCoordP3ui", (void*)glTexCoordP3ui, 2, arg0, arg1); + glad_glTexCoordP3ui(arg0, arg1); + _post_call_callback("glTexCoordP3ui", (void*)glTexCoordP3ui, 2, arg0, arg1); + +} +PFNGLTEXCOORDP3UIPROC glad_debug_glTexCoordP3ui = glad_debug_impl_glTexCoordP3ui; +PFNGLTEXCOORDP3UIVPROC glad_glTexCoordP3uiv; +void APIENTRY glad_debug_impl_glTexCoordP3uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glTexCoordP3uiv", (void*)glTexCoordP3uiv, 2, arg0, arg1); + glad_glTexCoordP3uiv(arg0, arg1); + _post_call_callback("glTexCoordP3uiv", (void*)glTexCoordP3uiv, 2, arg0, arg1); + +} +PFNGLTEXCOORDP3UIVPROC glad_debug_glTexCoordP3uiv = glad_debug_impl_glTexCoordP3uiv; +PFNGLTEXCOORDP4UIPROC glad_glTexCoordP4ui; +void APIENTRY glad_debug_impl_glTexCoordP4ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glTexCoordP4ui", (void*)glTexCoordP4ui, 2, arg0, arg1); + glad_glTexCoordP4ui(arg0, arg1); + _post_call_callback("glTexCoordP4ui", (void*)glTexCoordP4ui, 2, arg0, arg1); + +} +PFNGLTEXCOORDP4UIPROC glad_debug_glTexCoordP4ui = glad_debug_impl_glTexCoordP4ui; +PFNGLTEXCOORDP4UIVPROC glad_glTexCoordP4uiv; +void APIENTRY glad_debug_impl_glTexCoordP4uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glTexCoordP4uiv", (void*)glTexCoordP4uiv, 2, arg0, arg1); + glad_glTexCoordP4uiv(arg0, arg1); + _post_call_callback("glTexCoordP4uiv", (void*)glTexCoordP4uiv, 2, arg0, arg1); + +} +PFNGLTEXCOORDP4UIVPROC glad_debug_glTexCoordP4uiv = glad_debug_impl_glTexCoordP4uiv; +PFNGLTEXIMAGE1DPROC glad_glTexImage1D; +void APIENTRY glad_debug_impl_glTexImage1D(GLenum arg0, GLint arg1, GLint arg2, GLsizei arg3, GLint arg4, GLenum arg5, GLenum arg6, const void * arg7) { + _pre_call_callback("glTexImage1D", (void*)glTexImage1D, 8, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + glad_glTexImage1D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + _post_call_callback("glTexImage1D", (void*)glTexImage1D, 8, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); + +} +PFNGLTEXIMAGE1DPROC glad_debug_glTexImage1D = glad_debug_impl_glTexImage1D; +PFNGLTEXIMAGE2DPROC glad_glTexImage2D; +void APIENTRY glad_debug_impl_glTexImage2D(GLenum arg0, GLint arg1, GLint arg2, GLsizei arg3, GLsizei arg4, GLint arg5, GLenum arg6, GLenum arg7, const void * arg8) { + _pre_call_callback("glTexImage2D", (void*)glTexImage2D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + glad_glTexImage2D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + _post_call_callback("glTexImage2D", (void*)glTexImage2D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + +} +PFNGLTEXIMAGE2DPROC glad_debug_glTexImage2D = glad_debug_impl_glTexImage2D; +PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_glTexImage2DMultisample; +void APIENTRY glad_debug_impl_glTexImage2DMultisample(GLenum arg0, GLsizei arg1, GLenum arg2, GLsizei arg3, GLsizei arg4, GLboolean arg5) { + _pre_call_callback("glTexImage2DMultisample", (void*)glTexImage2DMultisample, 6, arg0, arg1, arg2, arg3, arg4, arg5); + glad_glTexImage2DMultisample(arg0, arg1, arg2, arg3, arg4, arg5); + _post_call_callback("glTexImage2DMultisample", (void*)glTexImage2DMultisample, 6, arg0, arg1, arg2, arg3, arg4, arg5); + +} +PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_debug_glTexImage2DMultisample = glad_debug_impl_glTexImage2DMultisample; +PFNGLTEXIMAGE3DPROC glad_glTexImage3D; +void APIENTRY glad_debug_impl_glTexImage3D(GLenum arg0, GLint arg1, GLint arg2, GLsizei arg3, GLsizei arg4, GLsizei arg5, GLint arg6, GLenum arg7, GLenum arg8, const void * arg9) { + _pre_call_callback("glTexImage3D", (void*)glTexImage3D, 10, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); + glad_glTexImage3D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); + _post_call_callback("glTexImage3D", (void*)glTexImage3D, 10, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); + +} +PFNGLTEXIMAGE3DPROC glad_debug_glTexImage3D = glad_debug_impl_glTexImage3D; +PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_glTexImage3DMultisample; +void APIENTRY glad_debug_impl_glTexImage3DMultisample(GLenum arg0, GLsizei arg1, GLenum arg2, GLsizei arg3, GLsizei arg4, GLsizei arg5, GLboolean arg6) { + _pre_call_callback("glTexImage3DMultisample", (void*)glTexImage3DMultisample, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glTexImage3DMultisample(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glTexImage3DMultisample", (void*)glTexImage3DMultisample, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_debug_glTexImage3DMultisample = glad_debug_impl_glTexImage3DMultisample; +PFNGLTEXPARAMETERIIVPROC glad_glTexParameterIiv; +void APIENTRY glad_debug_impl_glTexParameterIiv(GLenum arg0, GLenum arg1, const GLint * arg2) { + _pre_call_callback("glTexParameterIiv", (void*)glTexParameterIiv, 3, arg0, arg1, arg2); + glad_glTexParameterIiv(arg0, arg1, arg2); + _post_call_callback("glTexParameterIiv", (void*)glTexParameterIiv, 3, arg0, arg1, arg2); + +} +PFNGLTEXPARAMETERIIVPROC glad_debug_glTexParameterIiv = glad_debug_impl_glTexParameterIiv; +PFNGLTEXPARAMETERIUIVPROC glad_glTexParameterIuiv; +void APIENTRY glad_debug_impl_glTexParameterIuiv(GLenum arg0, GLenum arg1, const GLuint * arg2) { + _pre_call_callback("glTexParameterIuiv", (void*)glTexParameterIuiv, 3, arg0, arg1, arg2); + glad_glTexParameterIuiv(arg0, arg1, arg2); + _post_call_callback("glTexParameterIuiv", (void*)glTexParameterIuiv, 3, arg0, arg1, arg2); + +} +PFNGLTEXPARAMETERIUIVPROC glad_debug_glTexParameterIuiv = glad_debug_impl_glTexParameterIuiv; +PFNGLTEXPARAMETERFPROC glad_glTexParameterf; +void APIENTRY glad_debug_impl_glTexParameterf(GLenum arg0, GLenum arg1, GLfloat arg2) { + _pre_call_callback("glTexParameterf", (void*)glTexParameterf, 3, arg0, arg1, arg2); + glad_glTexParameterf(arg0, arg1, arg2); + _post_call_callback("glTexParameterf", (void*)glTexParameterf, 3, arg0, arg1, arg2); + +} +PFNGLTEXPARAMETERFPROC glad_debug_glTexParameterf = glad_debug_impl_glTexParameterf; +PFNGLTEXPARAMETERFVPROC glad_glTexParameterfv; +void APIENTRY glad_debug_impl_glTexParameterfv(GLenum arg0, GLenum arg1, const GLfloat * arg2) { + _pre_call_callback("glTexParameterfv", (void*)glTexParameterfv, 3, arg0, arg1, arg2); + glad_glTexParameterfv(arg0, arg1, arg2); + _post_call_callback("glTexParameterfv", (void*)glTexParameterfv, 3, arg0, arg1, arg2); + +} +PFNGLTEXPARAMETERFVPROC glad_debug_glTexParameterfv = glad_debug_impl_glTexParameterfv; +PFNGLTEXPARAMETERIPROC glad_glTexParameteri; +void APIENTRY glad_debug_impl_glTexParameteri(GLenum arg0, GLenum arg1, GLint arg2) { + _pre_call_callback("glTexParameteri", (void*)glTexParameteri, 3, arg0, arg1, arg2); + glad_glTexParameteri(arg0, arg1, arg2); + _post_call_callback("glTexParameteri", (void*)glTexParameteri, 3, arg0, arg1, arg2); + +} +PFNGLTEXPARAMETERIPROC glad_debug_glTexParameteri = glad_debug_impl_glTexParameteri; +PFNGLTEXPARAMETERIVPROC glad_glTexParameteriv; +void APIENTRY glad_debug_impl_glTexParameteriv(GLenum arg0, GLenum arg1, const GLint * arg2) { + _pre_call_callback("glTexParameteriv", (void*)glTexParameteriv, 3, arg0, arg1, arg2); + glad_glTexParameteriv(arg0, arg1, arg2); + _post_call_callback("glTexParameteriv", (void*)glTexParameteriv, 3, arg0, arg1, arg2); + +} +PFNGLTEXPARAMETERIVPROC glad_debug_glTexParameteriv = glad_debug_impl_glTexParameteriv; +PFNGLTEXSUBIMAGE1DPROC glad_glTexSubImage1D; +void APIENTRY glad_debug_impl_glTexSubImage1D(GLenum arg0, GLint arg1, GLint arg2, GLsizei arg3, GLenum arg4, GLenum arg5, const void * arg6) { + _pre_call_callback("glTexSubImage1D", (void*)glTexSubImage1D, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + glad_glTexSubImage1D(arg0, arg1, arg2, arg3, arg4, arg5, arg6); + _post_call_callback("glTexSubImage1D", (void*)glTexSubImage1D, 7, arg0, arg1, arg2, arg3, arg4, arg5, arg6); + +} +PFNGLTEXSUBIMAGE1DPROC glad_debug_glTexSubImage1D = glad_debug_impl_glTexSubImage1D; +PFNGLTEXSUBIMAGE2DPROC glad_glTexSubImage2D; +void APIENTRY glad_debug_impl_glTexSubImage2D(GLenum arg0, GLint arg1, GLint arg2, GLint arg3, GLsizei arg4, GLsizei arg5, GLenum arg6, GLenum arg7, const void * arg8) { + _pre_call_callback("glTexSubImage2D", (void*)glTexSubImage2D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + glad_glTexSubImage2D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + _post_call_callback("glTexSubImage2D", (void*)glTexSubImage2D, 9, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); + +} +PFNGLTEXSUBIMAGE2DPROC glad_debug_glTexSubImage2D = glad_debug_impl_glTexSubImage2D; +PFNGLTEXSUBIMAGE3DPROC glad_glTexSubImage3D; +void APIENTRY glad_debug_impl_glTexSubImage3D(GLenum arg0, GLint arg1, GLint arg2, GLint arg3, GLint arg4, GLsizei arg5, GLsizei arg6, GLsizei arg7, GLenum arg8, GLenum arg9, const void * arg10) { + _pre_call_callback("glTexSubImage3D", (void*)glTexSubImage3D, 11, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + glad_glTexSubImage3D(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + _post_call_callback("glTexSubImage3D", (void*)glTexSubImage3D, 11, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); + +} +PFNGLTEXSUBIMAGE3DPROC glad_debug_glTexSubImage3D = glad_debug_impl_glTexSubImage3D; +PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_glTransformFeedbackVaryings; +void APIENTRY glad_debug_impl_glTransformFeedbackVaryings(GLuint arg0, GLsizei arg1, const GLchar *const* arg2, GLenum arg3) { + _pre_call_callback("glTransformFeedbackVaryings", (void*)glTransformFeedbackVaryings, 4, arg0, arg1, arg2, arg3); + glad_glTransformFeedbackVaryings(arg0, arg1, arg2, arg3); + _post_call_callback("glTransformFeedbackVaryings", (void*)glTransformFeedbackVaryings, 4, arg0, arg1, arg2, arg3); + +} +PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_debug_glTransformFeedbackVaryings = glad_debug_impl_glTransformFeedbackVaryings; +PFNGLUNIFORM1FPROC glad_glUniform1f; +void APIENTRY glad_debug_impl_glUniform1f(GLint arg0, GLfloat arg1) { + _pre_call_callback("glUniform1f", (void*)glUniform1f, 2, arg0, arg1); + glad_glUniform1f(arg0, arg1); + _post_call_callback("glUniform1f", (void*)glUniform1f, 2, arg0, arg1); + +} +PFNGLUNIFORM1FPROC glad_debug_glUniform1f = glad_debug_impl_glUniform1f; +PFNGLUNIFORM1FVPROC glad_glUniform1fv; +void APIENTRY glad_debug_impl_glUniform1fv(GLint arg0, GLsizei arg1, const GLfloat * arg2) { + _pre_call_callback("glUniform1fv", (void*)glUniform1fv, 3, arg0, arg1, arg2); + glad_glUniform1fv(arg0, arg1, arg2); + _post_call_callback("glUniform1fv", (void*)glUniform1fv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM1FVPROC glad_debug_glUniform1fv = glad_debug_impl_glUniform1fv; +PFNGLUNIFORM1IPROC glad_glUniform1i; +void APIENTRY glad_debug_impl_glUniform1i(GLint arg0, GLint arg1) { + _pre_call_callback("glUniform1i", (void*)glUniform1i, 2, arg0, arg1); + glad_glUniform1i(arg0, arg1); + _post_call_callback("glUniform1i", (void*)glUniform1i, 2, arg0, arg1); + +} +PFNGLUNIFORM1IPROC glad_debug_glUniform1i = glad_debug_impl_glUniform1i; +PFNGLUNIFORM1IVPROC glad_glUniform1iv; +void APIENTRY glad_debug_impl_glUniform1iv(GLint arg0, GLsizei arg1, const GLint * arg2) { + _pre_call_callback("glUniform1iv", (void*)glUniform1iv, 3, arg0, arg1, arg2); + glad_glUniform1iv(arg0, arg1, arg2); + _post_call_callback("glUniform1iv", (void*)glUniform1iv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM1IVPROC glad_debug_glUniform1iv = glad_debug_impl_glUniform1iv; +PFNGLUNIFORM1UIPROC glad_glUniform1ui; +void APIENTRY glad_debug_impl_glUniform1ui(GLint arg0, GLuint arg1) { + _pre_call_callback("glUniform1ui", (void*)glUniform1ui, 2, arg0, arg1); + glad_glUniform1ui(arg0, arg1); + _post_call_callback("glUniform1ui", (void*)glUniform1ui, 2, arg0, arg1); + +} +PFNGLUNIFORM1UIPROC glad_debug_glUniform1ui = glad_debug_impl_glUniform1ui; +PFNGLUNIFORM1UIVPROC glad_glUniform1uiv; +void APIENTRY glad_debug_impl_glUniform1uiv(GLint arg0, GLsizei arg1, const GLuint * arg2) { + _pre_call_callback("glUniform1uiv", (void*)glUniform1uiv, 3, arg0, arg1, arg2); + glad_glUniform1uiv(arg0, arg1, arg2); + _post_call_callback("glUniform1uiv", (void*)glUniform1uiv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM1UIVPROC glad_debug_glUniform1uiv = glad_debug_impl_glUniform1uiv; +PFNGLUNIFORM2FPROC glad_glUniform2f; +void APIENTRY glad_debug_impl_glUniform2f(GLint arg0, GLfloat arg1, GLfloat arg2) { + _pre_call_callback("glUniform2f", (void*)glUniform2f, 3, arg0, arg1, arg2); + glad_glUniform2f(arg0, arg1, arg2); + _post_call_callback("glUniform2f", (void*)glUniform2f, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM2FPROC glad_debug_glUniform2f = glad_debug_impl_glUniform2f; +PFNGLUNIFORM2FVPROC glad_glUniform2fv; +void APIENTRY glad_debug_impl_glUniform2fv(GLint arg0, GLsizei arg1, const GLfloat * arg2) { + _pre_call_callback("glUniform2fv", (void*)glUniform2fv, 3, arg0, arg1, arg2); + glad_glUniform2fv(arg0, arg1, arg2); + _post_call_callback("glUniform2fv", (void*)glUniform2fv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM2FVPROC glad_debug_glUniform2fv = glad_debug_impl_glUniform2fv; +PFNGLUNIFORM2IPROC glad_glUniform2i; +void APIENTRY glad_debug_impl_glUniform2i(GLint arg0, GLint arg1, GLint arg2) { + _pre_call_callback("glUniform2i", (void*)glUniform2i, 3, arg0, arg1, arg2); + glad_glUniform2i(arg0, arg1, arg2); + _post_call_callback("glUniform2i", (void*)glUniform2i, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM2IPROC glad_debug_glUniform2i = glad_debug_impl_glUniform2i; +PFNGLUNIFORM2IVPROC glad_glUniform2iv; +void APIENTRY glad_debug_impl_glUniform2iv(GLint arg0, GLsizei arg1, const GLint * arg2) { + _pre_call_callback("glUniform2iv", (void*)glUniform2iv, 3, arg0, arg1, arg2); + glad_glUniform2iv(arg0, arg1, arg2); + _post_call_callback("glUniform2iv", (void*)glUniform2iv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM2IVPROC glad_debug_glUniform2iv = glad_debug_impl_glUniform2iv; +PFNGLUNIFORM2UIPROC glad_glUniform2ui; +void APIENTRY glad_debug_impl_glUniform2ui(GLint arg0, GLuint arg1, GLuint arg2) { + _pre_call_callback("glUniform2ui", (void*)glUniform2ui, 3, arg0, arg1, arg2); + glad_glUniform2ui(arg0, arg1, arg2); + _post_call_callback("glUniform2ui", (void*)glUniform2ui, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM2UIPROC glad_debug_glUniform2ui = glad_debug_impl_glUniform2ui; +PFNGLUNIFORM2UIVPROC glad_glUniform2uiv; +void APIENTRY glad_debug_impl_glUniform2uiv(GLint arg0, GLsizei arg1, const GLuint * arg2) { + _pre_call_callback("glUniform2uiv", (void*)glUniform2uiv, 3, arg0, arg1, arg2); + glad_glUniform2uiv(arg0, arg1, arg2); + _post_call_callback("glUniform2uiv", (void*)glUniform2uiv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM2UIVPROC glad_debug_glUniform2uiv = glad_debug_impl_glUniform2uiv; +PFNGLUNIFORM3FPROC glad_glUniform3f; +void APIENTRY glad_debug_impl_glUniform3f(GLint arg0, GLfloat arg1, GLfloat arg2, GLfloat arg3) { + _pre_call_callback("glUniform3f", (void*)glUniform3f, 4, arg0, arg1, arg2, arg3); + glad_glUniform3f(arg0, arg1, arg2, arg3); + _post_call_callback("glUniform3f", (void*)glUniform3f, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORM3FPROC glad_debug_glUniform3f = glad_debug_impl_glUniform3f; +PFNGLUNIFORM3FVPROC glad_glUniform3fv; +void APIENTRY glad_debug_impl_glUniform3fv(GLint arg0, GLsizei arg1, const GLfloat * arg2) { + _pre_call_callback("glUniform3fv", (void*)glUniform3fv, 3, arg0, arg1, arg2); + glad_glUniform3fv(arg0, arg1, arg2); + _post_call_callback("glUniform3fv", (void*)glUniform3fv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM3FVPROC glad_debug_glUniform3fv = glad_debug_impl_glUniform3fv; +PFNGLUNIFORM3IPROC glad_glUniform3i; +void APIENTRY glad_debug_impl_glUniform3i(GLint arg0, GLint arg1, GLint arg2, GLint arg3) { + _pre_call_callback("glUniform3i", (void*)glUniform3i, 4, arg0, arg1, arg2, arg3); + glad_glUniform3i(arg0, arg1, arg2, arg3); + _post_call_callback("glUniform3i", (void*)glUniform3i, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORM3IPROC glad_debug_glUniform3i = glad_debug_impl_glUniform3i; +PFNGLUNIFORM3IVPROC glad_glUniform3iv; +void APIENTRY glad_debug_impl_glUniform3iv(GLint arg0, GLsizei arg1, const GLint * arg2) { + _pre_call_callback("glUniform3iv", (void*)glUniform3iv, 3, arg0, arg1, arg2); + glad_glUniform3iv(arg0, arg1, arg2); + _post_call_callback("glUniform3iv", (void*)glUniform3iv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM3IVPROC glad_debug_glUniform3iv = glad_debug_impl_glUniform3iv; +PFNGLUNIFORM3UIPROC glad_glUniform3ui; +void APIENTRY glad_debug_impl_glUniform3ui(GLint arg0, GLuint arg1, GLuint arg2, GLuint arg3) { + _pre_call_callback("glUniform3ui", (void*)glUniform3ui, 4, arg0, arg1, arg2, arg3); + glad_glUniform3ui(arg0, arg1, arg2, arg3); + _post_call_callback("glUniform3ui", (void*)glUniform3ui, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORM3UIPROC glad_debug_glUniform3ui = glad_debug_impl_glUniform3ui; +PFNGLUNIFORM3UIVPROC glad_glUniform3uiv; +void APIENTRY glad_debug_impl_glUniform3uiv(GLint arg0, GLsizei arg1, const GLuint * arg2) { + _pre_call_callback("glUniform3uiv", (void*)glUniform3uiv, 3, arg0, arg1, arg2); + glad_glUniform3uiv(arg0, arg1, arg2); + _post_call_callback("glUniform3uiv", (void*)glUniform3uiv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM3UIVPROC glad_debug_glUniform3uiv = glad_debug_impl_glUniform3uiv; +PFNGLUNIFORM4FPROC glad_glUniform4f; +void APIENTRY glad_debug_impl_glUniform4f(GLint arg0, GLfloat arg1, GLfloat arg2, GLfloat arg3, GLfloat arg4) { + _pre_call_callback("glUniform4f", (void*)glUniform4f, 5, arg0, arg1, arg2, arg3, arg4); + glad_glUniform4f(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glUniform4f", (void*)glUniform4f, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLUNIFORM4FPROC glad_debug_glUniform4f = glad_debug_impl_glUniform4f; +PFNGLUNIFORM4FVPROC glad_glUniform4fv; +void APIENTRY glad_debug_impl_glUniform4fv(GLint arg0, GLsizei arg1, const GLfloat * arg2) { + _pre_call_callback("glUniform4fv", (void*)glUniform4fv, 3, arg0, arg1, arg2); + glad_glUniform4fv(arg0, arg1, arg2); + _post_call_callback("glUniform4fv", (void*)glUniform4fv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM4FVPROC glad_debug_glUniform4fv = glad_debug_impl_glUniform4fv; +PFNGLUNIFORM4IPROC glad_glUniform4i; +void APIENTRY glad_debug_impl_glUniform4i(GLint arg0, GLint arg1, GLint arg2, GLint arg3, GLint arg4) { + _pre_call_callback("glUniform4i", (void*)glUniform4i, 5, arg0, arg1, arg2, arg3, arg4); + glad_glUniform4i(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glUniform4i", (void*)glUniform4i, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLUNIFORM4IPROC glad_debug_glUniform4i = glad_debug_impl_glUniform4i; +PFNGLUNIFORM4IVPROC glad_glUniform4iv; +void APIENTRY glad_debug_impl_glUniform4iv(GLint arg0, GLsizei arg1, const GLint * arg2) { + _pre_call_callback("glUniform4iv", (void*)glUniform4iv, 3, arg0, arg1, arg2); + glad_glUniform4iv(arg0, arg1, arg2); + _post_call_callback("glUniform4iv", (void*)glUniform4iv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM4IVPROC glad_debug_glUniform4iv = glad_debug_impl_glUniform4iv; +PFNGLUNIFORM4UIPROC glad_glUniform4ui; +void APIENTRY glad_debug_impl_glUniform4ui(GLint arg0, GLuint arg1, GLuint arg2, GLuint arg3, GLuint arg4) { + _pre_call_callback("glUniform4ui", (void*)glUniform4ui, 5, arg0, arg1, arg2, arg3, arg4); + glad_glUniform4ui(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glUniform4ui", (void*)glUniform4ui, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLUNIFORM4UIPROC glad_debug_glUniform4ui = glad_debug_impl_glUniform4ui; +PFNGLUNIFORM4UIVPROC glad_glUniform4uiv; +void APIENTRY glad_debug_impl_glUniform4uiv(GLint arg0, GLsizei arg1, const GLuint * arg2) { + _pre_call_callback("glUniform4uiv", (void*)glUniform4uiv, 3, arg0, arg1, arg2); + glad_glUniform4uiv(arg0, arg1, arg2); + _post_call_callback("glUniform4uiv", (void*)glUniform4uiv, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORM4UIVPROC glad_debug_glUniform4uiv = glad_debug_impl_glUniform4uiv; +PFNGLUNIFORMBLOCKBINDINGPROC glad_glUniformBlockBinding; +void APIENTRY glad_debug_impl_glUniformBlockBinding(GLuint arg0, GLuint arg1, GLuint arg2) { + _pre_call_callback("glUniformBlockBinding", (void*)glUniformBlockBinding, 3, arg0, arg1, arg2); + glad_glUniformBlockBinding(arg0, arg1, arg2); + _post_call_callback("glUniformBlockBinding", (void*)glUniformBlockBinding, 3, arg0, arg1, arg2); + +} +PFNGLUNIFORMBLOCKBINDINGPROC glad_debug_glUniformBlockBinding = glad_debug_impl_glUniformBlockBinding; +PFNGLUNIFORMMATRIX2FVPROC glad_glUniformMatrix2fv; +void APIENTRY glad_debug_impl_glUniformMatrix2fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix2fv", (void*)glUniformMatrix2fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix2fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix2fv", (void*)glUniformMatrix2fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX2FVPROC glad_debug_glUniformMatrix2fv = glad_debug_impl_glUniformMatrix2fv; +PFNGLUNIFORMMATRIX2X3FVPROC glad_glUniformMatrix2x3fv; +void APIENTRY glad_debug_impl_glUniformMatrix2x3fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix2x3fv", (void*)glUniformMatrix2x3fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix2x3fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix2x3fv", (void*)glUniformMatrix2x3fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX2X3FVPROC glad_debug_glUniformMatrix2x3fv = glad_debug_impl_glUniformMatrix2x3fv; +PFNGLUNIFORMMATRIX2X4FVPROC glad_glUniformMatrix2x4fv; +void APIENTRY glad_debug_impl_glUniformMatrix2x4fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix2x4fv", (void*)glUniformMatrix2x4fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix2x4fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix2x4fv", (void*)glUniformMatrix2x4fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX2X4FVPROC glad_debug_glUniformMatrix2x4fv = glad_debug_impl_glUniformMatrix2x4fv; +PFNGLUNIFORMMATRIX3FVPROC glad_glUniformMatrix3fv; +void APIENTRY glad_debug_impl_glUniformMatrix3fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix3fv", (void*)glUniformMatrix3fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix3fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix3fv", (void*)glUniformMatrix3fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX3FVPROC glad_debug_glUniformMatrix3fv = glad_debug_impl_glUniformMatrix3fv; +PFNGLUNIFORMMATRIX3X2FVPROC glad_glUniformMatrix3x2fv; +void APIENTRY glad_debug_impl_glUniformMatrix3x2fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix3x2fv", (void*)glUniformMatrix3x2fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix3x2fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix3x2fv", (void*)glUniformMatrix3x2fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX3X2FVPROC glad_debug_glUniformMatrix3x2fv = glad_debug_impl_glUniformMatrix3x2fv; +PFNGLUNIFORMMATRIX3X4FVPROC glad_glUniformMatrix3x4fv; +void APIENTRY glad_debug_impl_glUniformMatrix3x4fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix3x4fv", (void*)glUniformMatrix3x4fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix3x4fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix3x4fv", (void*)glUniformMatrix3x4fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX3X4FVPROC glad_debug_glUniformMatrix3x4fv = glad_debug_impl_glUniformMatrix3x4fv; +PFNGLUNIFORMMATRIX4FVPROC glad_glUniformMatrix4fv; +void APIENTRY glad_debug_impl_glUniformMatrix4fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix4fv", (void*)glUniformMatrix4fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix4fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix4fv", (void*)glUniformMatrix4fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX4FVPROC glad_debug_glUniformMatrix4fv = glad_debug_impl_glUniformMatrix4fv; +PFNGLUNIFORMMATRIX4X2FVPROC glad_glUniformMatrix4x2fv; +void APIENTRY glad_debug_impl_glUniformMatrix4x2fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix4x2fv", (void*)glUniformMatrix4x2fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix4x2fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix4x2fv", (void*)glUniformMatrix4x2fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX4X2FVPROC glad_debug_glUniformMatrix4x2fv = glad_debug_impl_glUniformMatrix4x2fv; +PFNGLUNIFORMMATRIX4X3FVPROC glad_glUniformMatrix4x3fv; +void APIENTRY glad_debug_impl_glUniformMatrix4x3fv(GLint arg0, GLsizei arg1, GLboolean arg2, const GLfloat * arg3) { + _pre_call_callback("glUniformMatrix4x3fv", (void*)glUniformMatrix4x3fv, 4, arg0, arg1, arg2, arg3); + glad_glUniformMatrix4x3fv(arg0, arg1, arg2, arg3); + _post_call_callback("glUniformMatrix4x3fv", (void*)glUniformMatrix4x3fv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLUNIFORMMATRIX4X3FVPROC glad_debug_glUniformMatrix4x3fv = glad_debug_impl_glUniformMatrix4x3fv; +PFNGLUNMAPBUFFERPROC glad_glUnmapBuffer; +GLboolean APIENTRY glad_debug_impl_glUnmapBuffer(GLenum arg0) { + GLboolean ret; + _pre_call_callback("glUnmapBuffer", (void*)glUnmapBuffer, 1, arg0); + ret = glad_glUnmapBuffer(arg0); + _post_call_callback("glUnmapBuffer", (void*)glUnmapBuffer, 1, arg0); + return ret; +} +PFNGLUNMAPBUFFERPROC glad_debug_glUnmapBuffer = glad_debug_impl_glUnmapBuffer; +PFNGLUSEPROGRAMPROC glad_glUseProgram; +void APIENTRY glad_debug_impl_glUseProgram(GLuint arg0) { + _pre_call_callback("glUseProgram", (void*)glUseProgram, 1, arg0); + glad_glUseProgram(arg0); + _post_call_callback("glUseProgram", (void*)glUseProgram, 1, arg0); + +} +PFNGLUSEPROGRAMPROC glad_debug_glUseProgram = glad_debug_impl_glUseProgram; +PFNGLVALIDATEPROGRAMPROC glad_glValidateProgram; +void APIENTRY glad_debug_impl_glValidateProgram(GLuint arg0) { + _pre_call_callback("glValidateProgram", (void*)glValidateProgram, 1, arg0); + glad_glValidateProgram(arg0); + _post_call_callback("glValidateProgram", (void*)glValidateProgram, 1, arg0); + +} +PFNGLVALIDATEPROGRAMPROC glad_debug_glValidateProgram = glad_debug_impl_glValidateProgram; +PFNGLVERTEXATTRIB1DPROC glad_glVertexAttrib1d; +void APIENTRY glad_debug_impl_glVertexAttrib1d(GLuint arg0, GLdouble arg1) { + _pre_call_callback("glVertexAttrib1d", (void*)glVertexAttrib1d, 2, arg0, arg1); + glad_glVertexAttrib1d(arg0, arg1); + _post_call_callback("glVertexAttrib1d", (void*)glVertexAttrib1d, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB1DPROC glad_debug_glVertexAttrib1d = glad_debug_impl_glVertexAttrib1d; +PFNGLVERTEXATTRIB1DVPROC glad_glVertexAttrib1dv; +void APIENTRY glad_debug_impl_glVertexAttrib1dv(GLuint arg0, const GLdouble * arg1) { + _pre_call_callback("glVertexAttrib1dv", (void*)glVertexAttrib1dv, 2, arg0, arg1); + glad_glVertexAttrib1dv(arg0, arg1); + _post_call_callback("glVertexAttrib1dv", (void*)glVertexAttrib1dv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB1DVPROC glad_debug_glVertexAttrib1dv = glad_debug_impl_glVertexAttrib1dv; +PFNGLVERTEXATTRIB1FPROC glad_glVertexAttrib1f; +void APIENTRY glad_debug_impl_glVertexAttrib1f(GLuint arg0, GLfloat arg1) { + _pre_call_callback("glVertexAttrib1f", (void*)glVertexAttrib1f, 2, arg0, arg1); + glad_glVertexAttrib1f(arg0, arg1); + _post_call_callback("glVertexAttrib1f", (void*)glVertexAttrib1f, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB1FPROC glad_debug_glVertexAttrib1f = glad_debug_impl_glVertexAttrib1f; +PFNGLVERTEXATTRIB1FVPROC glad_glVertexAttrib1fv; +void APIENTRY glad_debug_impl_glVertexAttrib1fv(GLuint arg0, const GLfloat * arg1) { + _pre_call_callback("glVertexAttrib1fv", (void*)glVertexAttrib1fv, 2, arg0, arg1); + glad_glVertexAttrib1fv(arg0, arg1); + _post_call_callback("glVertexAttrib1fv", (void*)glVertexAttrib1fv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB1FVPROC glad_debug_glVertexAttrib1fv = glad_debug_impl_glVertexAttrib1fv; +PFNGLVERTEXATTRIB1SPROC glad_glVertexAttrib1s; +void APIENTRY glad_debug_impl_glVertexAttrib1s(GLuint arg0, GLshort arg1) { + _pre_call_callback("glVertexAttrib1s", (void*)glVertexAttrib1s, 2, arg0, arg1); + glad_glVertexAttrib1s(arg0, arg1); + _post_call_callback("glVertexAttrib1s", (void*)glVertexAttrib1s, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB1SPROC glad_debug_glVertexAttrib1s = glad_debug_impl_glVertexAttrib1s; +PFNGLVERTEXATTRIB1SVPROC glad_glVertexAttrib1sv; +void APIENTRY glad_debug_impl_glVertexAttrib1sv(GLuint arg0, const GLshort * arg1) { + _pre_call_callback("glVertexAttrib1sv", (void*)glVertexAttrib1sv, 2, arg0, arg1); + glad_glVertexAttrib1sv(arg0, arg1); + _post_call_callback("glVertexAttrib1sv", (void*)glVertexAttrib1sv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB1SVPROC glad_debug_glVertexAttrib1sv = glad_debug_impl_glVertexAttrib1sv; +PFNGLVERTEXATTRIB2DPROC glad_glVertexAttrib2d; +void APIENTRY glad_debug_impl_glVertexAttrib2d(GLuint arg0, GLdouble arg1, GLdouble arg2) { + _pre_call_callback("glVertexAttrib2d", (void*)glVertexAttrib2d, 3, arg0, arg1, arg2); + glad_glVertexAttrib2d(arg0, arg1, arg2); + _post_call_callback("glVertexAttrib2d", (void*)glVertexAttrib2d, 3, arg0, arg1, arg2); + +} +PFNGLVERTEXATTRIB2DPROC glad_debug_glVertexAttrib2d = glad_debug_impl_glVertexAttrib2d; +PFNGLVERTEXATTRIB2DVPROC glad_glVertexAttrib2dv; +void APIENTRY glad_debug_impl_glVertexAttrib2dv(GLuint arg0, const GLdouble * arg1) { + _pre_call_callback("glVertexAttrib2dv", (void*)glVertexAttrib2dv, 2, arg0, arg1); + glad_glVertexAttrib2dv(arg0, arg1); + _post_call_callback("glVertexAttrib2dv", (void*)glVertexAttrib2dv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB2DVPROC glad_debug_glVertexAttrib2dv = glad_debug_impl_glVertexAttrib2dv; +PFNGLVERTEXATTRIB2FPROC glad_glVertexAttrib2f; +void APIENTRY glad_debug_impl_glVertexAttrib2f(GLuint arg0, GLfloat arg1, GLfloat arg2) { + _pre_call_callback("glVertexAttrib2f", (void*)glVertexAttrib2f, 3, arg0, arg1, arg2); + glad_glVertexAttrib2f(arg0, arg1, arg2); + _post_call_callback("glVertexAttrib2f", (void*)glVertexAttrib2f, 3, arg0, arg1, arg2); + +} +PFNGLVERTEXATTRIB2FPROC glad_debug_glVertexAttrib2f = glad_debug_impl_glVertexAttrib2f; +PFNGLVERTEXATTRIB2FVPROC glad_glVertexAttrib2fv; +void APIENTRY glad_debug_impl_glVertexAttrib2fv(GLuint arg0, const GLfloat * arg1) { + _pre_call_callback("glVertexAttrib2fv", (void*)glVertexAttrib2fv, 2, arg0, arg1); + glad_glVertexAttrib2fv(arg0, arg1); + _post_call_callback("glVertexAttrib2fv", (void*)glVertexAttrib2fv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB2FVPROC glad_debug_glVertexAttrib2fv = glad_debug_impl_glVertexAttrib2fv; +PFNGLVERTEXATTRIB2SPROC glad_glVertexAttrib2s; +void APIENTRY glad_debug_impl_glVertexAttrib2s(GLuint arg0, GLshort arg1, GLshort arg2) { + _pre_call_callback("glVertexAttrib2s", (void*)glVertexAttrib2s, 3, arg0, arg1, arg2); + glad_glVertexAttrib2s(arg0, arg1, arg2); + _post_call_callback("glVertexAttrib2s", (void*)glVertexAttrib2s, 3, arg0, arg1, arg2); + +} +PFNGLVERTEXATTRIB2SPROC glad_debug_glVertexAttrib2s = glad_debug_impl_glVertexAttrib2s; +PFNGLVERTEXATTRIB2SVPROC glad_glVertexAttrib2sv; +void APIENTRY glad_debug_impl_glVertexAttrib2sv(GLuint arg0, const GLshort * arg1) { + _pre_call_callback("glVertexAttrib2sv", (void*)glVertexAttrib2sv, 2, arg0, arg1); + glad_glVertexAttrib2sv(arg0, arg1); + _post_call_callback("glVertexAttrib2sv", (void*)glVertexAttrib2sv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB2SVPROC glad_debug_glVertexAttrib2sv = glad_debug_impl_glVertexAttrib2sv; +PFNGLVERTEXATTRIB3DPROC glad_glVertexAttrib3d; +void APIENTRY glad_debug_impl_glVertexAttrib3d(GLuint arg0, GLdouble arg1, GLdouble arg2, GLdouble arg3) { + _pre_call_callback("glVertexAttrib3d", (void*)glVertexAttrib3d, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttrib3d(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttrib3d", (void*)glVertexAttrib3d, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIB3DPROC glad_debug_glVertexAttrib3d = glad_debug_impl_glVertexAttrib3d; +PFNGLVERTEXATTRIB3DVPROC glad_glVertexAttrib3dv; +void APIENTRY glad_debug_impl_glVertexAttrib3dv(GLuint arg0, const GLdouble * arg1) { + _pre_call_callback("glVertexAttrib3dv", (void*)glVertexAttrib3dv, 2, arg0, arg1); + glad_glVertexAttrib3dv(arg0, arg1); + _post_call_callback("glVertexAttrib3dv", (void*)glVertexAttrib3dv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB3DVPROC glad_debug_glVertexAttrib3dv = glad_debug_impl_glVertexAttrib3dv; +PFNGLVERTEXATTRIB3FPROC glad_glVertexAttrib3f; +void APIENTRY glad_debug_impl_glVertexAttrib3f(GLuint arg0, GLfloat arg1, GLfloat arg2, GLfloat arg3) { + _pre_call_callback("glVertexAttrib3f", (void*)glVertexAttrib3f, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttrib3f(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttrib3f", (void*)glVertexAttrib3f, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIB3FPROC glad_debug_glVertexAttrib3f = glad_debug_impl_glVertexAttrib3f; +PFNGLVERTEXATTRIB3FVPROC glad_glVertexAttrib3fv; +void APIENTRY glad_debug_impl_glVertexAttrib3fv(GLuint arg0, const GLfloat * arg1) { + _pre_call_callback("glVertexAttrib3fv", (void*)glVertexAttrib3fv, 2, arg0, arg1); + glad_glVertexAttrib3fv(arg0, arg1); + _post_call_callback("glVertexAttrib3fv", (void*)glVertexAttrib3fv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB3FVPROC glad_debug_glVertexAttrib3fv = glad_debug_impl_glVertexAttrib3fv; +PFNGLVERTEXATTRIB3SPROC glad_glVertexAttrib3s; +void APIENTRY glad_debug_impl_glVertexAttrib3s(GLuint arg0, GLshort arg1, GLshort arg2, GLshort arg3) { + _pre_call_callback("glVertexAttrib3s", (void*)glVertexAttrib3s, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttrib3s(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttrib3s", (void*)glVertexAttrib3s, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIB3SPROC glad_debug_glVertexAttrib3s = glad_debug_impl_glVertexAttrib3s; +PFNGLVERTEXATTRIB3SVPROC glad_glVertexAttrib3sv; +void APIENTRY glad_debug_impl_glVertexAttrib3sv(GLuint arg0, const GLshort * arg1) { + _pre_call_callback("glVertexAttrib3sv", (void*)glVertexAttrib3sv, 2, arg0, arg1); + glad_glVertexAttrib3sv(arg0, arg1); + _post_call_callback("glVertexAttrib3sv", (void*)glVertexAttrib3sv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB3SVPROC glad_debug_glVertexAttrib3sv = glad_debug_impl_glVertexAttrib3sv; +PFNGLVERTEXATTRIB4NBVPROC glad_glVertexAttrib4Nbv; +void APIENTRY glad_debug_impl_glVertexAttrib4Nbv(GLuint arg0, const GLbyte * arg1) { + _pre_call_callback("glVertexAttrib4Nbv", (void*)glVertexAttrib4Nbv, 2, arg0, arg1); + glad_glVertexAttrib4Nbv(arg0, arg1); + _post_call_callback("glVertexAttrib4Nbv", (void*)glVertexAttrib4Nbv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4NBVPROC glad_debug_glVertexAttrib4Nbv = glad_debug_impl_glVertexAttrib4Nbv; +PFNGLVERTEXATTRIB4NIVPROC glad_glVertexAttrib4Niv; +void APIENTRY glad_debug_impl_glVertexAttrib4Niv(GLuint arg0, const GLint * arg1) { + _pre_call_callback("glVertexAttrib4Niv", (void*)glVertexAttrib4Niv, 2, arg0, arg1); + glad_glVertexAttrib4Niv(arg0, arg1); + _post_call_callback("glVertexAttrib4Niv", (void*)glVertexAttrib4Niv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4NIVPROC glad_debug_glVertexAttrib4Niv = glad_debug_impl_glVertexAttrib4Niv; +PFNGLVERTEXATTRIB4NSVPROC glad_glVertexAttrib4Nsv; +void APIENTRY glad_debug_impl_glVertexAttrib4Nsv(GLuint arg0, const GLshort * arg1) { + _pre_call_callback("glVertexAttrib4Nsv", (void*)glVertexAttrib4Nsv, 2, arg0, arg1); + glad_glVertexAttrib4Nsv(arg0, arg1); + _post_call_callback("glVertexAttrib4Nsv", (void*)glVertexAttrib4Nsv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4NSVPROC glad_debug_glVertexAttrib4Nsv = glad_debug_impl_glVertexAttrib4Nsv; +PFNGLVERTEXATTRIB4NUBPROC glad_glVertexAttrib4Nub; +void APIENTRY glad_debug_impl_glVertexAttrib4Nub(GLuint arg0, GLubyte arg1, GLubyte arg2, GLubyte arg3, GLubyte arg4) { + _pre_call_callback("glVertexAttrib4Nub", (void*)glVertexAttrib4Nub, 5, arg0, arg1, arg2, arg3, arg4); + glad_glVertexAttrib4Nub(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glVertexAttrib4Nub", (void*)glVertexAttrib4Nub, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLVERTEXATTRIB4NUBPROC glad_debug_glVertexAttrib4Nub = glad_debug_impl_glVertexAttrib4Nub; +PFNGLVERTEXATTRIB4NUBVPROC glad_glVertexAttrib4Nubv; +void APIENTRY glad_debug_impl_glVertexAttrib4Nubv(GLuint arg0, const GLubyte * arg1) { + _pre_call_callback("glVertexAttrib4Nubv", (void*)glVertexAttrib4Nubv, 2, arg0, arg1); + glad_glVertexAttrib4Nubv(arg0, arg1); + _post_call_callback("glVertexAttrib4Nubv", (void*)glVertexAttrib4Nubv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4NUBVPROC glad_debug_glVertexAttrib4Nubv = glad_debug_impl_glVertexAttrib4Nubv; +PFNGLVERTEXATTRIB4NUIVPROC glad_glVertexAttrib4Nuiv; +void APIENTRY glad_debug_impl_glVertexAttrib4Nuiv(GLuint arg0, const GLuint * arg1) { + _pre_call_callback("glVertexAttrib4Nuiv", (void*)glVertexAttrib4Nuiv, 2, arg0, arg1); + glad_glVertexAttrib4Nuiv(arg0, arg1); + _post_call_callback("glVertexAttrib4Nuiv", (void*)glVertexAttrib4Nuiv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4NUIVPROC glad_debug_glVertexAttrib4Nuiv = glad_debug_impl_glVertexAttrib4Nuiv; +PFNGLVERTEXATTRIB4NUSVPROC glad_glVertexAttrib4Nusv; +void APIENTRY glad_debug_impl_glVertexAttrib4Nusv(GLuint arg0, const GLushort * arg1) { + _pre_call_callback("glVertexAttrib4Nusv", (void*)glVertexAttrib4Nusv, 2, arg0, arg1); + glad_glVertexAttrib4Nusv(arg0, arg1); + _post_call_callback("glVertexAttrib4Nusv", (void*)glVertexAttrib4Nusv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4NUSVPROC glad_debug_glVertexAttrib4Nusv = glad_debug_impl_glVertexAttrib4Nusv; +PFNGLVERTEXATTRIB4BVPROC glad_glVertexAttrib4bv; +void APIENTRY glad_debug_impl_glVertexAttrib4bv(GLuint arg0, const GLbyte * arg1) { + _pre_call_callback("glVertexAttrib4bv", (void*)glVertexAttrib4bv, 2, arg0, arg1); + glad_glVertexAttrib4bv(arg0, arg1); + _post_call_callback("glVertexAttrib4bv", (void*)glVertexAttrib4bv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4BVPROC glad_debug_glVertexAttrib4bv = glad_debug_impl_glVertexAttrib4bv; +PFNGLVERTEXATTRIB4DPROC glad_glVertexAttrib4d; +void APIENTRY glad_debug_impl_glVertexAttrib4d(GLuint arg0, GLdouble arg1, GLdouble arg2, GLdouble arg3, GLdouble arg4) { + _pre_call_callback("glVertexAttrib4d", (void*)glVertexAttrib4d, 5, arg0, arg1, arg2, arg3, arg4); + glad_glVertexAttrib4d(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glVertexAttrib4d", (void*)glVertexAttrib4d, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLVERTEXATTRIB4DPROC glad_debug_glVertexAttrib4d = glad_debug_impl_glVertexAttrib4d; +PFNGLVERTEXATTRIB4DVPROC glad_glVertexAttrib4dv; +void APIENTRY glad_debug_impl_glVertexAttrib4dv(GLuint arg0, const GLdouble * arg1) { + _pre_call_callback("glVertexAttrib4dv", (void*)glVertexAttrib4dv, 2, arg0, arg1); + glad_glVertexAttrib4dv(arg0, arg1); + _post_call_callback("glVertexAttrib4dv", (void*)glVertexAttrib4dv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4DVPROC glad_debug_glVertexAttrib4dv = glad_debug_impl_glVertexAttrib4dv; +PFNGLVERTEXATTRIB4FPROC glad_glVertexAttrib4f; +void APIENTRY glad_debug_impl_glVertexAttrib4f(GLuint arg0, GLfloat arg1, GLfloat arg2, GLfloat arg3, GLfloat arg4) { + _pre_call_callback("glVertexAttrib4f", (void*)glVertexAttrib4f, 5, arg0, arg1, arg2, arg3, arg4); + glad_glVertexAttrib4f(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glVertexAttrib4f", (void*)glVertexAttrib4f, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLVERTEXATTRIB4FPROC glad_debug_glVertexAttrib4f = glad_debug_impl_glVertexAttrib4f; +PFNGLVERTEXATTRIB4FVPROC glad_glVertexAttrib4fv; +void APIENTRY glad_debug_impl_glVertexAttrib4fv(GLuint arg0, const GLfloat * arg1) { + _pre_call_callback("glVertexAttrib4fv", (void*)glVertexAttrib4fv, 2, arg0, arg1); + glad_glVertexAttrib4fv(arg0, arg1); + _post_call_callback("glVertexAttrib4fv", (void*)glVertexAttrib4fv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4FVPROC glad_debug_glVertexAttrib4fv = glad_debug_impl_glVertexAttrib4fv; +PFNGLVERTEXATTRIB4IVPROC glad_glVertexAttrib4iv; +void APIENTRY glad_debug_impl_glVertexAttrib4iv(GLuint arg0, const GLint * arg1) { + _pre_call_callback("glVertexAttrib4iv", (void*)glVertexAttrib4iv, 2, arg0, arg1); + glad_glVertexAttrib4iv(arg0, arg1); + _post_call_callback("glVertexAttrib4iv", (void*)glVertexAttrib4iv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4IVPROC glad_debug_glVertexAttrib4iv = glad_debug_impl_glVertexAttrib4iv; +PFNGLVERTEXATTRIB4SPROC glad_glVertexAttrib4s; +void APIENTRY glad_debug_impl_glVertexAttrib4s(GLuint arg0, GLshort arg1, GLshort arg2, GLshort arg3, GLshort arg4) { + _pre_call_callback("glVertexAttrib4s", (void*)glVertexAttrib4s, 5, arg0, arg1, arg2, arg3, arg4); + glad_glVertexAttrib4s(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glVertexAttrib4s", (void*)glVertexAttrib4s, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLVERTEXATTRIB4SPROC glad_debug_glVertexAttrib4s = glad_debug_impl_glVertexAttrib4s; +PFNGLVERTEXATTRIB4SVPROC glad_glVertexAttrib4sv; +void APIENTRY glad_debug_impl_glVertexAttrib4sv(GLuint arg0, const GLshort * arg1) { + _pre_call_callback("glVertexAttrib4sv", (void*)glVertexAttrib4sv, 2, arg0, arg1); + glad_glVertexAttrib4sv(arg0, arg1); + _post_call_callback("glVertexAttrib4sv", (void*)glVertexAttrib4sv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4SVPROC glad_debug_glVertexAttrib4sv = glad_debug_impl_glVertexAttrib4sv; +PFNGLVERTEXATTRIB4UBVPROC glad_glVertexAttrib4ubv; +void APIENTRY glad_debug_impl_glVertexAttrib4ubv(GLuint arg0, const GLubyte * arg1) { + _pre_call_callback("glVertexAttrib4ubv", (void*)glVertexAttrib4ubv, 2, arg0, arg1); + glad_glVertexAttrib4ubv(arg0, arg1); + _post_call_callback("glVertexAttrib4ubv", (void*)glVertexAttrib4ubv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4UBVPROC glad_debug_glVertexAttrib4ubv = glad_debug_impl_glVertexAttrib4ubv; +PFNGLVERTEXATTRIB4UIVPROC glad_glVertexAttrib4uiv; +void APIENTRY glad_debug_impl_glVertexAttrib4uiv(GLuint arg0, const GLuint * arg1) { + _pre_call_callback("glVertexAttrib4uiv", (void*)glVertexAttrib4uiv, 2, arg0, arg1); + glad_glVertexAttrib4uiv(arg0, arg1); + _post_call_callback("glVertexAttrib4uiv", (void*)glVertexAttrib4uiv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4UIVPROC glad_debug_glVertexAttrib4uiv = glad_debug_impl_glVertexAttrib4uiv; +PFNGLVERTEXATTRIB4USVPROC glad_glVertexAttrib4usv; +void APIENTRY glad_debug_impl_glVertexAttrib4usv(GLuint arg0, const GLushort * arg1) { + _pre_call_callback("glVertexAttrib4usv", (void*)glVertexAttrib4usv, 2, arg0, arg1); + glad_glVertexAttrib4usv(arg0, arg1); + _post_call_callback("glVertexAttrib4usv", (void*)glVertexAttrib4usv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIB4USVPROC glad_debug_glVertexAttrib4usv = glad_debug_impl_glVertexAttrib4usv; +PFNGLVERTEXATTRIBDIVISORPROC glad_glVertexAttribDivisor; +void APIENTRY glad_debug_impl_glVertexAttribDivisor(GLuint arg0, GLuint arg1) { + _pre_call_callback("glVertexAttribDivisor", (void*)glVertexAttribDivisor, 2, arg0, arg1); + glad_glVertexAttribDivisor(arg0, arg1); + _post_call_callback("glVertexAttribDivisor", (void*)glVertexAttribDivisor, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBDIVISORPROC glad_debug_glVertexAttribDivisor = glad_debug_impl_glVertexAttribDivisor; +PFNGLVERTEXATTRIBI1IPROC glad_glVertexAttribI1i; +void APIENTRY glad_debug_impl_glVertexAttribI1i(GLuint arg0, GLint arg1) { + _pre_call_callback("glVertexAttribI1i", (void*)glVertexAttribI1i, 2, arg0, arg1); + glad_glVertexAttribI1i(arg0, arg1); + _post_call_callback("glVertexAttribI1i", (void*)glVertexAttribI1i, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI1IPROC glad_debug_glVertexAttribI1i = glad_debug_impl_glVertexAttribI1i; +PFNGLVERTEXATTRIBI1IVPROC glad_glVertexAttribI1iv; +void APIENTRY glad_debug_impl_glVertexAttribI1iv(GLuint arg0, const GLint * arg1) { + _pre_call_callback("glVertexAttribI1iv", (void*)glVertexAttribI1iv, 2, arg0, arg1); + glad_glVertexAttribI1iv(arg0, arg1); + _post_call_callback("glVertexAttribI1iv", (void*)glVertexAttribI1iv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI1IVPROC glad_debug_glVertexAttribI1iv = glad_debug_impl_glVertexAttribI1iv; +PFNGLVERTEXATTRIBI1UIPROC glad_glVertexAttribI1ui; +void APIENTRY glad_debug_impl_glVertexAttribI1ui(GLuint arg0, GLuint arg1) { + _pre_call_callback("glVertexAttribI1ui", (void*)glVertexAttribI1ui, 2, arg0, arg1); + glad_glVertexAttribI1ui(arg0, arg1); + _post_call_callback("glVertexAttribI1ui", (void*)glVertexAttribI1ui, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI1UIPROC glad_debug_glVertexAttribI1ui = glad_debug_impl_glVertexAttribI1ui; +PFNGLVERTEXATTRIBI1UIVPROC glad_glVertexAttribI1uiv; +void APIENTRY glad_debug_impl_glVertexAttribI1uiv(GLuint arg0, const GLuint * arg1) { + _pre_call_callback("glVertexAttribI1uiv", (void*)glVertexAttribI1uiv, 2, arg0, arg1); + glad_glVertexAttribI1uiv(arg0, arg1); + _post_call_callback("glVertexAttribI1uiv", (void*)glVertexAttribI1uiv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI1UIVPROC glad_debug_glVertexAttribI1uiv = glad_debug_impl_glVertexAttribI1uiv; +PFNGLVERTEXATTRIBI2IPROC glad_glVertexAttribI2i; +void APIENTRY glad_debug_impl_glVertexAttribI2i(GLuint arg0, GLint arg1, GLint arg2) { + _pre_call_callback("glVertexAttribI2i", (void*)glVertexAttribI2i, 3, arg0, arg1, arg2); + glad_glVertexAttribI2i(arg0, arg1, arg2); + _post_call_callback("glVertexAttribI2i", (void*)glVertexAttribI2i, 3, arg0, arg1, arg2); + +} +PFNGLVERTEXATTRIBI2IPROC glad_debug_glVertexAttribI2i = glad_debug_impl_glVertexAttribI2i; +PFNGLVERTEXATTRIBI2IVPROC glad_glVertexAttribI2iv; +void APIENTRY glad_debug_impl_glVertexAttribI2iv(GLuint arg0, const GLint * arg1) { + _pre_call_callback("glVertexAttribI2iv", (void*)glVertexAttribI2iv, 2, arg0, arg1); + glad_glVertexAttribI2iv(arg0, arg1); + _post_call_callback("glVertexAttribI2iv", (void*)glVertexAttribI2iv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI2IVPROC glad_debug_glVertexAttribI2iv = glad_debug_impl_glVertexAttribI2iv; +PFNGLVERTEXATTRIBI2UIPROC glad_glVertexAttribI2ui; +void APIENTRY glad_debug_impl_glVertexAttribI2ui(GLuint arg0, GLuint arg1, GLuint arg2) { + _pre_call_callback("glVertexAttribI2ui", (void*)glVertexAttribI2ui, 3, arg0, arg1, arg2); + glad_glVertexAttribI2ui(arg0, arg1, arg2); + _post_call_callback("glVertexAttribI2ui", (void*)glVertexAttribI2ui, 3, arg0, arg1, arg2); + +} +PFNGLVERTEXATTRIBI2UIPROC glad_debug_glVertexAttribI2ui = glad_debug_impl_glVertexAttribI2ui; +PFNGLVERTEXATTRIBI2UIVPROC glad_glVertexAttribI2uiv; +void APIENTRY glad_debug_impl_glVertexAttribI2uiv(GLuint arg0, const GLuint * arg1) { + _pre_call_callback("glVertexAttribI2uiv", (void*)glVertexAttribI2uiv, 2, arg0, arg1); + glad_glVertexAttribI2uiv(arg0, arg1); + _post_call_callback("glVertexAttribI2uiv", (void*)glVertexAttribI2uiv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI2UIVPROC glad_debug_glVertexAttribI2uiv = glad_debug_impl_glVertexAttribI2uiv; +PFNGLVERTEXATTRIBI3IPROC glad_glVertexAttribI3i; +void APIENTRY glad_debug_impl_glVertexAttribI3i(GLuint arg0, GLint arg1, GLint arg2, GLint arg3) { + _pre_call_callback("glVertexAttribI3i", (void*)glVertexAttribI3i, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribI3i(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribI3i", (void*)glVertexAttribI3i, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBI3IPROC glad_debug_glVertexAttribI3i = glad_debug_impl_glVertexAttribI3i; +PFNGLVERTEXATTRIBI3IVPROC glad_glVertexAttribI3iv; +void APIENTRY glad_debug_impl_glVertexAttribI3iv(GLuint arg0, const GLint * arg1) { + _pre_call_callback("glVertexAttribI3iv", (void*)glVertexAttribI3iv, 2, arg0, arg1); + glad_glVertexAttribI3iv(arg0, arg1); + _post_call_callback("glVertexAttribI3iv", (void*)glVertexAttribI3iv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI3IVPROC glad_debug_glVertexAttribI3iv = glad_debug_impl_glVertexAttribI3iv; +PFNGLVERTEXATTRIBI3UIPROC glad_glVertexAttribI3ui; +void APIENTRY glad_debug_impl_glVertexAttribI3ui(GLuint arg0, GLuint arg1, GLuint arg2, GLuint arg3) { + _pre_call_callback("glVertexAttribI3ui", (void*)glVertexAttribI3ui, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribI3ui(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribI3ui", (void*)glVertexAttribI3ui, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBI3UIPROC glad_debug_glVertexAttribI3ui = glad_debug_impl_glVertexAttribI3ui; +PFNGLVERTEXATTRIBI3UIVPROC glad_glVertexAttribI3uiv; +void APIENTRY glad_debug_impl_glVertexAttribI3uiv(GLuint arg0, const GLuint * arg1) { + _pre_call_callback("glVertexAttribI3uiv", (void*)glVertexAttribI3uiv, 2, arg0, arg1); + glad_glVertexAttribI3uiv(arg0, arg1); + _post_call_callback("glVertexAttribI3uiv", (void*)glVertexAttribI3uiv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI3UIVPROC glad_debug_glVertexAttribI3uiv = glad_debug_impl_glVertexAttribI3uiv; +PFNGLVERTEXATTRIBI4BVPROC glad_glVertexAttribI4bv; +void APIENTRY glad_debug_impl_glVertexAttribI4bv(GLuint arg0, const GLbyte * arg1) { + _pre_call_callback("glVertexAttribI4bv", (void*)glVertexAttribI4bv, 2, arg0, arg1); + glad_glVertexAttribI4bv(arg0, arg1); + _post_call_callback("glVertexAttribI4bv", (void*)glVertexAttribI4bv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI4BVPROC glad_debug_glVertexAttribI4bv = glad_debug_impl_glVertexAttribI4bv; +PFNGLVERTEXATTRIBI4IPROC glad_glVertexAttribI4i; +void APIENTRY glad_debug_impl_glVertexAttribI4i(GLuint arg0, GLint arg1, GLint arg2, GLint arg3, GLint arg4) { + _pre_call_callback("glVertexAttribI4i", (void*)glVertexAttribI4i, 5, arg0, arg1, arg2, arg3, arg4); + glad_glVertexAttribI4i(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glVertexAttribI4i", (void*)glVertexAttribI4i, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLVERTEXATTRIBI4IPROC glad_debug_glVertexAttribI4i = glad_debug_impl_glVertexAttribI4i; +PFNGLVERTEXATTRIBI4IVPROC glad_glVertexAttribI4iv; +void APIENTRY glad_debug_impl_glVertexAttribI4iv(GLuint arg0, const GLint * arg1) { + _pre_call_callback("glVertexAttribI4iv", (void*)glVertexAttribI4iv, 2, arg0, arg1); + glad_glVertexAttribI4iv(arg0, arg1); + _post_call_callback("glVertexAttribI4iv", (void*)glVertexAttribI4iv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI4IVPROC glad_debug_glVertexAttribI4iv = glad_debug_impl_glVertexAttribI4iv; +PFNGLVERTEXATTRIBI4SVPROC glad_glVertexAttribI4sv; +void APIENTRY glad_debug_impl_glVertexAttribI4sv(GLuint arg0, const GLshort * arg1) { + _pre_call_callback("glVertexAttribI4sv", (void*)glVertexAttribI4sv, 2, arg0, arg1); + glad_glVertexAttribI4sv(arg0, arg1); + _post_call_callback("glVertexAttribI4sv", (void*)glVertexAttribI4sv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI4SVPROC glad_debug_glVertexAttribI4sv = glad_debug_impl_glVertexAttribI4sv; +PFNGLVERTEXATTRIBI4UBVPROC glad_glVertexAttribI4ubv; +void APIENTRY glad_debug_impl_glVertexAttribI4ubv(GLuint arg0, const GLubyte * arg1) { + _pre_call_callback("glVertexAttribI4ubv", (void*)glVertexAttribI4ubv, 2, arg0, arg1); + glad_glVertexAttribI4ubv(arg0, arg1); + _post_call_callback("glVertexAttribI4ubv", (void*)glVertexAttribI4ubv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI4UBVPROC glad_debug_glVertexAttribI4ubv = glad_debug_impl_glVertexAttribI4ubv; +PFNGLVERTEXATTRIBI4UIPROC glad_glVertexAttribI4ui; +void APIENTRY glad_debug_impl_glVertexAttribI4ui(GLuint arg0, GLuint arg1, GLuint arg2, GLuint arg3, GLuint arg4) { + _pre_call_callback("glVertexAttribI4ui", (void*)glVertexAttribI4ui, 5, arg0, arg1, arg2, arg3, arg4); + glad_glVertexAttribI4ui(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glVertexAttribI4ui", (void*)glVertexAttribI4ui, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLVERTEXATTRIBI4UIPROC glad_debug_glVertexAttribI4ui = glad_debug_impl_glVertexAttribI4ui; +PFNGLVERTEXATTRIBI4UIVPROC glad_glVertexAttribI4uiv; +void APIENTRY glad_debug_impl_glVertexAttribI4uiv(GLuint arg0, const GLuint * arg1) { + _pre_call_callback("glVertexAttribI4uiv", (void*)glVertexAttribI4uiv, 2, arg0, arg1); + glad_glVertexAttribI4uiv(arg0, arg1); + _post_call_callback("glVertexAttribI4uiv", (void*)glVertexAttribI4uiv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI4UIVPROC glad_debug_glVertexAttribI4uiv = glad_debug_impl_glVertexAttribI4uiv; +PFNGLVERTEXATTRIBI4USVPROC glad_glVertexAttribI4usv; +void APIENTRY glad_debug_impl_glVertexAttribI4usv(GLuint arg0, const GLushort * arg1) { + _pre_call_callback("glVertexAttribI4usv", (void*)glVertexAttribI4usv, 2, arg0, arg1); + glad_glVertexAttribI4usv(arg0, arg1); + _post_call_callback("glVertexAttribI4usv", (void*)glVertexAttribI4usv, 2, arg0, arg1); + +} +PFNGLVERTEXATTRIBI4USVPROC glad_debug_glVertexAttribI4usv = glad_debug_impl_glVertexAttribI4usv; +PFNGLVERTEXATTRIBIPOINTERPROC glad_glVertexAttribIPointer; +void APIENTRY glad_debug_impl_glVertexAttribIPointer(GLuint arg0, GLint arg1, GLenum arg2, GLsizei arg3, const void * arg4) { + _pre_call_callback("glVertexAttribIPointer", (void*)glVertexAttribIPointer, 5, arg0, arg1, arg2, arg3, arg4); + glad_glVertexAttribIPointer(arg0, arg1, arg2, arg3, arg4); + _post_call_callback("glVertexAttribIPointer", (void*)glVertexAttribIPointer, 5, arg0, arg1, arg2, arg3, arg4); + +} +PFNGLVERTEXATTRIBIPOINTERPROC glad_debug_glVertexAttribIPointer = glad_debug_impl_glVertexAttribIPointer; +PFNGLVERTEXATTRIBP1UIPROC glad_glVertexAttribP1ui; +void APIENTRY glad_debug_impl_glVertexAttribP1ui(GLuint arg0, GLenum arg1, GLboolean arg2, GLuint arg3) { + _pre_call_callback("glVertexAttribP1ui", (void*)glVertexAttribP1ui, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribP1ui(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribP1ui", (void*)glVertexAttribP1ui, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBP1UIPROC glad_debug_glVertexAttribP1ui = glad_debug_impl_glVertexAttribP1ui; +PFNGLVERTEXATTRIBP1UIVPROC glad_glVertexAttribP1uiv; +void APIENTRY glad_debug_impl_glVertexAttribP1uiv(GLuint arg0, GLenum arg1, GLboolean arg2, const GLuint * arg3) { + _pre_call_callback("glVertexAttribP1uiv", (void*)glVertexAttribP1uiv, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribP1uiv(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribP1uiv", (void*)glVertexAttribP1uiv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBP1UIVPROC glad_debug_glVertexAttribP1uiv = glad_debug_impl_glVertexAttribP1uiv; +PFNGLVERTEXATTRIBP2UIPROC glad_glVertexAttribP2ui; +void APIENTRY glad_debug_impl_glVertexAttribP2ui(GLuint arg0, GLenum arg1, GLboolean arg2, GLuint arg3) { + _pre_call_callback("glVertexAttribP2ui", (void*)glVertexAttribP2ui, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribP2ui(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribP2ui", (void*)glVertexAttribP2ui, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBP2UIPROC glad_debug_glVertexAttribP2ui = glad_debug_impl_glVertexAttribP2ui; +PFNGLVERTEXATTRIBP2UIVPROC glad_glVertexAttribP2uiv; +void APIENTRY glad_debug_impl_glVertexAttribP2uiv(GLuint arg0, GLenum arg1, GLboolean arg2, const GLuint * arg3) { + _pre_call_callback("glVertexAttribP2uiv", (void*)glVertexAttribP2uiv, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribP2uiv(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribP2uiv", (void*)glVertexAttribP2uiv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBP2UIVPROC glad_debug_glVertexAttribP2uiv = glad_debug_impl_glVertexAttribP2uiv; +PFNGLVERTEXATTRIBP3UIPROC glad_glVertexAttribP3ui; +void APIENTRY glad_debug_impl_glVertexAttribP3ui(GLuint arg0, GLenum arg1, GLboolean arg2, GLuint arg3) { + _pre_call_callback("glVertexAttribP3ui", (void*)glVertexAttribP3ui, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribP3ui(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribP3ui", (void*)glVertexAttribP3ui, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBP3UIPROC glad_debug_glVertexAttribP3ui = glad_debug_impl_glVertexAttribP3ui; +PFNGLVERTEXATTRIBP3UIVPROC glad_glVertexAttribP3uiv; +void APIENTRY glad_debug_impl_glVertexAttribP3uiv(GLuint arg0, GLenum arg1, GLboolean arg2, const GLuint * arg3) { + _pre_call_callback("glVertexAttribP3uiv", (void*)glVertexAttribP3uiv, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribP3uiv(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribP3uiv", (void*)glVertexAttribP3uiv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBP3UIVPROC glad_debug_glVertexAttribP3uiv = glad_debug_impl_glVertexAttribP3uiv; +PFNGLVERTEXATTRIBP4UIPROC glad_glVertexAttribP4ui; +void APIENTRY glad_debug_impl_glVertexAttribP4ui(GLuint arg0, GLenum arg1, GLboolean arg2, GLuint arg3) { + _pre_call_callback("glVertexAttribP4ui", (void*)glVertexAttribP4ui, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribP4ui(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribP4ui", (void*)glVertexAttribP4ui, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBP4UIPROC glad_debug_glVertexAttribP4ui = glad_debug_impl_glVertexAttribP4ui; +PFNGLVERTEXATTRIBP4UIVPROC glad_glVertexAttribP4uiv; +void APIENTRY glad_debug_impl_glVertexAttribP4uiv(GLuint arg0, GLenum arg1, GLboolean arg2, const GLuint * arg3) { + _pre_call_callback("glVertexAttribP4uiv", (void*)glVertexAttribP4uiv, 4, arg0, arg1, arg2, arg3); + glad_glVertexAttribP4uiv(arg0, arg1, arg2, arg3); + _post_call_callback("glVertexAttribP4uiv", (void*)glVertexAttribP4uiv, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVERTEXATTRIBP4UIVPROC glad_debug_glVertexAttribP4uiv = glad_debug_impl_glVertexAttribP4uiv; +PFNGLVERTEXATTRIBPOINTERPROC glad_glVertexAttribPointer; +void APIENTRY glad_debug_impl_glVertexAttribPointer(GLuint arg0, GLint arg1, GLenum arg2, GLboolean arg3, GLsizei arg4, const void * arg5) { + _pre_call_callback("glVertexAttribPointer", (void*)glVertexAttribPointer, 6, arg0, arg1, arg2, arg3, arg4, arg5); + glad_glVertexAttribPointer(arg0, arg1, arg2, arg3, arg4, arg5); + _post_call_callback("glVertexAttribPointer", (void*)glVertexAttribPointer, 6, arg0, arg1, arg2, arg3, arg4, arg5); + +} +PFNGLVERTEXATTRIBPOINTERPROC glad_debug_glVertexAttribPointer = glad_debug_impl_glVertexAttribPointer; +PFNGLVERTEXP2UIPROC glad_glVertexP2ui; +void APIENTRY glad_debug_impl_glVertexP2ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glVertexP2ui", (void*)glVertexP2ui, 2, arg0, arg1); + glad_glVertexP2ui(arg0, arg1); + _post_call_callback("glVertexP2ui", (void*)glVertexP2ui, 2, arg0, arg1); + +} +PFNGLVERTEXP2UIPROC glad_debug_glVertexP2ui = glad_debug_impl_glVertexP2ui; +PFNGLVERTEXP2UIVPROC glad_glVertexP2uiv; +void APIENTRY glad_debug_impl_glVertexP2uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glVertexP2uiv", (void*)glVertexP2uiv, 2, arg0, arg1); + glad_glVertexP2uiv(arg0, arg1); + _post_call_callback("glVertexP2uiv", (void*)glVertexP2uiv, 2, arg0, arg1); + +} +PFNGLVERTEXP2UIVPROC glad_debug_glVertexP2uiv = glad_debug_impl_glVertexP2uiv; +PFNGLVERTEXP3UIPROC glad_glVertexP3ui; +void APIENTRY glad_debug_impl_glVertexP3ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glVertexP3ui", (void*)glVertexP3ui, 2, arg0, arg1); + glad_glVertexP3ui(arg0, arg1); + _post_call_callback("glVertexP3ui", (void*)glVertexP3ui, 2, arg0, arg1); + +} +PFNGLVERTEXP3UIPROC glad_debug_glVertexP3ui = glad_debug_impl_glVertexP3ui; +PFNGLVERTEXP3UIVPROC glad_glVertexP3uiv; +void APIENTRY glad_debug_impl_glVertexP3uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glVertexP3uiv", (void*)glVertexP3uiv, 2, arg0, arg1); + glad_glVertexP3uiv(arg0, arg1); + _post_call_callback("glVertexP3uiv", (void*)glVertexP3uiv, 2, arg0, arg1); + +} +PFNGLVERTEXP3UIVPROC glad_debug_glVertexP3uiv = glad_debug_impl_glVertexP3uiv; +PFNGLVERTEXP4UIPROC glad_glVertexP4ui; +void APIENTRY glad_debug_impl_glVertexP4ui(GLenum arg0, GLuint arg1) { + _pre_call_callback("glVertexP4ui", (void*)glVertexP4ui, 2, arg0, arg1); + glad_glVertexP4ui(arg0, arg1); + _post_call_callback("glVertexP4ui", (void*)glVertexP4ui, 2, arg0, arg1); + +} +PFNGLVERTEXP4UIPROC glad_debug_glVertexP4ui = glad_debug_impl_glVertexP4ui; +PFNGLVERTEXP4UIVPROC glad_glVertexP4uiv; +void APIENTRY glad_debug_impl_glVertexP4uiv(GLenum arg0, const GLuint * arg1) { + _pre_call_callback("glVertexP4uiv", (void*)glVertexP4uiv, 2, arg0, arg1); + glad_glVertexP4uiv(arg0, arg1); + _post_call_callback("glVertexP4uiv", (void*)glVertexP4uiv, 2, arg0, arg1); + +} +PFNGLVERTEXP4UIVPROC glad_debug_glVertexP4uiv = glad_debug_impl_glVertexP4uiv; +PFNGLVIEWPORTPROC glad_glViewport; +void APIENTRY glad_debug_impl_glViewport(GLint arg0, GLint arg1, GLsizei arg2, GLsizei arg3) { + _pre_call_callback("glViewport", (void*)glViewport, 4, arg0, arg1, arg2, arg3); + glad_glViewport(arg0, arg1, arg2, arg3); + _post_call_callback("glViewport", (void*)glViewport, 4, arg0, arg1, arg2, arg3); + +} +PFNGLVIEWPORTPROC glad_debug_glViewport = glad_debug_impl_glViewport; +PFNGLWAITSYNCPROC glad_glWaitSync; +void APIENTRY glad_debug_impl_glWaitSync(GLsync arg0, GLbitfield arg1, GLuint64 arg2) { + _pre_call_callback("glWaitSync", (void*)glWaitSync, 3, arg0, arg1, arg2); + glad_glWaitSync(arg0, arg1, arg2); + _post_call_callback("glWaitSync", (void*)glWaitSync, 3, arg0, arg1, arg2); + +} +PFNGLWAITSYNCPROC glad_debug_glWaitSync = glad_debug_impl_glWaitSync; +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/external/glm b/external/glm new file mode 160000 index 0000000..bf71a83 --- /dev/null +++ b/external/glm @@ -0,0 +1 @@ +Subproject commit bf71a834948186f4097caa076cd2663c69a10e1e diff --git a/external/glm.cmake b/external/glm.cmake new file mode 100644 index 0000000..622490f --- /dev/null +++ b/external/glm.cmake @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) + +add_library(glm INTERFACE) +target_include_directories(glm INTERFACE "${CMAKE_CURRENT_LIST_DIR}/glm") + diff --git a/external/googletest b/external/googletest new file mode 160000 index 0000000..705b9c1 --- /dev/null +++ b/external/googletest @@ -0,0 +1 @@ +Subproject commit 705b9c1af24953bbbe757f192fa25c44a9e92e7c diff --git a/external/icon_font_cpp_headers.cmake b/external/icon_font_cpp_headers.cmake new file mode 100644 index 0000000..609410e --- /dev/null +++ b/external/icon_font_cpp_headers.cmake @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +add_library(icon_font_cpp_headers INTERFACE) +target_include_directories(icon_font_cpp_headers INTERFACE "${CMAKE_CURRENT_LIST_DIR}/IconFontCppHeaders/") + diff --git a/external/imgui/CMakeLists.txt b/external/imgui/CMakeLists.txt new file mode 100644 index 0000000..704a99d --- /dev/null +++ b/external/imgui/CMakeLists.txt @@ -0,0 +1,60 @@ +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) + +project(imgui C CXX) + +set(CPP_FILES + "imgui/imgui.cpp" + "imgui/imgui_draw.cpp" + "imgui/imgui_widgets.cpp" + "imgui/imgui_demo.cpp" + + "imgui/misc/cpp/imgui_stdlib.cpp" + + "imgui_plot_var.cpp" + + #"imgui_impl_sdl_gl3.cpp" + "imgui_impl_sdl.cpp" + "imgui_impl_opengl3.cpp" +) + +set(HPP_FILES + "imgui/imgui.h" + "imgui/imstb_rectpack.h" + "imgui/imstb_textedit.h" + "imgui/imstb_truetype.h" + + "imgui/misc/cpp/imgui_stdlib.h" + + "imgui_plot_var.hpp" + + #"imgui_impl_sdl_gl3.h" + "imgui_impl_sdl.h" + "imgui_impl_opengl3.h" +) + +add_library(imgui ${CPP_FILES} ${HPP_FILES}) + +if(MM_OPENGL_3_GLES) + target_compile_definitions(imgui PUBLIC IMGUI_IMPL_OPENGL_ES3) + target_compile_definitions(imgui PUBLIC IMGUI_IMPL_OPENGL_LOADER_CUSTOM) # bug? +else() + target_compile_definitions(imgui PUBLIC IMGUI_IMPL_OPENGL_LOADER_GLAD) + target_link_libraries(imgui glad) +endif() + +target_include_directories(imgui PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") +#target_include_directories(imgui PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/imgui") +target_include_directories(imgui PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/imgui") # im sad + +if(EMSCRIPTEN) + set_target_properties(imgui PROPERTIES COMPILE_FLAGS "-s USE_SDL=2 -s USE_WEBGL2=1 -s FULL_ES2=1 -s FULL_ES3=1") + set_target_properties(imgui PROPERTIES LINK_FLAGS "-s USE_SDL=2 -s USE_WEBGL2=1 -s FULL_ES2=1 -s FULL_ES3=1") +elseif(ANDROID) + target_link_libraries(imgui SDL) +else() # if not android or emscripten + target_include_directories(imgui PUBLIC "${SDL2_INCLUDE_DIR}") + target_link_libraries(imgui ${SDL2_LIBRARY}) +endif() + +target_compile_definitions(imgui PUBLIC ImTextureID=unsigned\ long) + diff --git a/external/imgui/imgui b/external/imgui/imgui new file mode 160000 index 0000000..95c99aa --- /dev/null +++ b/external/imgui/imgui @@ -0,0 +1 @@ +Subproject commit 95c99aaa4be611716093edcb6b01146ab9483f30 diff --git a/external/imgui/imgui_impl_opengl3.cpp b/external/imgui/imgui_impl_opengl3.cpp new file mode 100644 index 0000000..21e8852 --- /dev/null +++ b/external/imgui/imgui_impl_opengl3.cpp @@ -0,0 +1,682 @@ +// dear imgui: Renderer for modern OpenGL with shaders / programmatic pipeline +// - Desktop GL: 2.x 3.x 4.x +// - Embedded GL: ES 2.0 (WebGL 1.0), ES 3.0 (WebGL 2.0) +// This needs to be used along with a Platform Binding (e.g. GLFW, SDL, Win32, custom..) + +// Implemented features: +// [X] Renderer: User texture binding. Use 'GLuint' OpenGL texture identifier as void*/ImTextureID. Read the FAQ about ImTextureID! +// [x] Renderer: Desktop GL only: Support for large meshes (64k+ vertices) with 16-bit indices. + +// You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this. +// If you are new to dear imgui, read examples/README.txt and read the documentation at the top of imgui.cpp. +// https://github.com/ocornut/imgui + +// CHANGELOG +// (minor and older changes stripped away, please see git history for details) +// 2020-07-10: OpenGL: Added support for glad2 OpenGL loader. +// 2020-05-08: OpenGL: Made default GLSL version 150 (instead of 130) on OSX. +// 2020-04-21: OpenGL: Fixed handling of glClipControl(GL_UPPER_LEFT) by inverting projection matrix. +// 2020-04-12: OpenGL: Fixed context version check mistakenly testing for 4.0+ instead of 3.2+ to enable ImGuiBackendFlags_RendererHasVtxOffset. +// 2020-03-24: OpenGL: Added support for glbinding 2.x OpenGL loader. +// 2020-01-07: OpenGL: Added support for glbinding 3.x OpenGL loader. +// 2019-10-25: OpenGL: Using a combination of GL define and runtime GL version to decide whether to use glDrawElementsBaseVertex(). Fix building with pre-3.2 GL loaders. +// 2019-09-22: OpenGL: Detect default GL loader using __has_include compiler facility. +// 2019-09-16: OpenGL: Tweak initialization code to allow application calling ImGui_ImplOpenGL3_CreateFontsTexture() before the first NewFrame() call. +// 2019-05-29: OpenGL: Desktop GL only: Added support for large mesh (64K+ vertices), enable ImGuiBackendFlags_RendererHasVtxOffset flag. +// 2019-04-30: OpenGL: Added support for special ImDrawCallback_ResetRenderState callback to reset render state. +// 2019-03-29: OpenGL: Not calling glBindBuffer more than necessary in the render loop. +// 2019-03-15: OpenGL: Added a GL call + comments in ImGui_ImplOpenGL3_Init() to detect uninitialized GL function loaders early. +// 2019-03-03: OpenGL: Fix support for ES 2.0 (WebGL 1.0). +// 2019-02-20: OpenGL: Fix for OSX not supporting OpenGL 4.5, we don't try to read GL_CLIP_ORIGIN even if defined by the headers/loader. +// 2019-02-11: OpenGL: Projecting clipping rectangles correctly using draw_data->FramebufferScale to allow multi-viewports for retina display. +// 2019-02-01: OpenGL: Using GLSL 410 shaders for any version over 410 (e.g. 430, 450). +// 2018-11-30: Misc: Setting up io.BackendRendererName so it can be displayed in the About Window. +// 2018-11-13: OpenGL: Support for GL 4.5's glClipControl(GL_UPPER_LEFT) / GL_CLIP_ORIGIN. +// 2018-08-29: OpenGL: Added support for more OpenGL loaders: glew and glad, with comments indicative that any loader can be used. +// 2018-08-09: OpenGL: Default to OpenGL ES 3 on iOS and Android. GLSL version default to "#version 300 ES". +// 2018-07-30: OpenGL: Support for GLSL 300 ES and 410 core. Fixes for Emscripten compilation. +// 2018-07-10: OpenGL: Support for more GLSL versions (based on the GLSL version string). Added error output when shaders fail to compile/link. +// 2018-06-08: Misc: Extracted imgui_impl_opengl3.cpp/.h away from the old combined GLFW/SDL+OpenGL3 examples. +// 2018-06-08: OpenGL: Use draw_data->DisplayPos and draw_data->DisplaySize to setup projection matrix and clipping rectangle. +// 2018-05-25: OpenGL: Removed unnecessary backup/restore of GL_ELEMENT_ARRAY_BUFFER_BINDING since this is part of the VAO state. +// 2018-05-14: OpenGL: Making the call to glBindSampler() optional so 3.2 context won't fail if the function is a NULL pointer. +// 2018-03-06: OpenGL: Added const char* glsl_version parameter to ImGui_ImplOpenGL3_Init() so user can override the GLSL version e.g. "#version 150". +// 2018-02-23: OpenGL: Create the VAO in the render function so the setup can more easily be used with multiple shared GL context. +// 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplSdlGL3_RenderDrawData() in the .h file so you can call it yourself. +// 2018-01-07: OpenGL: Changed GLSL shader version from 330 to 150. +// 2017-09-01: OpenGL: Save and restore current bound sampler. Save and restore current polygon mode. +// 2017-05-01: OpenGL: Fixed save and restore of current blend func state. +// 2017-05-01: OpenGL: Fixed save and restore of current GL_ACTIVE_TEXTURE. +// 2016-09-05: OpenGL: Fixed save and restore of current scissor rectangle. +// 2016-07-29: OpenGL: Explicitly setting GL_UNPACK_ROW_LENGTH to reduce issues because SDL changes it. (#752) + +//---------------------------------------- +// OpenGL GLSL GLSL +// version version string +//---------------------------------------- +// 2.0 110 "#version 110" +// 2.1 120 "#version 120" +// 3.0 130 "#version 130" +// 3.1 140 "#version 140" +// 3.2 150 "#version 150" +// 3.3 330 "#version 330 core" +// 4.0 400 "#version 400 core" +// 4.1 410 "#version 410 core" +// 4.2 420 "#version 410 core" +// 4.3 430 "#version 430 core" +// ES 2.0 100 "#version 100" = WebGL 1.0 +// ES 3.0 300 "#version 300 es" = WebGL 2.0 +//---------------------------------------- + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#include "imgui.h" +#include "imgui_impl_opengl3.h" +#include +#if defined(_MSC_VER) && _MSC_VER <= 1500 // MSVC 2008 or earlier +#include // intptr_t +#else +#include // intptr_t +#endif + + +// GL includes +#if defined(IMGUI_IMPL_OPENGL_ES2) +#include +#elif defined(IMGUI_IMPL_OPENGL_ES3) +#if (defined(__APPLE__) && (TARGET_OS_IOS || TARGET_OS_TV)) +#include // Use GL ES 3 +#else +#include // Use GL ES 3 +#endif +#else +// About Desktop OpenGL function loaders: +// Modern desktop OpenGL doesn't have a standard portable header file to load OpenGL function pointers. +// Helper libraries are often used for this purpose! Here we are supporting a few common ones (gl3w, glew, glad). +// You may use another loader/header of your choice (glext, glLoadGen, etc.), or chose to manually implement your own. +#if defined(IMGUI_IMPL_OPENGL_LOADER_GL3W) +#include // Needs to be initialized with gl3wInit() in user's code +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLEW) +#include // Needs to be initialized with glewInit() in user's code. +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD) +#include // Needs to be initialized with gladLoadGL() in user's code. +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD2) +#include // Needs to be initialized with gladLoadGL(...) or gladLoaderLoadGL() in user's code. +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING2) +#ifndef GLFW_INCLUDE_NONE +#define GLFW_INCLUDE_NONE // GLFW including OpenGL headers causes ambiguity or multiple definition errors. +#endif +#include // Needs to be initialized with glbinding::Binding::initialize() in user's code. +#include +using namespace gl; +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING3) +#ifndef GLFW_INCLUDE_NONE +#define GLFW_INCLUDE_NONE // GLFW including OpenGL headers causes ambiguity or multiple definition errors. +#endif +#include // Needs to be initialized with glbinding::initialize() in user's code. +#include +using namespace gl; +#else +#include IMGUI_IMPL_OPENGL_LOADER_CUSTOM +#endif +#endif + +// Desktop GL 3.2+ has glDrawElementsBaseVertex() which GL ES and WebGL don't have. +#if defined(IMGUI_IMPL_OPENGL_ES2) || defined(IMGUI_IMPL_OPENGL_ES3) || !defined(GL_VERSION_3_2) +#define IMGUI_IMPL_OPENGL_MAY_HAVE_VTX_OFFSET 0 +#else +#define IMGUI_IMPL_OPENGL_MAY_HAVE_VTX_OFFSET 1 +#endif + +// OpenGL Data +static GLuint g_GlVersion = 0; // Extracted at runtime using GL_MAJOR_VERSION, GL_MINOR_VERSION queries (e.g. 320 for GL 3.2) +static char g_GlslVersionString[32] = ""; // Specified by user or detected based on compile time GL settings. +static GLuint g_FontTexture = 0; +static GLuint g_ShaderHandle = 0, g_VertHandle = 0, g_FragHandle = 0; +static GLint g_AttribLocationTex = 0, g_AttribLocationProjMtx = 0; // Uniforms location +static GLuint g_AttribLocationVtxPos = 0, g_AttribLocationVtxUV = 0, g_AttribLocationVtxColor = 0; // Vertex attributes location +static unsigned int g_VboHandle = 0, g_ElementsHandle = 0; + +// Functions +bool ImGui_ImplOpenGL3_Init(const char* glsl_version) +{ + // Query for GL version (e.g. 320 for GL 3.2) +#if !defined(IMGUI_IMPL_OPENGL_ES2) + GLint major, minor; + glGetIntegerv(GL_MAJOR_VERSION, &major); + glGetIntegerv(GL_MINOR_VERSION, &minor); + g_GlVersion = (GLuint)(major * 100 + minor * 10); +#else + g_GlVersion = 200; // GLES 2 +#endif + + // Setup back-end capabilities flags + ImGuiIO& io = ImGui::GetIO(); + io.BackendRendererName = "imgui_impl_opengl3"; +#if IMGUI_IMPL_OPENGL_MAY_HAVE_VTX_OFFSET + if (g_GlVersion >= 320) + io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset; // We can honor the ImDrawCmd::VtxOffset field, allowing for large meshes. +#endif + + // Store GLSL version string so we can refer to it later in case we recreate shaders. + // Note: GLSL version is NOT the same as GL version. Leave this to NULL if unsure. +#if defined(IMGUI_IMPL_OPENGL_ES2) + if (glsl_version == NULL) + glsl_version = "#version 100"; +#elif defined(IMGUI_IMPL_OPENGL_ES3) + if (glsl_version == NULL) + glsl_version = "#version 300 es"; +#elif defined(__APPLE__) + if (glsl_version == NULL) + glsl_version = "#version 150"; +#else + if (glsl_version == NULL) + glsl_version = "#version 130"; +#endif + IM_ASSERT((int)strlen(glsl_version) + 2 < IM_ARRAYSIZE(g_GlslVersionString)); + strcpy(g_GlslVersionString, glsl_version); + strcat(g_GlslVersionString, "\n"); + + // Debugging construct to make it easily visible in the IDE and debugger which GL loader has been selected. + // The code actually never uses the 'gl_loader' variable! It is only here so you can read it! + // If auto-detection fails or doesn't select the same GL loader file as used by your application, + // you are likely to get a crash below. + // You can explicitly select a loader by using '#define IMGUI_IMPL_OPENGL_LOADER_XXX' in imconfig.h or compiler command-line. + const char* gl_loader = "Unknown"; + IM_UNUSED(gl_loader); +#if defined(IMGUI_IMPL_OPENGL_LOADER_GL3W) + gl_loader = "GL3W"; +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLEW) + gl_loader = "GLEW"; +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD) + gl_loader = "GLAD"; +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD2) + gl_loader = "GLAD2"; +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING2) + gl_loader = "glbinding2"; +#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING3) + gl_loader = "glbinding3"; +#elif defined(IMGUI_IMPL_OPENGL_LOADER_CUSTOM) + gl_loader = "custom"; +#else + gl_loader = "none"; +#endif + + // Make an arbitrary GL call (we don't actually need the result) + // IF YOU GET A CRASH HERE: it probably means that you haven't initialized the OpenGL function loader used by this code. + // Desktop OpenGL 3/4 need a function loader. See the IMGUI_IMPL_OPENGL_LOADER_xxx explanation above. + GLint current_texture; + glGetIntegerv(GL_TEXTURE_BINDING_2D, ¤t_texture); + + return true; +} + +void ImGui_ImplOpenGL3_Shutdown() +{ + ImGui_ImplOpenGL3_DestroyDeviceObjects(); +} + +void ImGui_ImplOpenGL3_NewFrame() +{ + if (!g_ShaderHandle) + ImGui_ImplOpenGL3_CreateDeviceObjects(); +} + +static void ImGui_ImplOpenGL3_SetupRenderState(ImDrawData* draw_data, int fb_width, int fb_height, GLuint vertex_array_object) +{ + // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, polygon fill + glEnable(GL_BLEND); + glBlendEquation(GL_FUNC_ADD); + glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); + glDisable(GL_CULL_FACE); + glDisable(GL_DEPTH_TEST); + glEnable(GL_SCISSOR_TEST); +#ifdef GL_POLYGON_MODE + glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); +#endif + + // Support for GL 4.5 rarely used glClipControl(GL_UPPER_LEFT) + bool clip_origin_lower_left = true; +#if defined(GL_CLIP_ORIGIN) && !defined(__APPLE__) + GLenum current_clip_origin = 0; glGetIntegerv(GL_CLIP_ORIGIN, (GLint*)¤t_clip_origin); + if (current_clip_origin == GL_UPPER_LEFT) + clip_origin_lower_left = false; +#endif + + // Setup viewport, orthographic projection matrix + // Our visible imgui space lies from draw_data->DisplayPos (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayPos is (0,0) for single viewport apps. + glViewport(0, 0, (GLsizei)fb_width, (GLsizei)fb_height); + float L = draw_data->DisplayPos.x; + float R = draw_data->DisplayPos.x + draw_data->DisplaySize.x; + float T = draw_data->DisplayPos.y; + float B = draw_data->DisplayPos.y + draw_data->DisplaySize.y; + if (!clip_origin_lower_left) { float tmp = T; T = B; B = tmp; } // Swap top and bottom if origin is upper left + const float ortho_projection[4][4] = + { + { 2.0f/(R-L), 0.0f, 0.0f, 0.0f }, + { 0.0f, 2.0f/(T-B), 0.0f, 0.0f }, + { 0.0f, 0.0f, -1.0f, 0.0f }, + { (R+L)/(L-R), (T+B)/(B-T), 0.0f, 1.0f }, + }; + glUseProgram(g_ShaderHandle); + glUniform1i(g_AttribLocationTex, 0); + glUniformMatrix4fv(g_AttribLocationProjMtx, 1, GL_FALSE, &ortho_projection[0][0]); +#ifdef GL_SAMPLER_BINDING + glBindSampler(0, 0); // We use combined texture/sampler state. Applications using GL 3.3 may set that otherwise. +#endif + + (void)vertex_array_object; +#ifndef IMGUI_IMPL_OPENGL_ES2 + glBindVertexArray(vertex_array_object); +#endif + + // Bind vertex/index buffers and setup attributes for ImDrawVert + glBindBuffer(GL_ARRAY_BUFFER, g_VboHandle); + glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, g_ElementsHandle); + glEnableVertexAttribArray(g_AttribLocationVtxPos); + glEnableVertexAttribArray(g_AttribLocationVtxUV); + glEnableVertexAttribArray(g_AttribLocationVtxColor); + glVertexAttribPointer(g_AttribLocationVtxPos, 2, GL_FLOAT, GL_FALSE, sizeof(ImDrawVert), (GLvoid*)IM_OFFSETOF(ImDrawVert, pos)); + glVertexAttribPointer(g_AttribLocationVtxUV, 2, GL_FLOAT, GL_FALSE, sizeof(ImDrawVert), (GLvoid*)IM_OFFSETOF(ImDrawVert, uv)); + glVertexAttribPointer(g_AttribLocationVtxColor, 4, GL_UNSIGNED_BYTE, GL_TRUE, sizeof(ImDrawVert), (GLvoid*)IM_OFFSETOF(ImDrawVert, col)); +} + +// OpenGL3 Render function. +// (this used to be set in io.RenderDrawListsFn and called by ImGui::Render(), but you can now call this directly from your main loop) +// Note that this implementation is little overcomplicated because we are saving/setting up/restoring every OpenGL state explicitly, in order to be able to run within any OpenGL engine that doesn't do so. +void ImGui_ImplOpenGL3_RenderDrawData(ImDrawData* draw_data) +{ + // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates) + int fb_width = (int)(draw_data->DisplaySize.x * draw_data->FramebufferScale.x); + int fb_height = (int)(draw_data->DisplaySize.y * draw_data->FramebufferScale.y); + if (fb_width <= 0 || fb_height <= 0) + return; + + // Backup GL state + GLenum last_active_texture; glGetIntegerv(GL_ACTIVE_TEXTURE, (GLint*)&last_active_texture); + glActiveTexture(GL_TEXTURE0); + GLuint last_program; glGetIntegerv(GL_CURRENT_PROGRAM, (GLint*)&last_program); + GLuint last_texture; glGetIntegerv(GL_TEXTURE_BINDING_2D, (GLint*)&last_texture); +#ifdef GL_SAMPLER_BINDING + GLuint last_sampler; glGetIntegerv(GL_SAMPLER_BINDING, (GLint*)&last_sampler); +#endif + GLuint last_array_buffer; glGetIntegerv(GL_ARRAY_BUFFER_BINDING, (GLint*)&last_array_buffer); +#ifndef IMGUI_IMPL_OPENGL_ES2 + GLuint last_vertex_array_object; glGetIntegerv(GL_VERTEX_ARRAY_BINDING, (GLint*)&last_vertex_array_object); +#endif +#ifdef GL_POLYGON_MODE + GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode); +#endif + GLint last_viewport[4]; glGetIntegerv(GL_VIEWPORT, last_viewport); + GLint last_scissor_box[4]; glGetIntegerv(GL_SCISSOR_BOX, last_scissor_box); + GLenum last_blend_src_rgb; glGetIntegerv(GL_BLEND_SRC_RGB, (GLint*)&last_blend_src_rgb); + GLenum last_blend_dst_rgb; glGetIntegerv(GL_BLEND_DST_RGB, (GLint*)&last_blend_dst_rgb); + GLenum last_blend_src_alpha; glGetIntegerv(GL_BLEND_SRC_ALPHA, (GLint*)&last_blend_src_alpha); + GLenum last_blend_dst_alpha; glGetIntegerv(GL_BLEND_DST_ALPHA, (GLint*)&last_blend_dst_alpha); + GLenum last_blend_equation_rgb; glGetIntegerv(GL_BLEND_EQUATION_RGB, (GLint*)&last_blend_equation_rgb); + GLenum last_blend_equation_alpha; glGetIntegerv(GL_BLEND_EQUATION_ALPHA, (GLint*)&last_blend_equation_alpha); + GLboolean last_enable_blend = glIsEnabled(GL_BLEND); + GLboolean last_enable_cull_face = glIsEnabled(GL_CULL_FACE); + GLboolean last_enable_depth_test = glIsEnabled(GL_DEPTH_TEST); + GLboolean last_enable_scissor_test = glIsEnabled(GL_SCISSOR_TEST); + + // Setup desired GL state + // Recreate the VAO every time (this is to easily allow multiple GL contexts to be rendered to. VAO are not shared among GL contexts) + // The renderer would actually work without any VAO bound, but then our VertexAttrib calls would overwrite the default one currently bound. + GLuint vertex_array_object = 0; +#ifndef IMGUI_IMPL_OPENGL_ES2 + glGenVertexArrays(1, &vertex_array_object); +#endif + ImGui_ImplOpenGL3_SetupRenderState(draw_data, fb_width, fb_height, vertex_array_object); + + // Will project scissor/clipping rectangles into framebuffer space + ImVec2 clip_off = draw_data->DisplayPos; // (0,0) unless using multi-viewports + ImVec2 clip_scale = draw_data->FramebufferScale; // (1,1) unless using retina display which are often (2,2) + + // Render command lists + for (int n = 0; n < draw_data->CmdListsCount; n++) + { + const ImDrawList* cmd_list = draw_data->CmdLists[n]; + + // Upload vertex/index buffers + glBufferData(GL_ARRAY_BUFFER, (GLsizeiptr)cmd_list->VtxBuffer.Size * (int)sizeof(ImDrawVert), (const GLvoid*)cmd_list->VtxBuffer.Data, GL_STREAM_DRAW); + glBufferData(GL_ELEMENT_ARRAY_BUFFER, (GLsizeiptr)cmd_list->IdxBuffer.Size * (int)sizeof(ImDrawIdx), (const GLvoid*)cmd_list->IdxBuffer.Data, GL_STREAM_DRAW); + + for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) + { + const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; + if (pcmd->UserCallback != NULL) + { + // User callback, registered via ImDrawList::AddCallback() + // (ImDrawCallback_ResetRenderState is a special callback value used by the user to request the renderer to reset render state.) + if (pcmd->UserCallback == ImDrawCallback_ResetRenderState) + ImGui_ImplOpenGL3_SetupRenderState(draw_data, fb_width, fb_height, vertex_array_object); + else + pcmd->UserCallback(cmd_list, pcmd); + } + else + { + // Project scissor/clipping rectangles into framebuffer space + ImVec4 clip_rect; + clip_rect.x = (pcmd->ClipRect.x - clip_off.x) * clip_scale.x; + clip_rect.y = (pcmd->ClipRect.y - clip_off.y) * clip_scale.y; + clip_rect.z = (pcmd->ClipRect.z - clip_off.x) * clip_scale.x; + clip_rect.w = (pcmd->ClipRect.w - clip_off.y) * clip_scale.y; + + if (clip_rect.x < fb_width && clip_rect.y < fb_height && clip_rect.z >= 0.0f && clip_rect.w >= 0.0f) + { + // Apply scissor/clipping rectangle + glScissor((int)clip_rect.x, (int)(fb_height - clip_rect.w), (int)(clip_rect.z - clip_rect.x), (int)(clip_rect.w - clip_rect.y)); + + // Bind texture, Draw + glBindTexture(GL_TEXTURE_2D, (GLuint)(intptr_t)pcmd->TextureId); +#if IMGUI_IMPL_OPENGL_MAY_HAVE_VTX_OFFSET + if (g_GlVersion >= 320) + glDrawElementsBaseVertex(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, (void*)(intptr_t)(pcmd->IdxOffset * sizeof(ImDrawIdx)), (GLint)pcmd->VtxOffset); + else +#endif + glDrawElements(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, (void*)(intptr_t)(pcmd->IdxOffset * sizeof(ImDrawIdx))); + } + } + } + } + + // Destroy the temporary VAO +#ifndef IMGUI_IMPL_OPENGL_ES2 + glDeleteVertexArrays(1, &vertex_array_object); +#endif + + // Restore modified GL state + glUseProgram(last_program); + glBindTexture(GL_TEXTURE_2D, last_texture); +#ifdef GL_SAMPLER_BINDING + glBindSampler(0, last_sampler); +#endif + glActiveTexture(last_active_texture); +#ifndef IMGUI_IMPL_OPENGL_ES2 + glBindVertexArray(last_vertex_array_object); +#endif + glBindBuffer(GL_ARRAY_BUFFER, last_array_buffer); + glBlendEquationSeparate(last_blend_equation_rgb, last_blend_equation_alpha); + glBlendFuncSeparate(last_blend_src_rgb, last_blend_dst_rgb, last_blend_src_alpha, last_blend_dst_alpha); + if (last_enable_blend) glEnable(GL_BLEND); else glDisable(GL_BLEND); + if (last_enable_cull_face) glEnable(GL_CULL_FACE); else glDisable(GL_CULL_FACE); + if (last_enable_depth_test) glEnable(GL_DEPTH_TEST); else glDisable(GL_DEPTH_TEST); + if (last_enable_scissor_test) glEnable(GL_SCISSOR_TEST); else glDisable(GL_SCISSOR_TEST); +#ifdef GL_POLYGON_MODE + glPolygonMode(GL_FRONT_AND_BACK, (GLenum)last_polygon_mode[0]); +#endif + glViewport(last_viewport[0], last_viewport[1], (GLsizei)last_viewport[2], (GLsizei)last_viewport[3]); + glScissor(last_scissor_box[0], last_scissor_box[1], (GLsizei)last_scissor_box[2], (GLsizei)last_scissor_box[3]); +} + +bool ImGui_ImplOpenGL3_CreateFontsTexture() +{ + // Build texture atlas + ImGuiIO& io = ImGui::GetIO(); + unsigned char* pixels; + int width, height; + io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); // Load as RGBA 32-bit (75% of the memory is wasted, but default font is so small) because it is more likely to be compatible with user's existing shaders. If your ImTextureId represent a higher-level concept than just a GL texture id, consider calling GetTexDataAsAlpha8() instead to save on GPU memory. + + // Upload texture to graphics system + GLint last_texture; + glGetIntegerv(GL_TEXTURE_BINDING_2D, &last_texture); + glGenTextures(1, &g_FontTexture); + glBindTexture(GL_TEXTURE_2D, g_FontTexture); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); +#ifdef GL_UNPACK_ROW_LENGTH + glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); +#endif + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixels); + + // Store our identifier + io.Fonts->TexID = (ImTextureID)(intptr_t)g_FontTexture; + + // Restore state + glBindTexture(GL_TEXTURE_2D, last_texture); + + return true; +} + +void ImGui_ImplOpenGL3_DestroyFontsTexture() +{ + if (g_FontTexture) + { + ImGuiIO& io = ImGui::GetIO(); + glDeleteTextures(1, &g_FontTexture); + io.Fonts->TexID = 0; + g_FontTexture = 0; + } +} + +// If you get an error please report on github. You may try different GL context version or GLSL version. See GL<>GLSL version table at the top of this file. +static bool CheckShader(GLuint handle, const char* desc) +{ + GLint status = 0, log_length = 0; + glGetShaderiv(handle, GL_COMPILE_STATUS, &status); + glGetShaderiv(handle, GL_INFO_LOG_LENGTH, &log_length); + if ((GLboolean)status == GL_FALSE) + fprintf(stderr, "ERROR: ImGui_ImplOpenGL3_CreateDeviceObjects: failed to compile %s!\n", desc); + if (log_length > 1) + { + ImVector buf; + buf.resize((int)(log_length + 1)); + glGetShaderInfoLog(handle, log_length, NULL, (GLchar*)buf.begin()); + fprintf(stderr, "%s\n", buf.begin()); + } + return (GLboolean)status == GL_TRUE; +} + +// If you get an error please report on GitHub. You may try different GL context version or GLSL version. +static bool CheckProgram(GLuint handle, const char* desc) +{ + GLint status = 0, log_length = 0; + glGetProgramiv(handle, GL_LINK_STATUS, &status); + glGetProgramiv(handle, GL_INFO_LOG_LENGTH, &log_length); + if ((GLboolean)status == GL_FALSE) + fprintf(stderr, "ERROR: ImGui_ImplOpenGL3_CreateDeviceObjects: failed to link %s! (with GLSL '%s')\n", desc, g_GlslVersionString); + if (log_length > 1) + { + ImVector buf; + buf.resize((int)(log_length + 1)); + glGetProgramInfoLog(handle, log_length, NULL, (GLchar*)buf.begin()); + fprintf(stderr, "%s\n", buf.begin()); + } + return (GLboolean)status == GL_TRUE; +} + +bool ImGui_ImplOpenGL3_CreateDeviceObjects() +{ + // Backup GL state + GLint last_texture, last_array_buffer; + glGetIntegerv(GL_TEXTURE_BINDING_2D, &last_texture); + glGetIntegerv(GL_ARRAY_BUFFER_BINDING, &last_array_buffer); +#ifndef IMGUI_IMPL_OPENGL_ES2 + GLint last_vertex_array; + glGetIntegerv(GL_VERTEX_ARRAY_BINDING, &last_vertex_array); +#endif + + // Parse GLSL version string + int glsl_version = 130; + sscanf(g_GlslVersionString, "#version %d", &glsl_version); + + const GLchar* vertex_shader_glsl_120 = + "uniform mat4 ProjMtx;\n" + "attribute vec2 Position;\n" + "attribute vec2 UV;\n" + "attribute vec4 Color;\n" + "varying vec2 Frag_UV;\n" + "varying vec4 Frag_Color;\n" + "void main()\n" + "{\n" + " Frag_UV = UV;\n" + " Frag_Color = Color;\n" + " gl_Position = ProjMtx * vec4(Position.xy,0,1);\n" + "}\n"; + + const GLchar* vertex_shader_glsl_130 = + "uniform mat4 ProjMtx;\n" + "in vec2 Position;\n" + "in vec2 UV;\n" + "in vec4 Color;\n" + "out vec2 Frag_UV;\n" + "out vec4 Frag_Color;\n" + "void main()\n" + "{\n" + " Frag_UV = UV;\n" + " Frag_Color = Color;\n" + " gl_Position = ProjMtx * vec4(Position.xy,0,1);\n" + "}\n"; + + const GLchar* vertex_shader_glsl_300_es = + "precision mediump float;\n" + "layout (location = 0) in vec2 Position;\n" + "layout (location = 1) in vec2 UV;\n" + "layout (location = 2) in vec4 Color;\n" + "uniform mat4 ProjMtx;\n" + "out vec2 Frag_UV;\n" + "out vec4 Frag_Color;\n" + "void main()\n" + "{\n" + " Frag_UV = UV;\n" + " Frag_Color = Color;\n" + " gl_Position = ProjMtx * vec4(Position.xy,0,1);\n" + "}\n"; + + const GLchar* vertex_shader_glsl_410_core = + "layout (location = 0) in vec2 Position;\n" + "layout (location = 1) in vec2 UV;\n" + "layout (location = 2) in vec4 Color;\n" + "uniform mat4 ProjMtx;\n" + "out vec2 Frag_UV;\n" + "out vec4 Frag_Color;\n" + "void main()\n" + "{\n" + " Frag_UV = UV;\n" + " Frag_Color = Color;\n" + " gl_Position = ProjMtx * vec4(Position.xy,0,1);\n" + "}\n"; + + const GLchar* fragment_shader_glsl_120 = + "#ifdef GL_ES\n" + " precision mediump float;\n" + "#endif\n" + "uniform sampler2D Texture;\n" + "varying vec2 Frag_UV;\n" + "varying vec4 Frag_Color;\n" + "void main()\n" + "{\n" + " gl_FragColor = Frag_Color * texture2D(Texture, Frag_UV.st);\n" + "}\n"; + + const GLchar* fragment_shader_glsl_130 = + "uniform sampler2D Texture;\n" + "in vec2 Frag_UV;\n" + "in vec4 Frag_Color;\n" + "out vec4 Out_Color;\n" + "void main()\n" + "{\n" + " Out_Color = Frag_Color * texture(Texture, Frag_UV.st);\n" + "}\n"; + + const GLchar* fragment_shader_glsl_300_es = + "precision mediump float;\n" + "uniform sampler2D Texture;\n" + "in vec2 Frag_UV;\n" + "in vec4 Frag_Color;\n" + "layout (location = 0) out vec4 Out_Color;\n" + "void main()\n" + "{\n" + " Out_Color = Frag_Color * texture(Texture, Frag_UV.st);\n" + "}\n"; + + const GLchar* fragment_shader_glsl_410_core = + "in vec2 Frag_UV;\n" + "in vec4 Frag_Color;\n" + "uniform sampler2D Texture;\n" + "layout (location = 0) out vec4 Out_Color;\n" + "void main()\n" + "{\n" + " Out_Color = Frag_Color * texture(Texture, Frag_UV.st);\n" + "}\n"; + + // Select shaders matching our GLSL versions + const GLchar* vertex_shader = NULL; + const GLchar* fragment_shader = NULL; + if (glsl_version < 130) + { + vertex_shader = vertex_shader_glsl_120; + fragment_shader = fragment_shader_glsl_120; + } + else if (glsl_version >= 410) + { + vertex_shader = vertex_shader_glsl_410_core; + fragment_shader = fragment_shader_glsl_410_core; + } + else if (glsl_version == 300) + { + vertex_shader = vertex_shader_glsl_300_es; + fragment_shader = fragment_shader_glsl_300_es; + } + else + { + vertex_shader = vertex_shader_glsl_130; + fragment_shader = fragment_shader_glsl_130; + } + + // Create shaders + const GLchar* vertex_shader_with_version[2] = { g_GlslVersionString, vertex_shader }; + g_VertHandle = glCreateShader(GL_VERTEX_SHADER); + glShaderSource(g_VertHandle, 2, vertex_shader_with_version, NULL); + glCompileShader(g_VertHandle); + CheckShader(g_VertHandle, "vertex shader"); + + const GLchar* fragment_shader_with_version[2] = { g_GlslVersionString, fragment_shader }; + g_FragHandle = glCreateShader(GL_FRAGMENT_SHADER); + glShaderSource(g_FragHandle, 2, fragment_shader_with_version, NULL); + glCompileShader(g_FragHandle); + CheckShader(g_FragHandle, "fragment shader"); + + g_ShaderHandle = glCreateProgram(); + glAttachShader(g_ShaderHandle, g_VertHandle); + glAttachShader(g_ShaderHandle, g_FragHandle); + glLinkProgram(g_ShaderHandle); + CheckProgram(g_ShaderHandle, "shader program"); + + g_AttribLocationTex = glGetUniformLocation(g_ShaderHandle, "Texture"); + g_AttribLocationProjMtx = glGetUniformLocation(g_ShaderHandle, "ProjMtx"); + g_AttribLocationVtxPos = (GLuint)glGetAttribLocation(g_ShaderHandle, "Position"); + g_AttribLocationVtxUV = (GLuint)glGetAttribLocation(g_ShaderHandle, "UV"); + g_AttribLocationVtxColor = (GLuint)glGetAttribLocation(g_ShaderHandle, "Color"); + + // Create buffers + glGenBuffers(1, &g_VboHandle); + glGenBuffers(1, &g_ElementsHandle); + + ImGui_ImplOpenGL3_CreateFontsTexture(); + + // Restore modified GL state + glBindTexture(GL_TEXTURE_2D, last_texture); + glBindBuffer(GL_ARRAY_BUFFER, last_array_buffer); +#ifndef IMGUI_IMPL_OPENGL_ES2 + glBindVertexArray(last_vertex_array); +#endif + + return true; +} + +void ImGui_ImplOpenGL3_DestroyDeviceObjects() +{ + if (g_VboHandle) { glDeleteBuffers(1, &g_VboHandle); g_VboHandle = 0; } + if (g_ElementsHandle) { glDeleteBuffers(1, &g_ElementsHandle); g_ElementsHandle = 0; } + if (g_ShaderHandle && g_VertHandle) { glDetachShader(g_ShaderHandle, g_VertHandle); } + if (g_ShaderHandle && g_FragHandle) { glDetachShader(g_ShaderHandle, g_FragHandle); } + if (g_VertHandle) { glDeleteShader(g_VertHandle); g_VertHandle = 0; } + if (g_FragHandle) { glDeleteShader(g_FragHandle); g_FragHandle = 0; } + if (g_ShaderHandle) { glDeleteProgram(g_ShaderHandle); g_ShaderHandle = 0; } + + ImGui_ImplOpenGL3_DestroyFontsTexture(); +} diff --git a/external/imgui/imgui_impl_opengl3.h b/external/imgui/imgui_impl_opengl3.h new file mode 100644 index 0000000..14eb284 --- /dev/null +++ b/external/imgui/imgui_impl_opengl3.h @@ -0,0 +1,87 @@ +// dear imgui: Renderer for modern OpenGL with shaders / programmatic pipeline +// - Desktop GL: 2.x 3.x 4.x +// - Embedded GL: ES 2.0 (WebGL 1.0), ES 3.0 (WebGL 2.0) +// This needs to be used along with a Platform Binding (e.g. GLFW, SDL, Win32, custom..) + +// Implemented features: +// [X] Renderer: User texture binding. Use 'GLuint' OpenGL texture identifier as void*/ImTextureID. Read the FAQ about ImTextureID! +// [x] Renderer: Desktop GL only: Support for large meshes (64k+ vertices) with 16-bit indices. + +// You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this. +// If you are new to dear imgui, read examples/README.txt and read the documentation at the top of imgui.cpp. +// https://github.com/ocornut/imgui + +// About Desktop OpenGL function loaders: +// Modern Desktop OpenGL doesn't have a standard portable header file to load OpenGL function pointers. +// Helper libraries are often used for this purpose! Here we are supporting a few common ones (gl3w, glew, glad). +// You may use another loader/header of your choice (glext, glLoadGen, etc.), or chose to manually implement your own. + +// About GLSL version: +// The 'glsl_version' initialization parameter should be NULL (default) or a "#version XXX" string. +// On computer platform the GLSL version default to "#version 130". On OpenGL ES 3 platform it defaults to "#version 300 es" +// Only override if your GL version doesn't handle this GLSL version. See GLSL version table at the top of imgui_impl_opengl3.cpp. + +#pragma once +#include "imgui.h" // IMGUI_IMPL_API + +// Backend API +IMGUI_IMPL_API bool ImGui_ImplOpenGL3_Init(const char* glsl_version = NULL); +IMGUI_IMPL_API void ImGui_ImplOpenGL3_Shutdown(); +IMGUI_IMPL_API void ImGui_ImplOpenGL3_NewFrame(); +IMGUI_IMPL_API void ImGui_ImplOpenGL3_RenderDrawData(ImDrawData* draw_data); + +// (Optional) Called by Init/NewFrame/Shutdown +IMGUI_IMPL_API bool ImGui_ImplOpenGL3_CreateFontsTexture(); +IMGUI_IMPL_API void ImGui_ImplOpenGL3_DestroyFontsTexture(); +IMGUI_IMPL_API bool ImGui_ImplOpenGL3_CreateDeviceObjects(); +IMGUI_IMPL_API void ImGui_ImplOpenGL3_DestroyDeviceObjects(); + +// Specific OpenGL ES versions +//#define IMGUI_IMPL_OPENGL_ES2 // Auto-detected on Emscripten +//#define IMGUI_IMPL_OPENGL_ES3 // Auto-detected on iOS/Android + +// Attempt to auto-detect the default Desktop GL loader based on available header files. +// If auto-detection fails or doesn't select the same GL loader file as used by your application, +// you are likely to get a crash in ImGui_ImplOpenGL3_Init(). +// You can explicitly select a loader by using one of the '#define IMGUI_IMPL_OPENGL_LOADER_XXX' in imconfig.h or compiler command-line. +#if !defined(IMGUI_IMPL_OPENGL_ES2) \ + && !defined(IMGUI_IMPL_OPENGL_ES3) \ + && !defined(IMGUI_IMPL_OPENGL_LOADER_GL3W) \ + && !defined(IMGUI_IMPL_OPENGL_LOADER_GLEW) \ + && !defined(IMGUI_IMPL_OPENGL_LOADER_GLAD) \ + && !defined(IMGUI_IMPL_OPENGL_LOADER_GLAD2) \ + && !defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING2) \ + && !defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING3) \ + && !defined(IMGUI_IMPL_OPENGL_LOADER_CUSTOM) + +// Try to detect GLES on matching platforms +#if defined(__APPLE__) +#include "TargetConditionals.h" +#endif +#if (defined(__APPLE__) && (TARGET_OS_IOS || TARGET_OS_TV)) || (defined(__ANDROID__)) +#define IMGUI_IMPL_OPENGL_ES3 // iOS, Android -> GL ES 3, "#version 300 es" +#elif defined(__EMSCRIPTEN__) +#define IMGUI_IMPL_OPENGL_ES2 // Emscripten -> GL ES 2, "#version 100" + +// Otherwise try to detect supported Desktop OpenGL loaders.. +#elif defined(__has_include) +#if __has_include() + #define IMGUI_IMPL_OPENGL_LOADER_GLEW +#elif __has_include() + #define IMGUI_IMPL_OPENGL_LOADER_GLAD +#elif __has_include() + #define IMGUI_IMPL_OPENGL_LOADER_GLAD2 +#elif __has_include() + #define IMGUI_IMPL_OPENGL_LOADER_GL3W +#elif __has_include() + #define IMGUI_IMPL_OPENGL_LOADER_GLBINDING3 +#elif __has_include() + #define IMGUI_IMPL_OPENGL_LOADER_GLBINDING2 +#else + #error "Cannot detect OpenGL loader!" +#endif +#else + #define IMGUI_IMPL_OPENGL_LOADER_GL3W // Default to GL3W embedded in our repository +#endif + +#endif diff --git a/external/imgui/imgui_impl_sdl.cpp b/external/imgui/imgui_impl_sdl.cpp new file mode 100644 index 0000000..695ac81 --- /dev/null +++ b/external/imgui/imgui_impl_sdl.cpp @@ -0,0 +1,370 @@ +// dear imgui: Platform Binding for SDL2 +// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..) +// (Info: SDL2 is a cross-platform general purpose library for handling windows, inputs, graphics context creation, etc.) +// (Requires: SDL 2.0. Prefer SDL 2.0.4+ for full feature support.) + +// Implemented features: +// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. +// [X] Platform: Clipboard support. +// [X] Platform: Keyboard arrays indexed using SDL_SCANCODE_* codes, e.g. ImGui::IsKeyPressed(SDL_SCANCODE_SPACE). +// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. +// Missing features: +// [ ] Platform: SDL2 handling of IME under Windows appears to be broken and it explicitly disable the regular Windows IME. You can restore Windows IME by compiling SDL with SDL_DISABLE_WINDOWS_IME. + +// You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this. +// If you are new to dear imgui, read examples/README.txt and read the documentation at the top of imgui.cpp. +// https://github.com/ocornut/imgui + +// CHANGELOG +// (minor and older changes stripped away, please see git history for details) +// 2020-05-25: Misc: Report a zero display-size when window is minimized, to be consistent with other backends. +// 2020-02-20: Inputs: Fixed mapping for ImGuiKey_KeyPadEnter (using SDL_SCANCODE_KP_ENTER instead of SDL_SCANCODE_RETURN2). +// 2019-12-17: Inputs: On Wayland, use SDL_GetMouseState (because there is no global mouse state). +// 2019-12-05: Inputs: Added support for ImGuiMouseCursor_NotAllowed mouse cursor. +// 2019-07-21: Inputs: Added mapping for ImGuiKey_KeyPadEnter. +// 2019-04-23: Inputs: Added support for SDL_GameController (if ImGuiConfigFlags_NavEnableGamepad is set by user application). +// 2019-03-12: Misc: Preserve DisplayFramebufferScale when main window is minimized. +// 2018-12-21: Inputs: Workaround for Android/iOS which don't seem to handle focus related calls. +// 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window. +// 2018-11-14: Changed the signature of ImGui_ImplSDL2_ProcessEvent() to take a 'const SDL_Event*'. +// 2018-08-01: Inputs: Workaround for Emscripten which doesn't seem to handle focus related calls. +// 2018-06-29: Inputs: Added support for the ImGuiMouseCursor_Hand cursor. +// 2018-06-08: Misc: Extracted imgui_impl_sdl.cpp/.h away from the old combined SDL2+OpenGL/Vulkan examples. +// 2018-06-08: Misc: ImGui_ImplSDL2_InitForOpenGL() now takes a SDL_GLContext parameter. +// 2018-05-09: Misc: Fixed clipboard paste memory leak (we didn't call SDL_FreeMemory on the data returned by SDL_GetClipboardText). +// 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiConfigFlags_NoMouseCursorChange flag. +// 2018-02-16: Inputs: Added support for mouse cursors, honoring ImGui::GetMouseCursor() value. +// 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves. +// 2018-02-06: Inputs: Added mapping for ImGuiKey_Space. +// 2018-02-05: Misc: Using SDL_GetPerformanceCounter() instead of SDL_GetTicks() to be able to handle very high framerate (1000+ FPS). +// 2018-02-05: Inputs: Keyboard mapping is using scancodes everywhere instead of a confusing mixture of keycodes and scancodes. +// 2018-01-20: Inputs: Added Horizontal Mouse Wheel support. +// 2018-01-19: Inputs: When available (SDL 2.0.4+) using SDL_CaptureMouse() to retrieve coordinates outside of client area when dragging. Otherwise (SDL 2.0.3 and before) testing for SDL_WINDOW_INPUT_FOCUS instead of SDL_WINDOW_MOUSE_FOCUS. +// 2018-01-18: Inputs: Added mapping for ImGuiKey_Insert. +// 2017-08-25: Inputs: MousePos set to -FLT_MAX,-FLT_MAX when mouse is unavailable/missing (instead of -1,-1). +// 2016-10-15: Misc: Added a void* user_data parameter to Clipboard function handlers. + +#include "imgui.h" +#include "imgui_impl_sdl.h" + +// SDL +#include +#include +#if defined(__APPLE__) +#include "TargetConditionals.h" +#endif + +#define SDL_HAS_CAPTURE_AND_GLOBAL_MOUSE SDL_VERSION_ATLEAST(2,0,4) +#define SDL_HAS_VULKAN SDL_VERSION_ATLEAST(2,0,6) + +// Data +static SDL_Window* g_Window = NULL; +static Uint64 g_Time = 0; +static bool g_MousePressed[3] = { false, false, false }; +static SDL_Cursor* g_MouseCursors[ImGuiMouseCursor_COUNT] = {}; +static char* g_ClipboardTextData = NULL; +static bool g_MouseCanUseGlobalState = true; + +static const char* ImGui_ImplSDL2_GetClipboardText(void*) +{ + if (g_ClipboardTextData) + SDL_free(g_ClipboardTextData); + g_ClipboardTextData = SDL_GetClipboardText(); + return g_ClipboardTextData; +} + +static void ImGui_ImplSDL2_SetClipboardText(void*, const char* text) +{ + SDL_SetClipboardText(text); +} + +// You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants to use your inputs. +// - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application. +// - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application. +// Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags. +// If you have multiple SDL events and some of them are not meant to be used by dear imgui, you may need to filter events based on their windowID field. +bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event) +{ + ImGuiIO& io = ImGui::GetIO(); + switch (event->type) + { + case SDL_MOUSEWHEEL: + { + if (event->wheel.x > 0) io.MouseWheelH += 1; + if (event->wheel.x < 0) io.MouseWheelH -= 1; + if (event->wheel.y > 0) io.MouseWheel += 1; + if (event->wheel.y < 0) io.MouseWheel -= 1; + return true; + } + case SDL_MOUSEBUTTONDOWN: + { + if (event->button.button == SDL_BUTTON_LEFT) g_MousePressed[0] = true; + if (event->button.button == SDL_BUTTON_RIGHT) g_MousePressed[1] = true; + if (event->button.button == SDL_BUTTON_MIDDLE) g_MousePressed[2] = true; + return true; + } + case SDL_TEXTINPUT: + { + io.AddInputCharactersUTF8(event->text.text); + return true; + } + case SDL_KEYDOWN: + case SDL_KEYUP: + { + int key = event->key.keysym.scancode; + IM_ASSERT(key >= 0 && key < IM_ARRAYSIZE(io.KeysDown)); + io.KeysDown[key] = (event->type == SDL_KEYDOWN); + io.KeyShift = ((SDL_GetModState() & KMOD_SHIFT) != 0); + io.KeyCtrl = ((SDL_GetModState() & KMOD_CTRL) != 0); + io.KeyAlt = ((SDL_GetModState() & KMOD_ALT) != 0); +#ifdef _WIN32 + io.KeySuper = false; +#else + io.KeySuper = ((SDL_GetModState() & KMOD_GUI) != 0); +#endif + return true; + } + } + return false; +} + +static bool ImGui_ImplSDL2_Init(SDL_Window* window) +{ + g_Window = window; + + // Setup back-end capabilities flags + ImGuiIO& io = ImGui::GetIO(); + io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) + io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used) + io.BackendPlatformName = "imgui_impl_sdl"; + + // Keyboard mapping. ImGui will use those indices to peek into the io.KeysDown[] array. + io.KeyMap[ImGuiKey_Tab] = SDL_SCANCODE_TAB; + io.KeyMap[ImGuiKey_LeftArrow] = SDL_SCANCODE_LEFT; + io.KeyMap[ImGuiKey_RightArrow] = SDL_SCANCODE_RIGHT; + io.KeyMap[ImGuiKey_UpArrow] = SDL_SCANCODE_UP; + io.KeyMap[ImGuiKey_DownArrow] = SDL_SCANCODE_DOWN; + io.KeyMap[ImGuiKey_PageUp] = SDL_SCANCODE_PAGEUP; + io.KeyMap[ImGuiKey_PageDown] = SDL_SCANCODE_PAGEDOWN; + io.KeyMap[ImGuiKey_Home] = SDL_SCANCODE_HOME; + io.KeyMap[ImGuiKey_End] = SDL_SCANCODE_END; + io.KeyMap[ImGuiKey_Insert] = SDL_SCANCODE_INSERT; + io.KeyMap[ImGuiKey_Delete] = SDL_SCANCODE_DELETE; + io.KeyMap[ImGuiKey_Backspace] = SDL_SCANCODE_BACKSPACE; + io.KeyMap[ImGuiKey_Space] = SDL_SCANCODE_SPACE; + io.KeyMap[ImGuiKey_Enter] = SDL_SCANCODE_RETURN; + io.KeyMap[ImGuiKey_Escape] = SDL_SCANCODE_ESCAPE; + io.KeyMap[ImGuiKey_KeyPadEnter] = SDL_SCANCODE_KP_ENTER; + io.KeyMap[ImGuiKey_A] = SDL_SCANCODE_A; + io.KeyMap[ImGuiKey_C] = SDL_SCANCODE_C; + io.KeyMap[ImGuiKey_V] = SDL_SCANCODE_V; + io.KeyMap[ImGuiKey_X] = SDL_SCANCODE_X; + io.KeyMap[ImGuiKey_Y] = SDL_SCANCODE_Y; + io.KeyMap[ImGuiKey_Z] = SDL_SCANCODE_Z; + + io.SetClipboardTextFn = ImGui_ImplSDL2_SetClipboardText; + io.GetClipboardTextFn = ImGui_ImplSDL2_GetClipboardText; + io.ClipboardUserData = NULL; + + // Load mouse cursors + g_MouseCursors[ImGuiMouseCursor_Arrow] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_ARROW); + g_MouseCursors[ImGuiMouseCursor_TextInput] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_IBEAM); + g_MouseCursors[ImGuiMouseCursor_ResizeAll] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_SIZEALL); + g_MouseCursors[ImGuiMouseCursor_ResizeNS] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_SIZENS); + g_MouseCursors[ImGuiMouseCursor_ResizeEW] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_SIZEWE); + g_MouseCursors[ImGuiMouseCursor_ResizeNESW] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_SIZENESW); + g_MouseCursors[ImGuiMouseCursor_ResizeNWSE] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_SIZENWSE); + g_MouseCursors[ImGuiMouseCursor_Hand] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_HAND); + g_MouseCursors[ImGuiMouseCursor_NotAllowed] = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_NO); + + // Check and store if we are on Wayland + g_MouseCanUseGlobalState = strncmp(SDL_GetCurrentVideoDriver(), "wayland", 7) != 0; + +#ifdef _WIN32 + SDL_SysWMinfo wmInfo; + SDL_VERSION(&wmInfo.version); + SDL_GetWindowWMInfo(window, &wmInfo); + io.ImeWindowHandle = wmInfo.info.win.window; +#else + (void)window; +#endif + + return true; +} + +bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window, void* sdl_gl_context) +{ + (void)sdl_gl_context; // Viewport branch will need this. + return ImGui_ImplSDL2_Init(window); +} + +bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window) +{ +#if !SDL_HAS_VULKAN + IM_ASSERT(0 && "Unsupported"); +#endif + return ImGui_ImplSDL2_Init(window); +} + +bool ImGui_ImplSDL2_InitForD3D(SDL_Window* window) +{ +#if !defined(_WIN32) + IM_ASSERT(0 && "Unsupported"); +#endif + return ImGui_ImplSDL2_Init(window); +} + +bool ImGui_ImplSDL2_InitForMetal(SDL_Window* window) +{ + return ImGui_ImplSDL2_Init(window); +} + +void ImGui_ImplSDL2_Shutdown() +{ + g_Window = NULL; + + // Destroy last known clipboard data + if (g_ClipboardTextData) + SDL_free(g_ClipboardTextData); + g_ClipboardTextData = NULL; + + // Destroy SDL mouse cursors + for (ImGuiMouseCursor cursor_n = 0; cursor_n < ImGuiMouseCursor_COUNT; cursor_n++) + SDL_FreeCursor(g_MouseCursors[cursor_n]); + memset(g_MouseCursors, 0, sizeof(g_MouseCursors)); +} + +static void ImGui_ImplSDL2_UpdateMousePosAndButtons() +{ + ImGuiIO& io = ImGui::GetIO(); + + // Set OS mouse position if requested (rarely used, only when ImGuiConfigFlags_NavEnableSetMousePos is enabled by user) + if (io.WantSetMousePos) + SDL_WarpMouseInWindow(g_Window, (int)io.MousePos.x, (int)io.MousePos.y); + else + io.MousePos = ImVec2(-FLT_MAX, -FLT_MAX); + + int mx, my; + Uint32 mouse_buttons = SDL_GetMouseState(&mx, &my); + io.MouseDown[0] = g_MousePressed[0] || (mouse_buttons & SDL_BUTTON(SDL_BUTTON_LEFT)) != 0; // If a mouse press event came, always pass it as "mouse held this frame", so we don't miss click-release events that are shorter than 1 frame. + io.MouseDown[1] = g_MousePressed[1] || (mouse_buttons & SDL_BUTTON(SDL_BUTTON_RIGHT)) != 0; + io.MouseDown[2] = g_MousePressed[2] || (mouse_buttons & SDL_BUTTON(SDL_BUTTON_MIDDLE)) != 0; + g_MousePressed[0] = g_MousePressed[1] = g_MousePressed[2] = false; + +#if SDL_HAS_CAPTURE_AND_GLOBAL_MOUSE && !defined(__EMSCRIPTEN__) && !defined(__ANDROID__) && !(defined(__APPLE__) && TARGET_OS_IOS) + SDL_Window* focused_window = SDL_GetKeyboardFocus(); + if (g_Window == focused_window) + { + if (g_MouseCanUseGlobalState) + { + // SDL_GetMouseState() gives mouse position seemingly based on the last window entered/focused(?) + // The creation of a new windows at runtime and SDL_CaptureMouse both seems to severely mess up with that, so we retrieve that position globally. + // Won't use this workaround when on Wayland, as there is no global mouse position. + int wx, wy; + SDL_GetWindowPosition(focused_window, &wx, &wy); + SDL_GetGlobalMouseState(&mx, &my); + mx -= wx; + my -= wy; + } + io.MousePos = ImVec2((float)mx, (float)my); + } + + // SDL_CaptureMouse() let the OS know e.g. that our imgui drag outside the SDL window boundaries shouldn't e.g. trigger the OS window resize cursor. + // The function is only supported from SDL 2.0.4 (released Jan 2016) + bool any_mouse_button_down = ImGui::IsAnyMouseDown(); + SDL_CaptureMouse(any_mouse_button_down ? SDL_TRUE : SDL_FALSE); +#else + if (SDL_GetWindowFlags(g_Window) & SDL_WINDOW_INPUT_FOCUS) + io.MousePos = ImVec2((float)mx, (float)my); +#endif +} + +static void ImGui_ImplSDL2_UpdateMouseCursor() +{ + ImGuiIO& io = ImGui::GetIO(); + if (io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) + return; + + ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); + if (io.MouseDrawCursor || imgui_cursor == ImGuiMouseCursor_None) + { + // Hide OS mouse cursor if imgui is drawing it or if it wants no cursor + SDL_ShowCursor(SDL_FALSE); + } + else + { + // Show OS mouse cursor + SDL_SetCursor(g_MouseCursors[imgui_cursor] ? g_MouseCursors[imgui_cursor] : g_MouseCursors[ImGuiMouseCursor_Arrow]); + SDL_ShowCursor(SDL_TRUE); + } +} + +static void ImGui_ImplSDL2_UpdateGamepads() +{ + ImGuiIO& io = ImGui::GetIO(); + memset(io.NavInputs, 0, sizeof(io.NavInputs)); + if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) + return; + + // Get gamepad + SDL_GameController* game_controller = SDL_GameControllerOpen(0); + if (!game_controller) + { + io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad; + return; + } + + // Update gamepad inputs + #define MAP_BUTTON(NAV_NO, BUTTON_NO) { io.NavInputs[NAV_NO] = (SDL_GameControllerGetButton(game_controller, BUTTON_NO) != 0) ? 1.0f : 0.0f; } + #define MAP_ANALOG(NAV_NO, AXIS_NO, V0, V1) { float vn = (float)(SDL_GameControllerGetAxis(game_controller, AXIS_NO) - V0) / (float)(V1 - V0); if (vn > 1.0f) vn = 1.0f; if (vn > 0.0f && io.NavInputs[NAV_NO] < vn) io.NavInputs[NAV_NO] = vn; } + const int thumb_dead_zone = 8000; // SDL_gamecontroller.h suggests using this value. + MAP_BUTTON(ImGuiNavInput_Activate, SDL_CONTROLLER_BUTTON_A); // Cross / A + MAP_BUTTON(ImGuiNavInput_Cancel, SDL_CONTROLLER_BUTTON_B); // Circle / B + MAP_BUTTON(ImGuiNavInput_Menu, SDL_CONTROLLER_BUTTON_X); // Square / X + MAP_BUTTON(ImGuiNavInput_Input, SDL_CONTROLLER_BUTTON_Y); // Triangle / Y + MAP_BUTTON(ImGuiNavInput_DpadLeft, SDL_CONTROLLER_BUTTON_DPAD_LEFT); // D-Pad Left + MAP_BUTTON(ImGuiNavInput_DpadRight, SDL_CONTROLLER_BUTTON_DPAD_RIGHT); // D-Pad Right + MAP_BUTTON(ImGuiNavInput_DpadUp, SDL_CONTROLLER_BUTTON_DPAD_UP); // D-Pad Up + MAP_BUTTON(ImGuiNavInput_DpadDown, SDL_CONTROLLER_BUTTON_DPAD_DOWN); // D-Pad Down + MAP_BUTTON(ImGuiNavInput_FocusPrev, SDL_CONTROLLER_BUTTON_LEFTSHOULDER); // L1 / LB + MAP_BUTTON(ImGuiNavInput_FocusNext, SDL_CONTROLLER_BUTTON_RIGHTSHOULDER); // R1 / RB + MAP_BUTTON(ImGuiNavInput_TweakSlow, SDL_CONTROLLER_BUTTON_LEFTSHOULDER); // L1 / LB + MAP_BUTTON(ImGuiNavInput_TweakFast, SDL_CONTROLLER_BUTTON_RIGHTSHOULDER); // R1 / RB + MAP_ANALOG(ImGuiNavInput_LStickLeft, SDL_CONTROLLER_AXIS_LEFTX, -thumb_dead_zone, -32768); + MAP_ANALOG(ImGuiNavInput_LStickRight, SDL_CONTROLLER_AXIS_LEFTX, +thumb_dead_zone, +32767); + MAP_ANALOG(ImGuiNavInput_LStickUp, SDL_CONTROLLER_AXIS_LEFTY, -thumb_dead_zone, -32767); + MAP_ANALOG(ImGuiNavInput_LStickDown, SDL_CONTROLLER_AXIS_LEFTY, +thumb_dead_zone, +32767); + + io.BackendFlags |= ImGuiBackendFlags_HasGamepad; + #undef MAP_BUTTON + #undef MAP_ANALOG +} + +void ImGui_ImplSDL2_NewFrame(SDL_Window* window) +{ + ImGuiIO& io = ImGui::GetIO(); + IM_ASSERT(io.Fonts->IsBuilt() && "Font atlas not built! It is generally built by the renderer back-end. Missing call to renderer _NewFrame() function? e.g. ImGui_ImplOpenGL3_NewFrame()."); + + // Setup display size (every frame to accommodate for window resizing) + int w, h; + int display_w, display_h; + SDL_GetWindowSize(window, &w, &h); + if (SDL_GetWindowFlags(window) & SDL_WINDOW_MINIMIZED) + w = h = 0; + SDL_GL_GetDrawableSize(window, &display_w, &display_h); + io.DisplaySize = ImVec2((float)w, (float)h); + if (w > 0 && h > 0) + io.DisplayFramebufferScale = ImVec2((float)display_w / w, (float)display_h / h); + + // Setup time step (we don't use SDL_GetTicks() because it is using millisecond resolution) + static Uint64 frequency = SDL_GetPerformanceFrequency(); + Uint64 current_time = SDL_GetPerformanceCounter(); + io.DeltaTime = g_Time > 0 ? (float)((double)(current_time - g_Time) / frequency) : (float)(1.0f / 60.0f); + g_Time = current_time; + + ImGui_ImplSDL2_UpdateMousePosAndButtons(); + ImGui_ImplSDL2_UpdateMouseCursor(); + + // Update game controllers (if enabled and available) + ImGui_ImplSDL2_UpdateGamepads(); +} diff --git a/external/imgui/imgui_impl_sdl.h b/external/imgui/imgui_impl_sdl.h new file mode 100644 index 0000000..bf207ba --- /dev/null +++ b/external/imgui/imgui_impl_sdl.h @@ -0,0 +1,29 @@ +// dear imgui: Platform Binding for SDL2 +// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..) +// (Info: SDL2 is a cross-platform general purpose library for handling windows, inputs, graphics context creation, etc.) + +// Implemented features: +// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. +// [X] Platform: Clipboard support. +// [X] Platform: Keyboard arrays indexed using SDL_SCANCODE_* codes, e.g. ImGui::IsKeyPressed(SDL_SCANCODE_SPACE). +// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. +// Missing features: +// [ ] Platform: SDL2 handling of IME under Windows appears to be broken and it explicitly disable the regular Windows IME. You can restore Windows IME by compiling SDL with SDL_DISABLE_WINDOWS_IME. + +// You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this. +// If you are new to dear imgui, read examples/README.txt and read the documentation at the top of imgui.cpp. +// https://github.com/ocornut/imgui + +#pragma once +#include "imgui.h" // IMGUI_IMPL_API + +struct SDL_Window; +typedef union SDL_Event SDL_Event; + +IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window, void* sdl_gl_context); +IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window); +IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForD3D(SDL_Window* window); +IMGUI_IMPL_API bool ImGui_ImplSDL2_InitForMetal(SDL_Window* window); +IMGUI_IMPL_API void ImGui_ImplSDL2_Shutdown(); +IMGUI_IMPL_API void ImGui_ImplSDL2_NewFrame(SDL_Window* window); +IMGUI_IMPL_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event); diff --git a/external/imgui/imgui_plot_var.cpp b/external/imgui/imgui_plot_var.cpp new file mode 100644 index 0000000..8d70634 --- /dev/null +++ b/external/imgui/imgui_plot_var.cpp @@ -0,0 +1,72 @@ +#include "imgui_plot_var.hpp" + +#include +#include + +struct PlotVarData { + ImGuiID ID; + ImVector Data; + int DataInsertIdx; + int LastFrame; + + PlotVarData() : ID(0), DataInsertIdx(0), LastFrame(-1) {} +}; + +typedef std::map PlotVarsMap; +static PlotVarsMap g_PlotVarsMap; + +// Plot value over time +// Call with 'value == FLT_MAX' to draw without adding new value to the buffer +void ImGui::PlotVar(const char* label, float value, float scale_min, float scale_max, int buffer_size) +{ + IM_ASSERT(label); + if (buffer_size == 0) + buffer_size = 120; + + ImGui::PushID(label); + ImGuiID id = ImGui::GetID(""); + + // Lookup O(log N) + PlotVarData& pvd = g_PlotVarsMap[id]; + + // Setup + if (pvd.Data.capacity() != buffer_size) + { + pvd.Data.resize(buffer_size); + memset(&pvd.Data[0], 0, sizeof(float) * buffer_size); + pvd.DataInsertIdx = 0; + pvd.LastFrame = -1; + } + + // Insert (avoid unnecessary modulo operator) + if (pvd.DataInsertIdx == buffer_size) + pvd.DataInsertIdx = 0; + int display_idx = pvd.DataInsertIdx; + if (value != FLT_MAX) + pvd.Data[pvd.DataInsertIdx++] = value; + + // Draw + int current_frame = ImGui::GetFrameCount(); + if (pvd.LastFrame != current_frame) + { + ImGui::PlotLines("##plot", &pvd.Data[0], buffer_size, pvd.DataInsertIdx, NULL, scale_min, scale_max, ImVec2(0, 40)); + ImGui::SameLine(); + ImGui::Text("%s\n%-3.4f", label, pvd.Data[display_idx]); // Display last value in buffer + pvd.LastFrame = current_frame; + } + + ImGui::PopID(); +} + +void ImGui::PlotVarFlushOldEntries() +{ + int current_frame = ImGui::GetFrameCount(); + for (PlotVarsMap::iterator it = g_PlotVarsMap.begin(); it != g_PlotVarsMap.end(); ) + { + PlotVarData& pvd = it->second; + if (pvd.LastFrame < current_frame - std::max(400,(int)pvd.Data.size())) + it = g_PlotVarsMap.erase(it); + else + ++it; + } +} diff --git a/external/imgui/imgui_plot_var.hpp b/external/imgui/imgui_plot_var.hpp new file mode 100644 index 0000000..346c60e --- /dev/null +++ b/external/imgui/imgui_plot_var.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include "imgui/imgui.h" + +// USAGE +// Call once a frame with current value +// ImGui::PlotVar("Speed", current_speed); + +namespace ImGui { + +// Plot value over time +// Pass FLT_MAX value to draw without adding a new value +void PlotVar(const char* label, float value, float scale_min = FLT_MAX, float scale_max = FLT_MAX, int buffer_size = 120); + +// Call this periodically to discard old/unused data +void PlotVarFlushOldEntries(); + +} + diff --git a/external/json/CMakeLists.txt b/external/json/CMakeLists.txt new file mode 100644 index 0000000..ca0e036 --- /dev/null +++ b/external/json/CMakeLists.txt @@ -0,0 +1,41 @@ +cmake_minimum_required(VERSION 3.1) + +## +## PROJECT +## name and version +## +project(nlohmann_json VERSION 3.8.0 LANGUAGES CXX) + + +## +## OPTIONS +## +option(JSON_MultipleHeaders "Use non-amalgamated version of the library." ON) + +## +## CONFIGURATION +## +set(NLOHMANN_JSON_TARGET_NAME ${PROJECT_NAME}) + +if (JSON_MultipleHeaders) + set(NLOHMANN_JSON_INCLUDE_BUILD_DIR "${PROJECT_SOURCE_DIR}/include/") + message(STATUS "Using the multi-header code from ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}") +else() + set(NLOHMANN_JSON_INCLUDE_BUILD_DIR "${PROJECT_SOURCE_DIR}/single_include/") + message(STATUS "Using the single-header code from ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}") +endif() + +## +## TARGET +## create target and add include path +## +add_library(${NLOHMANN_JSON_TARGET_NAME} INTERFACE) +add_library(${PROJECT_NAME}::${NLOHMANN_JSON_TARGET_NAME} ALIAS ${NLOHMANN_JSON_TARGET_NAME}) +if (${CMAKE_VERSION} VERSION_LESS "3.8.0") + target_compile_features(${NLOHMANN_JSON_TARGET_NAME} INTERFACE cxx_range_for) +else() + target_compile_features(${NLOHMANN_JSON_TARGET_NAME} INTERFACE cxx_std_11) +endif() + +target_include_directories(${NLOHMANN_JSON_TARGET_NAME} INTERFACE ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}) + diff --git a/external/json/include/nlohmann/adl_serializer.hpp b/external/json/include/nlohmann/adl_serializer.hpp new file mode 100644 index 0000000..4af1c4b --- /dev/null +++ b/external/json/include/nlohmann/adl_serializer.hpp @@ -0,0 +1,49 @@ +#pragma once + +#include + +#include +#include + +namespace nlohmann +{ + +template +struct adl_serializer +{ + /*! + @brief convert a JSON value to any value type + + This function is usually called by the `get()` function of the + @ref basic_json class (either explicit or via conversion operators). + + @param[in] j JSON value to read from + @param[in,out] val value to write to + */ + template + static auto from_json(BasicJsonType&& j, ValueType& val) noexcept( + noexcept(::nlohmann::from_json(std::forward(j), val))) + -> decltype(::nlohmann::from_json(std::forward(j), val), void()) + { + ::nlohmann::from_json(std::forward(j), val); + } + + /*! + @brief convert any value type to a JSON value + + This function is usually called by the constructors of the @ref basic_json + class. + + @param[in,out] j JSON value to write to + @param[in] val value to read from + */ + template + static auto to_json(BasicJsonType& j, ValueType&& val) noexcept( + noexcept(::nlohmann::to_json(j, std::forward(val)))) + -> decltype(::nlohmann::to_json(j, std::forward(val)), void()) + { + ::nlohmann::to_json(j, std::forward(val)); + } +}; + +} // namespace nlohmann diff --git a/external/json/include/nlohmann/byte_container_with_subtype.hpp b/external/json/include/nlohmann/byte_container_with_subtype.hpp new file mode 100644 index 0000000..69f9feb --- /dev/null +++ b/external/json/include/nlohmann/byte_container_with_subtype.hpp @@ -0,0 +1,166 @@ +#pragma once + +#include // uint8_t +#include // tie +#include // move + +namespace nlohmann +{ + +/*! +@brief an internal type for a backed binary type + +This type extends the template parameter @a BinaryType provided to `basic_json` +with a subtype used by BSON and MessagePack. This type exists so that the user +does not have to specify a type themselves with a specific naming scheme in +order to override the binary type. + +@tparam BinaryType container to store bytes (`std::vector` by + default) + +@since version 3.8.0 +*/ +template +class byte_container_with_subtype : public BinaryType +{ + public: + /// the type of the underlying container + using container_type = BinaryType; + + byte_container_with_subtype() noexcept(noexcept(container_type())) + : container_type() + {} + + byte_container_with_subtype(const container_type& b) noexcept(noexcept(container_type(b))) + : container_type(b) + {} + + byte_container_with_subtype(container_type&& b) noexcept(noexcept(container_type(std::move(b)))) + : container_type(std::move(b)) + {} + + byte_container_with_subtype(const container_type& b, std::uint8_t subtype) noexcept(noexcept(container_type(b))) + : container_type(b) + , m_subtype(subtype) + , m_has_subtype(true) + {} + + byte_container_with_subtype(container_type&& b, std::uint8_t subtype) noexcept(noexcept(container_type(std::move(b)))) + : container_type(std::move(b)) + , m_subtype(subtype) + , m_has_subtype(true) + {} + + bool operator==(const byte_container_with_subtype& rhs) const + { + return std::tie(static_cast(*this), m_subtype, m_has_subtype) == + std::tie(static_cast(rhs), rhs.m_subtype, rhs.m_has_subtype); + } + + bool operator!=(const byte_container_with_subtype& rhs) const + { + return !(rhs == *this); + } + + /*! + @brief sets the binary subtype + + Sets the binary subtype of the value, also flags a binary JSON value as + having a subtype, which has implications for serialization. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @sa @ref subtype() -- return the binary subtype + @sa @ref clear_subtype() -- clears the binary subtype + @sa @ref has_subtype() -- returns whether or not the binary value has a + subtype + + @since version 3.8.0 + */ + void set_subtype(std::uint8_t subtype) noexcept + { + m_subtype = subtype; + m_has_subtype = true; + } + + /*! + @brief return the binary subtype + + Returns the numerical subtype of the value if it has a subtype. If it does + not have a subtype, this function will return size_t(-1) as a sentinel + value. + + @return the numerical subtype of the binary value + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @sa @ref set_subtype() -- sets the binary subtype + @sa @ref clear_subtype() -- clears the binary subtype + @sa @ref has_subtype() -- returns whether or not the binary value has a + subtype + + @since version 3.8.0 + */ + constexpr std::uint8_t subtype() const noexcept + { + return m_subtype; + } + + /*! + @brief return whether the value has a subtype + + @return whether the value has a subtype + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @sa @ref subtype() -- return the binary subtype + @sa @ref set_subtype() -- sets the binary subtype + @sa @ref clear_subtype() -- clears the binary subtype + + @since version 3.8.0 + */ + constexpr bool has_subtype() const noexcept + { + return m_has_subtype; + } + + /*! + @brief clears the binary subtype + + Clears the binary subtype and flags the value as not having a subtype, which + has implications for serialization; for instance MessagePack will prefer the + bin family over the ext family. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @sa @ref subtype() -- return the binary subtype + @sa @ref set_subtype() -- sets the binary subtype + @sa @ref has_subtype() -- returns whether or not the binary value has a + subtype + + @since version 3.8.0 + */ + void clear_subtype() noexcept + { + m_subtype = 0; + m_has_subtype = false; + } + + private: + std::uint8_t m_subtype = 0; + bool m_has_subtype = false; +}; + +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/conversions/from_json.hpp b/external/json/include/nlohmann/detail/conversions/from_json.hpp new file mode 100644 index 0000000..438b84a --- /dev/null +++ b/external/json/include/nlohmann/detail/conversions/from_json.hpp @@ -0,0 +1,403 @@ +#pragma once + +#include // transform +#include // array +#include // forward_list +#include // inserter, front_inserter, end +#include // map +#include // string +#include // tuple, make_tuple +#include // is_arithmetic, is_same, is_enum, underlying_type, is_convertible +#include // unordered_map +#include // pair, declval +#include // valarray + +#include +#include +#include +#include +#include + +namespace nlohmann +{ +namespace detail +{ +template +void from_json(const BasicJsonType& j, typename std::nullptr_t& n) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_null())) + { + JSON_THROW(type_error::create(302, "type must be null, but is " + std::string(j.type_name()))); + } + n = nullptr; +} + +// overloads for basic_json template parameters +template < typename BasicJsonType, typename ArithmeticType, + enable_if_t < std::is_arithmetic::value&& + !std::is_same::value, + int > = 0 > +void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) +{ + switch (static_cast(j)) + { + case value_t::number_unsigned: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::number_integer: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::number_float: + { + val = static_cast(*j.template get_ptr()); + break; + } + + default: + JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name()))); + } +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::boolean_t& b) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_boolean())) + { + JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(j.type_name()))); + } + b = *j.template get_ptr(); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::string_t& s) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_string())) + { + JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name()))); + } + s = *j.template get_ptr(); +} + +template < + typename BasicJsonType, typename ConstructibleStringType, + enable_if_t < + is_constructible_string_type::value&& + !std::is_same::value, + int > = 0 > +void from_json(const BasicJsonType& j, ConstructibleStringType& s) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_string())) + { + JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name()))); + } + + s = *j.template get_ptr(); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::number_float_t& val) +{ + get_arithmetic_value(j, val); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val) +{ + get_arithmetic_value(j, val); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t& val) +{ + get_arithmetic_value(j, val); +} + +template::value, int> = 0> +void from_json(const BasicJsonType& j, EnumType& e) +{ + typename std::underlying_type::type val; + get_arithmetic_value(j, val); + e = static_cast(val); +} + +// forward_list doesn't have an insert method +template::value, int> = 0> +void from_json(const BasicJsonType& j, std::forward_list& l) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); + } + l.clear(); + std::transform(j.rbegin(), j.rend(), + std::front_inserter(l), [](const BasicJsonType & i) + { + return i.template get(); + }); +} + +// valarray doesn't have an insert method +template::value, int> = 0> +void from_json(const BasicJsonType& j, std::valarray& l) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); + } + l.resize(j.size()); + std::transform(j.begin(), j.end(), std::begin(l), + [](const BasicJsonType & elem) + { + return elem.template get(); + }); +} + +template +auto from_json(const BasicJsonType& j, T (&arr)[N]) +-> decltype(j.template get(), void()) +{ + for (std::size_t i = 0; i < N; ++i) + { + arr[i] = j.at(i).template get(); + } +} + +template +void from_json_array_impl(const BasicJsonType& j, typename BasicJsonType::array_t& arr, priority_tag<3> /*unused*/) +{ + arr = *j.template get_ptr(); +} + +template +auto from_json_array_impl(const BasicJsonType& j, std::array& arr, + priority_tag<2> /*unused*/) +-> decltype(j.template get(), void()) +{ + for (std::size_t i = 0; i < N; ++i) + { + arr[i] = j.at(i).template get(); + } +} + +template +auto from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, priority_tag<1> /*unused*/) +-> decltype( + arr.reserve(std::declval()), + j.template get(), + void()) +{ + using std::end; + + ConstructibleArrayType ret; + ret.reserve(j.size()); + std::transform(j.begin(), j.end(), + std::inserter(ret, end(ret)), [](const BasicJsonType & i) + { + // get() returns *this, this won't call a from_json + // method when value_type is BasicJsonType + return i.template get(); + }); + arr = std::move(ret); +} + +template +void from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, + priority_tag<0> /*unused*/) +{ + using std::end; + + ConstructibleArrayType ret; + std::transform( + j.begin(), j.end(), std::inserter(ret, end(ret)), + [](const BasicJsonType & i) + { + // get() returns *this, this won't call a from_json + // method when value_type is BasicJsonType + return i.template get(); + }); + arr = std::move(ret); +} + +template < typename BasicJsonType, typename ConstructibleArrayType, + enable_if_t < + is_constructible_array_type::value&& + !is_constructible_object_type::value&& + !is_constructible_string_type::value&& + !std::is_same::value&& + !is_basic_json::value, + int > = 0 > +auto from_json(const BasicJsonType& j, ConstructibleArrayType& arr) +-> decltype(from_json_array_impl(j, arr, priority_tag<3> {}), +j.template get(), +void()) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + + std::string(j.type_name()))); + } + + from_json_array_impl(j, arr, priority_tag<3> {}); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::binary_t& bin) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_binary())) + { + JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(j.type_name()))); + } + + bin = *j.template get_ptr(); +} + +template::value, int> = 0> +void from_json(const BasicJsonType& j, ConstructibleObjectType& obj) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_object())) + { + JSON_THROW(type_error::create(302, "type must be object, but is " + std::string(j.type_name()))); + } + + ConstructibleObjectType ret; + auto inner_object = j.template get_ptr(); + using value_type = typename ConstructibleObjectType::value_type; + std::transform( + inner_object->begin(), inner_object->end(), + std::inserter(ret, ret.begin()), + [](typename BasicJsonType::object_t::value_type const & p) + { + return value_type(p.first, p.second.template get()); + }); + obj = std::move(ret); +} + +// overload for arithmetic types, not chosen for basic_json template arguments +// (BooleanType, etc..); note: Is it really necessary to provide explicit +// overloads for boolean_t etc. in case of a custom BooleanType which is not +// an arithmetic type? +template < typename BasicJsonType, typename ArithmeticType, + enable_if_t < + std::is_arithmetic::value&& + !std::is_same::value&& + !std::is_same::value&& + !std::is_same::value&& + !std::is_same::value, + int > = 0 > +void from_json(const BasicJsonType& j, ArithmeticType& val) +{ + switch (static_cast(j)) + { + case value_t::number_unsigned: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::number_integer: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::number_float: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::boolean: + { + val = static_cast(*j.template get_ptr()); + break; + } + + default: + JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name()))); + } +} + +template +void from_json(const BasicJsonType& j, std::pair& p) +{ + p = {j.at(0).template get(), j.at(1).template get()}; +} + +template +void from_json_tuple_impl(const BasicJsonType& j, Tuple& t, index_sequence /*unused*/) +{ + t = std::make_tuple(j.at(Idx).template get::type>()...); +} + +template +void from_json(const BasicJsonType& j, std::tuple& t) +{ + from_json_tuple_impl(j, t, index_sequence_for {}); +} + +template < typename BasicJsonType, typename Key, typename Value, typename Compare, typename Allocator, + typename = enable_if_t < !std::is_constructible < + typename BasicJsonType::string_t, Key >::value >> +void from_json(const BasicJsonType& j, std::map& m) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); + } + m.clear(); + for (const auto& p : j) + { + if (JSON_HEDLEY_UNLIKELY(!p.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name()))); + } + m.emplace(p.at(0).template get(), p.at(1).template get()); + } +} + +template < typename BasicJsonType, typename Key, typename Value, typename Hash, typename KeyEqual, typename Allocator, + typename = enable_if_t < !std::is_constructible < + typename BasicJsonType::string_t, Key >::value >> +void from_json(const BasicJsonType& j, std::unordered_map& m) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); + } + m.clear(); + for (const auto& p : j) + { + if (JSON_HEDLEY_UNLIKELY(!p.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name()))); + } + m.emplace(p.at(0).template get(), p.at(1).template get()); + } +} + +struct from_json_fn +{ + template + auto operator()(const BasicJsonType& j, T& val) const + noexcept(noexcept(from_json(j, val))) + -> decltype(from_json(j, val), void()) + { + return from_json(j, val); + } +}; +} // namespace detail + +/// namespace to hold default `from_json` function +/// to see why this is required: +/// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4381.html +namespace +{ +constexpr const auto& from_json = detail::static_const::value; +} // namespace +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/conversions/to_chars.hpp b/external/json/include/nlohmann/detail/conversions/to_chars.hpp new file mode 100644 index 0000000..c632ff2 --- /dev/null +++ b/external/json/include/nlohmann/detail/conversions/to_chars.hpp @@ -0,0 +1,1105 @@ +#pragma once + +#include // array +#include // signbit, isfinite +#include // intN_t, uintN_t +#include // memcpy, memmove +#include // numeric_limits +#include // conditional + +#include + +namespace nlohmann +{ +namespace detail +{ + +/*! +@brief implements the Grisu2 algorithm for binary to decimal floating-point +conversion. + +This implementation is a slightly modified version of the reference +implementation which may be obtained from +http://florian.loitsch.com/publications (bench.tar.gz). + +The code is distributed under the MIT license, Copyright (c) 2009 Florian Loitsch. + +For a detailed description of the algorithm see: + +[1] Loitsch, "Printing Floating-Point Numbers Quickly and Accurately with + Integers", Proceedings of the ACM SIGPLAN 2010 Conference on Programming + Language Design and Implementation, PLDI 2010 +[2] Burger, Dybvig, "Printing Floating-Point Numbers Quickly and Accurately", + Proceedings of the ACM SIGPLAN 1996 Conference on Programming Language + Design and Implementation, PLDI 1996 +*/ +namespace dtoa_impl +{ + +template +Target reinterpret_bits(const Source source) +{ + static_assert(sizeof(Target) == sizeof(Source), "size mismatch"); + + Target target; + std::memcpy(&target, &source, sizeof(Source)); + return target; +} + +struct diyfp // f * 2^e +{ + static constexpr int kPrecision = 64; // = q + + std::uint64_t f = 0; + int e = 0; + + constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} + + /*! + @brief returns x - y + @pre x.e == y.e and x.f >= y.f + */ + static diyfp sub(const diyfp& x, const diyfp& y) noexcept + { + JSON_ASSERT(x.e == y.e); + JSON_ASSERT(x.f >= y.f); + + return {x.f - y.f, x.e}; + } + + /*! + @brief returns x * y + @note The result is rounded. (Only the upper q bits are returned.) + */ + static diyfp mul(const diyfp& x, const diyfp& y) noexcept + { + static_assert(kPrecision == 64, "internal error"); + + // Computes: + // f = round((x.f * y.f) / 2^q) + // e = x.e + y.e + q + + // Emulate the 64-bit * 64-bit multiplication: + // + // p = u * v + // = (u_lo + 2^32 u_hi) (v_lo + 2^32 v_hi) + // = (u_lo v_lo ) + 2^32 ((u_lo v_hi ) + (u_hi v_lo )) + 2^64 (u_hi v_hi ) + // = (p0 ) + 2^32 ((p1 ) + (p2 )) + 2^64 (p3 ) + // = (p0_lo + 2^32 p0_hi) + 2^32 ((p1_lo + 2^32 p1_hi) + (p2_lo + 2^32 p2_hi)) + 2^64 (p3 ) + // = (p0_lo ) + 2^32 (p0_hi + p1_lo + p2_lo ) + 2^64 (p1_hi + p2_hi + p3) + // = (p0_lo ) + 2^32 (Q ) + 2^64 (H ) + // = (p0_lo ) + 2^32 (Q_lo + 2^32 Q_hi ) + 2^64 (H ) + // + // (Since Q might be larger than 2^32 - 1) + // + // = (p0_lo + 2^32 Q_lo) + 2^64 (Q_hi + H) + // + // (Q_hi + H does not overflow a 64-bit int) + // + // = p_lo + 2^64 p_hi + + const std::uint64_t u_lo = x.f & 0xFFFFFFFFu; + const std::uint64_t u_hi = x.f >> 32u; + const std::uint64_t v_lo = y.f & 0xFFFFFFFFu; + const std::uint64_t v_hi = y.f >> 32u; + + const std::uint64_t p0 = u_lo * v_lo; + const std::uint64_t p1 = u_lo * v_hi; + const std::uint64_t p2 = u_hi * v_lo; + const std::uint64_t p3 = u_hi * v_hi; + + const std::uint64_t p0_hi = p0 >> 32u; + const std::uint64_t p1_lo = p1 & 0xFFFFFFFFu; + const std::uint64_t p1_hi = p1 >> 32u; + const std::uint64_t p2_lo = p2 & 0xFFFFFFFFu; + const std::uint64_t p2_hi = p2 >> 32u; + + std::uint64_t Q = p0_hi + p1_lo + p2_lo; + + // The full product might now be computed as + // + // p_hi = p3 + p2_hi + p1_hi + (Q >> 32) + // p_lo = p0_lo + (Q << 32) + // + // But in this particular case here, the full p_lo is not required. + // Effectively we only need to add the highest bit in p_lo to p_hi (and + // Q_hi + 1 does not overflow). + + Q += std::uint64_t{1} << (64u - 32u - 1u); // round, ties up + + const std::uint64_t h = p3 + p2_hi + p1_hi + (Q >> 32u); + + return {h, x.e + y.e + 64}; + } + + /*! + @brief normalize x such that the significand is >= 2^(q-1) + @pre x.f != 0 + */ + static diyfp normalize(diyfp x) noexcept + { + JSON_ASSERT(x.f != 0); + + while ((x.f >> 63u) == 0) + { + x.f <<= 1u; + x.e--; + } + + return x; + } + + /*! + @brief normalize x such that the result has the exponent E + @pre e >= x.e and the upper e - x.e bits of x.f must be zero. + */ + static diyfp normalize_to(const diyfp& x, const int target_exponent) noexcept + { + const int delta = x.e - target_exponent; + + JSON_ASSERT(delta >= 0); + JSON_ASSERT(((x.f << delta) >> delta) == x.f); + + return {x.f << delta, target_exponent}; + } +}; + +struct boundaries +{ + diyfp w; + diyfp minus; + diyfp plus; +}; + +/*! +Compute the (normalized) diyfp representing the input number 'value' and its +boundaries. + +@pre value must be finite and positive +*/ +template +boundaries compute_boundaries(FloatType value) +{ + JSON_ASSERT(std::isfinite(value)); + JSON_ASSERT(value > 0); + + // Convert the IEEE representation into a diyfp. + // + // If v is denormal: + // value = 0.F * 2^(1 - bias) = ( F) * 2^(1 - bias - (p-1)) + // If v is normalized: + // value = 1.F * 2^(E - bias) = (2^(p-1) + F) * 2^(E - bias - (p-1)) + + static_assert(std::numeric_limits::is_iec559, + "internal error: dtoa_short requires an IEEE-754 floating-point implementation"); + + constexpr int kPrecision = std::numeric_limits::digits; // = p (includes the hidden bit) + constexpr int kBias = std::numeric_limits::max_exponent - 1 + (kPrecision - 1); + constexpr int kMinExp = 1 - kBias; + constexpr std::uint64_t kHiddenBit = std::uint64_t{1} << (kPrecision - 1); // = 2^(p-1) + + using bits_type = typename std::conditional::type; + + const std::uint64_t bits = reinterpret_bits(value); + const std::uint64_t E = bits >> (kPrecision - 1); + const std::uint64_t F = bits & (kHiddenBit - 1); + + const bool is_denormal = E == 0; + const diyfp v = is_denormal + ? diyfp(F, kMinExp) + : diyfp(F + kHiddenBit, static_cast(E) - kBias); + + // Compute the boundaries m- and m+ of the floating-point value + // v = f * 2^e. + // + // Determine v- and v+, the floating-point predecessor and successor if v, + // respectively. + // + // v- = v - 2^e if f != 2^(p-1) or e == e_min (A) + // = v - 2^(e-1) if f == 2^(p-1) and e > e_min (B) + // + // v+ = v + 2^e + // + // Let m- = (v- + v) / 2 and m+ = (v + v+) / 2. All real numbers _strictly_ + // between m- and m+ round to v, regardless of how the input rounding + // algorithm breaks ties. + // + // ---+-------------+-------------+-------------+-------------+--- (A) + // v- m- v m+ v+ + // + // -----------------+------+------+-------------+-------------+--- (B) + // v- m- v m+ v+ + + const bool lower_boundary_is_closer = F == 0 && E > 1; + const diyfp m_plus = diyfp(2 * v.f + 1, v.e - 1); + const diyfp m_minus = lower_boundary_is_closer + ? diyfp(4 * v.f - 1, v.e - 2) // (B) + : diyfp(2 * v.f - 1, v.e - 1); // (A) + + // Determine the normalized w+ = m+. + const diyfp w_plus = diyfp::normalize(m_plus); + + // Determine w- = m- such that e_(w-) = e_(w+). + const diyfp w_minus = diyfp::normalize_to(m_minus, w_plus.e); + + return {diyfp::normalize(v), w_minus, w_plus}; +} + +// Given normalized diyfp w, Grisu needs to find a (normalized) cached +// power-of-ten c, such that the exponent of the product c * w = f * 2^e lies +// within a certain range [alpha, gamma] (Definition 3.2 from [1]) +// +// alpha <= e = e_c + e_w + q <= gamma +// +// or +// +// f_c * f_w * 2^alpha <= f_c 2^(e_c) * f_w 2^(e_w) * 2^q +// <= f_c * f_w * 2^gamma +// +// Since c and w are normalized, i.e. 2^(q-1) <= f < 2^q, this implies +// +// 2^(q-1) * 2^(q-1) * 2^alpha <= c * w * 2^q < 2^q * 2^q * 2^gamma +// +// or +// +// 2^(q - 2 + alpha) <= c * w < 2^(q + gamma) +// +// The choice of (alpha,gamma) determines the size of the table and the form of +// the digit generation procedure. Using (alpha,gamma)=(-60,-32) works out well +// in practice: +// +// The idea is to cut the number c * w = f * 2^e into two parts, which can be +// processed independently: An integral part p1, and a fractional part p2: +// +// f * 2^e = ( (f div 2^-e) * 2^-e + (f mod 2^-e) ) * 2^e +// = (f div 2^-e) + (f mod 2^-e) * 2^e +// = p1 + p2 * 2^e +// +// The conversion of p1 into decimal form requires a series of divisions and +// modulos by (a power of) 10. These operations are faster for 32-bit than for +// 64-bit integers, so p1 should ideally fit into a 32-bit integer. This can be +// achieved by choosing +// +// -e >= 32 or e <= -32 := gamma +// +// In order to convert the fractional part +// +// p2 * 2^e = p2 / 2^-e = d[-1] / 10^1 + d[-2] / 10^2 + ... +// +// into decimal form, the fraction is repeatedly multiplied by 10 and the digits +// d[-i] are extracted in order: +// +// (10 * p2) div 2^-e = d[-1] +// (10 * p2) mod 2^-e = d[-2] / 10^1 + ... +// +// The multiplication by 10 must not overflow. It is sufficient to choose +// +// 10 * p2 < 16 * p2 = 2^4 * p2 <= 2^64. +// +// Since p2 = f mod 2^-e < 2^-e, +// +// -e <= 60 or e >= -60 := alpha + +constexpr int kAlpha = -60; +constexpr int kGamma = -32; + +struct cached_power // c = f * 2^e ~= 10^k +{ + std::uint64_t f; + int e; + int k; +}; + +/*! +For a normalized diyfp w = f * 2^e, this function returns a (normalized) cached +power-of-ten c = f_c * 2^e_c, such that the exponent of the product w * c +satisfies (Definition 3.2 from [1]) + + alpha <= e_c + e + q <= gamma. +*/ +inline cached_power get_cached_power_for_binary_exponent(int e) +{ + // Now + // + // alpha <= e_c + e + q <= gamma (1) + // ==> f_c * 2^alpha <= c * 2^e * 2^q + // + // and since the c's are normalized, 2^(q-1) <= f_c, + // + // ==> 2^(q - 1 + alpha) <= c * 2^(e + q) + // ==> 2^(alpha - e - 1) <= c + // + // If c were an exact power of ten, i.e. c = 10^k, one may determine k as + // + // k = ceil( log_10( 2^(alpha - e - 1) ) ) + // = ceil( (alpha - e - 1) * log_10(2) ) + // + // From the paper: + // "In theory the result of the procedure could be wrong since c is rounded, + // and the computation itself is approximated [...]. In practice, however, + // this simple function is sufficient." + // + // For IEEE double precision floating-point numbers converted into + // normalized diyfp's w = f * 2^e, with q = 64, + // + // e >= -1022 (min IEEE exponent) + // -52 (p - 1) + // -52 (p - 1, possibly normalize denormal IEEE numbers) + // -11 (normalize the diyfp) + // = -1137 + // + // and + // + // e <= +1023 (max IEEE exponent) + // -52 (p - 1) + // -11 (normalize the diyfp) + // = 960 + // + // This binary exponent range [-1137,960] results in a decimal exponent + // range [-307,324]. One does not need to store a cached power for each + // k in this range. For each such k it suffices to find a cached power + // such that the exponent of the product lies in [alpha,gamma]. + // This implies that the difference of the decimal exponents of adjacent + // table entries must be less than or equal to + // + // floor( (gamma - alpha) * log_10(2) ) = 8. + // + // (A smaller distance gamma-alpha would require a larger table.) + + // NB: + // Actually this function returns c, such that -60 <= e_c + e + 64 <= -34. + + constexpr int kCachedPowersMinDecExp = -300; + constexpr int kCachedPowersDecStep = 8; + + static constexpr std::array kCachedPowers = + { + { + { 0xAB70FE17C79AC6CA, -1060, -300 }, + { 0xFF77B1FCBEBCDC4F, -1034, -292 }, + { 0xBE5691EF416BD60C, -1007, -284 }, + { 0x8DD01FAD907FFC3C, -980, -276 }, + { 0xD3515C2831559A83, -954, -268 }, + { 0x9D71AC8FADA6C9B5, -927, -260 }, + { 0xEA9C227723EE8BCB, -901, -252 }, + { 0xAECC49914078536D, -874, -244 }, + { 0x823C12795DB6CE57, -847, -236 }, + { 0xC21094364DFB5637, -821, -228 }, + { 0x9096EA6F3848984F, -794, -220 }, + { 0xD77485CB25823AC7, -768, -212 }, + { 0xA086CFCD97BF97F4, -741, -204 }, + { 0xEF340A98172AACE5, -715, -196 }, + { 0xB23867FB2A35B28E, -688, -188 }, + { 0x84C8D4DFD2C63F3B, -661, -180 }, + { 0xC5DD44271AD3CDBA, -635, -172 }, + { 0x936B9FCEBB25C996, -608, -164 }, + { 0xDBAC6C247D62A584, -582, -156 }, + { 0xA3AB66580D5FDAF6, -555, -148 }, + { 0xF3E2F893DEC3F126, -529, -140 }, + { 0xB5B5ADA8AAFF80B8, -502, -132 }, + { 0x87625F056C7C4A8B, -475, -124 }, + { 0xC9BCFF6034C13053, -449, -116 }, + { 0x964E858C91BA2655, -422, -108 }, + { 0xDFF9772470297EBD, -396, -100 }, + { 0xA6DFBD9FB8E5B88F, -369, -92 }, + { 0xF8A95FCF88747D94, -343, -84 }, + { 0xB94470938FA89BCF, -316, -76 }, + { 0x8A08F0F8BF0F156B, -289, -68 }, + { 0xCDB02555653131B6, -263, -60 }, + { 0x993FE2C6D07B7FAC, -236, -52 }, + { 0xE45C10C42A2B3B06, -210, -44 }, + { 0xAA242499697392D3, -183, -36 }, + { 0xFD87B5F28300CA0E, -157, -28 }, + { 0xBCE5086492111AEB, -130, -20 }, + { 0x8CBCCC096F5088CC, -103, -12 }, + { 0xD1B71758E219652C, -77, -4 }, + { 0x9C40000000000000, -50, 4 }, + { 0xE8D4A51000000000, -24, 12 }, + { 0xAD78EBC5AC620000, 3, 20 }, + { 0x813F3978F8940984, 30, 28 }, + { 0xC097CE7BC90715B3, 56, 36 }, + { 0x8F7E32CE7BEA5C70, 83, 44 }, + { 0xD5D238A4ABE98068, 109, 52 }, + { 0x9F4F2726179A2245, 136, 60 }, + { 0xED63A231D4C4FB27, 162, 68 }, + { 0xB0DE65388CC8ADA8, 189, 76 }, + { 0x83C7088E1AAB65DB, 216, 84 }, + { 0xC45D1DF942711D9A, 242, 92 }, + { 0x924D692CA61BE758, 269, 100 }, + { 0xDA01EE641A708DEA, 295, 108 }, + { 0xA26DA3999AEF774A, 322, 116 }, + { 0xF209787BB47D6B85, 348, 124 }, + { 0xB454E4A179DD1877, 375, 132 }, + { 0x865B86925B9BC5C2, 402, 140 }, + { 0xC83553C5C8965D3D, 428, 148 }, + { 0x952AB45CFA97A0B3, 455, 156 }, + { 0xDE469FBD99A05FE3, 481, 164 }, + { 0xA59BC234DB398C25, 508, 172 }, + { 0xF6C69A72A3989F5C, 534, 180 }, + { 0xB7DCBF5354E9BECE, 561, 188 }, + { 0x88FCF317F22241E2, 588, 196 }, + { 0xCC20CE9BD35C78A5, 614, 204 }, + { 0x98165AF37B2153DF, 641, 212 }, + { 0xE2A0B5DC971F303A, 667, 220 }, + { 0xA8D9D1535CE3B396, 694, 228 }, + { 0xFB9B7CD9A4A7443C, 720, 236 }, + { 0xBB764C4CA7A44410, 747, 244 }, + { 0x8BAB8EEFB6409C1A, 774, 252 }, + { 0xD01FEF10A657842C, 800, 260 }, + { 0x9B10A4E5E9913129, 827, 268 }, + { 0xE7109BFBA19C0C9D, 853, 276 }, + { 0xAC2820D9623BF429, 880, 284 }, + { 0x80444B5E7AA7CF85, 907, 292 }, + { 0xBF21E44003ACDD2D, 933, 300 }, + { 0x8E679C2F5E44FF8F, 960, 308 }, + { 0xD433179D9C8CB841, 986, 316 }, + { 0x9E19DB92B4E31BA9, 1013, 324 }, + } + }; + + // This computation gives exactly the same results for k as + // k = ceil((kAlpha - e - 1) * 0.30102999566398114) + // for |e| <= 1500, but doesn't require floating-point operations. + // NB: log_10(2) ~= 78913 / 2^18 + JSON_ASSERT(e >= -1500); + JSON_ASSERT(e <= 1500); + const int f = kAlpha - e - 1; + const int k = (f * 78913) / (1 << 18) + static_cast(f > 0); + + const int index = (-kCachedPowersMinDecExp + k + (kCachedPowersDecStep - 1)) / kCachedPowersDecStep; + JSON_ASSERT(index >= 0); + JSON_ASSERT(static_cast(index) < kCachedPowers.size()); + + const cached_power cached = kCachedPowers[static_cast(index)]; + JSON_ASSERT(kAlpha <= cached.e + e + 64); + JSON_ASSERT(kGamma >= cached.e + e + 64); + + return cached; +} + +/*! +For n != 0, returns k, such that pow10 := 10^(k-1) <= n < 10^k. +For n == 0, returns 1 and sets pow10 := 1. +*/ +inline int find_largest_pow10(const std::uint32_t n, std::uint32_t& pow10) +{ + // LCOV_EXCL_START + if (n >= 1000000000) + { + pow10 = 1000000000; + return 10; + } + // LCOV_EXCL_STOP + else if (n >= 100000000) + { + pow10 = 100000000; + return 9; + } + else if (n >= 10000000) + { + pow10 = 10000000; + return 8; + } + else if (n >= 1000000) + { + pow10 = 1000000; + return 7; + } + else if (n >= 100000) + { + pow10 = 100000; + return 6; + } + else if (n >= 10000) + { + pow10 = 10000; + return 5; + } + else if (n >= 1000) + { + pow10 = 1000; + return 4; + } + else if (n >= 100) + { + pow10 = 100; + return 3; + } + else if (n >= 10) + { + pow10 = 10; + return 2; + } + else + { + pow10 = 1; + return 1; + } +} + +inline void grisu2_round(char* buf, int len, std::uint64_t dist, std::uint64_t delta, + std::uint64_t rest, std::uint64_t ten_k) +{ + JSON_ASSERT(len >= 1); + JSON_ASSERT(dist <= delta); + JSON_ASSERT(rest <= delta); + JSON_ASSERT(ten_k > 0); + + // <--------------------------- delta ----> + // <---- dist ---------> + // --------------[------------------+-------------------]-------------- + // M- w M+ + // + // ten_k + // <------> + // <---- rest ----> + // --------------[------------------+----+--------------]-------------- + // w V + // = buf * 10^k + // + // ten_k represents a unit-in-the-last-place in the decimal representation + // stored in buf. + // Decrement buf by ten_k while this takes buf closer to w. + + // The tests are written in this order to avoid overflow in unsigned + // integer arithmetic. + + while (rest < dist + && delta - rest >= ten_k + && (rest + ten_k < dist || dist - rest > rest + ten_k - dist)) + { + JSON_ASSERT(buf[len - 1] != '0'); + buf[len - 1]--; + rest += ten_k; + } +} + +/*! +Generates V = buffer * 10^decimal_exponent, such that M- <= V <= M+. +M- and M+ must be normalized and share the same exponent -60 <= e <= -32. +*/ +inline void grisu2_digit_gen(char* buffer, int& length, int& decimal_exponent, + diyfp M_minus, diyfp w, diyfp M_plus) +{ + static_assert(kAlpha >= -60, "internal error"); + static_assert(kGamma <= -32, "internal error"); + + // Generates the digits (and the exponent) of a decimal floating-point + // number V = buffer * 10^decimal_exponent in the range [M-, M+]. The diyfp's + // w, M- and M+ share the same exponent e, which satisfies alpha <= e <= gamma. + // + // <--------------------------- delta ----> + // <---- dist ---------> + // --------------[------------------+-------------------]-------------- + // M- w M+ + // + // Grisu2 generates the digits of M+ from left to right and stops as soon as + // V is in [M-,M+]. + + JSON_ASSERT(M_plus.e >= kAlpha); + JSON_ASSERT(M_plus.e <= kGamma); + + std::uint64_t delta = diyfp::sub(M_plus, M_minus).f; // (significand of (M+ - M-), implicit exponent is e) + std::uint64_t dist = diyfp::sub(M_plus, w ).f; // (significand of (M+ - w ), implicit exponent is e) + + // Split M+ = f * 2^e into two parts p1 and p2 (note: e < 0): + // + // M+ = f * 2^e + // = ((f div 2^-e) * 2^-e + (f mod 2^-e)) * 2^e + // = ((p1 ) * 2^-e + (p2 )) * 2^e + // = p1 + p2 * 2^e + + const diyfp one(std::uint64_t{1} << -M_plus.e, M_plus.e); + + auto p1 = static_cast(M_plus.f >> -one.e); // p1 = f div 2^-e (Since -e >= 32, p1 fits into a 32-bit int.) + std::uint64_t p2 = M_plus.f & (one.f - 1); // p2 = f mod 2^-e + + // 1) + // + // Generate the digits of the integral part p1 = d[n-1]...d[1]d[0] + + JSON_ASSERT(p1 > 0); + + std::uint32_t pow10; + const int k = find_largest_pow10(p1, pow10); + + // 10^(k-1) <= p1 < 10^k, pow10 = 10^(k-1) + // + // p1 = (p1 div 10^(k-1)) * 10^(k-1) + (p1 mod 10^(k-1)) + // = (d[k-1] ) * 10^(k-1) + (p1 mod 10^(k-1)) + // + // M+ = p1 + p2 * 2^e + // = d[k-1] * 10^(k-1) + (p1 mod 10^(k-1)) + p2 * 2^e + // = d[k-1] * 10^(k-1) + ((p1 mod 10^(k-1)) * 2^-e + p2) * 2^e + // = d[k-1] * 10^(k-1) + ( rest) * 2^e + // + // Now generate the digits d[n] of p1 from left to right (n = k-1,...,0) + // + // p1 = d[k-1]...d[n] * 10^n + d[n-1]...d[0] + // + // but stop as soon as + // + // rest * 2^e = (d[n-1]...d[0] * 2^-e + p2) * 2^e <= delta * 2^e + + int n = k; + while (n > 0) + { + // Invariants: + // M+ = buffer * 10^n + (p1 + p2 * 2^e) (buffer = 0 for n = k) + // pow10 = 10^(n-1) <= p1 < 10^n + // + const std::uint32_t d = p1 / pow10; // d = p1 div 10^(n-1) + const std::uint32_t r = p1 % pow10; // r = p1 mod 10^(n-1) + // + // M+ = buffer * 10^n + (d * 10^(n-1) + r) + p2 * 2^e + // = (buffer * 10 + d) * 10^(n-1) + (r + p2 * 2^e) + // + JSON_ASSERT(d <= 9); + buffer[length++] = static_cast('0' + d); // buffer := buffer * 10 + d + // + // M+ = buffer * 10^(n-1) + (r + p2 * 2^e) + // + p1 = r; + n--; + // + // M+ = buffer * 10^n + (p1 + p2 * 2^e) + // pow10 = 10^n + // + + // Now check if enough digits have been generated. + // Compute + // + // p1 + p2 * 2^e = (p1 * 2^-e + p2) * 2^e = rest * 2^e + // + // Note: + // Since rest and delta share the same exponent e, it suffices to + // compare the significands. + const std::uint64_t rest = (std::uint64_t{p1} << -one.e) + p2; + if (rest <= delta) + { + // V = buffer * 10^n, with M- <= V <= M+. + + decimal_exponent += n; + + // We may now just stop. But instead look if the buffer could be + // decremented to bring V closer to w. + // + // pow10 = 10^n is now 1 ulp in the decimal representation V. + // The rounding procedure works with diyfp's with an implicit + // exponent of e. + // + // 10^n = (10^n * 2^-e) * 2^e = ulp * 2^e + // + const std::uint64_t ten_n = std::uint64_t{pow10} << -one.e; + grisu2_round(buffer, length, dist, delta, rest, ten_n); + + return; + } + + pow10 /= 10; + // + // pow10 = 10^(n-1) <= p1 < 10^n + // Invariants restored. + } + + // 2) + // + // The digits of the integral part have been generated: + // + // M+ = d[k-1]...d[1]d[0] + p2 * 2^e + // = buffer + p2 * 2^e + // + // Now generate the digits of the fractional part p2 * 2^e. + // + // Note: + // No decimal point is generated: the exponent is adjusted instead. + // + // p2 actually represents the fraction + // + // p2 * 2^e + // = p2 / 2^-e + // = d[-1] / 10^1 + d[-2] / 10^2 + ... + // + // Now generate the digits d[-m] of p1 from left to right (m = 1,2,...) + // + // p2 * 2^e = d[-1]d[-2]...d[-m] * 10^-m + // + 10^-m * (d[-m-1] / 10^1 + d[-m-2] / 10^2 + ...) + // + // using + // + // 10^m * p2 = ((10^m * p2) div 2^-e) * 2^-e + ((10^m * p2) mod 2^-e) + // = ( d) * 2^-e + ( r) + // + // or + // 10^m * p2 * 2^e = d + r * 2^e + // + // i.e. + // + // M+ = buffer + p2 * 2^e + // = buffer + 10^-m * (d + r * 2^e) + // = (buffer * 10^m + d) * 10^-m + 10^-m * r * 2^e + // + // and stop as soon as 10^-m * r * 2^e <= delta * 2^e + + JSON_ASSERT(p2 > delta); + + int m = 0; + for (;;) + { + // Invariant: + // M+ = buffer * 10^-m + 10^-m * (d[-m-1] / 10 + d[-m-2] / 10^2 + ...) * 2^e + // = buffer * 10^-m + 10^-m * (p2 ) * 2^e + // = buffer * 10^-m + 10^-m * (1/10 * (10 * p2) ) * 2^e + // = buffer * 10^-m + 10^-m * (1/10 * ((10*p2 div 2^-e) * 2^-e + (10*p2 mod 2^-e)) * 2^e + // + JSON_ASSERT(p2 <= (std::numeric_limits::max)() / 10); + p2 *= 10; + const std::uint64_t d = p2 >> -one.e; // d = (10 * p2) div 2^-e + const std::uint64_t r = p2 & (one.f - 1); // r = (10 * p2) mod 2^-e + // + // M+ = buffer * 10^-m + 10^-m * (1/10 * (d * 2^-e + r) * 2^e + // = buffer * 10^-m + 10^-m * (1/10 * (d + r * 2^e)) + // = (buffer * 10 + d) * 10^(-m-1) + 10^(-m-1) * r * 2^e + // + JSON_ASSERT(d <= 9); + buffer[length++] = static_cast('0' + d); // buffer := buffer * 10 + d + // + // M+ = buffer * 10^(-m-1) + 10^(-m-1) * r * 2^e + // + p2 = r; + m++; + // + // M+ = buffer * 10^-m + 10^-m * p2 * 2^e + // Invariant restored. + + // Check if enough digits have been generated. + // + // 10^-m * p2 * 2^e <= delta * 2^e + // p2 * 2^e <= 10^m * delta * 2^e + // p2 <= 10^m * delta + delta *= 10; + dist *= 10; + if (p2 <= delta) + { + break; + } + } + + // V = buffer * 10^-m, with M- <= V <= M+. + + decimal_exponent -= m; + + // 1 ulp in the decimal representation is now 10^-m. + // Since delta and dist are now scaled by 10^m, we need to do the + // same with ulp in order to keep the units in sync. + // + // 10^m * 10^-m = 1 = 2^-e * 2^e = ten_m * 2^e + // + const std::uint64_t ten_m = one.f; + grisu2_round(buffer, length, dist, delta, p2, ten_m); + + // By construction this algorithm generates the shortest possible decimal + // number (Loitsch, Theorem 6.2) which rounds back to w. + // For an input number of precision p, at least + // + // N = 1 + ceil(p * log_10(2)) + // + // decimal digits are sufficient to identify all binary floating-point + // numbers (Matula, "In-and-Out conversions"). + // This implies that the algorithm does not produce more than N decimal + // digits. + // + // N = 17 for p = 53 (IEEE double precision) + // N = 9 for p = 24 (IEEE single precision) +} + +/*! +v = buf * 10^decimal_exponent +len is the length of the buffer (number of decimal digits) +The buffer must be large enough, i.e. >= max_digits10. +*/ +JSON_HEDLEY_NON_NULL(1) +inline void grisu2(char* buf, int& len, int& decimal_exponent, + diyfp m_minus, diyfp v, diyfp m_plus) +{ + JSON_ASSERT(m_plus.e == m_minus.e); + JSON_ASSERT(m_plus.e == v.e); + + // --------(-----------------------+-----------------------)-------- (A) + // m- v m+ + // + // --------------------(-----------+-----------------------)-------- (B) + // m- v m+ + // + // First scale v (and m- and m+) such that the exponent is in the range + // [alpha, gamma]. + + const cached_power cached = get_cached_power_for_binary_exponent(m_plus.e); + + const diyfp c_minus_k(cached.f, cached.e); // = c ~= 10^-k + + // The exponent of the products is = v.e + c_minus_k.e + q and is in the range [alpha,gamma] + const diyfp w = diyfp::mul(v, c_minus_k); + const diyfp w_minus = diyfp::mul(m_minus, c_minus_k); + const diyfp w_plus = diyfp::mul(m_plus, c_minus_k); + + // ----(---+---)---------------(---+---)---------------(---+---)---- + // w- w w+ + // = c*m- = c*v = c*m+ + // + // diyfp::mul rounds its result and c_minus_k is approximated too. w, w- and + // w+ are now off by a small amount. + // In fact: + // + // w - v * 10^k < 1 ulp + // + // To account for this inaccuracy, add resp. subtract 1 ulp. + // + // --------+---[---------------(---+---)---------------]---+-------- + // w- M- w M+ w+ + // + // Now any number in [M-, M+] (bounds included) will round to w when input, + // regardless of how the input rounding algorithm breaks ties. + // + // And digit_gen generates the shortest possible such number in [M-, M+]. + // Note that this does not mean that Grisu2 always generates the shortest + // possible number in the interval (m-, m+). + const diyfp M_minus(w_minus.f + 1, w_minus.e); + const diyfp M_plus (w_plus.f - 1, w_plus.e ); + + decimal_exponent = -cached.k; // = -(-k) = k + + grisu2_digit_gen(buf, len, decimal_exponent, M_minus, w, M_plus); +} + +/*! +v = buf * 10^decimal_exponent +len is the length of the buffer (number of decimal digits) +The buffer must be large enough, i.e. >= max_digits10. +*/ +template +JSON_HEDLEY_NON_NULL(1) +void grisu2(char* buf, int& len, int& decimal_exponent, FloatType value) +{ + static_assert(diyfp::kPrecision >= std::numeric_limits::digits + 3, + "internal error: not enough precision"); + + JSON_ASSERT(std::isfinite(value)); + JSON_ASSERT(value > 0); + + // If the neighbors (and boundaries) of 'value' are always computed for double-precision + // numbers, all float's can be recovered using strtod (and strtof). However, the resulting + // decimal representations are not exactly "short". + // + // The documentation for 'std::to_chars' (https://en.cppreference.com/w/cpp/utility/to_chars) + // says "value is converted to a string as if by std::sprintf in the default ("C") locale" + // and since sprintf promotes float's to double's, I think this is exactly what 'std::to_chars' + // does. + // On the other hand, the documentation for 'std::to_chars' requires that "parsing the + // representation using the corresponding std::from_chars function recovers value exactly". That + // indicates that single precision floating-point numbers should be recovered using + // 'std::strtof'. + // + // NB: If the neighbors are computed for single-precision numbers, there is a single float + // (7.0385307e-26f) which can't be recovered using strtod. The resulting double precision + // value is off by 1 ulp. +#if 0 + const boundaries w = compute_boundaries(static_cast(value)); +#else + const boundaries w = compute_boundaries(value); +#endif + + grisu2(buf, len, decimal_exponent, w.minus, w.w, w.plus); +} + +/*! +@brief appends a decimal representation of e to buf +@return a pointer to the element following the exponent. +@pre -1000 < e < 1000 +*/ +JSON_HEDLEY_NON_NULL(1) +JSON_HEDLEY_RETURNS_NON_NULL +inline char* append_exponent(char* buf, int e) +{ + JSON_ASSERT(e > -1000); + JSON_ASSERT(e < 1000); + + if (e < 0) + { + e = -e; + *buf++ = '-'; + } + else + { + *buf++ = '+'; + } + + auto k = static_cast(e); + if (k < 10) + { + // Always print at least two digits in the exponent. + // This is for compatibility with printf("%g"). + *buf++ = '0'; + *buf++ = static_cast('0' + k); + } + else if (k < 100) + { + *buf++ = static_cast('0' + k / 10); + k %= 10; + *buf++ = static_cast('0' + k); + } + else + { + *buf++ = static_cast('0' + k / 100); + k %= 100; + *buf++ = static_cast('0' + k / 10); + k %= 10; + *buf++ = static_cast('0' + k); + } + + return buf; +} + +/*! +@brief prettify v = buf * 10^decimal_exponent + +If v is in the range [10^min_exp, 10^max_exp) it will be printed in fixed-point +notation. Otherwise it will be printed in exponential notation. + +@pre min_exp < 0 +@pre max_exp > 0 +*/ +JSON_HEDLEY_NON_NULL(1) +JSON_HEDLEY_RETURNS_NON_NULL +inline char* format_buffer(char* buf, int len, int decimal_exponent, + int min_exp, int max_exp) +{ + JSON_ASSERT(min_exp < 0); + JSON_ASSERT(max_exp > 0); + + const int k = len; + const int n = len + decimal_exponent; + + // v = buf * 10^(n-k) + // k is the length of the buffer (number of decimal digits) + // n is the position of the decimal point relative to the start of the buffer. + + if (k <= n && n <= max_exp) + { + // digits[000] + // len <= max_exp + 2 + + std::memset(buf + k, '0', static_cast(n) - static_cast(k)); + // Make it look like a floating-point number (#362, #378) + buf[n + 0] = '.'; + buf[n + 1] = '0'; + return buf + (static_cast(n) + 2); + } + + if (0 < n && n <= max_exp) + { + // dig.its + // len <= max_digits10 + 1 + + JSON_ASSERT(k > n); + + std::memmove(buf + (static_cast(n) + 1), buf + n, static_cast(k) - static_cast(n)); + buf[n] = '.'; + return buf + (static_cast(k) + 1U); + } + + if (min_exp < n && n <= 0) + { + // 0.[000]digits + // len <= 2 + (-min_exp - 1) + max_digits10 + + std::memmove(buf + (2 + static_cast(-n)), buf, static_cast(k)); + buf[0] = '0'; + buf[1] = '.'; + std::memset(buf + 2, '0', static_cast(-n)); + return buf + (2U + static_cast(-n) + static_cast(k)); + } + + if (k == 1) + { + // dE+123 + // len <= 1 + 5 + + buf += 1; + } + else + { + // d.igitsE+123 + // len <= max_digits10 + 1 + 5 + + std::memmove(buf + 2, buf + 1, static_cast(k) - 1); + buf[1] = '.'; + buf += 1 + static_cast(k); + } + + *buf++ = 'e'; + return append_exponent(buf, n - 1); +} + +} // namespace dtoa_impl + +/*! +@brief generates a decimal representation of the floating-point number value in [first, last). + +The format of the resulting decimal representation is similar to printf's %g +format. Returns an iterator pointing past-the-end of the decimal representation. + +@note The input number must be finite, i.e. NaN's and Inf's are not supported. +@note The buffer must be large enough. +@note The result is NOT null-terminated. +*/ +template +JSON_HEDLEY_NON_NULL(1, 2) +JSON_HEDLEY_RETURNS_NON_NULL +char* to_chars(char* first, const char* last, FloatType value) +{ + static_cast(last); // maybe unused - fix warning + JSON_ASSERT(std::isfinite(value)); + + // Use signbit(value) instead of (value < 0) since signbit works for -0. + if (std::signbit(value)) + { + value = -value; + *first++ = '-'; + } + + if (value == 0) // +-0 + { + *first++ = '0'; + // Make it look like a floating-point number (#362, #378) + *first++ = '.'; + *first++ = '0'; + return first; + } + + JSON_ASSERT(last - first >= std::numeric_limits::max_digits10); + + // Compute v = buffer * 10^decimal_exponent. + // The decimal digits are stored in the buffer, which needs to be interpreted + // as an unsigned decimal integer. + // len is the length of the buffer, i.e. the number of decimal digits. + int len = 0; + int decimal_exponent = 0; + dtoa_impl::grisu2(first, len, decimal_exponent, value); + + JSON_ASSERT(len <= std::numeric_limits::max_digits10); + + // Format the buffer like printf("%.*g", prec, value) + constexpr int kMinExp = -4; + // Use digits10 here to increase compatibility with version 2. + constexpr int kMaxExp = std::numeric_limits::digits10; + + JSON_ASSERT(last - first >= kMaxExp + 2); + JSON_ASSERT(last - first >= 2 + (-kMinExp - 1) + std::numeric_limits::max_digits10); + JSON_ASSERT(last - first >= std::numeric_limits::max_digits10 + 6); + + return dtoa_impl::format_buffer(first, len, decimal_exponent, kMinExp, kMaxExp); +} + +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/conversions/to_json.hpp b/external/json/include/nlohmann/detail/conversions/to_json.hpp new file mode 100644 index 0000000..b45004f --- /dev/null +++ b/external/json/include/nlohmann/detail/conversions/to_json.hpp @@ -0,0 +1,374 @@ +#pragma once + +#include // copy +#include // begin, end +#include // string +#include // tuple, get +#include // is_same, is_constructible, is_floating_point, is_enum, underlying_type +#include // move, forward, declval, pair +#include // valarray +#include // vector + +#include +#include +#include +#include + +namespace nlohmann +{ +namespace detail +{ +////////////////// +// constructors // +////////////////// + +template struct external_constructor; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, typename BasicJsonType::boolean_t b) noexcept + { + j.m_type = value_t::boolean; + j.m_value = b; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, const typename BasicJsonType::string_t& s) + { + j.m_type = value_t::string; + j.m_value = s; + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, typename BasicJsonType::string_t&& s) + { + j.m_type = value_t::string; + j.m_value = std::move(s); + j.assert_invariant(); + } + + template < typename BasicJsonType, typename CompatibleStringType, + enable_if_t < !std::is_same::value, + int > = 0 > + static void construct(BasicJsonType& j, const CompatibleStringType& str) + { + j.m_type = value_t::string; + j.m_value.string = j.template create(str); + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, const typename BasicJsonType::binary_t& b) + { + j.m_type = value_t::binary; + typename BasicJsonType::binary_t value{b}; + j.m_value = value; + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, typename BasicJsonType::binary_t&& b) + { + j.m_type = value_t::binary; + typename BasicJsonType::binary_t value{std::move(b)}; + j.m_value = value; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, typename BasicJsonType::number_float_t val) noexcept + { + j.m_type = value_t::number_float; + j.m_value = val; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, typename BasicJsonType::number_unsigned_t val) noexcept + { + j.m_type = value_t::number_unsigned; + j.m_value = val; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, typename BasicJsonType::number_integer_t val) noexcept + { + j.m_type = value_t::number_integer; + j.m_value = val; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, const typename BasicJsonType::array_t& arr) + { + j.m_type = value_t::array; + j.m_value = arr; + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, typename BasicJsonType::array_t&& arr) + { + j.m_type = value_t::array; + j.m_value = std::move(arr); + j.assert_invariant(); + } + + template < typename BasicJsonType, typename CompatibleArrayType, + enable_if_t < !std::is_same::value, + int > = 0 > + static void construct(BasicJsonType& j, const CompatibleArrayType& arr) + { + using std::begin; + using std::end; + j.m_type = value_t::array; + j.m_value.array = j.template create(begin(arr), end(arr)); + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, const std::vector& arr) + { + j.m_type = value_t::array; + j.m_value = value_t::array; + j.m_value.array->reserve(arr.size()); + for (const bool x : arr) + { + j.m_value.array->push_back(x); + } + j.assert_invariant(); + } + + template::value, int> = 0> + static void construct(BasicJsonType& j, const std::valarray& arr) + { + j.m_type = value_t::array; + j.m_value = value_t::array; + j.m_value.array->resize(arr.size()); + if (arr.size() > 0) + { + std::copy(std::begin(arr), std::end(arr), j.m_value.array->begin()); + } + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, const typename BasicJsonType::object_t& obj) + { + j.m_type = value_t::object; + j.m_value = obj; + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, typename BasicJsonType::object_t&& obj) + { + j.m_type = value_t::object; + j.m_value = std::move(obj); + j.assert_invariant(); + } + + template < typename BasicJsonType, typename CompatibleObjectType, + enable_if_t < !std::is_same::value, int > = 0 > + static void construct(BasicJsonType& j, const CompatibleObjectType& obj) + { + using std::begin; + using std::end; + + j.m_type = value_t::object; + j.m_value.object = j.template create(begin(obj), end(obj)); + j.assert_invariant(); + } +}; + +///////////// +// to_json // +///////////// + +template::value, int> = 0> +void to_json(BasicJsonType& j, T b) noexcept +{ + external_constructor::construct(j, b); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, const CompatibleString& s) +{ + external_constructor::construct(j, s); +} + +template +void to_json(BasicJsonType& j, typename BasicJsonType::string_t&& s) +{ + external_constructor::construct(j, std::move(s)); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, FloatType val) noexcept +{ + external_constructor::construct(j, static_cast(val)); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, CompatibleNumberUnsignedType val) noexcept +{ + external_constructor::construct(j, static_cast(val)); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept +{ + external_constructor::construct(j, static_cast(val)); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, EnumType e) noexcept +{ + using underlying_type = typename std::underlying_type::type; + external_constructor::construct(j, static_cast(e)); +} + +template +void to_json(BasicJsonType& j, const std::vector& e) +{ + external_constructor::construct(j, e); +} + +template < typename BasicJsonType, typename CompatibleArrayType, + enable_if_t < is_compatible_array_type::value&& + !is_compatible_object_type::value&& + !is_compatible_string_type::value&& + !std::is_same::value&& + !is_basic_json::value, + int > = 0 > +void to_json(BasicJsonType& j, const CompatibleArrayType& arr) +{ + external_constructor::construct(j, arr); +} + +template +void to_json(BasicJsonType& j, const typename BasicJsonType::binary_t& bin) +{ + external_constructor::construct(j, bin); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, const std::valarray& arr) +{ + external_constructor::construct(j, std::move(arr)); +} + +template +void to_json(BasicJsonType& j, typename BasicJsonType::array_t&& arr) +{ + external_constructor::construct(j, std::move(arr)); +} + +template < typename BasicJsonType, typename CompatibleObjectType, + enable_if_t < is_compatible_object_type::value&& !is_basic_json::value, int > = 0 > +void to_json(BasicJsonType& j, const CompatibleObjectType& obj) +{ + external_constructor::construct(j, obj); +} + +template +void to_json(BasicJsonType& j, typename BasicJsonType::object_t&& obj) +{ + external_constructor::construct(j, std::move(obj)); +} + +template < + typename BasicJsonType, typename T, std::size_t N, + enable_if_t < !std::is_constructible::value, + int > = 0 > +void to_json(BasicJsonType& j, const T(&arr)[N]) +{ + external_constructor::construct(j, arr); +} + +template < typename BasicJsonType, typename T1, typename T2, enable_if_t < std::is_constructible::value&& std::is_constructible::value, int > = 0 > +void to_json(BasicJsonType& j, const std::pair& p) +{ + j = { p.first, p.second }; +} + +// for https://github.com/nlohmann/json/pull/1134 +template>::value, int> = 0> +void to_json(BasicJsonType& j, const T& b) +{ + j = { {b.key(), b.value()} }; +} + +template +void to_json_tuple_impl(BasicJsonType& j, const Tuple& t, index_sequence /*unused*/) +{ + j = { std::get(t)... }; +} + +template::value, int > = 0> +void to_json(BasicJsonType& j, const T& t) +{ + to_json_tuple_impl(j, t, make_index_sequence::value> {}); +} + +struct to_json_fn +{ + template + auto operator()(BasicJsonType& j, T&& val) const noexcept(noexcept(to_json(j, std::forward(val)))) + -> decltype(to_json(j, std::forward(val)), void()) + { + return to_json(j, std::forward(val)); + } +}; +} // namespace detail + +/// namespace to hold default `to_json` function +namespace +{ +constexpr const auto& to_json = detail::static_const::value; +} // namespace +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/exceptions.hpp b/external/json/include/nlohmann/detail/exceptions.hpp new file mode 100644 index 0000000..dd92897 --- /dev/null +++ b/external/json/include/nlohmann/detail/exceptions.hpp @@ -0,0 +1,357 @@ +#pragma once + +#include // exception +#include // runtime_error +#include // to_string + +#include +#include + +namespace nlohmann +{ +namespace detail +{ +//////////////// +// exceptions // +//////////////// + +/*! +@brief general exception of the @ref basic_json class + +This class is an extension of `std::exception` objects with a member @a id for +exception ids. It is used as the base class for all exceptions thrown by the +@ref basic_json class. This class can hence be used as "wildcard" to catch +exceptions. + +Subclasses: +- @ref parse_error for exceptions indicating a parse error +- @ref invalid_iterator for exceptions indicating errors with iterators +- @ref type_error for exceptions indicating executing a member function with + a wrong type +- @ref out_of_range for exceptions indicating access out of the defined range +- @ref other_error for exceptions indicating other library errors + +@internal +@note To have nothrow-copy-constructible exceptions, we internally use + `std::runtime_error` which can cope with arbitrary-length error messages. + Intermediate strings are built with static functions and then passed to + the actual constructor. +@endinternal + +@liveexample{The following code shows how arbitrary library exceptions can be +caught.,exception} + +@since version 3.0.0 +*/ +class exception : public std::exception +{ + public: + /// returns the explanatory string + JSON_HEDLEY_RETURNS_NON_NULL + const char* what() const noexcept override + { + return m.what(); + } + + /// the id of the exception + const int id; + + protected: + JSON_HEDLEY_NON_NULL(3) + exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} + + static std::string name(const std::string& ename, int id_) + { + return "[json.exception." + ename + "." + std::to_string(id_) + "] "; + } + + private: + /// an exception object as storage for error messages + std::runtime_error m; +}; + +/*! +@brief exception indicating a parse error + +This exception is thrown by the library when a parse error occurs. Parse errors +can occur during the deserialization of JSON text, CBOR, MessagePack, as well +as when using JSON Patch. + +Member @a byte holds the byte index of the last read character in the input +file. + +Exceptions have ids 1xx. + +name / id | example message | description +------------------------------ | --------------- | ------------------------- +json.exception.parse_error.101 | parse error at 2: unexpected end of input; expected string literal | This error indicates a syntax error while deserializing a JSON text. The error message describes that an unexpected token (character) was encountered, and the member @a byte indicates the error position. +json.exception.parse_error.102 | parse error at 14: missing or wrong low surrogate | JSON uses the `\uxxxx` format to describe Unicode characters. Code points above above 0xFFFF are split into two `\uxxxx` entries ("surrogate pairs"). This error indicates that the surrogate pair is incomplete or contains an invalid code point. +json.exception.parse_error.103 | parse error: code points above 0x10FFFF are invalid | Unicode supports code points up to 0x10FFFF. Code points above 0x10FFFF are invalid. +json.exception.parse_error.104 | parse error: JSON patch must be an array of objects | [RFC 6902](https://tools.ietf.org/html/rfc6902) requires a JSON Patch document to be a JSON document that represents an array of objects. +json.exception.parse_error.105 | parse error: operation must have string member 'op' | An operation of a JSON Patch document must contain exactly one "op" member, whose value indicates the operation to perform. Its value must be one of "add", "remove", "replace", "move", "copy", or "test"; other values are errors. +json.exception.parse_error.106 | parse error: array index '01' must not begin with '0' | An array index in a JSON Pointer ([RFC 6901](https://tools.ietf.org/html/rfc6901)) may be `0` or any number without a leading `0`. +json.exception.parse_error.107 | parse error: JSON pointer must be empty or begin with '/' - was: 'foo' | A JSON Pointer must be a Unicode string containing a sequence of zero or more reference tokens, each prefixed by a `/` character. +json.exception.parse_error.108 | parse error: escape character '~' must be followed with '0' or '1' | In a JSON Pointer, only `~0` and `~1` are valid escape sequences. +json.exception.parse_error.109 | parse error: array index 'one' is not a number | A JSON Pointer array index must be a number. +json.exception.parse_error.110 | parse error at 1: cannot read 2 bytes from vector | When parsing CBOR or MessagePack, the byte vector ends before the complete value has been read. +json.exception.parse_error.112 | parse error at 1: error reading CBOR; last byte: 0xF8 | Not all types of CBOR or MessagePack are supported. This exception occurs if an unsupported byte was read. +json.exception.parse_error.113 | parse error at 2: expected a CBOR string; last byte: 0x98 | While parsing a map key, a value that is not a string has been read. +json.exception.parse_error.114 | parse error: Unsupported BSON record type 0x0F | The parsing of the corresponding BSON record type is not implemented (yet). +json.exception.parse_error.115 | parse error at byte 5: syntax error while parsing UBJSON high-precision number: invalid number text: 1A | A UBJSON high-precision number could not be parsed. + +@note For an input with n bytes, 1 is the index of the first character and n+1 + is the index of the terminating null byte or the end of file. This also + holds true when reading a byte vector (CBOR or MessagePack). + +@liveexample{The following code shows how a `parse_error` exception can be +caught.,parse_error} + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref invalid_iterator for exceptions indicating errors with iterators +@sa - @ref type_error for exceptions indicating executing a member function with + a wrong type +@sa - @ref out_of_range for exceptions indicating access out of the defined range +@sa - @ref other_error for exceptions indicating other library errors + +@since version 3.0.0 +*/ +class parse_error : public exception +{ + public: + /*! + @brief create a parse error exception + @param[in] id_ the id of the exception + @param[in] pos the position where the error occurred (or with + chars_read_total=0 if the position cannot be + determined) + @param[in] what_arg the explanatory string + @return parse_error object + */ + static parse_error create(int id_, const position_t& pos, const std::string& what_arg) + { + std::string w = exception::name("parse_error", id_) + "parse error" + + position_string(pos) + ": " + what_arg; + return parse_error(id_, pos.chars_read_total, w.c_str()); + } + + static parse_error create(int id_, std::size_t byte_, const std::string& what_arg) + { + std::string w = exception::name("parse_error", id_) + "parse error" + + (byte_ != 0 ? (" at byte " + std::to_string(byte_)) : "") + + ": " + what_arg; + return parse_error(id_, byte_, w.c_str()); + } + + /*! + @brief byte index of the parse error + + The byte index of the last read character in the input file. + + @note For an input with n bytes, 1 is the index of the first character and + n+1 is the index of the terminating null byte or the end of file. + This also holds true when reading a byte vector (CBOR or MessagePack). + */ + const std::size_t byte; + + private: + parse_error(int id_, std::size_t byte_, const char* what_arg) + : exception(id_, what_arg), byte(byte_) {} + + static std::string position_string(const position_t& pos) + { + return " at line " + std::to_string(pos.lines_read + 1) + + ", column " + std::to_string(pos.chars_read_current_line); + } +}; + +/*! +@brief exception indicating errors with iterators + +This exception is thrown if iterators passed to a library function do not match +the expected semantics. + +Exceptions have ids 2xx. + +name / id | example message | description +----------------------------------- | --------------- | ------------------------- +json.exception.invalid_iterator.201 | iterators are not compatible | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid. +json.exception.invalid_iterator.202 | iterator does not fit current value | In an erase or insert function, the passed iterator @a pos does not belong to the JSON value for which the function was called. It hence does not define a valid position for the deletion/insertion. +json.exception.invalid_iterator.203 | iterators do not fit current value | Either iterator passed to function @ref erase(IteratorType first, IteratorType last) does not belong to the JSON value from which values shall be erased. It hence does not define a valid range to delete values from. +json.exception.invalid_iterator.204 | iterators out of range | When an iterator range for a primitive type (number, boolean, or string) is passed to a constructor or an erase function, this range has to be exactly (@ref begin(), @ref end()), because this is the only way the single stored value is expressed. All other ranges are invalid. +json.exception.invalid_iterator.205 | iterator out of range | When an iterator for a primitive type (number, boolean, or string) is passed to an erase function, the iterator has to be the @ref begin() iterator, because it is the only way to address the stored value. All other iterators are invalid. +json.exception.invalid_iterator.206 | cannot construct with iterators from null | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) belong to a JSON null value and hence to not define a valid range. +json.exception.invalid_iterator.207 | cannot use key() for non-object iterators | The key() member function can only be used on iterators belonging to a JSON object, because other types do not have a concept of a key. +json.exception.invalid_iterator.208 | cannot use operator[] for object iterators | The operator[] to specify a concrete offset cannot be used on iterators belonging to a JSON object, because JSON objects are unordered. +json.exception.invalid_iterator.209 | cannot use offsets with object iterators | The offset operators (+, -, +=, -=) cannot be used on iterators belonging to a JSON object, because JSON objects are unordered. +json.exception.invalid_iterator.210 | iterators do not fit | The iterator range passed to the insert function are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid. +json.exception.invalid_iterator.211 | passed iterators may not belong to container | The iterator range passed to the insert function must not be a subrange of the container to insert to. +json.exception.invalid_iterator.212 | cannot compare iterators of different containers | When two iterators are compared, they must belong to the same container. +json.exception.invalid_iterator.213 | cannot compare order of object iterators | The order of object iterators cannot be compared, because JSON objects are unordered. +json.exception.invalid_iterator.214 | cannot get value | Cannot get value for iterator: Either the iterator belongs to a null value or it is an iterator to a primitive type (number, boolean, or string), but the iterator is different to @ref begin(). + +@liveexample{The following code shows how an `invalid_iterator` exception can be +caught.,invalid_iterator} + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref parse_error for exceptions indicating a parse error +@sa - @ref type_error for exceptions indicating executing a member function with + a wrong type +@sa - @ref out_of_range for exceptions indicating access out of the defined range +@sa - @ref other_error for exceptions indicating other library errors + +@since version 3.0.0 +*/ +class invalid_iterator : public exception +{ + public: + static invalid_iterator create(int id_, const std::string& what_arg) + { + std::string w = exception::name("invalid_iterator", id_) + what_arg; + return invalid_iterator(id_, w.c_str()); + } + + private: + JSON_HEDLEY_NON_NULL(3) + invalid_iterator(int id_, const char* what_arg) + : exception(id_, what_arg) {} +}; + +/*! +@brief exception indicating executing a member function with a wrong type + +This exception is thrown in case of a type error; that is, a library function is +executed on a JSON value whose type does not match the expected semantics. + +Exceptions have ids 3xx. + +name / id | example message | description +----------------------------- | --------------- | ------------------------- +json.exception.type_error.301 | cannot create object from initializer list | To create an object from an initializer list, the initializer list must consist only of a list of pairs whose first element is a string. When this constraint is violated, an array is created instead. +json.exception.type_error.302 | type must be object, but is array | During implicit or explicit value conversion, the JSON type must be compatible to the target type. For instance, a JSON string can only be converted into string types, but not into numbers or boolean types. +json.exception.type_error.303 | incompatible ReferenceType for get_ref, actual type is object | To retrieve a reference to a value stored in a @ref basic_json object with @ref get_ref, the type of the reference must match the value type. For instance, for a JSON array, the @a ReferenceType must be @ref array_t &. +json.exception.type_error.304 | cannot use at() with string | The @ref at() member functions can only be executed for certain JSON types. +json.exception.type_error.305 | cannot use operator[] with string | The @ref operator[] member functions can only be executed for certain JSON types. +json.exception.type_error.306 | cannot use value() with string | The @ref value() member functions can only be executed for certain JSON types. +json.exception.type_error.307 | cannot use erase() with string | The @ref erase() member functions can only be executed for certain JSON types. +json.exception.type_error.308 | cannot use push_back() with string | The @ref push_back() and @ref operator+= member functions can only be executed for certain JSON types. +json.exception.type_error.309 | cannot use insert() with | The @ref insert() member functions can only be executed for certain JSON types. +json.exception.type_error.310 | cannot use swap() with number | The @ref swap() member functions can only be executed for certain JSON types. +json.exception.type_error.311 | cannot use emplace_back() with string | The @ref emplace_back() member function can only be executed for certain JSON types. +json.exception.type_error.312 | cannot use update() with string | The @ref update() member functions can only be executed for certain JSON types. +json.exception.type_error.313 | invalid value to unflatten | The @ref unflatten function converts an object whose keys are JSON Pointers back into an arbitrary nested JSON value. The JSON Pointers must not overlap, because then the resulting value would not be well defined. +json.exception.type_error.314 | only objects can be unflattened | The @ref unflatten function only works for an object whose keys are JSON Pointers. +json.exception.type_error.315 | values in object must be primitive | The @ref unflatten function only works for an object whose keys are JSON Pointers and whose values are primitive. +json.exception.type_error.316 | invalid UTF-8 byte at index 10: 0x7E | The @ref dump function only works with UTF-8 encoded strings; that is, if you assign a `std::string` to a JSON value, make sure it is UTF-8 encoded. | +json.exception.type_error.317 | JSON value cannot be serialized to requested format | The dynamic type of the object cannot be represented in the requested serialization format (e.g. a raw `true` or `null` JSON object cannot be serialized to BSON) | + +@liveexample{The following code shows how a `type_error` exception can be +caught.,type_error} + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref parse_error for exceptions indicating a parse error +@sa - @ref invalid_iterator for exceptions indicating errors with iterators +@sa - @ref out_of_range for exceptions indicating access out of the defined range +@sa - @ref other_error for exceptions indicating other library errors + +@since version 3.0.0 +*/ +class type_error : public exception +{ + public: + static type_error create(int id_, const std::string& what_arg) + { + std::string w = exception::name("type_error", id_) + what_arg; + return type_error(id_, w.c_str()); + } + + private: + JSON_HEDLEY_NON_NULL(3) + type_error(int id_, const char* what_arg) : exception(id_, what_arg) {} +}; + +/*! +@brief exception indicating access out of the defined range + +This exception is thrown in case a library function is called on an input +parameter that exceeds the expected range, for instance in case of array +indices or nonexisting object keys. + +Exceptions have ids 4xx. + +name / id | example message | description +------------------------------- | --------------- | ------------------------- +json.exception.out_of_range.401 | array index 3 is out of range | The provided array index @a i is larger than @a size-1. +json.exception.out_of_range.402 | array index '-' (3) is out of range | The special array index `-` in a JSON Pointer never describes a valid element of the array, but the index past the end. That is, it can only be used to add elements at this position, but not to read it. +json.exception.out_of_range.403 | key 'foo' not found | The provided key was not found in the JSON object. +json.exception.out_of_range.404 | unresolved reference token 'foo' | A reference token in a JSON Pointer could not be resolved. +json.exception.out_of_range.405 | JSON pointer has no parent | The JSON Patch operations 'remove' and 'add' can not be applied to the root element of the JSON value. +json.exception.out_of_range.406 | number overflow parsing '10E1000' | A parsed number could not be stored as without changing it to NaN or INF. +json.exception.out_of_range.407 | number overflow serializing '9223372036854775808' | UBJSON and BSON only support integer numbers up to 9223372036854775807. (until version 3.8.0) | +json.exception.out_of_range.408 | excessive array size: 8658170730974374167 | The size (following `#`) of an UBJSON array or object exceeds the maximal capacity. | +json.exception.out_of_range.409 | BSON key cannot contain code point U+0000 (at byte 2) | Key identifiers to be serialized to BSON cannot contain code point U+0000, since the key is stored as zero-terminated c-string | + +@liveexample{The following code shows how an `out_of_range` exception can be +caught.,out_of_range} + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref parse_error for exceptions indicating a parse error +@sa - @ref invalid_iterator for exceptions indicating errors with iterators +@sa - @ref type_error for exceptions indicating executing a member function with + a wrong type +@sa - @ref other_error for exceptions indicating other library errors + +@since version 3.0.0 +*/ +class out_of_range : public exception +{ + public: + static out_of_range create(int id_, const std::string& what_arg) + { + std::string w = exception::name("out_of_range", id_) + what_arg; + return out_of_range(id_, w.c_str()); + } + + private: + JSON_HEDLEY_NON_NULL(3) + out_of_range(int id_, const char* what_arg) : exception(id_, what_arg) {} +}; + +/*! +@brief exception indicating other library errors + +This exception is thrown in case of errors that cannot be classified with the +other exception types. + +Exceptions have ids 5xx. + +name / id | example message | description +------------------------------ | --------------- | ------------------------- +json.exception.other_error.501 | unsuccessful: {"op":"test","path":"/baz", "value":"bar"} | A JSON Patch operation 'test' failed. The unsuccessful operation is also printed. + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref parse_error for exceptions indicating a parse error +@sa - @ref invalid_iterator for exceptions indicating errors with iterators +@sa - @ref type_error for exceptions indicating executing a member function with + a wrong type +@sa - @ref out_of_range for exceptions indicating access out of the defined range + +@liveexample{The following code shows how an `other_error` exception can be +caught.,other_error} + +@since version 3.0.0 +*/ +class other_error : public exception +{ + public: + static other_error create(int id_, const std::string& what_arg) + { + std::string w = exception::name("other_error", id_) + what_arg; + return other_error(id_, w.c_str()); + } + + private: + JSON_HEDLEY_NON_NULL(3) + other_error(int id_, const char* what_arg) : exception(id_, what_arg) {} +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/hash.hpp b/external/json/include/nlohmann/detail/hash.hpp new file mode 100644 index 0000000..4094cc9 --- /dev/null +++ b/external/json/include/nlohmann/detail/hash.hpp @@ -0,0 +1,117 @@ +#pragma once + +#include // size_t, uint8_t +#include // hash + +namespace nlohmann +{ +namespace detail +{ + +// boost::hash_combine +inline std::size_t combine(std::size_t seed, std::size_t h) noexcept +{ + seed ^= h + 0x9e3779b9 + (seed << 6U) + (seed >> 2U); + return seed; +} + +/*! +@brief hash a JSON value + +The hash function tries to rely on std::hash where possible. Furthermore, the +type of the JSON value is taken into account to have different hash values for +null, 0, 0U, and false, etc. + +@tparam BasicJsonType basic_json specialization +@param j JSON value to hash +@return hash value of j +*/ +template +std::size_t hash(const BasicJsonType& j) +{ + using string_t = typename BasicJsonType::string_t; + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + + const auto type = static_cast(j.type()); + switch (j.type()) + { + case BasicJsonType::value_t::null: + case BasicJsonType::value_t::discarded: + { + return combine(type, 0); + } + + case BasicJsonType::value_t::object: + { + auto seed = combine(type, j.size()); + for (const auto& element : j.items()) + { + const auto h = std::hash {}(element.key()); + seed = combine(seed, h); + seed = combine(seed, hash(element.value())); + } + return seed; + } + + case BasicJsonType::value_t::array: + { + auto seed = combine(type, j.size()); + for (const auto& element : j) + { + seed = combine(seed, hash(element)); + } + return seed; + } + + case BasicJsonType::value_t::string: + { + const auto h = std::hash {}(j.template get_ref()); + return combine(type, h); + } + + case BasicJsonType::value_t::boolean: + { + const auto h = std::hash {}(j.template get()); + return combine(type, h); + } + + case BasicJsonType::value_t::number_integer: + { + const auto h = std::hash {}(j.template get()); + return combine(type, h); + } + + case nlohmann::detail::value_t::number_unsigned: + { + const auto h = std::hash {}(j.template get()); + return combine(type, h); + } + + case nlohmann::detail::value_t::number_float: + { + const auto h = std::hash {}(j.template get()); + return combine(type, h); + } + + case nlohmann::detail::value_t::binary: + { + auto seed = combine(type, j.get_binary().size()); + const auto h = std::hash {}(j.get_binary().has_subtype()); + seed = combine(seed, h); + seed = combine(seed, j.get_binary().subtype()); + for (const auto byte : j.get_binary()) + { + seed = combine(seed, std::hash {}(byte)); + } + return seed; + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } +} + +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/input/binary_reader.hpp b/external/json/include/nlohmann/detail/input/binary_reader.hpp new file mode 100644 index 0000000..4c94d1c --- /dev/null +++ b/external/json/include/nlohmann/detail/input/binary_reader.hpp @@ -0,0 +1,2459 @@ +#pragma once + +#include // generate_n +#include // array +#include // ldexp +#include // size_t +#include // uint8_t, uint16_t, uint32_t, uint64_t +#include // snprintf +#include // memcpy +#include // back_inserter +#include // numeric_limits +#include // char_traits, string +#include // make_pair, move + +#include +#include +#include +#include +#include +#include +#include + +namespace nlohmann +{ +namespace detail +{ + +/// how to treat CBOR tags +enum class cbor_tag_handler_t +{ + error, ///< throw a parse_error exception in case of a tag + ignore ///< ignore tags +}; + +/*! +@brief determine system byte order + +@return true if and only if system's byte order is little endian + +@note from https://stackoverflow.com/a/1001328/266378 +*/ +static inline bool little_endianess(int num = 1) noexcept +{ + return *reinterpret_cast(&num) == 1; +} + + +/////////////////// +// binary reader // +/////////////////// + +/*! +@brief deserialization of CBOR, MessagePack, and UBJSON values +*/ +template> +class binary_reader +{ + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using json_sax_t = SAX; + using char_type = typename InputAdapterType::char_type; + using char_int_type = typename std::char_traits::int_type; + + public: + /*! + @brief create a binary reader + + @param[in] adapter input adapter to read from + */ + explicit binary_reader(InputAdapterType&& adapter) : ia(std::move(adapter)) + { + (void)detail::is_sax_static_asserts {}; + } + + // make class move-only + binary_reader(const binary_reader&) = delete; + binary_reader(binary_reader&&) = default; + binary_reader& operator=(const binary_reader&) = delete; + binary_reader& operator=(binary_reader&&) = default; + ~binary_reader() = default; + + /*! + @param[in] format the binary format to parse + @param[in] sax_ a SAX event processor + @param[in] strict whether to expect the input to be consumed completed + @param[in] tag_handler how to treat CBOR tags + + @return + */ + JSON_HEDLEY_NON_NULL(3) + bool sax_parse(const input_format_t format, + json_sax_t* sax_, + const bool strict = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + sax = sax_; + bool result = false; + + switch (format) + { + case input_format_t::bson: + result = parse_bson_internal(); + break; + + case input_format_t::cbor: + result = parse_cbor_internal(true, tag_handler); + break; + + case input_format_t::msgpack: + result = parse_msgpack_internal(); + break; + + case input_format_t::ubjson: + result = parse_ubjson_internal(); + break; + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + + // strict mode: next byte must be EOF + if (result && strict) + { + if (format == input_format_t::ubjson) + { + get_ignore_noop(); + } + else + { + get(); + } + + if (JSON_HEDLEY_UNLIKELY(current != std::char_traits::eof())) + { + return sax->parse_error(chars_read, get_token_string(), + parse_error::create(110, chars_read, exception_message(format, "expected end of input; last byte: 0x" + get_token_string(), "value"))); + } + } + + return result; + } + + private: + ////////// + // BSON // + ////////// + + /*! + @brief Reads in a BSON-object and passes it to the SAX-parser. + @return whether a valid BSON-value was passed to the SAX parser + */ + bool parse_bson_internal() + { + std::int32_t document_size{}; + get_number(input_format_t::bson, document_size); + + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_list(/*is_array*/false))) + { + return false; + } + + return sax->end_object(); + } + + /*! + @brief Parses a C-style string from the BSON input. + @param[in, out] result A reference to the string variable where the read + string is to be stored. + @return `true` if the \x00-byte indicating the end of the string was + encountered before the EOF; false` indicates an unexpected EOF. + */ + bool get_bson_cstr(string_t& result) + { + auto out = std::back_inserter(result); + while (true) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::bson, "cstring"))) + { + return false; + } + if (current == 0x00) + { + return true; + } + *out++ = static_cast(current); + } + } + + /*! + @brief Parses a zero-terminated string of length @a len from the BSON + input. + @param[in] len The length (including the zero-byte at the end) of the + string to be read. + @param[in, out] result A reference to the string variable where the read + string is to be stored. + @tparam NumberType The type of the length @a len + @pre len >= 1 + @return `true` if the string was successfully parsed + */ + template + bool get_bson_string(const NumberType len, string_t& result) + { + if (JSON_HEDLEY_UNLIKELY(len < 1)) + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "string length must be at least 1, is " + std::to_string(len), "string"))); + } + + return get_string(input_format_t::bson, len - static_cast(1), result) && get() != std::char_traits::eof(); + } + + /*! + @brief Parses a byte array input of length @a len from the BSON input. + @param[in] len The length of the byte array to be read. + @param[in, out] result A reference to the binary variable where the read + array is to be stored. + @tparam NumberType The type of the length @a len + @pre len >= 0 + @return `true` if the byte array was successfully parsed + */ + template + bool get_bson_binary(const NumberType len, binary_t& result) + { + if (JSON_HEDLEY_UNLIKELY(len < 0)) + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "byte array length cannot be negative, is " + std::to_string(len), "binary"))); + } + + // All BSON binary values have a subtype + std::uint8_t subtype{}; + get_number(input_format_t::bson, subtype); + result.set_subtype(subtype); + + return get_binary(input_format_t::bson, len, result); + } + + /*! + @brief Read a BSON document element of the given @a element_type. + @param[in] element_type The BSON element type, c.f. http://bsonspec.org/spec.html + @param[in] element_type_parse_position The position in the input stream, + where the `element_type` was read. + @warning Not all BSON element types are supported yet. An unsupported + @a element_type will give rise to a parse_error.114: + Unsupported BSON record type 0x... + @return whether a valid BSON-object/array was passed to the SAX parser + */ + bool parse_bson_element_internal(const char_int_type element_type, + const std::size_t element_type_parse_position) + { + switch (element_type) + { + case 0x01: // double + { + double number{}; + return get_number(input_format_t::bson, number) && sax->number_float(static_cast(number), ""); + } + + case 0x02: // string + { + std::int32_t len{}; + string_t value; + return get_number(input_format_t::bson, len) && get_bson_string(len, value) && sax->string(value); + } + + case 0x03: // object + { + return parse_bson_internal(); + } + + case 0x04: // array + { + return parse_bson_array(); + } + + case 0x05: // binary + { + std::int32_t len{}; + binary_t value; + return get_number(input_format_t::bson, len) && get_bson_binary(len, value) && sax->binary(value); + } + + case 0x08: // boolean + { + return sax->boolean(get() != 0); + } + + case 0x0A: // null + { + return sax->null(); + } + + case 0x10: // int32 + { + std::int32_t value{}; + return get_number(input_format_t::bson, value) && sax->number_integer(value); + } + + case 0x12: // int64 + { + std::int64_t value{}; + return get_number(input_format_t::bson, value) && sax->number_integer(value); + } + + default: // anything else not supported (yet) + { + std::array cr{{}}; + (std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast(element_type)); + return sax->parse_error(element_type_parse_position, std::string(cr.data()), parse_error::create(114, element_type_parse_position, "Unsupported BSON record type 0x" + std::string(cr.data()))); + } + } + } + + /*! + @brief Read a BSON element list (as specified in the BSON-spec) + + The same binary layout is used for objects and arrays, hence it must be + indicated with the argument @a is_array which one is expected + (true --> array, false --> object). + + @param[in] is_array Determines if the element list being read is to be + treated as an object (@a is_array == false), or as an + array (@a is_array == true). + @return whether a valid BSON-object/array was passed to the SAX parser + */ + bool parse_bson_element_list(const bool is_array) + { + string_t key; + + while (auto element_type = get()) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::bson, "element list"))) + { + return false; + } + + const std::size_t element_type_parse_position = chars_read; + if (JSON_HEDLEY_UNLIKELY(!get_bson_cstr(key))) + { + return false; + } + + if (!is_array && !sax->key(key)) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_internal(element_type, element_type_parse_position))) + { + return false; + } + + // get_bson_cstr only appends + key.clear(); + } + + return true; + } + + /*! + @brief Reads an array from the BSON input and passes it to the SAX-parser. + @return whether a valid BSON-array was passed to the SAX parser + */ + bool parse_bson_array() + { + std::int32_t document_size{}; + get_number(input_format_t::bson, document_size); + + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_list(/*is_array*/true))) + { + return false; + } + + return sax->end_array(); + } + + ////////// + // CBOR // + ////////// + + /*! + @param[in] get_char whether a new character should be retrieved from the + input (true) or whether the last read character should + be considered instead (false) + @param[in] tag_handler how CBOR tags should be treated + + @return whether a valid CBOR value was passed to the SAX parser + */ + bool parse_cbor_internal(const bool get_char, + const cbor_tag_handler_t tag_handler) + { + switch (get_char ? get() : current) + { + // EOF + case std::char_traits::eof(): + return unexpect_eof(input_format_t::cbor, "value"); + + // Integer 0x00..0x17 (0..23) + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case 0x09: + case 0x0A: + case 0x0B: + case 0x0C: + case 0x0D: + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + return sax->number_unsigned(static_cast(current)); + + case 0x18: // Unsigned integer (one-byte uint8_t follows) + { + std::uint8_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); + } + + case 0x19: // Unsigned integer (two-byte uint16_t follows) + { + std::uint16_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); + } + + case 0x1A: // Unsigned integer (four-byte uint32_t follows) + { + std::uint32_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); + } + + case 0x1B: // Unsigned integer (eight-byte uint64_t follows) + { + std::uint64_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); + } + + // Negative integer -1-0x00..-1-0x17 (-1..-24) + case 0x20: + case 0x21: + case 0x22: + case 0x23: + case 0x24: + case 0x25: + case 0x26: + case 0x27: + case 0x28: + case 0x29: + case 0x2A: + case 0x2B: + case 0x2C: + case 0x2D: + case 0x2E: + case 0x2F: + case 0x30: + case 0x31: + case 0x32: + case 0x33: + case 0x34: + case 0x35: + case 0x36: + case 0x37: + return sax->number_integer(static_cast(0x20 - 1 - current)); + + case 0x38: // Negative integer (one-byte uint8_t follows) + { + std::uint8_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); + } + + case 0x39: // Negative integer -1-n (two-byte uint16_t follows) + { + std::uint16_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); + } + + case 0x3A: // Negative integer -1-n (four-byte uint32_t follows) + { + std::uint32_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); + } + + case 0x3B: // Negative integer -1-n (eight-byte uint64_t follows) + { + std::uint64_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) + - static_cast(number)); + } + + // Binary data (0x00..0x17 bytes follow) + case 0x40: + case 0x41: + case 0x42: + case 0x43: + case 0x44: + case 0x45: + case 0x46: + case 0x47: + case 0x48: + case 0x49: + case 0x4A: + case 0x4B: + case 0x4C: + case 0x4D: + case 0x4E: + case 0x4F: + case 0x50: + case 0x51: + case 0x52: + case 0x53: + case 0x54: + case 0x55: + case 0x56: + case 0x57: + case 0x58: // Binary data (one-byte uint8_t for n follows) + case 0x59: // Binary data (two-byte uint16_t for n follow) + case 0x5A: // Binary data (four-byte uint32_t for n follow) + case 0x5B: // Binary data (eight-byte uint64_t for n follow) + case 0x5F: // Binary data (indefinite length) + { + binary_t b; + return get_cbor_binary(b) && sax->binary(b); + } + + // UTF-8 string (0x00..0x17 bytes follow) + case 0x60: + case 0x61: + case 0x62: + case 0x63: + case 0x64: + case 0x65: + case 0x66: + case 0x67: + case 0x68: + case 0x69: + case 0x6A: + case 0x6B: + case 0x6C: + case 0x6D: + case 0x6E: + case 0x6F: + case 0x70: + case 0x71: + case 0x72: + case 0x73: + case 0x74: + case 0x75: + case 0x76: + case 0x77: + case 0x78: // UTF-8 string (one-byte uint8_t for n follows) + case 0x79: // UTF-8 string (two-byte uint16_t for n follow) + case 0x7A: // UTF-8 string (four-byte uint32_t for n follow) + case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow) + case 0x7F: // UTF-8 string (indefinite length) + { + string_t s; + return get_cbor_string(s) && sax->string(s); + } + + // array (0x00..0x17 data items follow) + case 0x80: + case 0x81: + case 0x82: + case 0x83: + case 0x84: + case 0x85: + case 0x86: + case 0x87: + case 0x88: + case 0x89: + case 0x8A: + case 0x8B: + case 0x8C: + case 0x8D: + case 0x8E: + case 0x8F: + case 0x90: + case 0x91: + case 0x92: + case 0x93: + case 0x94: + case 0x95: + case 0x96: + case 0x97: + return get_cbor_array(static_cast(static_cast(current) & 0x1Fu), tag_handler); + + case 0x98: // array (one-byte uint8_t for n follows) + { + std::uint8_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); + } + + case 0x99: // array (two-byte uint16_t for n follow) + { + std::uint16_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); + } + + case 0x9A: // array (four-byte uint32_t for n follow) + { + std::uint32_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); + } + + case 0x9B: // array (eight-byte uint64_t for n follow) + { + std::uint64_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); + } + + case 0x9F: // array (indefinite length) + return get_cbor_array(std::size_t(-1), tag_handler); + + // map (0x00..0x17 pairs of data items follow) + case 0xA0: + case 0xA1: + case 0xA2: + case 0xA3: + case 0xA4: + case 0xA5: + case 0xA6: + case 0xA7: + case 0xA8: + case 0xA9: + case 0xAA: + case 0xAB: + case 0xAC: + case 0xAD: + case 0xAE: + case 0xAF: + case 0xB0: + case 0xB1: + case 0xB2: + case 0xB3: + case 0xB4: + case 0xB5: + case 0xB6: + case 0xB7: + return get_cbor_object(static_cast(static_cast(current) & 0x1Fu), tag_handler); + + case 0xB8: // map (one-byte uint8_t for n follows) + { + std::uint8_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); + } + + case 0xB9: // map (two-byte uint16_t for n follow) + { + std::uint16_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); + } + + case 0xBA: // map (four-byte uint32_t for n follow) + { + std::uint32_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); + } + + case 0xBB: // map (eight-byte uint64_t for n follow) + { + std::uint64_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); + } + + case 0xBF: // map (indefinite length) + return get_cbor_object(std::size_t(-1), tag_handler); + + case 0xC6: // tagged item + case 0xC7: + case 0xC8: + case 0xC9: + case 0xCA: + case 0xCB: + case 0xCC: + case 0xCD: + case 0xCE: + case 0xCF: + case 0xD0: + case 0xD1: + case 0xD2: + case 0xD3: + case 0xD4: + case 0xD8: // tagged item (1 bytes follow) + case 0xD9: // tagged item (2 bytes follow) + case 0xDA: // tagged item (4 bytes follow) + case 0xDB: // tagged item (8 bytes follow) + { + switch (tag_handler) + { + case cbor_tag_handler_t::error: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value"))); + } + + case cbor_tag_handler_t::ignore: + { + switch (current) + { + case 0xD8: + { + std::uint8_t len{}; + get_number(input_format_t::cbor, len); + break; + } + case 0xD9: + { + std::uint16_t len{}; + get_number(input_format_t::cbor, len); + break; + } + case 0xDA: + { + std::uint32_t len{}; + get_number(input_format_t::cbor, len); + break; + } + case 0xDB: + { + std::uint64_t len{}; + get_number(input_format_t::cbor, len); + break; + } + default: + break; + } + return parse_cbor_internal(true, tag_handler); + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + } + + case 0xF4: // false + return sax->boolean(false); + + case 0xF5: // true + return sax->boolean(true); + + case 0xF6: // null + return sax->null(); + + case 0xF9: // Half-Precision Float (two-byte IEEE 754) + { + const auto byte1_raw = get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "number"))) + { + return false; + } + const auto byte2_raw = get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "number"))) + { + return false; + } + + const auto byte1 = static_cast(byte1_raw); + const auto byte2 = static_cast(byte2_raw); + + // code from RFC 7049, Appendix D, Figure 3: + // As half-precision floating-point numbers were only added + // to IEEE 754 in 2008, today's programming platforms often + // still only have limited support for them. It is very + // easy to include at least decoding support for them even + // without such support. An example of a small decoder for + // half-precision floating-point numbers in the C language + // is shown in Fig. 3. + const auto half = static_cast((byte1 << 8u) + byte2); + const double val = [&half] + { + const int exp = (half >> 10u) & 0x1Fu; + const unsigned int mant = half & 0x3FFu; + JSON_ASSERT(0 <= exp&& exp <= 32); + JSON_ASSERT(mant <= 1024); + switch (exp) + { + case 0: + return std::ldexp(mant, -24); + case 31: + return (mant == 0) + ? std::numeric_limits::infinity() + : std::numeric_limits::quiet_NaN(); + default: + return std::ldexp(mant + 1024, exp - 25); + } + }(); + return sax->number_float((half & 0x8000u) != 0 + ? static_cast(-val) + : static_cast(val), ""); + } + + case 0xFA: // Single-Precision Float (four-byte IEEE 754) + { + float number{}; + return get_number(input_format_t::cbor, number) && sax->number_float(static_cast(number), ""); + } + + case 0xFB: // Double-Precision Float (eight-byte IEEE 754) + { + double number{}; + return get_number(input_format_t::cbor, number) && sax->number_float(static_cast(number), ""); + } + + default: // anything else (0xFF is handled inside the other types) + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value"))); + } + } + } + + /*! + @brief reads a CBOR string + + This function first reads starting bytes to determine the expected + string length and then copies this number of bytes into a string. + Additionally, CBOR's strings with indefinite lengths are supported. + + @param[out] result created string + + @return whether string creation completed + */ + bool get_cbor_string(string_t& result) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "string"))) + { + return false; + } + + switch (current) + { + // UTF-8 string (0x00..0x17 bytes follow) + case 0x60: + case 0x61: + case 0x62: + case 0x63: + case 0x64: + case 0x65: + case 0x66: + case 0x67: + case 0x68: + case 0x69: + case 0x6A: + case 0x6B: + case 0x6C: + case 0x6D: + case 0x6E: + case 0x6F: + case 0x70: + case 0x71: + case 0x72: + case 0x73: + case 0x74: + case 0x75: + case 0x76: + case 0x77: + { + return get_string(input_format_t::cbor, static_cast(current) & 0x1Fu, result); + } + + case 0x78: // UTF-8 string (one-byte uint8_t for n follows) + { + std::uint8_t len{}; + return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); + } + + case 0x79: // UTF-8 string (two-byte uint16_t for n follow) + { + std::uint16_t len{}; + return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); + } + + case 0x7A: // UTF-8 string (four-byte uint32_t for n follow) + { + std::uint32_t len{}; + return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); + } + + case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow) + { + std::uint64_t len{}; + return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); + } + + case 0x7F: // UTF-8 string (indefinite length) + { + while (get() != 0xFF) + { + string_t chunk; + if (!get_cbor_string(chunk)) + { + return false; + } + result.append(chunk); + } + return true; + } + + default: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x60-0x7B) or indefinite string type (0x7F); last byte: 0x" + last_token, "string"))); + } + } + } + + /*! + @brief reads a CBOR byte array + + This function first reads starting bytes to determine the expected + byte array length and then copies this number of bytes into the byte array. + Additionally, CBOR's byte arrays with indefinite lengths are supported. + + @param[out] result created byte array + + @return whether byte array creation completed + */ + bool get_cbor_binary(binary_t& result) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "binary"))) + { + return false; + } + + switch (current) + { + // Binary data (0x00..0x17 bytes follow) + case 0x40: + case 0x41: + case 0x42: + case 0x43: + case 0x44: + case 0x45: + case 0x46: + case 0x47: + case 0x48: + case 0x49: + case 0x4A: + case 0x4B: + case 0x4C: + case 0x4D: + case 0x4E: + case 0x4F: + case 0x50: + case 0x51: + case 0x52: + case 0x53: + case 0x54: + case 0x55: + case 0x56: + case 0x57: + { + return get_binary(input_format_t::cbor, static_cast(current) & 0x1Fu, result); + } + + case 0x58: // Binary data (one-byte uint8_t for n follows) + { + std::uint8_t len{}; + return get_number(input_format_t::cbor, len) && + get_binary(input_format_t::cbor, len, result); + } + + case 0x59: // Binary data (two-byte uint16_t for n follow) + { + std::uint16_t len{}; + return get_number(input_format_t::cbor, len) && + get_binary(input_format_t::cbor, len, result); + } + + case 0x5A: // Binary data (four-byte uint32_t for n follow) + { + std::uint32_t len{}; + return get_number(input_format_t::cbor, len) && + get_binary(input_format_t::cbor, len, result); + } + + case 0x5B: // Binary data (eight-byte uint64_t for n follow) + { + std::uint64_t len{}; + return get_number(input_format_t::cbor, len) && + get_binary(input_format_t::cbor, len, result); + } + + case 0x5F: // Binary data (indefinite length) + { + while (get() != 0xFF) + { + binary_t chunk; + if (!get_cbor_binary(chunk)) + { + return false; + } + result.insert(result.end(), chunk.begin(), chunk.end()); + } + return true; + } + + default: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x40-0x5B) or indefinite binary array type (0x5F); last byte: 0x" + last_token, "binary"))); + } + } + } + + /*! + @param[in] len the length of the array or std::size_t(-1) for an + array of indefinite size + @param[in] tag_handler how CBOR tags should be treated + @return whether array creation completed + */ + bool get_cbor_array(const std::size_t len, + const cbor_tag_handler_t tag_handler) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(len))) + { + return false; + } + + if (len != std::size_t(-1)) + { + for (std::size_t i = 0; i < len; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) + { + return false; + } + } + } + else + { + while (get() != 0xFF) + { + if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(false, tag_handler))) + { + return false; + } + } + } + + return sax->end_array(); + } + + /*! + @param[in] len the length of the object or std::size_t(-1) for an + object of indefinite size + @param[in] tag_handler how CBOR tags should be treated + @return whether object creation completed + */ + bool get_cbor_object(const std::size_t len, + const cbor_tag_handler_t tag_handler) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(len))) + { + return false; + } + + string_t key; + if (len != std::size_t(-1)) + { + for (std::size_t i = 0; i < len; ++i) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!get_cbor_string(key) || !sax->key(key))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) + { + return false; + } + key.clear(); + } + } + else + { + while (get() != 0xFF) + { + if (JSON_HEDLEY_UNLIKELY(!get_cbor_string(key) || !sax->key(key))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) + { + return false; + } + key.clear(); + } + } + + return sax->end_object(); + } + + ///////////// + // MsgPack // + ///////////// + + /*! + @return whether a valid MessagePack value was passed to the SAX parser + */ + bool parse_msgpack_internal() + { + switch (get()) + { + // EOF + case std::char_traits::eof(): + return unexpect_eof(input_format_t::msgpack, "value"); + + // positive fixint + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case 0x09: + case 0x0A: + case 0x0B: + case 0x0C: + case 0x0D: + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case 0x20: + case 0x21: + case 0x22: + case 0x23: + case 0x24: + case 0x25: + case 0x26: + case 0x27: + case 0x28: + case 0x29: + case 0x2A: + case 0x2B: + case 0x2C: + case 0x2D: + case 0x2E: + case 0x2F: + case 0x30: + case 0x31: + case 0x32: + case 0x33: + case 0x34: + case 0x35: + case 0x36: + case 0x37: + case 0x38: + case 0x39: + case 0x3A: + case 0x3B: + case 0x3C: + case 0x3D: + case 0x3E: + case 0x3F: + case 0x40: + case 0x41: + case 0x42: + case 0x43: + case 0x44: + case 0x45: + case 0x46: + case 0x47: + case 0x48: + case 0x49: + case 0x4A: + case 0x4B: + case 0x4C: + case 0x4D: + case 0x4E: + case 0x4F: + case 0x50: + case 0x51: + case 0x52: + case 0x53: + case 0x54: + case 0x55: + case 0x56: + case 0x57: + case 0x58: + case 0x59: + case 0x5A: + case 0x5B: + case 0x5C: + case 0x5D: + case 0x5E: + case 0x5F: + case 0x60: + case 0x61: + case 0x62: + case 0x63: + case 0x64: + case 0x65: + case 0x66: + case 0x67: + case 0x68: + case 0x69: + case 0x6A: + case 0x6B: + case 0x6C: + case 0x6D: + case 0x6E: + case 0x6F: + case 0x70: + case 0x71: + case 0x72: + case 0x73: + case 0x74: + case 0x75: + case 0x76: + case 0x77: + case 0x78: + case 0x79: + case 0x7A: + case 0x7B: + case 0x7C: + case 0x7D: + case 0x7E: + case 0x7F: + return sax->number_unsigned(static_cast(current)); + + // fixmap + case 0x80: + case 0x81: + case 0x82: + case 0x83: + case 0x84: + case 0x85: + case 0x86: + case 0x87: + case 0x88: + case 0x89: + case 0x8A: + case 0x8B: + case 0x8C: + case 0x8D: + case 0x8E: + case 0x8F: + return get_msgpack_object(static_cast(static_cast(current) & 0x0Fu)); + + // fixarray + case 0x90: + case 0x91: + case 0x92: + case 0x93: + case 0x94: + case 0x95: + case 0x96: + case 0x97: + case 0x98: + case 0x99: + case 0x9A: + case 0x9B: + case 0x9C: + case 0x9D: + case 0x9E: + case 0x9F: + return get_msgpack_array(static_cast(static_cast(current) & 0x0Fu)); + + // fixstr + case 0xA0: + case 0xA1: + case 0xA2: + case 0xA3: + case 0xA4: + case 0xA5: + case 0xA6: + case 0xA7: + case 0xA8: + case 0xA9: + case 0xAA: + case 0xAB: + case 0xAC: + case 0xAD: + case 0xAE: + case 0xAF: + case 0xB0: + case 0xB1: + case 0xB2: + case 0xB3: + case 0xB4: + case 0xB5: + case 0xB6: + case 0xB7: + case 0xB8: + case 0xB9: + case 0xBA: + case 0xBB: + case 0xBC: + case 0xBD: + case 0xBE: + case 0xBF: + case 0xD9: // str 8 + case 0xDA: // str 16 + case 0xDB: // str 32 + { + string_t s; + return get_msgpack_string(s) && sax->string(s); + } + + case 0xC0: // nil + return sax->null(); + + case 0xC2: // false + return sax->boolean(false); + + case 0xC3: // true + return sax->boolean(true); + + case 0xC4: // bin 8 + case 0xC5: // bin 16 + case 0xC6: // bin 32 + case 0xC7: // ext 8 + case 0xC8: // ext 16 + case 0xC9: // ext 32 + case 0xD4: // fixext 1 + case 0xD5: // fixext 2 + case 0xD6: // fixext 4 + case 0xD7: // fixext 8 + case 0xD8: // fixext 16 + { + binary_t b; + return get_msgpack_binary(b) && sax->binary(b); + } + + case 0xCA: // float 32 + { + float number{}; + return get_number(input_format_t::msgpack, number) && sax->number_float(static_cast(number), ""); + } + + case 0xCB: // float 64 + { + double number{}; + return get_number(input_format_t::msgpack, number) && sax->number_float(static_cast(number), ""); + } + + case 0xCC: // uint 8 + { + std::uint8_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); + } + + case 0xCD: // uint 16 + { + std::uint16_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); + } + + case 0xCE: // uint 32 + { + std::uint32_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); + } + + case 0xCF: // uint 64 + { + std::uint64_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); + } + + case 0xD0: // int 8 + { + std::int8_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_integer(number); + } + + case 0xD1: // int 16 + { + std::int16_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_integer(number); + } + + case 0xD2: // int 32 + { + std::int32_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_integer(number); + } + + case 0xD3: // int 64 + { + std::int64_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_integer(number); + } + + case 0xDC: // array 16 + { + std::uint16_t len{}; + return get_number(input_format_t::msgpack, len) && get_msgpack_array(static_cast(len)); + } + + case 0xDD: // array 32 + { + std::uint32_t len{}; + return get_number(input_format_t::msgpack, len) && get_msgpack_array(static_cast(len)); + } + + case 0xDE: // map 16 + { + std::uint16_t len{}; + return get_number(input_format_t::msgpack, len) && get_msgpack_object(static_cast(len)); + } + + case 0xDF: // map 32 + { + std::uint32_t len{}; + return get_number(input_format_t::msgpack, len) && get_msgpack_object(static_cast(len)); + } + + // negative fixint + case 0xE0: + case 0xE1: + case 0xE2: + case 0xE3: + case 0xE4: + case 0xE5: + case 0xE6: + case 0xE7: + case 0xE8: + case 0xE9: + case 0xEA: + case 0xEB: + case 0xEC: + case 0xED: + case 0xEE: + case 0xEF: + case 0xF0: + case 0xF1: + case 0xF2: + case 0xF3: + case 0xF4: + case 0xF5: + case 0xF6: + case 0xF7: + case 0xF8: + case 0xF9: + case 0xFA: + case 0xFB: + case 0xFC: + case 0xFD: + case 0xFE: + case 0xFF: + return sax->number_integer(static_cast(current)); + + default: // anything else + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::msgpack, "invalid byte: 0x" + last_token, "value"))); + } + } + } + + /*! + @brief reads a MessagePack string + + This function first reads starting bytes to determine the expected + string length and then copies this number of bytes into a string. + + @param[out] result created string + + @return whether string creation completed + */ + bool get_msgpack_string(string_t& result) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::msgpack, "string"))) + { + return false; + } + + switch (current) + { + // fixstr + case 0xA0: + case 0xA1: + case 0xA2: + case 0xA3: + case 0xA4: + case 0xA5: + case 0xA6: + case 0xA7: + case 0xA8: + case 0xA9: + case 0xAA: + case 0xAB: + case 0xAC: + case 0xAD: + case 0xAE: + case 0xAF: + case 0xB0: + case 0xB1: + case 0xB2: + case 0xB3: + case 0xB4: + case 0xB5: + case 0xB6: + case 0xB7: + case 0xB8: + case 0xB9: + case 0xBA: + case 0xBB: + case 0xBC: + case 0xBD: + case 0xBE: + case 0xBF: + { + return get_string(input_format_t::msgpack, static_cast(current) & 0x1Fu, result); + } + + case 0xD9: // str 8 + { + std::uint8_t len{}; + return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); + } + + case 0xDA: // str 16 + { + std::uint16_t len{}; + return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); + } + + case 0xDB: // str 32 + { + std::uint32_t len{}; + return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); + } + + default: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::msgpack, "expected length specification (0xA0-0xBF, 0xD9-0xDB); last byte: 0x" + last_token, "string"))); + } + } + } + + /*! + @brief reads a MessagePack byte array + + This function first reads starting bytes to determine the expected + byte array length and then copies this number of bytes into a byte array. + + @param[out] result created byte array + + @return whether byte array creation completed + */ + bool get_msgpack_binary(binary_t& result) + { + // helper function to set the subtype + auto assign_and_return_true = [&result](std::int8_t subtype) + { + result.set_subtype(static_cast(subtype)); + return true; + }; + + switch (current) + { + case 0xC4: // bin 8 + { + std::uint8_t len{}; + return get_number(input_format_t::msgpack, len) && + get_binary(input_format_t::msgpack, len, result); + } + + case 0xC5: // bin 16 + { + std::uint16_t len{}; + return get_number(input_format_t::msgpack, len) && + get_binary(input_format_t::msgpack, len, result); + } + + case 0xC6: // bin 32 + { + std::uint32_t len{}; + return get_number(input_format_t::msgpack, len) && + get_binary(input_format_t::msgpack, len, result); + } + + case 0xC7: // ext 8 + { + std::uint8_t len{}; + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, len) && + get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, len, result) && + assign_and_return_true(subtype); + } + + case 0xC8: // ext 16 + { + std::uint16_t len{}; + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, len) && + get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, len, result) && + assign_and_return_true(subtype); + } + + case 0xC9: // ext 32 + { + std::uint32_t len{}; + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, len) && + get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, len, result) && + assign_and_return_true(subtype); + } + + case 0xD4: // fixext 1 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 1, result) && + assign_and_return_true(subtype); + } + + case 0xD5: // fixext 2 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 2, result) && + assign_and_return_true(subtype); + } + + case 0xD6: // fixext 4 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 4, result) && + assign_and_return_true(subtype); + } + + case 0xD7: // fixext 8 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 8, result) && + assign_and_return_true(subtype); + } + + case 0xD8: // fixext 16 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 16, result) && + assign_and_return_true(subtype); + } + + default: // LCOV_EXCL_LINE + return false; // LCOV_EXCL_LINE + } + } + + /*! + @param[in] len the length of the array + @return whether array creation completed + */ + bool get_msgpack_array(const std::size_t len) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(len))) + { + return false; + } + + for (std::size_t i = 0; i < len; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!parse_msgpack_internal())) + { + return false; + } + } + + return sax->end_array(); + } + + /*! + @param[in] len the length of the object + @return whether object creation completed + */ + bool get_msgpack_object(const std::size_t len) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(len))) + { + return false; + } + + string_t key; + for (std::size_t i = 0; i < len; ++i) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!get_msgpack_string(key) || !sax->key(key))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_msgpack_internal())) + { + return false; + } + key.clear(); + } + + return sax->end_object(); + } + + //////////// + // UBJSON // + //////////// + + /*! + @param[in] get_char whether a new character should be retrieved from the + input (true, default) or whether the last read + character should be considered instead + + @return whether a valid UBJSON value was passed to the SAX parser + */ + bool parse_ubjson_internal(const bool get_char = true) + { + return get_ubjson_value(get_char ? get_ignore_noop() : current); + } + + /*! + @brief reads a UBJSON string + + This function is either called after reading the 'S' byte explicitly + indicating a string, or in case of an object key where the 'S' byte can be + left out. + + @param[out] result created string + @param[in] get_char whether a new character should be retrieved from the + input (true, default) or whether the last read + character should be considered instead + + @return whether string creation completed + */ + bool get_ubjson_string(string_t& result, const bool get_char = true) + { + if (get_char) + { + get(); // TODO(niels): may we ignore N here? + } + + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "value"))) + { + return false; + } + + switch (current) + { + case 'U': + { + std::uint8_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + case 'i': + { + std::int8_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + case 'I': + { + std::int16_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + case 'l': + { + std::int32_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + case 'L': + { + std::int64_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + default: + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L); last byte: 0x" + last_token, "string"))); + } + } + + /*! + @param[out] result determined size + @return whether size determination completed + */ + bool get_ubjson_size_value(std::size_t& result) + { + switch (get_ignore_noop()) + { + case 'U': + { + std::uint8_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + case 'i': + { + std::int8_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + case 'I': + { + std::int16_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + case 'l': + { + std::int32_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + case 'L': + { + std::int64_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + default: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L) after '#'; last byte: 0x" + last_token, "size"))); + } + } + } + + /*! + @brief determine the type and size for a container + + In the optimized UBJSON format, a type and a size can be provided to allow + for a more compact representation. + + @param[out] result pair of the size and the type + + @return whether pair creation completed + */ + bool get_ubjson_size_type(std::pair& result) + { + result.first = string_t::npos; // size + result.second = 0; // type + + get_ignore_noop(); + + if (current == '$') + { + result.second = get(); // must not ignore 'N', because 'N' maybe the type + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "type"))) + { + return false; + } + + get_ignore_noop(); + if (JSON_HEDLEY_UNLIKELY(current != '#')) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "value"))) + { + return false; + } + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "expected '#' after type information; last byte: 0x" + last_token, "size"))); + } + + return get_ubjson_size_value(result.first); + } + + if (current == '#') + { + return get_ubjson_size_value(result.first); + } + + return true; + } + + /*! + @param prefix the previously read or set type prefix + @return whether value creation completed + */ + bool get_ubjson_value(const char_int_type prefix) + { + switch (prefix) + { + case std::char_traits::eof(): // EOF + return unexpect_eof(input_format_t::ubjson, "value"); + + case 'T': // true + return sax->boolean(true); + case 'F': // false + return sax->boolean(false); + + case 'Z': // null + return sax->null(); + + case 'U': + { + std::uint8_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_unsigned(number); + } + + case 'i': + { + std::int8_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_integer(number); + } + + case 'I': + { + std::int16_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_integer(number); + } + + case 'l': + { + std::int32_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_integer(number); + } + + case 'L': + { + std::int64_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_integer(number); + } + + case 'd': + { + float number{}; + return get_number(input_format_t::ubjson, number) && sax->number_float(static_cast(number), ""); + } + + case 'D': + { + double number{}; + return get_number(input_format_t::ubjson, number) && sax->number_float(static_cast(number), ""); + } + + case 'H': + { + return get_ubjson_high_precision_number(); + } + + case 'C': // char + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "char"))) + { + return false; + } + if (JSON_HEDLEY_UNLIKELY(current > 127)) + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "byte after 'C' must be in range 0x00..0x7F; last byte: 0x" + last_token, "char"))); + } + string_t s(1, static_cast(current)); + return sax->string(s); + } + + case 'S': // string + { + string_t s; + return get_ubjson_string(s) && sax->string(s); + } + + case '[': // array + return get_ubjson_array(); + + case '{': // object + return get_ubjson_object(); + + default: // anything else + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "invalid byte: 0x" + last_token, "value"))); + } + } + } + + /*! + @return whether array creation completed + */ + bool get_ubjson_array() + { + std::pair size_and_type; + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_size_type(size_and_type))) + { + return false; + } + + if (size_and_type.first != string_t::npos) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(size_and_type.first))) + { + return false; + } + + if (size_and_type.second != 0) + { + if (size_and_type.second != 'N') + { + for (std::size_t i = 0; i < size_and_type.first; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_value(size_and_type.second))) + { + return false; + } + } + } + } + else + { + for (std::size_t i = 0; i < size_and_type.first; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) + { + return false; + } + } + } + } + else + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) + { + return false; + } + + while (current != ']') + { + if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal(false))) + { + return false; + } + get_ignore_noop(); + } + } + + return sax->end_array(); + } + + /*! + @return whether object creation completed + */ + bool get_ubjson_object() + { + std::pair size_and_type; + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_size_type(size_and_type))) + { + return false; + } + + string_t key; + if (size_and_type.first != string_t::npos) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(size_and_type.first))) + { + return false; + } + + if (size_and_type.second != 0) + { + for (std::size_t i = 0; i < size_and_type.first; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key) || !sax->key(key))) + { + return false; + } + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_value(size_and_type.second))) + { + return false; + } + key.clear(); + } + } + else + { + for (std::size_t i = 0; i < size_and_type.first; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key) || !sax->key(key))) + { + return false; + } + if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) + { + return false; + } + key.clear(); + } + } + } + else + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) + { + return false; + } + + while (current != '}') + { + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key, false) || !sax->key(key))) + { + return false; + } + if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) + { + return false; + } + get_ignore_noop(); + key.clear(); + } + } + + return sax->end_object(); + } + + // Note, no reader for UBJSON binary types is implemented because they do + // not exist + + bool get_ubjson_high_precision_number() + { + // get size of following number string + std::size_t size{}; + auto res = get_ubjson_size_value(size); + if (JSON_HEDLEY_UNLIKELY(!res)) + { + return res; + } + + // get number string + std::vector number_vector; + for (std::size_t i = 0; i < size; ++i) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "number"))) + { + return false; + } + number_vector.push_back(static_cast(current)); + } + + // parse number string + auto number_ia = detail::input_adapter(std::forward(number_vector)); + auto number_lexer = detail::lexer(std::move(number_ia), false); + const auto result_number = number_lexer.scan(); + const auto number_string = number_lexer.get_token_string(); + const auto result_remainder = number_lexer.scan(); + + using token_type = typename detail::lexer_base::token_type; + + if (JSON_HEDLEY_UNLIKELY(result_remainder != token_type::end_of_input)) + { + return sax->parse_error(chars_read, number_string, parse_error::create(115, chars_read, exception_message(input_format_t::ubjson, "invalid number text: " + number_lexer.get_token_string(), "high-precision number"))); + } + + switch (result_number) + { + case token_type::value_integer: + return sax->number_integer(number_lexer.get_number_integer()); + case token_type::value_unsigned: + return sax->number_unsigned(number_lexer.get_number_unsigned()); + case token_type::value_float: + return sax->number_float(number_lexer.get_number_float(), std::move(number_string)); + default: + return sax->parse_error(chars_read, number_string, parse_error::create(115, chars_read, exception_message(input_format_t::ubjson, "invalid number text: " + number_lexer.get_token_string(), "high-precision number"))); + } + } + + /////////////////////// + // Utility functions // + /////////////////////// + + /*! + @brief get next character from the input + + This function provides the interface to the used input adapter. It does + not throw in case the input reached EOF, but returns a -'ve valued + `std::char_traits::eof()` in that case. + + @return character read from the input + */ + char_int_type get() + { + ++chars_read; + return current = ia.get_character(); + } + + /*! + @return character read from the input after ignoring all 'N' entries + */ + char_int_type get_ignore_noop() + { + do + { + get(); + } + while (current == 'N'); + + return current; + } + + /* + @brief read a number from the input + + @tparam NumberType the type of the number + @param[in] format the current format (for diagnostics) + @param[out] result number of type @a NumberType + + @return whether conversion completed + + @note This function needs to respect the system's endianess, because + bytes in CBOR, MessagePack, and UBJSON are stored in network order + (big endian) and therefore need reordering on little endian systems. + */ + template + bool get_number(const input_format_t format, NumberType& result) + { + // step 1: read input into array with system's byte order + std::array vec; + for (std::size_t i = 0; i < sizeof(NumberType); ++i) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "number"))) + { + return false; + } + + // reverse byte order prior to conversion if necessary + if (is_little_endian != InputIsLittleEndian) + { + vec[sizeof(NumberType) - i - 1] = static_cast(current); + } + else + { + vec[i] = static_cast(current); // LCOV_EXCL_LINE + } + } + + // step 2: convert array into number of type T and return + std::memcpy(&result, vec.data(), sizeof(NumberType)); + return true; + } + + /*! + @brief create a string by reading characters from the input + + @tparam NumberType the type of the number + @param[in] format the current format (for diagnostics) + @param[in] len number of characters to read + @param[out] result string created by reading @a len bytes + + @return whether string creation completed + + @note We can not reserve @a len bytes for the result, because @a len + may be too large. Usually, @ref unexpect_eof() detects the end of + the input before we run out of string memory. + */ + template + bool get_string(const input_format_t format, + const NumberType len, + string_t& result) + { + bool success = true; + for (NumberType i = 0; i < len; i++) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "string"))) + { + success = false; + break; + } + result.push_back(static_cast(current)); + }; + return success; + } + + /*! + @brief create a byte array by reading bytes from the input + + @tparam NumberType the type of the number + @param[in] format the current format (for diagnostics) + @param[in] len number of bytes to read + @param[out] result byte array created by reading @a len bytes + + @return whether byte array creation completed + + @note We can not reserve @a len bytes for the result, because @a len + may be too large. Usually, @ref unexpect_eof() detects the end of + the input before we run out of memory. + */ + template + bool get_binary(const input_format_t format, + const NumberType len, + binary_t& result) + { + bool success = true; + for (NumberType i = 0; i < len; i++) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "binary"))) + { + success = false; + break; + } + result.push_back(static_cast(current)); + } + return success; + } + + /*! + @param[in] format the current format (for diagnostics) + @param[in] context further context information (for diagnostics) + @return whether the last read character is not EOF + */ + JSON_HEDLEY_NON_NULL(3) + bool unexpect_eof(const input_format_t format, const char* context) const + { + if (JSON_HEDLEY_UNLIKELY(current == std::char_traits::eof())) + { + return sax->parse_error(chars_read, "", + parse_error::create(110, chars_read, exception_message(format, "unexpected end of input", context))); + } + return true; + } + + /*! + @return a string representation of the last read byte + */ + std::string get_token_string() const + { + std::array cr{{}}; + (std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast(current)); + return std::string{cr.data()}; + } + + /*! + @param[in] format the current format + @param[in] detail a detailed error message + @param[in] context further context information + @return a message string to use in the parse_error exceptions + */ + std::string exception_message(const input_format_t format, + const std::string& detail, + const std::string& context) const + { + std::string error_msg = "syntax error while parsing "; + + switch (format) + { + case input_format_t::cbor: + error_msg += "CBOR"; + break; + + case input_format_t::msgpack: + error_msg += "MessagePack"; + break; + + case input_format_t::ubjson: + error_msg += "UBJSON"; + break; + + case input_format_t::bson: + error_msg += "BSON"; + break; + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + + return error_msg + " " + context + ": " + detail; + } + + private: + /// input adapter + InputAdapterType ia; + + /// the current character + char_int_type current = std::char_traits::eof(); + + /// the number of characters read + std::size_t chars_read = 0; + + /// whether we can assume little endianess + const bool is_little_endian = little_endianess(); + + /// the SAX parser + json_sax_t* sax = nullptr; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/input/input_adapters.hpp b/external/json/include/nlohmann/detail/input/input_adapters.hpp new file mode 100644 index 0000000..63921ca --- /dev/null +++ b/external/json/include/nlohmann/detail/input/input_adapters.hpp @@ -0,0 +1,454 @@ +#pragma once + +#include // array +#include // size_t +#include //FILE * +#include // strlen +#include // istream +#include // begin, end, iterator_traits, random_access_iterator_tag, distance, next +#include // shared_ptr, make_shared, addressof +#include // accumulate +#include // string, char_traits +#include // enable_if, is_base_of, is_pointer, is_integral, remove_pointer +#include // pair, declval + +#include +#include + +namespace nlohmann +{ +namespace detail +{ +/// the supported input formats +enum class input_format_t { json, cbor, msgpack, ubjson, bson }; + +//////////////////// +// input adapters // +//////////////////// + +/*! +Input adapter for stdio file access. This adapter read only 1 byte and do not use any + buffer. This adapter is a very low level adapter. +*/ +class file_input_adapter +{ + public: + using char_type = char; + + JSON_HEDLEY_NON_NULL(2) + explicit file_input_adapter(std::FILE* f) noexcept + : m_file(f) + {} + + // make class move-only + file_input_adapter(const file_input_adapter&) = delete; + file_input_adapter(file_input_adapter&&) = default; + file_input_adapter& operator=(const file_input_adapter&) = delete; + file_input_adapter& operator=(file_input_adapter&&) = delete; + + std::char_traits::int_type get_character() noexcept + { + return std::fgetc(m_file); + } + + private: + /// the file pointer to read from + std::FILE* m_file; +}; + + +/*! +Input adapter for a (caching) istream. Ignores a UFT Byte Order Mark at +beginning of input. Does not support changing the underlying std::streambuf +in mid-input. Maintains underlying std::istream and std::streambuf to support +subsequent use of standard std::istream operations to process any input +characters following those used in parsing the JSON input. Clears the +std::istream flags; any input errors (e.g., EOF) will be detected by the first +subsequent call for input from the std::istream. +*/ +class input_stream_adapter +{ + public: + using char_type = char; + + ~input_stream_adapter() + { + // clear stream flags; we use underlying streambuf I/O, do not + // maintain ifstream flags, except eof + if (is != nullptr) + { + is->clear(is->rdstate() & std::ios::eofbit); + } + } + + explicit input_stream_adapter(std::istream& i) + : is(&i), sb(i.rdbuf()) + {} + + // delete because of pointer members + input_stream_adapter(const input_stream_adapter&) = delete; + input_stream_adapter& operator=(input_stream_adapter&) = delete; + input_stream_adapter& operator=(input_stream_adapter&& rhs) = delete; + + input_stream_adapter(input_stream_adapter&& rhs) noexcept : is(rhs.is), sb(rhs.sb) + { + rhs.is = nullptr; + rhs.sb = nullptr; + } + + // std::istream/std::streambuf use std::char_traits::to_int_type, to + // ensure that std::char_traits::eof() and the character 0xFF do not + // end up as the same value, eg. 0xFFFFFFFF. + std::char_traits::int_type get_character() + { + auto res = sb->sbumpc(); + // set eof manually, as we don't use the istream interface. + if (JSON_HEDLEY_UNLIKELY(res == EOF)) + { + is->clear(is->rdstate() | std::ios::eofbit); + } + return res; + } + + private: + /// the associated input stream + std::istream* is = nullptr; + std::streambuf* sb = nullptr; +}; + +// General-purpose iterator-based adapter. It might not be as fast as +// theoretically possible for some containers, but it is extremely versatile. +template +class iterator_input_adapter +{ + public: + using char_type = typename std::iterator_traits::value_type; + + iterator_input_adapter(IteratorType first, IteratorType last) + : current(std::move(first)), end(std::move(last)) {} + + typename std::char_traits::int_type get_character() + { + if (JSON_HEDLEY_LIKELY(current != end)) + { + auto result = std::char_traits::to_int_type(*current); + std::advance(current, 1); + return result; + } + else + { + return std::char_traits::eof(); + } + } + + private: + IteratorType current; + IteratorType end; + + template + friend struct wide_string_input_helper; + + bool empty() const + { + return current == end; + } + +}; + + +template +struct wide_string_input_helper; + +template +struct wide_string_input_helper +{ + // UTF-32 + static void fill_buffer(BaseInputAdapter& input, + std::array::int_type, 4>& utf8_bytes, + size_t& utf8_bytes_index, + size_t& utf8_bytes_filled) + { + utf8_bytes_index = 0; + + if (JSON_HEDLEY_UNLIKELY(input.empty())) + { + utf8_bytes[0] = std::char_traits::eof(); + utf8_bytes_filled = 1; + } + else + { + // get the current character + const auto wc = input.get_character(); + + // UTF-32 to UTF-8 encoding + if (wc < 0x80) + { + utf8_bytes[0] = static_cast::int_type>(wc); + utf8_bytes_filled = 1; + } + else if (wc <= 0x7FF) + { + utf8_bytes[0] = static_cast::int_type>(0xC0u | ((static_cast(wc) >> 6u) & 0x1Fu)); + utf8_bytes[1] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 2; + } + else if (wc <= 0xFFFF) + { + utf8_bytes[0] = static_cast::int_type>(0xE0u | ((static_cast(wc) >> 12u) & 0x0Fu)); + utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); + utf8_bytes[2] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 3; + } + else if (wc <= 0x10FFFF) + { + utf8_bytes[0] = static_cast::int_type>(0xF0u | ((static_cast(wc) >> 18u) & 0x07u)); + utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 12u) & 0x3Fu)); + utf8_bytes[2] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); + utf8_bytes[3] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 4; + } + else + { + // unknown character + utf8_bytes[0] = static_cast::int_type>(wc); + utf8_bytes_filled = 1; + } + } + } +}; + +template +struct wide_string_input_helper +{ + // UTF-16 + static void fill_buffer(BaseInputAdapter& input, + std::array::int_type, 4>& utf8_bytes, + size_t& utf8_bytes_index, + size_t& utf8_bytes_filled) + { + utf8_bytes_index = 0; + + if (JSON_HEDLEY_UNLIKELY(input.empty())) + { + utf8_bytes[0] = std::char_traits::eof(); + utf8_bytes_filled = 1; + } + else + { + // get the current character + const auto wc = input.get_character(); + + // UTF-16 to UTF-8 encoding + if (wc < 0x80) + { + utf8_bytes[0] = static_cast::int_type>(wc); + utf8_bytes_filled = 1; + } + else if (wc <= 0x7FF) + { + utf8_bytes[0] = static_cast::int_type>(0xC0u | ((static_cast(wc) >> 6u))); + utf8_bytes[1] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 2; + } + else if (0xD800 > wc || wc >= 0xE000) + { + utf8_bytes[0] = static_cast::int_type>(0xE0u | ((static_cast(wc) >> 12u))); + utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); + utf8_bytes[2] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 3; + } + else + { + if (JSON_HEDLEY_UNLIKELY(!input.empty())) + { + const auto wc2 = static_cast(input.get_character()); + const auto charcode = 0x10000u + (((static_cast(wc) & 0x3FFu) << 10u) | (wc2 & 0x3FFu)); + utf8_bytes[0] = static_cast::int_type>(0xF0u | (charcode >> 18u)); + utf8_bytes[1] = static_cast::int_type>(0x80u | ((charcode >> 12u) & 0x3Fu)); + utf8_bytes[2] = static_cast::int_type>(0x80u | ((charcode >> 6u) & 0x3Fu)); + utf8_bytes[3] = static_cast::int_type>(0x80u | (charcode & 0x3Fu)); + utf8_bytes_filled = 4; + } + else + { + utf8_bytes[0] = static_cast::int_type>(wc); + utf8_bytes_filled = 1; + } + } + } + } +}; + +// Wraps another input apdater to convert wide character types into individual bytes. +template +class wide_string_input_adapter +{ + public: + using char_type = char; + + wide_string_input_adapter(BaseInputAdapter base) + : base_adapter(base) {} + + typename std::char_traits::int_type get_character() noexcept + { + // check if buffer needs to be filled + if (utf8_bytes_index == utf8_bytes_filled) + { + fill_buffer(); + + JSON_ASSERT(utf8_bytes_filled > 0); + JSON_ASSERT(utf8_bytes_index == 0); + } + + // use buffer + JSON_ASSERT(utf8_bytes_filled > 0); + JSON_ASSERT(utf8_bytes_index < utf8_bytes_filled); + return utf8_bytes[utf8_bytes_index++]; + } + + private: + BaseInputAdapter base_adapter; + + template + void fill_buffer() + { + wide_string_input_helper::fill_buffer(base_adapter, utf8_bytes, utf8_bytes_index, utf8_bytes_filled); + } + + /// a buffer for UTF-8 bytes + std::array::int_type, 4> utf8_bytes = {{0, 0, 0, 0}}; + + /// index to the utf8_codes array for the next valid byte + std::size_t utf8_bytes_index = 0; + /// number of valid bytes in the utf8_codes array + std::size_t utf8_bytes_filled = 0; +}; + + +template +struct iterator_input_adapter_factory +{ + using iterator_type = IteratorType; + using char_type = typename std::iterator_traits::value_type; + using adapter_type = iterator_input_adapter; + + static adapter_type create(IteratorType first, IteratorType last) + { + return adapter_type(std::move(first), std::move(last)); + } +}; + +template +struct is_iterator_of_multibyte +{ + using value_type = typename std::iterator_traits::value_type; + enum + { + value = sizeof(value_type) > 1 + }; +}; + +template +struct iterator_input_adapter_factory::value>> +{ + using iterator_type = IteratorType; + using char_type = typename std::iterator_traits::value_type; + using base_adapter_type = iterator_input_adapter; + using adapter_type = wide_string_input_adapter; + + static adapter_type create(IteratorType first, IteratorType last) + { + return adapter_type(base_adapter_type(std::move(first), std::move(last))); + } +}; + +// General purpose iterator-based input +template +typename iterator_input_adapter_factory::adapter_type input_adapter(IteratorType first, IteratorType last) +{ + using factory_type = iterator_input_adapter_factory; + return factory_type::create(first, last); +} + +// Convenience shorthand from container to iterator +template +auto input_adapter(const ContainerType& container) -> decltype(input_adapter(begin(container), end(container))) +{ + // Enable ADL + using std::begin; + using std::end; + + return input_adapter(begin(container), end(container)); +} + +// Special cases with fast paths +inline file_input_adapter input_adapter(std::FILE* file) +{ + return file_input_adapter(file); +} + +inline input_stream_adapter input_adapter(std::istream& stream) +{ + return input_stream_adapter(stream); +} + +inline input_stream_adapter input_adapter(std::istream&& stream) +{ + return input_stream_adapter(stream); +} + +using contiguous_bytes_input_adapter = decltype(input_adapter(std::declval(), std::declval())); + +// Null-delimited strings, and the like. +template < typename CharT, + typename std::enable_if < + std::is_pointer::value&& + !std::is_array::value&& + std::is_integral::type>::value&& + sizeof(typename std::remove_pointer::type) == 1, + int >::type = 0 > +contiguous_bytes_input_adapter input_adapter(CharT b) +{ + auto length = std::strlen(reinterpret_cast(b)); + const auto* ptr = reinterpret_cast(b); + return input_adapter(ptr, ptr + length); +} + +template +auto input_adapter(T (&array)[N]) -> decltype(input_adapter(array, array + N)) +{ + return input_adapter(array, array + N); +} + +// This class only handles inputs of input_buffer_adapter type. +// It's required so that expressions like {ptr, len} can be implicitely casted +// to the correct adapter. +class span_input_adapter +{ + public: + template < typename CharT, + typename std::enable_if < + std::is_pointer::value&& + std::is_integral::type>::value&& + sizeof(typename std::remove_pointer::type) == 1, + int >::type = 0 > + span_input_adapter(CharT b, std::size_t l) + : ia(reinterpret_cast(b), reinterpret_cast(b) + l) {} + + template::iterator_category, std::random_access_iterator_tag>::value, + int>::type = 0> + span_input_adapter(IteratorType first, IteratorType last) + : ia(input_adapter(first, last)) {} + + contiguous_bytes_input_adapter&& get() + { + return std::move(ia); + } + + private: + contiguous_bytes_input_adapter ia; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/input/json_sax.hpp b/external/json/include/nlohmann/detail/input/json_sax.hpp new file mode 100644 index 0000000..223acd6 --- /dev/null +++ b/external/json/include/nlohmann/detail/input/json_sax.hpp @@ -0,0 +1,695 @@ +#pragma once + +#include +#include // string +#include // move +#include // vector + +#include +#include + +namespace nlohmann +{ + +/*! +@brief SAX interface + +This class describes the SAX interface used by @ref nlohmann::json::sax_parse. +Each function is called in different situations while the input is parsed. The +boolean return value informs the parser whether to continue processing the +input. +*/ +template +struct json_sax +{ + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + + /*! + @brief a null value was read + @return whether parsing should proceed + */ + virtual bool null() = 0; + + /*! + @brief a boolean value was read + @param[in] val boolean value + @return whether parsing should proceed + */ + virtual bool boolean(bool val) = 0; + + /*! + @brief an integer number was read + @param[in] val integer value + @return whether parsing should proceed + */ + virtual bool number_integer(number_integer_t val) = 0; + + /*! + @brief an unsigned integer number was read + @param[in] val unsigned integer value + @return whether parsing should proceed + */ + virtual bool number_unsigned(number_unsigned_t val) = 0; + + /*! + @brief an floating-point number was read + @param[in] val floating-point value + @param[in] s raw token value + @return whether parsing should proceed + */ + virtual bool number_float(number_float_t val, const string_t& s) = 0; + + /*! + @brief a string was read + @param[in] val string value + @return whether parsing should proceed + @note It is safe to move the passed string. + */ + virtual bool string(string_t& val) = 0; + + /*! + @brief a binary string was read + @param[in] val binary value + @return whether parsing should proceed + @note It is safe to move the passed binary. + */ + virtual bool binary(binary_t& val) = 0; + + /*! + @brief the beginning of an object was read + @param[in] elements number of object elements or -1 if unknown + @return whether parsing should proceed + @note binary formats may report the number of elements + */ + virtual bool start_object(std::size_t elements) = 0; + + /*! + @brief an object key was read + @param[in] val object key + @return whether parsing should proceed + @note It is safe to move the passed string. + */ + virtual bool key(string_t& val) = 0; + + /*! + @brief the end of an object was read + @return whether parsing should proceed + */ + virtual bool end_object() = 0; + + /*! + @brief the beginning of an array was read + @param[in] elements number of array elements or -1 if unknown + @return whether parsing should proceed + @note binary formats may report the number of elements + */ + virtual bool start_array(std::size_t elements) = 0; + + /*! + @brief the end of an array was read + @return whether parsing should proceed + */ + virtual bool end_array() = 0; + + /*! + @brief a parse error occurred + @param[in] position the position in the input where the error occurs + @param[in] last_token the last read token + @param[in] ex an exception object describing the error + @return whether parsing should proceed (must return false) + */ + virtual bool parse_error(std::size_t position, + const std::string& last_token, + const detail::exception& ex) = 0; + + virtual ~json_sax() = default; +}; + + +namespace detail +{ +/*! +@brief SAX implementation to create a JSON value from SAX events + +This class implements the @ref json_sax interface and processes the SAX events +to create a JSON value which makes it basically a DOM parser. The structure or +hierarchy of the JSON value is managed by the stack `ref_stack` which contains +a pointer to the respective array or object for each recursion depth. + +After successful parsing, the value that is passed by reference to the +constructor contains the parsed value. + +@tparam BasicJsonType the JSON type +*/ +template +class json_sax_dom_parser +{ + public: + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + + /*! + @param[in, out] r reference to a JSON value that is manipulated while + parsing + @param[in] allow_exceptions_ whether parse errors yield exceptions + */ + explicit json_sax_dom_parser(BasicJsonType& r, const bool allow_exceptions_ = true) + : root(r), allow_exceptions(allow_exceptions_) + {} + + // make class move-only + json_sax_dom_parser(const json_sax_dom_parser&) = delete; + json_sax_dom_parser(json_sax_dom_parser&&) = default; + json_sax_dom_parser& operator=(const json_sax_dom_parser&) = delete; + json_sax_dom_parser& operator=(json_sax_dom_parser&&) = default; + ~json_sax_dom_parser() = default; + + bool null() + { + handle_value(nullptr); + return true; + } + + bool boolean(bool val) + { + handle_value(val); + return true; + } + + bool number_integer(number_integer_t val) + { + handle_value(val); + return true; + } + + bool number_unsigned(number_unsigned_t val) + { + handle_value(val); + return true; + } + + bool number_float(number_float_t val, const string_t& /*unused*/) + { + handle_value(val); + return true; + } + + bool string(string_t& val) + { + handle_value(val); + return true; + } + + bool binary(binary_t& val) + { + handle_value(std::move(val)); + return true; + } + + bool start_object(std::size_t len) + { + ref_stack.push_back(handle_value(BasicJsonType::value_t::object)); + + if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) + { + JSON_THROW(out_of_range::create(408, + "excessive object size: " + std::to_string(len))); + } + + return true; + } + + bool key(string_t& val) + { + // add null at given key and store the reference for later + object_element = &(ref_stack.back()->m_value.object->operator[](val)); + return true; + } + + bool end_object() + { + ref_stack.pop_back(); + return true; + } + + bool start_array(std::size_t len) + { + ref_stack.push_back(handle_value(BasicJsonType::value_t::array)); + + if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) + { + JSON_THROW(out_of_range::create(408, + "excessive array size: " + std::to_string(len))); + } + + return true; + } + + bool end_array() + { + ref_stack.pop_back(); + return true; + } + + template + bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, + const Exception& ex) + { + errored = true; + static_cast(ex); + if (allow_exceptions) + { + JSON_THROW(ex); + } + return false; + } + + constexpr bool is_errored() const + { + return errored; + } + + private: + /*! + @invariant If the ref stack is empty, then the passed value will be the new + root. + @invariant If the ref stack contains a value, then it is an array or an + object to which we can add elements + */ + template + JSON_HEDLEY_RETURNS_NON_NULL + BasicJsonType* handle_value(Value&& v) + { + if (ref_stack.empty()) + { + root = BasicJsonType(std::forward(v)); + return &root; + } + + JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); + + if (ref_stack.back()->is_array()) + { + ref_stack.back()->m_value.array->emplace_back(std::forward(v)); + return &(ref_stack.back()->m_value.array->back()); + } + + JSON_ASSERT(ref_stack.back()->is_object()); + JSON_ASSERT(object_element); + *object_element = BasicJsonType(std::forward(v)); + return object_element; + } + + /// the parsed JSON value + BasicJsonType& root; + /// stack to model hierarchy of values + std::vector ref_stack {}; + /// helper to hold the reference for the next object element + BasicJsonType* object_element = nullptr; + /// whether a syntax error occurred + bool errored = false; + /// whether to throw exceptions in case of errors + const bool allow_exceptions = true; +}; + +template +class json_sax_dom_callback_parser +{ + public: + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using parser_callback_t = typename BasicJsonType::parser_callback_t; + using parse_event_t = typename BasicJsonType::parse_event_t; + + json_sax_dom_callback_parser(BasicJsonType& r, + const parser_callback_t cb, + const bool allow_exceptions_ = true) + : root(r), callback(cb), allow_exceptions(allow_exceptions_) + { + keep_stack.push_back(true); + } + + // make class move-only + json_sax_dom_callback_parser(const json_sax_dom_callback_parser&) = delete; + json_sax_dom_callback_parser(json_sax_dom_callback_parser&&) = default; + json_sax_dom_callback_parser& operator=(const json_sax_dom_callback_parser&) = delete; + json_sax_dom_callback_parser& operator=(json_sax_dom_callback_parser&&) = default; + ~json_sax_dom_callback_parser() = default; + + bool null() + { + handle_value(nullptr); + return true; + } + + bool boolean(bool val) + { + handle_value(val); + return true; + } + + bool number_integer(number_integer_t val) + { + handle_value(val); + return true; + } + + bool number_unsigned(number_unsigned_t val) + { + handle_value(val); + return true; + } + + bool number_float(number_float_t val, const string_t& /*unused*/) + { + handle_value(val); + return true; + } + + bool string(string_t& val) + { + handle_value(val); + return true; + } + + bool binary(binary_t& val) + { + handle_value(std::move(val)); + return true; + } + + bool start_object(std::size_t len) + { + // check callback for object start + const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::object_start, discarded); + keep_stack.push_back(keep); + + auto val = handle_value(BasicJsonType::value_t::object, true); + ref_stack.push_back(val.second); + + // check object limit + if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) + { + JSON_THROW(out_of_range::create(408, "excessive object size: " + std::to_string(len))); + } + + return true; + } + + bool key(string_t& val) + { + BasicJsonType k = BasicJsonType(val); + + // check callback for key + const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::key, k); + key_keep_stack.push_back(keep); + + // add discarded value at given key and store the reference for later + if (keep && ref_stack.back()) + { + object_element = &(ref_stack.back()->m_value.object->operator[](val) = discarded); + } + + return true; + } + + bool end_object() + { + if (ref_stack.back() && !callback(static_cast(ref_stack.size()) - 1, parse_event_t::object_end, *ref_stack.back())) + { + // discard object + *ref_stack.back() = discarded; + } + + JSON_ASSERT(!ref_stack.empty()); + JSON_ASSERT(!keep_stack.empty()); + ref_stack.pop_back(); + keep_stack.pop_back(); + + if (!ref_stack.empty() && ref_stack.back() && ref_stack.back()->is_structured()) + { + // remove discarded value + for (auto it = ref_stack.back()->begin(); it != ref_stack.back()->end(); ++it) + { + if (it->is_discarded()) + { + ref_stack.back()->erase(it); + break; + } + } + } + + return true; + } + + bool start_array(std::size_t len) + { + const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::array_start, discarded); + keep_stack.push_back(keep); + + auto val = handle_value(BasicJsonType::value_t::array, true); + ref_stack.push_back(val.second); + + // check array limit + if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) + { + JSON_THROW(out_of_range::create(408, "excessive array size: " + std::to_string(len))); + } + + return true; + } + + bool end_array() + { + bool keep = true; + + if (ref_stack.back()) + { + keep = callback(static_cast(ref_stack.size()) - 1, parse_event_t::array_end, *ref_stack.back()); + if (!keep) + { + // discard array + *ref_stack.back() = discarded; + } + } + + JSON_ASSERT(!ref_stack.empty()); + JSON_ASSERT(!keep_stack.empty()); + ref_stack.pop_back(); + keep_stack.pop_back(); + + // remove discarded value + if (!keep && !ref_stack.empty() && ref_stack.back()->is_array()) + { + ref_stack.back()->m_value.array->pop_back(); + } + + return true; + } + + template + bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, + const Exception& ex) + { + errored = true; + static_cast(ex); + if (allow_exceptions) + { + JSON_THROW(ex); + } + return false; + } + + constexpr bool is_errored() const + { + return errored; + } + + private: + /*! + @param[in] v value to add to the JSON value we build during parsing + @param[in] skip_callback whether we should skip calling the callback + function; this is required after start_array() and + start_object() SAX events, because otherwise we would call the + callback function with an empty array or object, respectively. + + @invariant If the ref stack is empty, then the passed value will be the new + root. + @invariant If the ref stack contains a value, then it is an array or an + object to which we can add elements + + @return pair of boolean (whether value should be kept) and pointer (to the + passed value in the ref_stack hierarchy; nullptr if not kept) + */ + template + std::pair handle_value(Value&& v, const bool skip_callback = false) + { + JSON_ASSERT(!keep_stack.empty()); + + // do not handle this value if we know it would be added to a discarded + // container + if (!keep_stack.back()) + { + return {false, nullptr}; + } + + // create value + auto value = BasicJsonType(std::forward(v)); + + // check callback + const bool keep = skip_callback || callback(static_cast(ref_stack.size()), parse_event_t::value, value); + + // do not handle this value if we just learnt it shall be discarded + if (!keep) + { + return {false, nullptr}; + } + + if (ref_stack.empty()) + { + root = std::move(value); + return {true, &root}; + } + + // skip this value if we already decided to skip the parent + // (https://github.com/nlohmann/json/issues/971#issuecomment-413678360) + if (!ref_stack.back()) + { + return {false, nullptr}; + } + + // we now only expect arrays and objects + JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); + + // array + if (ref_stack.back()->is_array()) + { + ref_stack.back()->m_value.array->push_back(std::move(value)); + return {true, &(ref_stack.back()->m_value.array->back())}; + } + + // object + JSON_ASSERT(ref_stack.back()->is_object()); + // check if we should store an element for the current key + JSON_ASSERT(!key_keep_stack.empty()); + const bool store_element = key_keep_stack.back(); + key_keep_stack.pop_back(); + + if (!store_element) + { + return {false, nullptr}; + } + + JSON_ASSERT(object_element); + *object_element = std::move(value); + return {true, object_element}; + } + + /// the parsed JSON value + BasicJsonType& root; + /// stack to model hierarchy of values + std::vector ref_stack {}; + /// stack to manage which values to keep + std::vector keep_stack {}; + /// stack to manage which object keys to keep + std::vector key_keep_stack {}; + /// helper to hold the reference for the next object element + BasicJsonType* object_element = nullptr; + /// whether a syntax error occurred + bool errored = false; + /// callback function + const parser_callback_t callback = nullptr; + /// whether to throw exceptions in case of errors + const bool allow_exceptions = true; + /// a discarded value for the callback + BasicJsonType discarded = BasicJsonType::value_t::discarded; +}; + +template +class json_sax_acceptor +{ + public: + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + + bool null() + { + return true; + } + + bool boolean(bool /*unused*/) + { + return true; + } + + bool number_integer(number_integer_t /*unused*/) + { + return true; + } + + bool number_unsigned(number_unsigned_t /*unused*/) + { + return true; + } + + bool number_float(number_float_t /*unused*/, const string_t& /*unused*/) + { + return true; + } + + bool string(string_t& /*unused*/) + { + return true; + } + + bool binary(binary_t& /*unused*/) + { + return true; + } + + bool start_object(std::size_t /*unused*/ = std::size_t(-1)) + { + return true; + } + + bool key(string_t& /*unused*/) + { + return true; + } + + bool end_object() + { + return true; + } + + bool start_array(std::size_t /*unused*/ = std::size_t(-1)) + { + return true; + } + + bool end_array() + { + return true; + } + + bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const detail::exception& /*unused*/) + { + return false; + } +}; +} // namespace detail + +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/input/lexer.hpp b/external/json/include/nlohmann/detail/input/lexer.hpp new file mode 100644 index 0000000..0a96013 --- /dev/null +++ b/external/json/include/nlohmann/detail/input/lexer.hpp @@ -0,0 +1,1623 @@ +#pragma once + +#include // array +#include // localeconv +#include // size_t +#include // snprintf +#include // strtof, strtod, strtold, strtoll, strtoull +#include // initializer_list +#include // char_traits, string +#include // move +#include // vector + +#include +#include +#include + +namespace nlohmann +{ +namespace detail +{ +/////////// +// lexer // +/////////// + +template +class lexer_base +{ + public: + /// token types for the parser + enum class token_type + { + uninitialized, ///< indicating the scanner is uninitialized + literal_true, ///< the `true` literal + literal_false, ///< the `false` literal + literal_null, ///< the `null` literal + value_string, ///< a string -- use get_string() for actual value + value_unsigned, ///< an unsigned integer -- use get_number_unsigned() for actual value + value_integer, ///< a signed integer -- use get_number_integer() for actual value + value_float, ///< an floating point number -- use get_number_float() for actual value + begin_array, ///< the character for array begin `[` + begin_object, ///< the character for object begin `{` + end_array, ///< the character for array end `]` + end_object, ///< the character for object end `}` + name_separator, ///< the name separator `:` + value_separator, ///< the value separator `,` + parse_error, ///< indicating a parse error + end_of_input, ///< indicating the end of the input buffer + literal_or_value ///< a literal or the begin of a value (only for diagnostics) + }; + + /// return name of values of type token_type (only used for errors) + JSON_HEDLEY_RETURNS_NON_NULL + JSON_HEDLEY_CONST + static const char* token_type_name(const token_type t) noexcept + { + switch (t) + { + case token_type::uninitialized: + return ""; + case token_type::literal_true: + return "true literal"; + case token_type::literal_false: + return "false literal"; + case token_type::literal_null: + return "null literal"; + case token_type::value_string: + return "string literal"; + case token_type::value_unsigned: + case token_type::value_integer: + case token_type::value_float: + return "number literal"; + case token_type::begin_array: + return "'['"; + case token_type::begin_object: + return "'{'"; + case token_type::end_array: + return "']'"; + case token_type::end_object: + return "'}'"; + case token_type::name_separator: + return "':'"; + case token_type::value_separator: + return "','"; + case token_type::parse_error: + return ""; + case token_type::end_of_input: + return "end of input"; + case token_type::literal_or_value: + return "'[', '{', or a literal"; + // LCOV_EXCL_START + default: // catch non-enum values + return "unknown token"; + // LCOV_EXCL_STOP + } + } +}; +/*! +@brief lexical analysis + +This class organizes the lexical analysis during JSON deserialization. +*/ +template +class lexer : public lexer_base +{ + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using char_type = typename InputAdapterType::char_type; + using char_int_type = typename std::char_traits::int_type; + + public: + using token_type = typename lexer_base::token_type; + + explicit lexer(InputAdapterType&& adapter, bool ignore_comments_ = false) + : ia(std::move(adapter)) + , ignore_comments(ignore_comments_) + , decimal_point_char(static_cast(get_decimal_point())) + {} + + // delete because of pointer members + lexer(const lexer&) = delete; + lexer(lexer&&) = default; + lexer& operator=(lexer&) = delete; + lexer& operator=(lexer&&) = default; + ~lexer() = default; + + private: + ///////////////////// + // locales + ///////////////////// + + /// return the locale-dependent decimal point + JSON_HEDLEY_PURE + static char get_decimal_point() noexcept + { + const auto* loc = localeconv(); + JSON_ASSERT(loc != nullptr); + return (loc->decimal_point == nullptr) ? '.' : *(loc->decimal_point); + } + + ///////////////////// + // scan functions + ///////////////////// + + /*! + @brief get codepoint from 4 hex characters following `\u` + + For input "\u c1 c2 c3 c4" the codepoint is: + (c1 * 0x1000) + (c2 * 0x0100) + (c3 * 0x0010) + c4 + = (c1 << 12) + (c2 << 8) + (c3 << 4) + (c4 << 0) + + Furthermore, the possible characters '0'..'9', 'A'..'F', and 'a'..'f' + must be converted to the integers 0x0..0x9, 0xA..0xF, 0xA..0xF, resp. The + conversion is done by subtracting the offset (0x30, 0x37, and 0x57) + between the ASCII value of the character and the desired integer value. + + @return codepoint (0x0000..0xFFFF) or -1 in case of an error (e.g. EOF or + non-hex character) + */ + int get_codepoint() + { + // this function only makes sense after reading `\u` + JSON_ASSERT(current == 'u'); + int codepoint = 0; + + const auto factors = { 12u, 8u, 4u, 0u }; + for (const auto factor : factors) + { + get(); + + if (current >= '0' && current <= '9') + { + codepoint += static_cast((static_cast(current) - 0x30u) << factor); + } + else if (current >= 'A' && current <= 'F') + { + codepoint += static_cast((static_cast(current) - 0x37u) << factor); + } + else if (current >= 'a' && current <= 'f') + { + codepoint += static_cast((static_cast(current) - 0x57u) << factor); + } + else + { + return -1; + } + } + + JSON_ASSERT(0x0000 <= codepoint && codepoint <= 0xFFFF); + return codepoint; + } + + /*! + @brief check if the next byte(s) are inside a given range + + Adds the current byte and, for each passed range, reads a new byte and + checks if it is inside the range. If a violation was detected, set up an + error message and return false. Otherwise, return true. + + @param[in] ranges list of integers; interpreted as list of pairs of + inclusive lower and upper bound, respectively + + @pre The passed list @a ranges must have 2, 4, or 6 elements; that is, + 1, 2, or 3 pairs. This precondition is enforced by an assertion. + + @return true if and only if no range violation was detected + */ + bool next_byte_in_range(std::initializer_list ranges) + { + JSON_ASSERT(ranges.size() == 2 || ranges.size() == 4 || ranges.size() == 6); + add(current); + + for (auto range = ranges.begin(); range != ranges.end(); ++range) + { + get(); + if (JSON_HEDLEY_LIKELY(*range <= current && current <= *(++range))) + { + add(current); + } + else + { + error_message = "invalid string: ill-formed UTF-8 byte"; + return false; + } + } + + return true; + } + + /*! + @brief scan a string literal + + This function scans a string according to Sect. 7 of RFC 7159. While + scanning, bytes are escaped and copied into buffer token_buffer. Then the + function returns successfully, token_buffer is *not* null-terminated (as it + may contain \0 bytes), and token_buffer.size() is the number of bytes in the + string. + + @return token_type::value_string if string could be successfully scanned, + token_type::parse_error otherwise + + @note In case of errors, variable error_message contains a textual + description. + */ + token_type scan_string() + { + // reset token_buffer (ignore opening quote) + reset(); + + // we entered the function by reading an open quote + JSON_ASSERT(current == '\"'); + + while (true) + { + // get next character + switch (get()) + { + // end of file while parsing string + case std::char_traits::eof(): + { + error_message = "invalid string: missing closing quote"; + return token_type::parse_error; + } + + // closing quote + case '\"': + { + return token_type::value_string; + } + + // escapes + case '\\': + { + switch (get()) + { + // quotation mark + case '\"': + add('\"'); + break; + // reverse solidus + case '\\': + add('\\'); + break; + // solidus + case '/': + add('/'); + break; + // backspace + case 'b': + add('\b'); + break; + // form feed + case 'f': + add('\f'); + break; + // line feed + case 'n': + add('\n'); + break; + // carriage return + case 'r': + add('\r'); + break; + // tab + case 't': + add('\t'); + break; + + // unicode escapes + case 'u': + { + const int codepoint1 = get_codepoint(); + int codepoint = codepoint1; // start with codepoint1 + + if (JSON_HEDLEY_UNLIKELY(codepoint1 == -1)) + { + error_message = "invalid string: '\\u' must be followed by 4 hex digits"; + return token_type::parse_error; + } + + // check if code point is a high surrogate + if (0xD800 <= codepoint1 && codepoint1 <= 0xDBFF) + { + // expect next \uxxxx entry + if (JSON_HEDLEY_LIKELY(get() == '\\' && get() == 'u')) + { + const int codepoint2 = get_codepoint(); + + if (JSON_HEDLEY_UNLIKELY(codepoint2 == -1)) + { + error_message = "invalid string: '\\u' must be followed by 4 hex digits"; + return token_type::parse_error; + } + + // check if codepoint2 is a low surrogate + if (JSON_HEDLEY_LIKELY(0xDC00 <= codepoint2 && codepoint2 <= 0xDFFF)) + { + // overwrite codepoint + codepoint = static_cast( + // high surrogate occupies the most significant 22 bits + (static_cast(codepoint1) << 10u) + // low surrogate occupies the least significant 15 bits + + static_cast(codepoint2) + // there is still the 0xD800, 0xDC00 and 0x10000 noise + // in the result so we have to subtract with: + // (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00 + - 0x35FDC00u); + } + else + { + error_message = "invalid string: surrogate U+D800..U+DBFF must be followed by U+DC00..U+DFFF"; + return token_type::parse_error; + } + } + else + { + error_message = "invalid string: surrogate U+D800..U+DBFF must be followed by U+DC00..U+DFFF"; + return token_type::parse_error; + } + } + else + { + if (JSON_HEDLEY_UNLIKELY(0xDC00 <= codepoint1 && codepoint1 <= 0xDFFF)) + { + error_message = "invalid string: surrogate U+DC00..U+DFFF must follow U+D800..U+DBFF"; + return token_type::parse_error; + } + } + + // result of the above calculation yields a proper codepoint + JSON_ASSERT(0x00 <= codepoint && codepoint <= 0x10FFFF); + + // translate codepoint into bytes + if (codepoint < 0x80) + { + // 1-byte characters: 0xxxxxxx (ASCII) + add(static_cast(codepoint)); + } + else if (codepoint <= 0x7FF) + { + // 2-byte characters: 110xxxxx 10xxxxxx + add(static_cast(0xC0u | (static_cast(codepoint) >> 6u))); + add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); + } + else if (codepoint <= 0xFFFF) + { + // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx + add(static_cast(0xE0u | (static_cast(codepoint) >> 12u))); + add(static_cast(0x80u | ((static_cast(codepoint) >> 6u) & 0x3Fu))); + add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); + } + else + { + // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx + add(static_cast(0xF0u | (static_cast(codepoint) >> 18u))); + add(static_cast(0x80u | ((static_cast(codepoint) >> 12u) & 0x3Fu))); + add(static_cast(0x80u | ((static_cast(codepoint) >> 6u) & 0x3Fu))); + add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); + } + + break; + } + + // other characters after escape + default: + error_message = "invalid string: forbidden character after backslash"; + return token_type::parse_error; + } + + break; + } + + // invalid control characters + case 0x00: + { + error_message = "invalid string: control character U+0000 (NUL) must be escaped to \\u0000"; + return token_type::parse_error; + } + + case 0x01: + { + error_message = "invalid string: control character U+0001 (SOH) must be escaped to \\u0001"; + return token_type::parse_error; + } + + case 0x02: + { + error_message = "invalid string: control character U+0002 (STX) must be escaped to \\u0002"; + return token_type::parse_error; + } + + case 0x03: + { + error_message = "invalid string: control character U+0003 (ETX) must be escaped to \\u0003"; + return token_type::parse_error; + } + + case 0x04: + { + error_message = "invalid string: control character U+0004 (EOT) must be escaped to \\u0004"; + return token_type::parse_error; + } + + case 0x05: + { + error_message = "invalid string: control character U+0005 (ENQ) must be escaped to \\u0005"; + return token_type::parse_error; + } + + case 0x06: + { + error_message = "invalid string: control character U+0006 (ACK) must be escaped to \\u0006"; + return token_type::parse_error; + } + + case 0x07: + { + error_message = "invalid string: control character U+0007 (BEL) must be escaped to \\u0007"; + return token_type::parse_error; + } + + case 0x08: + { + error_message = "invalid string: control character U+0008 (BS) must be escaped to \\u0008 or \\b"; + return token_type::parse_error; + } + + case 0x09: + { + error_message = "invalid string: control character U+0009 (HT) must be escaped to \\u0009 or \\t"; + return token_type::parse_error; + } + + case 0x0A: + { + error_message = "invalid string: control character U+000A (LF) must be escaped to \\u000A or \\n"; + return token_type::parse_error; + } + + case 0x0B: + { + error_message = "invalid string: control character U+000B (VT) must be escaped to \\u000B"; + return token_type::parse_error; + } + + case 0x0C: + { + error_message = "invalid string: control character U+000C (FF) must be escaped to \\u000C or \\f"; + return token_type::parse_error; + } + + case 0x0D: + { + error_message = "invalid string: control character U+000D (CR) must be escaped to \\u000D or \\r"; + return token_type::parse_error; + } + + case 0x0E: + { + error_message = "invalid string: control character U+000E (SO) must be escaped to \\u000E"; + return token_type::parse_error; + } + + case 0x0F: + { + error_message = "invalid string: control character U+000F (SI) must be escaped to \\u000F"; + return token_type::parse_error; + } + + case 0x10: + { + error_message = "invalid string: control character U+0010 (DLE) must be escaped to \\u0010"; + return token_type::parse_error; + } + + case 0x11: + { + error_message = "invalid string: control character U+0011 (DC1) must be escaped to \\u0011"; + return token_type::parse_error; + } + + case 0x12: + { + error_message = "invalid string: control character U+0012 (DC2) must be escaped to \\u0012"; + return token_type::parse_error; + } + + case 0x13: + { + error_message = "invalid string: control character U+0013 (DC3) must be escaped to \\u0013"; + return token_type::parse_error; + } + + case 0x14: + { + error_message = "invalid string: control character U+0014 (DC4) must be escaped to \\u0014"; + return token_type::parse_error; + } + + case 0x15: + { + error_message = "invalid string: control character U+0015 (NAK) must be escaped to \\u0015"; + return token_type::parse_error; + } + + case 0x16: + { + error_message = "invalid string: control character U+0016 (SYN) must be escaped to \\u0016"; + return token_type::parse_error; + } + + case 0x17: + { + error_message = "invalid string: control character U+0017 (ETB) must be escaped to \\u0017"; + return token_type::parse_error; + } + + case 0x18: + { + error_message = "invalid string: control character U+0018 (CAN) must be escaped to \\u0018"; + return token_type::parse_error; + } + + case 0x19: + { + error_message = "invalid string: control character U+0019 (EM) must be escaped to \\u0019"; + return token_type::parse_error; + } + + case 0x1A: + { + error_message = "invalid string: control character U+001A (SUB) must be escaped to \\u001A"; + return token_type::parse_error; + } + + case 0x1B: + { + error_message = "invalid string: control character U+001B (ESC) must be escaped to \\u001B"; + return token_type::parse_error; + } + + case 0x1C: + { + error_message = "invalid string: control character U+001C (FS) must be escaped to \\u001C"; + return token_type::parse_error; + } + + case 0x1D: + { + error_message = "invalid string: control character U+001D (GS) must be escaped to \\u001D"; + return token_type::parse_error; + } + + case 0x1E: + { + error_message = "invalid string: control character U+001E (RS) must be escaped to \\u001E"; + return token_type::parse_error; + } + + case 0x1F: + { + error_message = "invalid string: control character U+001F (US) must be escaped to \\u001F"; + return token_type::parse_error; + } + + // U+0020..U+007F (except U+0022 (quote) and U+005C (backspace)) + case 0x20: + case 0x21: + case 0x23: + case 0x24: + case 0x25: + case 0x26: + case 0x27: + case 0x28: + case 0x29: + case 0x2A: + case 0x2B: + case 0x2C: + case 0x2D: + case 0x2E: + case 0x2F: + case 0x30: + case 0x31: + case 0x32: + case 0x33: + case 0x34: + case 0x35: + case 0x36: + case 0x37: + case 0x38: + case 0x39: + case 0x3A: + case 0x3B: + case 0x3C: + case 0x3D: + case 0x3E: + case 0x3F: + case 0x40: + case 0x41: + case 0x42: + case 0x43: + case 0x44: + case 0x45: + case 0x46: + case 0x47: + case 0x48: + case 0x49: + case 0x4A: + case 0x4B: + case 0x4C: + case 0x4D: + case 0x4E: + case 0x4F: + case 0x50: + case 0x51: + case 0x52: + case 0x53: + case 0x54: + case 0x55: + case 0x56: + case 0x57: + case 0x58: + case 0x59: + case 0x5A: + case 0x5B: + case 0x5D: + case 0x5E: + case 0x5F: + case 0x60: + case 0x61: + case 0x62: + case 0x63: + case 0x64: + case 0x65: + case 0x66: + case 0x67: + case 0x68: + case 0x69: + case 0x6A: + case 0x6B: + case 0x6C: + case 0x6D: + case 0x6E: + case 0x6F: + case 0x70: + case 0x71: + case 0x72: + case 0x73: + case 0x74: + case 0x75: + case 0x76: + case 0x77: + case 0x78: + case 0x79: + case 0x7A: + case 0x7B: + case 0x7C: + case 0x7D: + case 0x7E: + case 0x7F: + { + add(current); + break; + } + + // U+0080..U+07FF: bytes C2..DF 80..BF + case 0xC2: + case 0xC3: + case 0xC4: + case 0xC5: + case 0xC6: + case 0xC7: + case 0xC8: + case 0xC9: + case 0xCA: + case 0xCB: + case 0xCC: + case 0xCD: + case 0xCE: + case 0xCF: + case 0xD0: + case 0xD1: + case 0xD2: + case 0xD3: + case 0xD4: + case 0xD5: + case 0xD6: + case 0xD7: + case 0xD8: + case 0xD9: + case 0xDA: + case 0xDB: + case 0xDC: + case 0xDD: + case 0xDE: + case 0xDF: + { + if (JSON_HEDLEY_UNLIKELY(!next_byte_in_range({0x80, 0xBF}))) + { + return token_type::parse_error; + } + break; + } + + // U+0800..U+0FFF: bytes E0 A0..BF 80..BF + case 0xE0: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0xA0, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+1000..U+CFFF: bytes E1..EC 80..BF 80..BF + // U+E000..U+FFFF: bytes EE..EF 80..BF 80..BF + case 0xE1: + case 0xE2: + case 0xE3: + case 0xE4: + case 0xE5: + case 0xE6: + case 0xE7: + case 0xE8: + case 0xE9: + case 0xEA: + case 0xEB: + case 0xEC: + case 0xEE: + case 0xEF: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+D000..U+D7FF: bytes ED 80..9F 80..BF + case 0xED: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0x9F, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+10000..U+3FFFF F0 90..BF 80..BF 80..BF + case 0xF0: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x90, 0xBF, 0x80, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+40000..U+FFFFF F1..F3 80..BF 80..BF 80..BF + case 0xF1: + case 0xF2: + case 0xF3: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+100000..U+10FFFF F4 80..8F 80..BF 80..BF + case 0xF4: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0x8F, 0x80, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // remaining bytes (80..C1 and F5..FF) are ill-formed + default: + { + error_message = "invalid string: ill-formed UTF-8 byte"; + return token_type::parse_error; + } + } + } + } + + /*! + * @brief scan a comment + * @return whether comment could be scanned successfully + */ + bool scan_comment() + { + switch (get()) + { + // single-line comments skip input until a newline or EOF is read + case '/': + { + while (true) + { + switch (get()) + { + case '\n': + case '\r': + case std::char_traits::eof(): + case '\0': + return true; + + default: + break; + } + } + } + + // multi-line comments skip input until */ is read + case '*': + { + while (true) + { + switch (get()) + { + case std::char_traits::eof(): + case '\0': + { + error_message = "invalid comment; missing closing '*/'"; + return false; + } + + case '*': + { + switch (get()) + { + case '/': + return true; + + default: + { + unget(); + continue; + } + } + } + + default: + continue; + } + } + } + + // unexpected character after reading '/' + default: + { + error_message = "invalid comment; expecting '/' or '*' after '/'"; + return false; + } + } + } + + JSON_HEDLEY_NON_NULL(2) + static void strtof(float& f, const char* str, char** endptr) noexcept + { + f = std::strtof(str, endptr); + } + + JSON_HEDLEY_NON_NULL(2) + static void strtof(double& f, const char* str, char** endptr) noexcept + { + f = std::strtod(str, endptr); + } + + JSON_HEDLEY_NON_NULL(2) + static void strtof(long double& f, const char* str, char** endptr) noexcept + { + f = std::strtold(str, endptr); + } + + /*! + @brief scan a number literal + + This function scans a string according to Sect. 6 of RFC 7159. + + The function is realized with a deterministic finite state machine derived + from the grammar described in RFC 7159. Starting in state "init", the + input is read and used to determined the next state. Only state "done" + accepts the number. State "error" is a trap state to model errors. In the + table below, "anything" means any character but the ones listed before. + + state | 0 | 1-9 | e E | + | - | . | anything + ---------|----------|----------|----------|---------|---------|----------|----------- + init | zero | any1 | [error] | [error] | minus | [error] | [error] + minus | zero | any1 | [error] | [error] | [error] | [error] | [error] + zero | done | done | exponent | done | done | decimal1 | done + any1 | any1 | any1 | exponent | done | done | decimal1 | done + decimal1 | decimal2 | decimal2 | [error] | [error] | [error] | [error] | [error] + decimal2 | decimal2 | decimal2 | exponent | done | done | done | done + exponent | any2 | any2 | [error] | sign | sign | [error] | [error] + sign | any2 | any2 | [error] | [error] | [error] | [error] | [error] + any2 | any2 | any2 | done | done | done | done | done + + The state machine is realized with one label per state (prefixed with + "scan_number_") and `goto` statements between them. The state machine + contains cycles, but any cycle can be left when EOF is read. Therefore, + the function is guaranteed to terminate. + + During scanning, the read bytes are stored in token_buffer. This string is + then converted to a signed integer, an unsigned integer, or a + floating-point number. + + @return token_type::value_unsigned, token_type::value_integer, or + token_type::value_float if number could be successfully scanned, + token_type::parse_error otherwise + + @note The scanner is independent of the current locale. Internally, the + locale's decimal point is used instead of `.` to work with the + locale-dependent converters. + */ + token_type scan_number() // lgtm [cpp/use-of-goto] + { + // reset token_buffer to store the number's bytes + reset(); + + // the type of the parsed number; initially set to unsigned; will be + // changed if minus sign, decimal point or exponent is read + token_type number_type = token_type::value_unsigned; + + // state (init): we just found out we need to scan a number + switch (current) + { + case '-': + { + add(current); + goto scan_number_minus; + } + + case '0': + { + add(current); + goto scan_number_zero; + } + + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any1; + } + + // all other characters are rejected outside scan_number() + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + +scan_number_minus: + // state: we just parsed a leading minus sign + number_type = token_type::value_integer; + switch (get()) + { + case '0': + { + add(current); + goto scan_number_zero; + } + + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any1; + } + + default: + { + error_message = "invalid number; expected digit after '-'"; + return token_type::parse_error; + } + } + +scan_number_zero: + // state: we just parse a zero (maybe with a leading minus sign) + switch (get()) + { + case '.': + { + add(decimal_point_char); + goto scan_number_decimal1; + } + + case 'e': + case 'E': + { + add(current); + goto scan_number_exponent; + } + + default: + goto scan_number_done; + } + +scan_number_any1: + // state: we just parsed a number 0-9 (maybe with a leading minus sign) + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any1; + } + + case '.': + { + add(decimal_point_char); + goto scan_number_decimal1; + } + + case 'e': + case 'E': + { + add(current); + goto scan_number_exponent; + } + + default: + goto scan_number_done; + } + +scan_number_decimal1: + // state: we just parsed a decimal point + number_type = token_type::value_float; + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_decimal2; + } + + default: + { + error_message = "invalid number; expected digit after '.'"; + return token_type::parse_error; + } + } + +scan_number_decimal2: + // we just parsed at least one number after a decimal point + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_decimal2; + } + + case 'e': + case 'E': + { + add(current); + goto scan_number_exponent; + } + + default: + goto scan_number_done; + } + +scan_number_exponent: + // we just parsed an exponent + number_type = token_type::value_float; + switch (get()) + { + case '+': + case '-': + { + add(current); + goto scan_number_sign; + } + + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any2; + } + + default: + { + error_message = + "invalid number; expected '+', '-', or digit after exponent"; + return token_type::parse_error; + } + } + +scan_number_sign: + // we just parsed an exponent sign + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any2; + } + + default: + { + error_message = "invalid number; expected digit after exponent sign"; + return token_type::parse_error; + } + } + +scan_number_any2: + // we just parsed a number after the exponent or exponent sign + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any2; + } + + default: + goto scan_number_done; + } + +scan_number_done: + // unget the character after the number (we only read it to know that + // we are done scanning a number) + unget(); + + char* endptr = nullptr; + errno = 0; + + // try to parse integers first and fall back to floats + if (number_type == token_type::value_unsigned) + { + const auto x = std::strtoull(token_buffer.data(), &endptr, 10); + + // we checked the number format before + JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); + + if (errno == 0) + { + value_unsigned = static_cast(x); + if (value_unsigned == x) + { + return token_type::value_unsigned; + } + } + } + else if (number_type == token_type::value_integer) + { + const auto x = std::strtoll(token_buffer.data(), &endptr, 10); + + // we checked the number format before + JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); + + if (errno == 0) + { + value_integer = static_cast(x); + if (value_integer == x) + { + return token_type::value_integer; + } + } + } + + // this code is reached if we parse a floating-point number or if an + // integer conversion above failed + strtof(value_float, token_buffer.data(), &endptr); + + // we checked the number format before + JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); + + return token_type::value_float; + } + + /*! + @param[in] literal_text the literal text to expect + @param[in] length the length of the passed literal text + @param[in] return_type the token type to return on success + */ + JSON_HEDLEY_NON_NULL(2) + token_type scan_literal(const char_type* literal_text, const std::size_t length, + token_type return_type) + { + JSON_ASSERT(std::char_traits::to_char_type(current) == literal_text[0]); + for (std::size_t i = 1; i < length; ++i) + { + if (JSON_HEDLEY_UNLIKELY(std::char_traits::to_char_type(get()) != literal_text[i])) + { + error_message = "invalid literal"; + return token_type::parse_error; + } + } + return return_type; + } + + ///////////////////// + // input management + ///////////////////// + + /// reset token_buffer; current character is beginning of token + void reset() noexcept + { + token_buffer.clear(); + token_string.clear(); + token_string.push_back(std::char_traits::to_char_type(current)); + } + + /* + @brief get next character from the input + + This function provides the interface to the used input adapter. It does + not throw in case the input reached EOF, but returns a + `std::char_traits::eof()` in that case. Stores the scanned characters + for use in error messages. + + @return character read from the input + */ + char_int_type get() + { + ++position.chars_read_total; + ++position.chars_read_current_line; + + if (next_unget) + { + // just reset the next_unget variable and work with current + next_unget = false; + } + else + { + current = ia.get_character(); + } + + if (JSON_HEDLEY_LIKELY(current != std::char_traits::eof())) + { + token_string.push_back(std::char_traits::to_char_type(current)); + } + + if (current == '\n') + { + ++position.lines_read; + position.chars_read_current_line = 0; + } + + return current; + } + + /*! + @brief unget current character (read it again on next get) + + We implement unget by setting variable next_unget to true. The input is not + changed - we just simulate ungetting by modifying chars_read_total, + chars_read_current_line, and token_string. The next call to get() will + behave as if the unget character is read again. + */ + void unget() + { + next_unget = true; + + --position.chars_read_total; + + // in case we "unget" a newline, we have to also decrement the lines_read + if (position.chars_read_current_line == 0) + { + if (position.lines_read > 0) + { + --position.lines_read; + } + } + else + { + --position.chars_read_current_line; + } + + if (JSON_HEDLEY_LIKELY(current != std::char_traits::eof())) + { + JSON_ASSERT(!token_string.empty()); + token_string.pop_back(); + } + } + + /// add a character to token_buffer + void add(char_int_type c) + { + token_buffer.push_back(static_cast(c)); + } + + public: + ///////////////////// + // value getters + ///////////////////// + + /// return integer value + constexpr number_integer_t get_number_integer() const noexcept + { + return value_integer; + } + + /// return unsigned integer value + constexpr number_unsigned_t get_number_unsigned() const noexcept + { + return value_unsigned; + } + + /// return floating-point value + constexpr number_float_t get_number_float() const noexcept + { + return value_float; + } + + /// return current string value (implicitly resets the token; useful only once) + string_t& get_string() + { + return token_buffer; + } + + ///////////////////// + // diagnostics + ///////////////////// + + /// return position of last read token + constexpr position_t get_position() const noexcept + { + return position; + } + + /// return the last read token (for errors only). Will never contain EOF + /// (an arbitrary value that is not a valid char value, often -1), because + /// 255 may legitimately occur. May contain NUL, which should be escaped. + std::string get_token_string() const + { + // escape control characters + std::string result; + for (const auto c : token_string) + { + if (static_cast(c) <= '\x1F') + { + // escape control characters + std::array cs{{}}; + (std::snprintf)(cs.data(), cs.size(), "", static_cast(c)); + result += cs.data(); + } + else + { + // add character as is + result.push_back(static_cast(c)); + } + } + + return result; + } + + /// return syntax error message + JSON_HEDLEY_RETURNS_NON_NULL + constexpr const char* get_error_message() const noexcept + { + return error_message; + } + + ///////////////////// + // actual scanner + ///////////////////// + + /*! + @brief skip the UTF-8 byte order mark + @return true iff there is no BOM or the correct BOM has been skipped + */ + bool skip_bom() + { + if (get() == 0xEF) + { + // check if we completely parse the BOM + return get() == 0xBB && get() == 0xBF; + } + + // the first character is not the beginning of the BOM; unget it to + // process is later + unget(); + return true; + } + + void skip_whitespace() + { + do + { + get(); + } + while (current == ' ' || current == '\t' || current == '\n' || current == '\r'); + } + + token_type scan() + { + // initially, skip the BOM + if (position.chars_read_total == 0 && !skip_bom()) + { + error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; + return token_type::parse_error; + } + + // read next character and ignore whitespace + skip_whitespace(); + + // ignore comments + while (ignore_comments && current == '/') + { + if (!scan_comment()) + { + return token_type::parse_error; + } + + // skip following whitespace + skip_whitespace(); + } + + switch (current) + { + // structural characters + case '[': + return token_type::begin_array; + case ']': + return token_type::end_array; + case '{': + return token_type::begin_object; + case '}': + return token_type::end_object; + case ':': + return token_type::name_separator; + case ',': + return token_type::value_separator; + + // literals + case 't': + { + std::array true_literal = {{'t', 'r', 'u', 'e'}}; + return scan_literal(true_literal.data(), true_literal.size(), token_type::literal_true); + } + case 'f': + { + std::array false_literal = {{'f', 'a', 'l', 's', 'e'}}; + return scan_literal(false_literal.data(), false_literal.size(), token_type::literal_false); + } + case 'n': + { + std::array null_literal = {{'n', 'u', 'l', 'l'}}; + return scan_literal(null_literal.data(), null_literal.size(), token_type::literal_null); + } + + // string + case '\"': + return scan_string(); + + // number + case '-': + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + return scan_number(); + + // end of input (the null byte is needed when parsing from + // string literals) + case '\0': + case std::char_traits::eof(): + return token_type::end_of_input; + + // error + default: + error_message = "invalid literal"; + return token_type::parse_error; + } + } + + private: + /// input adapter + InputAdapterType ia; + + /// whether comments should be ignored (true) or signaled as errors (false) + const bool ignore_comments = false; + + /// the current character + char_int_type current = std::char_traits::eof(); + + /// whether the next get() call should just return current + bool next_unget = false; + + /// the start position of the current token + position_t position {}; + + /// raw input token string (for error messages) + std::vector token_string {}; + + /// buffer for variable-length tokens (numbers, strings) + string_t token_buffer {}; + + /// a description of occurred lexer errors + const char* error_message = ""; + + // number values + number_integer_t value_integer = 0; + number_unsigned_t value_unsigned = 0; + number_float_t value_float = 0; + + /// the decimal point + const char_int_type decimal_point_char = '.'; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/input/parser.hpp b/external/json/include/nlohmann/detail/input/parser.hpp new file mode 100644 index 0000000..ffe483a --- /dev/null +++ b/external/json/include/nlohmann/detail/input/parser.hpp @@ -0,0 +1,501 @@ +#pragma once + +#include // isfinite +#include // uint8_t +#include // function +#include // string +#include // move +#include // vector + +#include +#include +#include +#include +#include +#include +#include + +namespace nlohmann +{ +namespace detail +{ +//////////// +// parser // +//////////// + +enum class parse_event_t : uint8_t +{ + /// the parser read `{` and started to process a JSON object + object_start, + /// the parser read `}` and finished processing a JSON object + object_end, + /// the parser read `[` and started to process a JSON array + array_start, + /// the parser read `]` and finished processing a JSON array + array_end, + /// the parser read a key of a value in an object + key, + /// the parser finished reading a JSON value + value +}; + +template +using parser_callback_t = + std::function; + +/*! +@brief syntax analysis + +This class implements a recursive descent parser. +*/ +template +class parser +{ + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using lexer_t = lexer; + using token_type = typename lexer_t::token_type; + + public: + /// a parser reading from an input adapter + explicit parser(InputAdapterType&& adapter, + const parser_callback_t cb = nullptr, + const bool allow_exceptions_ = true, + const bool skip_comments = false) + : callback(cb) + , m_lexer(std::move(adapter), skip_comments) + , allow_exceptions(allow_exceptions_) + { + // read first token + get_token(); + } + + /*! + @brief public parser interface + + @param[in] strict whether to expect the last token to be EOF + @param[in,out] result parsed JSON value + + @throw parse_error.101 in case of an unexpected token + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + */ + void parse(const bool strict, BasicJsonType& result) + { + if (callback) + { + json_sax_dom_callback_parser sdp(result, callback, allow_exceptions); + sax_parse_internal(&sdp); + result.assert_invariant(); + + // in strict mode, input must be completely read + if (strict && (get_token() != token_type::end_of_input)) + { + sdp.parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_of_input, "value"))); + } + + // in case of an error, return discarded value + if (sdp.is_errored()) + { + result = value_t::discarded; + return; + } + + // set top-level value to null if it was discarded by the callback + // function + if (result.is_discarded()) + { + result = nullptr; + } + } + else + { + json_sax_dom_parser sdp(result, allow_exceptions); + sax_parse_internal(&sdp); + result.assert_invariant(); + + // in strict mode, input must be completely read + if (strict && (get_token() != token_type::end_of_input)) + { + sdp.parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_of_input, "value"))); + } + + // in case of an error, return discarded value + if (sdp.is_errored()) + { + result = value_t::discarded; + return; + } + } + } + + /*! + @brief public accept interface + + @param[in] strict whether to expect the last token to be EOF + @return whether the input is a proper JSON text + */ + bool accept(const bool strict = true) + { + json_sax_acceptor sax_acceptor; + return sax_parse(&sax_acceptor, strict); + } + + template + JSON_HEDLEY_NON_NULL(2) + bool sax_parse(SAX* sax, const bool strict = true) + { + (void)detail::is_sax_static_asserts {}; + const bool result = sax_parse_internal(sax); + + // strict mode: next byte must be EOF + if (result && strict && (get_token() != token_type::end_of_input)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_of_input, "value"))); + } + + return result; + } + + private: + template + JSON_HEDLEY_NON_NULL(2) + bool sax_parse_internal(SAX* sax) + { + // stack to remember the hierarchy of structured values we are parsing + // true = array; false = object + std::vector states; + // value to avoid a goto (see comment where set to true) + bool skip_to_state_evaluation = false; + + while (true) + { + if (!skip_to_state_evaluation) + { + // invariant: get_token() was called before each iteration + switch (last_token) + { + case token_type::begin_object: + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) + { + return false; + } + + // closing } -> we are done + if (get_token() == token_type::end_object) + { + if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) + { + return false; + } + break; + } + + // parse key + if (JSON_HEDLEY_UNLIKELY(last_token != token_type::value_string)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::value_string, "object key"))); + } + if (JSON_HEDLEY_UNLIKELY(!sax->key(m_lexer.get_string()))) + { + return false; + } + + // parse separator (:) + if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::name_separator, "object separator"))); + } + + // remember we are now inside an object + states.push_back(false); + + // parse values + get_token(); + continue; + } + + case token_type::begin_array: + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) + { + return false; + } + + // closing ] -> we are done + if (get_token() == token_type::end_array) + { + if (JSON_HEDLEY_UNLIKELY(!sax->end_array())) + { + return false; + } + break; + } + + // remember we are now inside an array + states.push_back(true); + + // parse values (no need to call get_token) + continue; + } + + case token_type::value_float: + { + const auto res = m_lexer.get_number_float(); + + if (JSON_HEDLEY_UNLIKELY(!std::isfinite(res))) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + out_of_range::create(406, "number overflow parsing '" + m_lexer.get_token_string() + "'")); + } + + if (JSON_HEDLEY_UNLIKELY(!sax->number_float(res, m_lexer.get_string()))) + { + return false; + } + + break; + } + + case token_type::literal_false: + { + if (JSON_HEDLEY_UNLIKELY(!sax->boolean(false))) + { + return false; + } + break; + } + + case token_type::literal_null: + { + if (JSON_HEDLEY_UNLIKELY(!sax->null())) + { + return false; + } + break; + } + + case token_type::literal_true: + { + if (JSON_HEDLEY_UNLIKELY(!sax->boolean(true))) + { + return false; + } + break; + } + + case token_type::value_integer: + { + if (JSON_HEDLEY_UNLIKELY(!sax->number_integer(m_lexer.get_number_integer()))) + { + return false; + } + break; + } + + case token_type::value_string: + { + if (JSON_HEDLEY_UNLIKELY(!sax->string(m_lexer.get_string()))) + { + return false; + } + break; + } + + case token_type::value_unsigned: + { + if (JSON_HEDLEY_UNLIKELY(!sax->number_unsigned(m_lexer.get_number_unsigned()))) + { + return false; + } + break; + } + + case token_type::parse_error: + { + // using "uninitialized" to avoid "expected" message + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::uninitialized, "value"))); + } + + default: // the last token was unexpected + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::literal_or_value, "value"))); + } + } + } + else + { + skip_to_state_evaluation = false; + } + + // we reached this line after we successfully parsed a value + if (states.empty()) + { + // empty stack: we reached the end of the hierarchy: done + return true; + } + + if (states.back()) // array + { + // comma -> next value + if (get_token() == token_type::value_separator) + { + // parse a new value + get_token(); + continue; + } + + // closing ] + if (JSON_HEDLEY_LIKELY(last_token == token_type::end_array)) + { + if (JSON_HEDLEY_UNLIKELY(!sax->end_array())) + { + return false; + } + + // We are done with this array. Before we can parse a + // new value, we need to evaluate the new state first. + // By setting skip_to_state_evaluation to false, we + // are effectively jumping to the beginning of this if. + JSON_ASSERT(!states.empty()); + states.pop_back(); + skip_to_state_evaluation = true; + continue; + } + + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_array, "array"))); + } + else // object + { + // comma -> next value + if (get_token() == token_type::value_separator) + { + // parse key + if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::value_string)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::value_string, "object key"))); + } + + if (JSON_HEDLEY_UNLIKELY(!sax->key(m_lexer.get_string()))) + { + return false; + } + + // parse separator (:) + if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::name_separator, "object separator"))); + } + + // parse values + get_token(); + continue; + } + + // closing } + if (JSON_HEDLEY_LIKELY(last_token == token_type::end_object)) + { + if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) + { + return false; + } + + // We are done with this object. Before we can parse a + // new value, we need to evaluate the new state first. + // By setting skip_to_state_evaluation to false, we + // are effectively jumping to the beginning of this if. + JSON_ASSERT(!states.empty()); + states.pop_back(); + skip_to_state_evaluation = true; + continue; + } + + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_object, "object"))); + } + } + } + + /// get next token from lexer + token_type get_token() + { + return last_token = m_lexer.scan(); + } + + std::string exception_message(const token_type expected, const std::string& context) + { + std::string error_msg = "syntax error "; + + if (!context.empty()) + { + error_msg += "while parsing " + context + " "; + } + + error_msg += "- "; + + if (last_token == token_type::parse_error) + { + error_msg += std::string(m_lexer.get_error_message()) + "; last read: '" + + m_lexer.get_token_string() + "'"; + } + else + { + error_msg += "unexpected " + std::string(lexer_t::token_type_name(last_token)); + } + + if (expected != token_type::uninitialized) + { + error_msg += "; expected " + std::string(lexer_t::token_type_name(expected)); + } + + return error_msg; + } + + private: + /// callback function + const parser_callback_t callback = nullptr; + /// the type of the last read token + token_type last_token = token_type::uninitialized; + /// the lexer + lexer_t m_lexer; + /// whether to throw exceptions in case of errors + const bool allow_exceptions = true; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/input/position_t.hpp b/external/json/include/nlohmann/detail/input/position_t.hpp new file mode 100644 index 0000000..14e9649 --- /dev/null +++ b/external/json/include/nlohmann/detail/input/position_t.hpp @@ -0,0 +1,27 @@ +#pragma once + +#include // size_t + +namespace nlohmann +{ +namespace detail +{ +/// struct to capture the start position of the current token +struct position_t +{ + /// the total number of characters read + std::size_t chars_read_total = 0; + /// the number of characters read in the current line + std::size_t chars_read_current_line = 0; + /// the number of lines read + std::size_t lines_read = 0; + + /// conversion to size_t to preserve SAX interface + constexpr operator size_t() const + { + return chars_read_total; + } +}; + +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/iterators/internal_iterator.hpp b/external/json/include/nlohmann/detail/iterators/internal_iterator.hpp new file mode 100644 index 0000000..2c81f72 --- /dev/null +++ b/external/json/include/nlohmann/detail/iterators/internal_iterator.hpp @@ -0,0 +1,25 @@ +#pragma once + +#include + +namespace nlohmann +{ +namespace detail +{ +/*! +@brief an iterator value + +@note This structure could easily be a union, but MSVC currently does not allow +unions members with complex constructors, see https://github.com/nlohmann/json/pull/105. +*/ +template struct internal_iterator +{ + /// iterator for JSON objects + typename BasicJsonType::object_t::iterator object_iterator {}; + /// iterator for JSON arrays + typename BasicJsonType::array_t::iterator array_iterator {}; + /// generic iterator for all other types + primitive_iterator_t primitive_iterator {}; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/iterators/iter_impl.hpp b/external/json/include/nlohmann/detail/iterators/iter_impl.hpp new file mode 100644 index 0000000..e9a394d --- /dev/null +++ b/external/json/include/nlohmann/detail/iterators/iter_impl.hpp @@ -0,0 +1,637 @@ +#pragma once + +#include // iterator, random_access_iterator_tag, bidirectional_iterator_tag, advance, next +#include // conditional, is_const, remove_const + +#include +#include +#include +#include +#include +#include +#include + +namespace nlohmann +{ +namespace detail +{ +// forward declare, to be able to friend it later on +template class iteration_proxy; +template class iteration_proxy_value; + +/*! +@brief a template for a bidirectional iterator for the @ref basic_json class +This class implements a both iterators (iterator and const_iterator) for the +@ref basic_json class. +@note An iterator is called *initialized* when a pointer to a JSON value has + been set (e.g., by a constructor or a copy assignment). If the iterator is + default-constructed, it is *uninitialized* and most methods are undefined. + **The library uses assertions to detect calls on uninitialized iterators.** +@requirement The class satisfies the following concept requirements: +- +[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator): + The iterator that can be moved can be moved in both directions (i.e. + incremented and decremented). +@since version 1.0.0, simplified in version 2.0.9, change to bidirectional + iterators in version 3.0.0 (see https://github.com/nlohmann/json/issues/593) +*/ +template +class iter_impl +{ + /// allow basic_json to access private members + friend iter_impl::value, typename std::remove_const::type, const BasicJsonType>::type>; + friend BasicJsonType; + friend iteration_proxy; + friend iteration_proxy_value; + + using object_t = typename BasicJsonType::object_t; + using array_t = typename BasicJsonType::array_t; + // make sure BasicJsonType is basic_json or const basic_json + static_assert(is_basic_json::type>::value, + "iter_impl only accepts (const) basic_json"); + + public: + + /// The std::iterator class template (used as a base class to provide typedefs) is deprecated in C++17. + /// The C++ Standard has never required user-defined iterators to derive from std::iterator. + /// A user-defined iterator should provide publicly accessible typedefs named + /// iterator_category, value_type, difference_type, pointer, and reference. + /// Note that value_type is required to be non-const, even for constant iterators. + using iterator_category = std::bidirectional_iterator_tag; + + /// the type of the values when the iterator is dereferenced + using value_type = typename BasicJsonType::value_type; + /// a type to represent differences between iterators + using difference_type = typename BasicJsonType::difference_type; + /// defines a pointer to the type iterated over (value_type) + using pointer = typename std::conditional::value, + typename BasicJsonType::const_pointer, + typename BasicJsonType::pointer>::type; + /// defines a reference to the type iterated over (value_type) + using reference = + typename std::conditional::value, + typename BasicJsonType::const_reference, + typename BasicJsonType::reference>::type; + + /// default constructor + iter_impl() = default; + + /*! + @brief constructor for a given JSON instance + @param[in] object pointer to a JSON object for this iterator + @pre object != nullptr + @post The iterator is initialized; i.e. `m_object != nullptr`. + */ + explicit iter_impl(pointer object) noexcept : m_object(object) + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + m_it.object_iterator = typename object_t::iterator(); + break; + } + + case value_t::array: + { + m_it.array_iterator = typename array_t::iterator(); + break; + } + + default: + { + m_it.primitive_iterator = primitive_iterator_t(); + break; + } + } + } + + /*! + @note The conventional copy constructor and copy assignment are implicitly + defined. Combined with the following converting constructor and + assignment, they support: (1) copy from iterator to iterator, (2) + copy from const iterator to const iterator, and (3) conversion from + iterator to const iterator. However conversion from const iterator + to iterator is not defined. + */ + + /*! + @brief const copy constructor + @param[in] other const iterator to copy from + @note This copy constructor had to be defined explicitly to circumvent a bug + occurring on msvc v19.0 compiler (VS 2015) debug build. For more + information refer to: https://github.com/nlohmann/json/issues/1608 + */ + iter_impl(const iter_impl& other) noexcept + : m_object(other.m_object), m_it(other.m_it) + {} + + /*! + @brief converting assignment + @param[in] other const iterator to copy from + @return const/non-const iterator + @note It is not checked whether @a other is initialized. + */ + iter_impl& operator=(const iter_impl& other) noexcept + { + m_object = other.m_object; + m_it = other.m_it; + return *this; + } + + /*! + @brief converting constructor + @param[in] other non-const iterator to copy from + @note It is not checked whether @a other is initialized. + */ + iter_impl(const iter_impl::type>& other) noexcept + : m_object(other.m_object), m_it(other.m_it) + {} + + /*! + @brief converting assignment + @param[in] other non-const iterator to copy from + @return const/non-const iterator + @note It is not checked whether @a other is initialized. + */ + iter_impl& operator=(const iter_impl::type>& other) noexcept + { + m_object = other.m_object; + m_it = other.m_it; + return *this; + } + + private: + /*! + @brief set the iterator to the first value + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + void set_begin() noexcept + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + m_it.object_iterator = m_object->m_value.object->begin(); + break; + } + + case value_t::array: + { + m_it.array_iterator = m_object->m_value.array->begin(); + break; + } + + case value_t::null: + { + // set to end so begin()==end() is true: null is empty + m_it.primitive_iterator.set_end(); + break; + } + + default: + { + m_it.primitive_iterator.set_begin(); + break; + } + } + } + + /*! + @brief set the iterator past the last value + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + void set_end() noexcept + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + m_it.object_iterator = m_object->m_value.object->end(); + break; + } + + case value_t::array: + { + m_it.array_iterator = m_object->m_value.array->end(); + break; + } + + default: + { + m_it.primitive_iterator.set_end(); + break; + } + } + } + + public: + /*! + @brief return a reference to the value pointed to by the iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + reference operator*() const + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + JSON_ASSERT(m_it.object_iterator != m_object->m_value.object->end()); + return m_it.object_iterator->second; + } + + case value_t::array: + { + JSON_ASSERT(m_it.array_iterator != m_object->m_value.array->end()); + return *m_it.array_iterator; + } + + case value_t::null: + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + + default: + { + if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin())) + { + return *m_object; + } + + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + } + } + } + + /*! + @brief dereference the iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + pointer operator->() const + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + JSON_ASSERT(m_it.object_iterator != m_object->m_value.object->end()); + return &(m_it.object_iterator->second); + } + + case value_t::array: + { + JSON_ASSERT(m_it.array_iterator != m_object->m_value.array->end()); + return &*m_it.array_iterator; + } + + default: + { + if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin())) + { + return m_object; + } + + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + } + } + } + + /*! + @brief post-increment (it++) + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl const operator++(int) + { + auto result = *this; + ++(*this); + return result; + } + + /*! + @brief pre-increment (++it) + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl& operator++() + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + std::advance(m_it.object_iterator, 1); + break; + } + + case value_t::array: + { + std::advance(m_it.array_iterator, 1); + break; + } + + default: + { + ++m_it.primitive_iterator; + break; + } + } + + return *this; + } + + /*! + @brief post-decrement (it--) + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl const operator--(int) + { + auto result = *this; + --(*this); + return result; + } + + /*! + @brief pre-decrement (--it) + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl& operator--() + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + std::advance(m_it.object_iterator, -1); + break; + } + + case value_t::array: + { + std::advance(m_it.array_iterator, -1); + break; + } + + default: + { + --m_it.primitive_iterator; + break; + } + } + + return *this; + } + + /*! + @brief comparison: equal + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator==(const iter_impl& other) const + { + // if objects are not the same, the comparison is undefined + if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) + { + JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers")); + } + + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + return (m_it.object_iterator == other.m_it.object_iterator); + + case value_t::array: + return (m_it.array_iterator == other.m_it.array_iterator); + + default: + return (m_it.primitive_iterator == other.m_it.primitive_iterator); + } + } + + /*! + @brief comparison: not equal + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator!=(const iter_impl& other) const + { + return !operator==(other); + } + + /*! + @brief comparison: smaller + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator<(const iter_impl& other) const + { + // if objects are not the same, the comparison is undefined + if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) + { + JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers")); + } + + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + JSON_THROW(invalid_iterator::create(213, "cannot compare order of object iterators")); + + case value_t::array: + return (m_it.array_iterator < other.m_it.array_iterator); + + default: + return (m_it.primitive_iterator < other.m_it.primitive_iterator); + } + } + + /*! + @brief comparison: less than or equal + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator<=(const iter_impl& other) const + { + return !other.operator < (*this); + } + + /*! + @brief comparison: greater than + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator>(const iter_impl& other) const + { + return !operator<=(other); + } + + /*! + @brief comparison: greater than or equal + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator>=(const iter_impl& other) const + { + return !operator<(other); + } + + /*! + @brief add to iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl& operator+=(difference_type i) + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators")); + + case value_t::array: + { + std::advance(m_it.array_iterator, i); + break; + } + + default: + { + m_it.primitive_iterator += i; + break; + } + } + + return *this; + } + + /*! + @brief subtract from iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl& operator-=(difference_type i) + { + return operator+=(-i); + } + + /*! + @brief add to iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl operator+(difference_type i) const + { + auto result = *this; + result += i; + return result; + } + + /*! + @brief addition of distance and iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + friend iter_impl operator+(difference_type i, const iter_impl& it) + { + auto result = it; + result += i; + return result; + } + + /*! + @brief subtract from iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl operator-(difference_type i) const + { + auto result = *this; + result -= i; + return result; + } + + /*! + @brief return difference + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + difference_type operator-(const iter_impl& other) const + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators")); + + case value_t::array: + return m_it.array_iterator - other.m_it.array_iterator; + + default: + return m_it.primitive_iterator - other.m_it.primitive_iterator; + } + } + + /*! + @brief access to successor + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + reference operator[](difference_type n) const + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + JSON_THROW(invalid_iterator::create(208, "cannot use operator[] for object iterators")); + + case value_t::array: + return *std::next(m_it.array_iterator, n); + + case value_t::null: + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + + default: + { + if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.get_value() == -n)) + { + return *m_object; + } + + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + } + } + } + + /*! + @brief return the key of an object iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + const typename object_t::key_type& key() const + { + JSON_ASSERT(m_object != nullptr); + + if (JSON_HEDLEY_LIKELY(m_object->is_object())) + { + return m_it.object_iterator->first; + } + + JSON_THROW(invalid_iterator::create(207, "cannot use key() for non-object iterators")); + } + + /*! + @brief return the value of an iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + reference value() const + { + return operator*(); + } + + private: + /// associated JSON instance + pointer m_object = nullptr; + /// the actual iterator of the associated instance + internal_iterator::type> m_it {}; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/iterators/iteration_proxy.hpp b/external/json/include/nlohmann/detail/iterators/iteration_proxy.hpp new file mode 100644 index 0000000..74b4eb3 --- /dev/null +++ b/external/json/include/nlohmann/detail/iterators/iteration_proxy.hpp @@ -0,0 +1,178 @@ +#pragma once + +#include // size_t +#include // input_iterator_tag +#include // string, to_string +#include // tuple_size, get, tuple_element + +#include +#include + +namespace nlohmann +{ +namespace detail +{ +template +void int_to_string( string_type& target, std::size_t value ) +{ + // For ADL + using std::to_string; + target = to_string(value); +} +template class iteration_proxy_value +{ + public: + using difference_type = std::ptrdiff_t; + using value_type = iteration_proxy_value; + using pointer = value_type * ; + using reference = value_type & ; + using iterator_category = std::input_iterator_tag; + using string_type = typename std::remove_cv< typename std::remove_reference().key() ) >::type >::type; + + private: + /// the iterator + IteratorType anchor; + /// an index for arrays (used to create key names) + std::size_t array_index = 0; + /// last stringified array index + mutable std::size_t array_index_last = 0; + /// a string representation of the array index + mutable string_type array_index_str = "0"; + /// an empty string (to return a reference for primitive values) + const string_type empty_str = ""; + + public: + explicit iteration_proxy_value(IteratorType it) noexcept : anchor(it) {} + + /// dereference operator (needed for range-based for) + iteration_proxy_value& operator*() + { + return *this; + } + + /// increment operator (needed for range-based for) + iteration_proxy_value& operator++() + { + ++anchor; + ++array_index; + + return *this; + } + + /// equality operator (needed for InputIterator) + bool operator==(const iteration_proxy_value& o) const + { + return anchor == o.anchor; + } + + /// inequality operator (needed for range-based for) + bool operator!=(const iteration_proxy_value& o) const + { + return anchor != o.anchor; + } + + /// return key of the iterator + const string_type& key() const + { + JSON_ASSERT(anchor.m_object != nullptr); + + switch (anchor.m_object->type()) + { + // use integer array index as key + case value_t::array: + { + if (array_index != array_index_last) + { + int_to_string( array_index_str, array_index ); + array_index_last = array_index; + } + return array_index_str; + } + + // use key from the object + case value_t::object: + return anchor.key(); + + // use an empty key for all primitive types + default: + return empty_str; + } + } + + /// return value of the iterator + typename IteratorType::reference value() const + { + return anchor.value(); + } +}; + +/// proxy class for the items() function +template class iteration_proxy +{ + private: + /// the container to iterate + typename IteratorType::reference container; + + public: + /// construct iteration proxy from a container + explicit iteration_proxy(typename IteratorType::reference cont) noexcept + : container(cont) {} + + /// return iterator begin (needed for range-based for) + iteration_proxy_value begin() noexcept + { + return iteration_proxy_value(container.begin()); + } + + /// return iterator end (needed for range-based for) + iteration_proxy_value end() noexcept + { + return iteration_proxy_value(container.end()); + } +}; +// Structured Bindings Support +// For further reference see https://blog.tartanllama.xyz/structured-bindings/ +// And see https://github.com/nlohmann/json/pull/1391 +template = 0> +auto get(const nlohmann::detail::iteration_proxy_value& i) -> decltype(i.key()) +{ + return i.key(); +} +// Structured Bindings Support +// For further reference see https://blog.tartanllama.xyz/structured-bindings/ +// And see https://github.com/nlohmann/json/pull/1391 +template = 0> +auto get(const nlohmann::detail::iteration_proxy_value& i) -> decltype(i.value()) +{ + return i.value(); +} +} // namespace detail +} // namespace nlohmann + +// The Addition to the STD Namespace is required to add +// Structured Bindings Support to the iteration_proxy_value class +// For further reference see https://blog.tartanllama.xyz/structured-bindings/ +// And see https://github.com/nlohmann/json/pull/1391 +namespace std +{ +#if defined(__clang__) + // Fix: https://github.com/nlohmann/json/issues/1401 + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wmismatched-tags" +#endif +template +class tuple_size<::nlohmann::detail::iteration_proxy_value> + : public std::integral_constant {}; + +template +class tuple_element> +{ + public: + using type = decltype( + get(std::declval < + ::nlohmann::detail::iteration_proxy_value> ())); +}; +#if defined(__clang__) + #pragma clang diagnostic pop +#endif +} // namespace std diff --git a/external/json/include/nlohmann/detail/iterators/iterator_traits.hpp b/external/json/include/nlohmann/detail/iterators/iterator_traits.hpp new file mode 100644 index 0000000..da56361 --- /dev/null +++ b/external/json/include/nlohmann/detail/iterators/iterator_traits.hpp @@ -0,0 +1,51 @@ +#pragma once + +#include // random_access_iterator_tag + +#include +#include + +namespace nlohmann +{ +namespace detail +{ +template +struct iterator_types {}; + +template +struct iterator_types < + It, + void_t> +{ + using difference_type = typename It::difference_type; + using value_type = typename It::value_type; + using pointer = typename It::pointer; + using reference = typename It::reference; + using iterator_category = typename It::iterator_category; +}; + +// This is required as some compilers implement std::iterator_traits in a way that +// doesn't work with SFINAE. See https://github.com/nlohmann/json/issues/1341. +template +struct iterator_traits +{ +}; + +template +struct iterator_traits < T, enable_if_t < !std::is_pointer::value >> + : iterator_types +{ +}; + +template +struct iterator_traits::value>> +{ + using iterator_category = std::random_access_iterator_tag; + using value_type = T; + using difference_type = ptrdiff_t; + using pointer = T*; + using reference = T&; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp b/external/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp new file mode 100644 index 0000000..f3b5b5d --- /dev/null +++ b/external/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp @@ -0,0 +1,119 @@ +#pragma once + +#include // ptrdiff_t +#include // reverse_iterator +#include // declval + +namespace nlohmann +{ +namespace detail +{ +////////////////////// +// reverse_iterator // +////////////////////// + +/*! +@brief a template for a reverse iterator class + +@tparam Base the base iterator type to reverse. Valid types are @ref +iterator (to create @ref reverse_iterator) and @ref const_iterator (to +create @ref const_reverse_iterator). + +@requirement The class satisfies the following concept requirements: +- +[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator): + The iterator that can be moved can be moved in both directions (i.e. + incremented and decremented). +- [OutputIterator](https://en.cppreference.com/w/cpp/named_req/OutputIterator): + It is possible to write to the pointed-to element (only if @a Base is + @ref iterator). + +@since version 1.0.0 +*/ +template +class json_reverse_iterator : public std::reverse_iterator +{ + public: + using difference_type = std::ptrdiff_t; + /// shortcut to the reverse iterator adapter + using base_iterator = std::reverse_iterator; + /// the reference type for the pointed-to element + using reference = typename Base::reference; + + /// create reverse iterator from iterator + explicit json_reverse_iterator(const typename base_iterator::iterator_type& it) noexcept + : base_iterator(it) {} + + /// create reverse iterator from base class + explicit json_reverse_iterator(const base_iterator& it) noexcept : base_iterator(it) {} + + /// post-increment (it++) + json_reverse_iterator const operator++(int) + { + return static_cast(base_iterator::operator++(1)); + } + + /// pre-increment (++it) + json_reverse_iterator& operator++() + { + return static_cast(base_iterator::operator++()); + } + + /// post-decrement (it--) + json_reverse_iterator const operator--(int) + { + return static_cast(base_iterator::operator--(1)); + } + + /// pre-decrement (--it) + json_reverse_iterator& operator--() + { + return static_cast(base_iterator::operator--()); + } + + /// add to iterator + json_reverse_iterator& operator+=(difference_type i) + { + return static_cast(base_iterator::operator+=(i)); + } + + /// add to iterator + json_reverse_iterator operator+(difference_type i) const + { + return static_cast(base_iterator::operator+(i)); + } + + /// subtract from iterator + json_reverse_iterator operator-(difference_type i) const + { + return static_cast(base_iterator::operator-(i)); + } + + /// return difference + difference_type operator-(const json_reverse_iterator& other) const + { + return base_iterator(*this) - base_iterator(other); + } + + /// access to successor + reference operator[](difference_type n) const + { + return *(this->operator+(n)); + } + + /// return the key of an object iterator + auto key() const -> decltype(std::declval().key()) + { + auto it = --this->base(); + return it.key(); + } + + /// return the value of an iterator + reference value() const + { + auto it = --this->base(); + return it.operator * (); + } +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/iterators/primitive_iterator.hpp b/external/json/include/nlohmann/detail/iterators/primitive_iterator.hpp new file mode 100644 index 0000000..28d6f1a --- /dev/null +++ b/external/json/include/nlohmann/detail/iterators/primitive_iterator.hpp @@ -0,0 +1,120 @@ +#pragma once + +#include // ptrdiff_t +#include // numeric_limits + +namespace nlohmann +{ +namespace detail +{ +/* +@brief an iterator for primitive JSON types + +This class models an iterator for primitive JSON types (boolean, number, +string). It's only purpose is to allow the iterator/const_iterator classes +to "iterate" over primitive values. Internally, the iterator is modeled by +a `difference_type` variable. Value begin_value (`0`) models the begin, +end_value (`1`) models past the end. +*/ +class primitive_iterator_t +{ + private: + using difference_type = std::ptrdiff_t; + static constexpr difference_type begin_value = 0; + static constexpr difference_type end_value = begin_value + 1; + + /// iterator as signed integer type + difference_type m_it = (std::numeric_limits::min)(); + + public: + constexpr difference_type get_value() const noexcept + { + return m_it; + } + + /// set iterator to a defined beginning + void set_begin() noexcept + { + m_it = begin_value; + } + + /// set iterator to a defined past the end + void set_end() noexcept + { + m_it = end_value; + } + + /// return whether the iterator can be dereferenced + constexpr bool is_begin() const noexcept + { + return m_it == begin_value; + } + + /// return whether the iterator is at end + constexpr bool is_end() const noexcept + { + return m_it == end_value; + } + + friend constexpr bool operator==(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept + { + return lhs.m_it == rhs.m_it; + } + + friend constexpr bool operator<(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept + { + return lhs.m_it < rhs.m_it; + } + + primitive_iterator_t operator+(difference_type n) noexcept + { + auto result = *this; + result += n; + return result; + } + + friend constexpr difference_type operator-(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept + { + return lhs.m_it - rhs.m_it; + } + + primitive_iterator_t& operator++() noexcept + { + ++m_it; + return *this; + } + + primitive_iterator_t const operator++(int) noexcept + { + auto result = *this; + ++m_it; + return result; + } + + primitive_iterator_t& operator--() noexcept + { + --m_it; + return *this; + } + + primitive_iterator_t const operator--(int) noexcept + { + auto result = *this; + --m_it; + return result; + } + + primitive_iterator_t& operator+=(difference_type n) noexcept + { + m_it += n; + return *this; + } + + primitive_iterator_t& operator-=(difference_type n) noexcept + { + m_it -= n; + return *this; + } +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/json_pointer.hpp b/external/json/include/nlohmann/detail/json_pointer.hpp new file mode 100644 index 0000000..78bc3a3 --- /dev/null +++ b/external/json/include/nlohmann/detail/json_pointer.hpp @@ -0,0 +1,975 @@ +#pragma once + +#include // all_of +#include // isdigit +#include // max +#include // accumulate +#include // string +#include // move +#include // vector + +#include +#include +#include + +namespace nlohmann +{ +template +class json_pointer +{ + // allow basic_json to access private members + NLOHMANN_BASIC_JSON_TPL_DECLARATION + friend class basic_json; + + public: + /*! + @brief create JSON pointer + + Create a JSON pointer according to the syntax described in + [Section 3 of RFC6901](https://tools.ietf.org/html/rfc6901#section-3). + + @param[in] s string representing the JSON pointer; if omitted, the empty + string is assumed which references the whole JSON value + + @throw parse_error.107 if the given JSON pointer @a s is nonempty and does + not begin with a slash (`/`); see example below + + @throw parse_error.108 if a tilde (`~`) in the given JSON pointer @a s is + not followed by `0` (representing `~`) or `1` (representing `/`); see + example below + + @liveexample{The example shows the construction several valid JSON pointers + as well as the exceptional behavior.,json_pointer} + + @since version 2.0.0 + */ + explicit json_pointer(const std::string& s = "") + : reference_tokens(split(s)) + {} + + /*! + @brief return a string representation of the JSON pointer + + @invariant For each JSON pointer `ptr`, it holds: + @code {.cpp} + ptr == json_pointer(ptr.to_string()); + @endcode + + @return a string representation of the JSON pointer + + @liveexample{The example shows the result of `to_string`.,json_pointer__to_string} + + @since version 2.0.0 + */ + std::string to_string() const + { + return std::accumulate(reference_tokens.begin(), reference_tokens.end(), + std::string{}, + [](const std::string & a, const std::string & b) + { + return a + "/" + escape(b); + }); + } + + /// @copydoc to_string() + operator std::string() const + { + return to_string(); + } + + /*! + @brief append another JSON pointer at the end of this JSON pointer + + @param[in] ptr JSON pointer to append + @return JSON pointer with @a ptr appended + + @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} + + @complexity Linear in the length of @a ptr. + + @sa @ref operator/=(std::string) to append a reference token + @sa @ref operator/=(std::size_t) to append an array index + @sa @ref operator/(const json_pointer&, const json_pointer&) for a binary operator + + @since version 3.6.0 + */ + json_pointer& operator/=(const json_pointer& ptr) + { + reference_tokens.insert(reference_tokens.end(), + ptr.reference_tokens.begin(), + ptr.reference_tokens.end()); + return *this; + } + + /*! + @brief append an unescaped reference token at the end of this JSON pointer + + @param[in] token reference token to append + @return JSON pointer with @a token appended without escaping @a token + + @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} + + @complexity Amortized constant. + + @sa @ref operator/=(const json_pointer&) to append a JSON pointer + @sa @ref operator/=(std::size_t) to append an array index + @sa @ref operator/(const json_pointer&, std::size_t) for a binary operator + + @since version 3.6.0 + */ + json_pointer& operator/=(std::string token) + { + push_back(std::move(token)); + return *this; + } + + /*! + @brief append an array index at the end of this JSON pointer + + @param[in] array_idx array index to append + @return JSON pointer with @a array_idx appended + + @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} + + @complexity Amortized constant. + + @sa @ref operator/=(const json_pointer&) to append a JSON pointer + @sa @ref operator/=(std::string) to append a reference token + @sa @ref operator/(const json_pointer&, std::string) for a binary operator + + @since version 3.6.0 + */ + json_pointer& operator/=(std::size_t array_idx) + { + return *this /= std::to_string(array_idx); + } + + /*! + @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer + + @param[in] lhs JSON pointer + @param[in] rhs JSON pointer + @return a new JSON pointer with @a rhs appended to @a lhs + + @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} + + @complexity Linear in the length of @a lhs and @a rhs. + + @sa @ref operator/=(const json_pointer&) to append a JSON pointer + + @since version 3.6.0 + */ + friend json_pointer operator/(const json_pointer& lhs, + const json_pointer& rhs) + { + return json_pointer(lhs) /= rhs; + } + + /*! + @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer + + @param[in] ptr JSON pointer + @param[in] token reference token + @return a new JSON pointer with unescaped @a token appended to @a ptr + + @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} + + @complexity Linear in the length of @a ptr. + + @sa @ref operator/=(std::string) to append a reference token + + @since version 3.6.0 + */ + friend json_pointer operator/(const json_pointer& ptr, std::string token) + { + return json_pointer(ptr) /= std::move(token); + } + + /*! + @brief create a new JSON pointer by appending the array-index-token at the end of the JSON pointer + + @param[in] ptr JSON pointer + @param[in] array_idx array index + @return a new JSON pointer with @a array_idx appended to @a ptr + + @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} + + @complexity Linear in the length of @a ptr. + + @sa @ref operator/=(std::size_t) to append an array index + + @since version 3.6.0 + */ + friend json_pointer operator/(const json_pointer& ptr, std::size_t array_idx) + { + return json_pointer(ptr) /= array_idx; + } + + /*! + @brief returns the parent of this JSON pointer + + @return parent of this JSON pointer; in case this JSON pointer is the root, + the root itself is returned + + @complexity Linear in the length of the JSON pointer. + + @liveexample{The example shows the result of `parent_pointer` for different + JSON Pointers.,json_pointer__parent_pointer} + + @since version 3.6.0 + */ + json_pointer parent_pointer() const + { + if (empty()) + { + return *this; + } + + json_pointer res = *this; + res.pop_back(); + return res; + } + + /*! + @brief remove last reference token + + @pre not `empty()` + + @liveexample{The example shows the usage of `pop_back`.,json_pointer__pop_back} + + @complexity Constant. + + @throw out_of_range.405 if JSON pointer has no parent + + @since version 3.6.0 + */ + void pop_back() + { + if (JSON_HEDLEY_UNLIKELY(empty())) + { + JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); + } + + reference_tokens.pop_back(); + } + + /*! + @brief return last reference token + + @pre not `empty()` + @return last reference token + + @liveexample{The example shows the usage of `back`.,json_pointer__back} + + @complexity Constant. + + @throw out_of_range.405 if JSON pointer has no parent + + @since version 3.6.0 + */ + const std::string& back() const + { + if (JSON_HEDLEY_UNLIKELY(empty())) + { + JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); + } + + return reference_tokens.back(); + } + + /*! + @brief append an unescaped token at the end of the reference pointer + + @param[in] token token to add + + @complexity Amortized constant. + + @liveexample{The example shows the result of `push_back` for different + JSON Pointers.,json_pointer__push_back} + + @since version 3.6.0 + */ + void push_back(const std::string& token) + { + reference_tokens.push_back(token); + } + + /// @copydoc push_back(const std::string&) + void push_back(std::string&& token) + { + reference_tokens.push_back(std::move(token)); + } + + /*! + @brief return whether pointer points to the root document + + @return true iff the JSON pointer points to the root document + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example shows the result of `empty` for different JSON + Pointers.,json_pointer__empty} + + @since version 3.6.0 + */ + bool empty() const noexcept + { + return reference_tokens.empty(); + } + + private: + /*! + @param[in] s reference token to be converted into an array index + + @return integer representation of @a s + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index begins not with a digit + @throw out_of_range.404 if string @a s could not be converted to an integer + @throw out_of_range.410 if an array index exceeds size_type + */ + static typename BasicJsonType::size_type array_index(const std::string& s) + { + using size_type = typename BasicJsonType::size_type; + + // error condition (cf. RFC 6901, Sect. 4) + if (JSON_HEDLEY_UNLIKELY(s.size() > 1 && s[0] == '0')) + { + JSON_THROW(detail::parse_error::create(106, 0, + "array index '" + s + + "' must not begin with '0'")); + } + + // error condition (cf. RFC 6901, Sect. 4) + if (JSON_HEDLEY_UNLIKELY(s.size() > 1 && !(s[0] >= '1' && s[0] <= '9'))) + { + JSON_THROW(detail::parse_error::create(109, 0, "array index '" + s + "' is not a number")); + } + + std::size_t processed_chars = 0; + unsigned long long res = 0; + JSON_TRY + { + res = std::stoull(s, &processed_chars); + } + JSON_CATCH(std::out_of_range&) + { + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); + } + + // check if the string was completely read + if (JSON_HEDLEY_UNLIKELY(processed_chars != s.size())) + { + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); + } + + // only triggered on special platforms (like 32bit), see also + // https://github.com/nlohmann/json/pull/2203 + if (res >= static_cast((std::numeric_limits::max)())) + { + JSON_THROW(detail::out_of_range::create(410, "array index " + s + " exceeds size_type")); // LCOV_EXCL_LINE + } + + return static_cast(res); + } + + json_pointer top() const + { + if (JSON_HEDLEY_UNLIKELY(empty())) + { + JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); + } + + json_pointer result = *this; + result.reference_tokens = {reference_tokens[0]}; + return result; + } + + /*! + @brief create and return a reference to the pointed to value + + @complexity Linear in the number of reference tokens. + + @throw parse_error.109 if array index is not a number + @throw type_error.313 if value cannot be unflattened + */ + BasicJsonType& get_and_create(BasicJsonType& j) const + { + auto result = &j; + + // in case no reference tokens exist, return a reference to the JSON value + // j which will be overwritten by a primitive value + for (const auto& reference_token : reference_tokens) + { + switch (result->type()) + { + case detail::value_t::null: + { + if (reference_token == "0") + { + // start a new array if reference token is 0 + result = &result->operator[](0); + } + else + { + // start a new object otherwise + result = &result->operator[](reference_token); + } + break; + } + + case detail::value_t::object: + { + // create an entry in the object + result = &result->operator[](reference_token); + break; + } + + case detail::value_t::array: + { + // create an entry in the array + result = &result->operator[](array_index(reference_token)); + break; + } + + /* + The following code is only reached if there exists a reference + token _and_ the current value is primitive. In this case, we have + an error situation, because primitive values may only occur as + single value; that is, with an empty list of reference tokens. + */ + default: + JSON_THROW(detail::type_error::create(313, "invalid value to unflatten")); + } + } + + return *result; + } + + /*! + @brief return a reference to the pointed to value + + @note This version does not throw if a value is not present, but tries to + create nested values instead. For instance, calling this function + with pointer `"/this/that"` on a null value is equivalent to calling + `operator[]("this").operator[]("that")` on that value, effectively + changing the null value to an object. + + @param[in] ptr a JSON value + + @return reference to the JSON value pointed to by the JSON pointer + + @complexity Linear in the length of the JSON pointer. + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.404 if the JSON pointer can not be resolved + */ + BasicJsonType& get_unchecked(BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + // convert null values to arrays or objects before continuing + if (ptr->is_null()) + { + // check if reference token is a number + const bool nums = + std::all_of(reference_token.begin(), reference_token.end(), + [](const unsigned char x) + { + return std::isdigit(x); + }); + + // change value to array for numbers or "-" or to object otherwise + *ptr = (nums || reference_token == "-") + ? detail::value_t::array + : detail::value_t::object; + } + + switch (ptr->type()) + { + case detail::value_t::object: + { + // use unchecked object access + ptr = &ptr->operator[](reference_token); + break; + } + + case detail::value_t::array: + { + if (reference_token == "-") + { + // explicitly treat "-" as index beyond the end + ptr = &ptr->operator[](ptr->m_value.array->size()); + } + else + { + // convert array index to number; unchecked access + ptr = &ptr->operator[](array_index(reference_token)); + } + break; + } + + default: + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); + } + } + + return *ptr; + } + + /*! + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.402 if the array index '-' is used + @throw out_of_range.404 if the JSON pointer can not be resolved + */ + BasicJsonType& get_checked(BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + switch (ptr->type()) + { + case detail::value_t::object: + { + // note: at performs range check + ptr = &ptr->at(reference_token); + break; + } + + case detail::value_t::array: + { + if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) + { + // "-" always fails the range check + JSON_THROW(detail::out_of_range::create(402, + "array index '-' (" + std::to_string(ptr->m_value.array->size()) + + ") is out of range")); + } + + // note: at performs range check + ptr = &ptr->at(array_index(reference_token)); + break; + } + + default: + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); + } + } + + return *ptr; + } + + /*! + @brief return a const reference to the pointed to value + + @param[in] ptr a JSON value + + @return const reference to the JSON value pointed to by the JSON + pointer + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.402 if the array index '-' is used + @throw out_of_range.404 if the JSON pointer can not be resolved + */ + const BasicJsonType& get_unchecked(const BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + switch (ptr->type()) + { + case detail::value_t::object: + { + // use unchecked object access + ptr = &ptr->operator[](reference_token); + break; + } + + case detail::value_t::array: + { + if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) + { + // "-" cannot be used for const access + JSON_THROW(detail::out_of_range::create(402, + "array index '-' (" + std::to_string(ptr->m_value.array->size()) + + ") is out of range")); + } + + // use unchecked array access + ptr = &ptr->operator[](array_index(reference_token)); + break; + } + + default: + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); + } + } + + return *ptr; + } + + /*! + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.402 if the array index '-' is used + @throw out_of_range.404 if the JSON pointer can not be resolved + */ + const BasicJsonType& get_checked(const BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + switch (ptr->type()) + { + case detail::value_t::object: + { + // note: at performs range check + ptr = &ptr->at(reference_token); + break; + } + + case detail::value_t::array: + { + if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) + { + // "-" always fails the range check + JSON_THROW(detail::out_of_range::create(402, + "array index '-' (" + std::to_string(ptr->m_value.array->size()) + + ") is out of range")); + } + + // note: at performs range check + ptr = &ptr->at(array_index(reference_token)); + break; + } + + default: + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); + } + } + + return *ptr; + } + + /*! + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + */ + bool contains(const BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + switch (ptr->type()) + { + case detail::value_t::object: + { + if (!ptr->contains(reference_token)) + { + // we did not find the key in the object + return false; + } + + ptr = &ptr->operator[](reference_token); + break; + } + + case detail::value_t::array: + { + if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) + { + // "-" always fails the range check + return false; + } + if (JSON_HEDLEY_UNLIKELY(reference_token.size() == 1 && !("0" <= reference_token && reference_token <= "9"))) + { + // invalid char + return false; + } + if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1)) + { + if (JSON_HEDLEY_UNLIKELY(!('1' <= reference_token[0] && reference_token[0] <= '9'))) + { + // first char should be between '1' and '9' + return false; + } + for (std::size_t i = 1; i < reference_token.size(); i++) + { + if (JSON_HEDLEY_UNLIKELY(!('0' <= reference_token[i] && reference_token[i] <= '9'))) + { + // other char should be between '0' and '9' + return false; + } + } + } + + const auto idx = array_index(reference_token); + if (idx >= ptr->size()) + { + // index out of range + return false; + } + + ptr = &ptr->operator[](idx); + break; + } + + default: + { + // we do not expect primitive values if there is still a + // reference token to process + return false; + } + } + } + + // no reference token left means we found a primitive value + return true; + } + + /*! + @brief split the string input to reference tokens + + @note This function is only called by the json_pointer constructor. + All exceptions below are documented there. + + @throw parse_error.107 if the pointer is not empty or begins with '/' + @throw parse_error.108 if character '~' is not followed by '0' or '1' + */ + static std::vector split(const std::string& reference_string) + { + std::vector result; + + // special case: empty reference string -> no reference tokens + if (reference_string.empty()) + { + return result; + } + + // check if nonempty reference string begins with slash + if (JSON_HEDLEY_UNLIKELY(reference_string[0] != '/')) + { + JSON_THROW(detail::parse_error::create(107, 1, + "JSON pointer must be empty or begin with '/' - was: '" + + reference_string + "'")); + } + + // extract the reference tokens: + // - slash: position of the last read slash (or end of string) + // - start: position after the previous slash + for ( + // search for the first slash after the first character + std::size_t slash = reference_string.find_first_of('/', 1), + // set the beginning of the first reference token + start = 1; + // we can stop if start == 0 (if slash == std::string::npos) + start != 0; + // set the beginning of the next reference token + // (will eventually be 0 if slash == std::string::npos) + start = (slash == std::string::npos) ? 0 : slash + 1, + // find next slash + slash = reference_string.find_first_of('/', start)) + { + // use the text between the beginning of the reference token + // (start) and the last slash (slash). + auto reference_token = reference_string.substr(start, slash - start); + + // check reference tokens are properly escaped + for (std::size_t pos = reference_token.find_first_of('~'); + pos != std::string::npos; + pos = reference_token.find_first_of('~', pos + 1)) + { + JSON_ASSERT(reference_token[pos] == '~'); + + // ~ must be followed by 0 or 1 + if (JSON_HEDLEY_UNLIKELY(pos == reference_token.size() - 1 || + (reference_token[pos + 1] != '0' && + reference_token[pos + 1] != '1'))) + { + JSON_THROW(detail::parse_error::create(108, 0, "escape character '~' must be followed with '0' or '1'")); + } + } + + // finally, store the reference token + unescape(reference_token); + result.push_back(reference_token); + } + + return result; + } + + /*! + @brief replace all occurrences of a substring by another string + + @param[in,out] s the string to manipulate; changed so that all + occurrences of @a f are replaced with @a t + @param[in] f the substring to replace with @a t + @param[in] t the string to replace @a f + + @pre The search string @a f must not be empty. **This precondition is + enforced with an assertion.** + + @since version 2.0.0 + */ + static void replace_substring(std::string& s, const std::string& f, + const std::string& t) + { + JSON_ASSERT(!f.empty()); + for (auto pos = s.find(f); // find first occurrence of f + pos != std::string::npos; // make sure f was found + s.replace(pos, f.size(), t), // replace with t, and + pos = s.find(f, pos + t.size())) // find next occurrence of f + {} + } + + /// escape "~" to "~0" and "/" to "~1" + static std::string escape(std::string s) + { + replace_substring(s, "~", "~0"); + replace_substring(s, "/", "~1"); + return s; + } + + /// unescape "~1" to tilde and "~0" to slash (order is important!) + static void unescape(std::string& s) + { + replace_substring(s, "~1", "/"); + replace_substring(s, "~0", "~"); + } + + /*! + @param[in] reference_string the reference string to the current value + @param[in] value the value to consider + @param[in,out] result the result object to insert values to + + @note Empty objects or arrays are flattened to `null`. + */ + static void flatten(const std::string& reference_string, + const BasicJsonType& value, + BasicJsonType& result) + { + switch (value.type()) + { + case detail::value_t::array: + { + if (value.m_value.array->empty()) + { + // flatten empty array as null + result[reference_string] = nullptr; + } + else + { + // iterate array and use index as reference string + for (std::size_t i = 0; i < value.m_value.array->size(); ++i) + { + flatten(reference_string + "/" + std::to_string(i), + value.m_value.array->operator[](i), result); + } + } + break; + } + + case detail::value_t::object: + { + if (value.m_value.object->empty()) + { + // flatten empty object as null + result[reference_string] = nullptr; + } + else + { + // iterate object and use keys as reference string + for (const auto& element : *value.m_value.object) + { + flatten(reference_string + "/" + escape(element.first), element.second, result); + } + } + break; + } + + default: + { + // add primitive value with its reference string + result[reference_string] = value; + break; + } + } + } + + /*! + @param[in] value flattened JSON + + @return unflattened JSON + + @throw parse_error.109 if array index is not a number + @throw type_error.314 if value is not an object + @throw type_error.315 if object values are not primitive + @throw type_error.313 if value cannot be unflattened + */ + static BasicJsonType + unflatten(const BasicJsonType& value) + { + if (JSON_HEDLEY_UNLIKELY(!value.is_object())) + { + JSON_THROW(detail::type_error::create(314, "only objects can be unflattened")); + } + + BasicJsonType result; + + // iterate the JSON object values + for (const auto& element : *value.m_value.object) + { + if (JSON_HEDLEY_UNLIKELY(!element.second.is_primitive())) + { + JSON_THROW(detail::type_error::create(315, "values in object must be primitive")); + } + + // assign value to reference pointed to by JSON pointer; Note that if + // the JSON pointer is "" (i.e., points to the whole value), function + // get_and_create returns a reference to result itself. An assignment + // will then create a primitive value. + json_pointer(element.first).get_and_create(result) = element.second; + } + + return result; + } + + /*! + @brief compares two JSON pointers for equality + + @param[in] lhs JSON pointer to compare + @param[in] rhs JSON pointer to compare + @return whether @a lhs is equal to @a rhs + + @complexity Linear in the length of the JSON pointer + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + */ + friend bool operator==(json_pointer const& lhs, + json_pointer const& rhs) noexcept + { + return lhs.reference_tokens == rhs.reference_tokens; + } + + /*! + @brief compares two JSON pointers for inequality + + @param[in] lhs JSON pointer to compare + @param[in] rhs JSON pointer to compare + @return whether @a lhs is not equal @a rhs + + @complexity Linear in the length of the JSON pointer + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + */ + friend bool operator!=(json_pointer const& lhs, + json_pointer const& rhs) noexcept + { + return !(lhs == rhs); + } + + /// the reference tokens + std::vector reference_tokens; +}; +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/json_ref.hpp b/external/json/include/nlohmann/detail/json_ref.hpp new file mode 100644 index 0000000..c9bf6cb --- /dev/null +++ b/external/json/include/nlohmann/detail/json_ref.hpp @@ -0,0 +1,76 @@ +#pragma once + +#include +#include + +#include + +namespace nlohmann +{ +namespace detail +{ +template +class json_ref +{ + public: + using value_type = BasicJsonType; + + json_ref(value_type&& value) + : owned_value(std::move(value)) + , value_ref(&owned_value) + , is_rvalue(true) + {} + + json_ref(const value_type& value) + : value_ref(const_cast(&value)) + , is_rvalue(false) + {} + + json_ref(std::initializer_list init) + : owned_value(init) + , value_ref(&owned_value) + , is_rvalue(true) + {} + + template < + class... Args, + enable_if_t::value, int> = 0 > + json_ref(Args && ... args) + : owned_value(std::forward(args)...) + , value_ref(&owned_value) + , is_rvalue(true) + {} + + // class should be movable only + json_ref(json_ref&&) = default; + json_ref(const json_ref&) = delete; + json_ref& operator=(const json_ref&) = delete; + json_ref& operator=(json_ref&&) = delete; + ~json_ref() = default; + + value_type moved_or_copied() const + { + if (is_rvalue) + { + return std::move(*value_ref); + } + return *value_ref; + } + + value_type const& operator*() const + { + return *static_cast(value_ref); + } + + value_type const* operator->() const + { + return static_cast(value_ref); + } + + private: + mutable value_type owned_value = nullptr; + value_type* value_ref = nullptr; + const bool is_rvalue = true; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/macro_scope.hpp b/external/json/include/nlohmann/detail/macro_scope.hpp new file mode 100644 index 0000000..8c9f632 --- /dev/null +++ b/external/json/include/nlohmann/detail/macro_scope.hpp @@ -0,0 +1,296 @@ +#pragma once + +#include // pair +#include + +// This file contains all internal macro definitions +// You MUST include macro_unscope.hpp at the end of json.hpp to undef all of them + +// exclude unsupported compilers +#if !defined(JSON_SKIP_UNSUPPORTED_COMPILER_CHECK) + #if defined(__clang__) + #if (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) < 30400 + #error "unsupported Clang version - see https://github.com/nlohmann/json#supported-compilers" + #endif + #elif defined(__GNUC__) && !(defined(__ICC) || defined(__INTEL_COMPILER)) + #if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800 + #error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers" + #endif + #endif +#endif + +// C++ language standard detection +#if (defined(__cplusplus) && __cplusplus >= 202002L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) + #define JSON_HAS_CPP_20 + #define JSON_HAS_CPP_17 + #define JSON_HAS_CPP_14 +#elif (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1) // fix for issue #464 + #define JSON_HAS_CPP_17 + #define JSON_HAS_CPP_14 +#elif (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1) + #define JSON_HAS_CPP_14 +#endif + +// disable float-equal warnings on GCC/clang +#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__) + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wfloat-equal" +#endif + +// disable documentation warnings on clang +#if defined(__clang__) + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdocumentation" +#endif + +// allow to disable exceptions +#if (defined(__cpp_exceptions) || defined(__EXCEPTIONS) || defined(_CPPUNWIND)) && !defined(JSON_NOEXCEPTION) + #define JSON_THROW(exception) throw exception + #define JSON_TRY try + #define JSON_CATCH(exception) catch(exception) + #define JSON_INTERNAL_CATCH(exception) catch(exception) +#else + #include + #define JSON_THROW(exception) std::abort() + #define JSON_TRY if(true) + #define JSON_CATCH(exception) if(false) + #define JSON_INTERNAL_CATCH(exception) if(false) +#endif + +// override exception macros +#if defined(JSON_THROW_USER) + #undef JSON_THROW + #define JSON_THROW JSON_THROW_USER +#endif +#if defined(JSON_TRY_USER) + #undef JSON_TRY + #define JSON_TRY JSON_TRY_USER +#endif +#if defined(JSON_CATCH_USER) + #undef JSON_CATCH + #define JSON_CATCH JSON_CATCH_USER + #undef JSON_INTERNAL_CATCH + #define JSON_INTERNAL_CATCH JSON_CATCH_USER +#endif +#if defined(JSON_INTERNAL_CATCH_USER) + #undef JSON_INTERNAL_CATCH + #define JSON_INTERNAL_CATCH JSON_INTERNAL_CATCH_USER +#endif + +// allow to override assert +#if !defined(JSON_ASSERT) + #include // assert + #define JSON_ASSERT(x) assert(x) +#endif + +/*! +@brief macro to briefly define a mapping between an enum and JSON +@def NLOHMANN_JSON_SERIALIZE_ENUM +@since version 3.4.0 +*/ +#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \ + template \ + inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \ + { \ + static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ + static const std::pair m[] = __VA_ARGS__; \ + auto it = std::find_if(std::begin(m), std::end(m), \ + [e](const std::pair& ej_pair) -> bool \ + { \ + return ej_pair.first == e; \ + }); \ + j = ((it != std::end(m)) ? it : std::begin(m))->second; \ + } \ + template \ + inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \ + { \ + static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ + static const std::pair m[] = __VA_ARGS__; \ + auto it = std::find_if(std::begin(m), std::end(m), \ + [&j](const std::pair& ej_pair) -> bool \ + { \ + return ej_pair.second == j; \ + }); \ + e = ((it != std::end(m)) ? it : std::begin(m))->first; \ + } + +// Ugly macros to avoid uglier copy-paste when specializing basic_json. They +// may be removed in the future once the class is split. + +#define NLOHMANN_BASIC_JSON_TPL_DECLARATION \ + template class ObjectType, \ + template class ArrayType, \ + class StringType, class BooleanType, class NumberIntegerType, \ + class NumberUnsignedType, class NumberFloatType, \ + template class AllocatorType, \ + template class JSONSerializer, \ + class BinaryType> + +#define NLOHMANN_BASIC_JSON_TPL \ + basic_json + +// Macros to simplify conversion from/to types + +#define NLOHMANN_JSON_EXPAND( x ) x +#define NLOHMANN_JSON_GET_MACRO(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, NAME,...) NAME +#define NLOHMANN_JSON_PASTE(...) NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_GET_MACRO(__VA_ARGS__, \ + NLOHMANN_JSON_PASTE64, \ + NLOHMANN_JSON_PASTE63, \ + NLOHMANN_JSON_PASTE62, \ + NLOHMANN_JSON_PASTE61, \ + NLOHMANN_JSON_PASTE60, \ + NLOHMANN_JSON_PASTE59, \ + NLOHMANN_JSON_PASTE58, \ + NLOHMANN_JSON_PASTE57, \ + NLOHMANN_JSON_PASTE56, \ + NLOHMANN_JSON_PASTE55, \ + NLOHMANN_JSON_PASTE54, \ + NLOHMANN_JSON_PASTE53, \ + NLOHMANN_JSON_PASTE52, \ + NLOHMANN_JSON_PASTE51, \ + NLOHMANN_JSON_PASTE50, \ + NLOHMANN_JSON_PASTE49, \ + NLOHMANN_JSON_PASTE48, \ + NLOHMANN_JSON_PASTE47, \ + NLOHMANN_JSON_PASTE46, \ + NLOHMANN_JSON_PASTE45, \ + NLOHMANN_JSON_PASTE44, \ + NLOHMANN_JSON_PASTE43, \ + NLOHMANN_JSON_PASTE42, \ + NLOHMANN_JSON_PASTE41, \ + NLOHMANN_JSON_PASTE40, \ + NLOHMANN_JSON_PASTE39, \ + NLOHMANN_JSON_PASTE38, \ + NLOHMANN_JSON_PASTE37, \ + NLOHMANN_JSON_PASTE36, \ + NLOHMANN_JSON_PASTE35, \ + NLOHMANN_JSON_PASTE34, \ + NLOHMANN_JSON_PASTE33, \ + NLOHMANN_JSON_PASTE32, \ + NLOHMANN_JSON_PASTE31, \ + NLOHMANN_JSON_PASTE30, \ + NLOHMANN_JSON_PASTE29, \ + NLOHMANN_JSON_PASTE28, \ + NLOHMANN_JSON_PASTE27, \ + NLOHMANN_JSON_PASTE26, \ + NLOHMANN_JSON_PASTE25, \ + NLOHMANN_JSON_PASTE24, \ + NLOHMANN_JSON_PASTE23, \ + NLOHMANN_JSON_PASTE22, \ + NLOHMANN_JSON_PASTE21, \ + NLOHMANN_JSON_PASTE20, \ + NLOHMANN_JSON_PASTE19, \ + NLOHMANN_JSON_PASTE18, \ + NLOHMANN_JSON_PASTE17, \ + NLOHMANN_JSON_PASTE16, \ + NLOHMANN_JSON_PASTE15, \ + NLOHMANN_JSON_PASTE14, \ + NLOHMANN_JSON_PASTE13, \ + NLOHMANN_JSON_PASTE12, \ + NLOHMANN_JSON_PASTE11, \ + NLOHMANN_JSON_PASTE10, \ + NLOHMANN_JSON_PASTE9, \ + NLOHMANN_JSON_PASTE8, \ + NLOHMANN_JSON_PASTE7, \ + NLOHMANN_JSON_PASTE6, \ + NLOHMANN_JSON_PASTE5, \ + NLOHMANN_JSON_PASTE4, \ + NLOHMANN_JSON_PASTE3, \ + NLOHMANN_JSON_PASTE2, \ + NLOHMANN_JSON_PASTE1)(__VA_ARGS__)) +#define NLOHMANN_JSON_PASTE2(func, v1) func(v1) +#define NLOHMANN_JSON_PASTE3(func, v1, v2) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE2(func, v2) +#define NLOHMANN_JSON_PASTE4(func, v1, v2, v3) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE3(func, v2, v3) +#define NLOHMANN_JSON_PASTE5(func, v1, v2, v3, v4) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE4(func, v2, v3, v4) +#define NLOHMANN_JSON_PASTE6(func, v1, v2, v3, v4, v5) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE5(func, v2, v3, v4, v5) +#define NLOHMANN_JSON_PASTE7(func, v1, v2, v3, v4, v5, v6) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE6(func, v2, v3, v4, v5, v6) +#define NLOHMANN_JSON_PASTE8(func, v1, v2, v3, v4, v5, v6, v7) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE7(func, v2, v3, v4, v5, v6, v7) +#define NLOHMANN_JSON_PASTE9(func, v1, v2, v3, v4, v5, v6, v7, v8) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE8(func, v2, v3, v4, v5, v6, v7, v8) +#define NLOHMANN_JSON_PASTE10(func, v1, v2, v3, v4, v5, v6, v7, v8, v9) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE9(func, v2, v3, v4, v5, v6, v7, v8, v9) +#define NLOHMANN_JSON_PASTE11(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE10(func, v2, v3, v4, v5, v6, v7, v8, v9, v10) +#define NLOHMANN_JSON_PASTE12(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE11(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) +#define NLOHMANN_JSON_PASTE13(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE12(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) +#define NLOHMANN_JSON_PASTE14(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE13(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) +#define NLOHMANN_JSON_PASTE15(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE14(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) +#define NLOHMANN_JSON_PASTE16(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE15(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) +#define NLOHMANN_JSON_PASTE17(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE16(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) +#define NLOHMANN_JSON_PASTE18(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE17(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) +#define NLOHMANN_JSON_PASTE19(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE18(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) +#define NLOHMANN_JSON_PASTE20(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE19(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) +#define NLOHMANN_JSON_PASTE21(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE20(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) +#define NLOHMANN_JSON_PASTE22(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE21(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) +#define NLOHMANN_JSON_PASTE23(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE22(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) +#define NLOHMANN_JSON_PASTE24(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE23(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) +#define NLOHMANN_JSON_PASTE25(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE24(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) +#define NLOHMANN_JSON_PASTE26(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE25(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) +#define NLOHMANN_JSON_PASTE27(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE26(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) +#define NLOHMANN_JSON_PASTE28(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE27(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) +#define NLOHMANN_JSON_PASTE29(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE28(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) +#define NLOHMANN_JSON_PASTE30(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE29(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) +#define NLOHMANN_JSON_PASTE31(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE30(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) +#define NLOHMANN_JSON_PASTE32(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE31(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) +#define NLOHMANN_JSON_PASTE33(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE32(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) +#define NLOHMANN_JSON_PASTE34(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE33(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) +#define NLOHMANN_JSON_PASTE35(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE34(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) +#define NLOHMANN_JSON_PASTE36(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE35(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) +#define NLOHMANN_JSON_PASTE37(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE36(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) +#define NLOHMANN_JSON_PASTE38(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE37(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) +#define NLOHMANN_JSON_PASTE39(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE38(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) +#define NLOHMANN_JSON_PASTE40(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE39(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) +#define NLOHMANN_JSON_PASTE41(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE40(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) +#define NLOHMANN_JSON_PASTE42(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE41(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) +#define NLOHMANN_JSON_PASTE43(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE42(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) +#define NLOHMANN_JSON_PASTE44(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE43(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) +#define NLOHMANN_JSON_PASTE45(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE44(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) +#define NLOHMANN_JSON_PASTE46(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE45(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) +#define NLOHMANN_JSON_PASTE47(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE46(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) +#define NLOHMANN_JSON_PASTE48(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE47(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) +#define NLOHMANN_JSON_PASTE49(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE48(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) +#define NLOHMANN_JSON_PASTE50(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE49(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) +#define NLOHMANN_JSON_PASTE51(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE50(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) +#define NLOHMANN_JSON_PASTE52(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE51(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) +#define NLOHMANN_JSON_PASTE53(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE52(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) +#define NLOHMANN_JSON_PASTE54(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE53(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) +#define NLOHMANN_JSON_PASTE55(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE54(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) +#define NLOHMANN_JSON_PASTE56(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE55(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) +#define NLOHMANN_JSON_PASTE57(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE56(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) +#define NLOHMANN_JSON_PASTE58(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE57(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) +#define NLOHMANN_JSON_PASTE59(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE58(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) +#define NLOHMANN_JSON_PASTE60(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE59(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) +#define NLOHMANN_JSON_PASTE61(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE60(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) +#define NLOHMANN_JSON_PASTE62(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE61(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) +#define NLOHMANN_JSON_PASTE63(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE62(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) +#define NLOHMANN_JSON_PASTE64(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE63(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) + +#define NLOHMANN_JSON_TO(v1) nlohmann_json_j[#v1] = nlohmann_json_t.v1; +#define NLOHMANN_JSON_FROM(v1) nlohmann_json_j.at(#v1).get_to(nlohmann_json_t.v1); + +/*! +@brief macro +@def NLOHMANN_DEFINE_TYPE_INTRUSIVE +@since version 3.9.0 +*/ +#define NLOHMANN_DEFINE_TYPE_INTRUSIVE(Type, ...) \ + friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + friend void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } + +/*! +@brief macro +@def NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE +@since version 3.9.0 +*/ +#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Type, ...) \ + inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + inline void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } + +#ifndef JSON_USE_IMPLICIT_CONVERSIONS + #define JSON_USE_IMPLICIT_CONVERSIONS 1 +#endif + +#if JSON_USE_IMPLICIT_CONVERSIONS + #define JSON_EXPLICIT +#else + #define JSON_EXPLICIT explicit +#endif diff --git a/external/json/include/nlohmann/detail/macro_unscope.hpp b/external/json/include/nlohmann/detail/macro_unscope.hpp new file mode 100644 index 0000000..eb70651 --- /dev/null +++ b/external/json/include/nlohmann/detail/macro_unscope.hpp @@ -0,0 +1,23 @@ +#pragma once + +// restore GCC/clang diagnostic settings +#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__) + #pragma GCC diagnostic pop +#endif +#if defined(__clang__) + #pragma GCC diagnostic pop +#endif + +// clean up +#undef JSON_ASSERT +#undef JSON_INTERNAL_CATCH +#undef JSON_CATCH +#undef JSON_THROW +#undef JSON_TRY +#undef JSON_HAS_CPP_14 +#undef JSON_HAS_CPP_17 +#undef NLOHMANN_BASIC_JSON_TPL_DECLARATION +#undef NLOHMANN_BASIC_JSON_TPL +#undef JSON_EXPLICIT + +#include diff --git a/external/json/include/nlohmann/detail/meta/cpp_future.hpp b/external/json/include/nlohmann/detail/meta/cpp_future.hpp new file mode 100644 index 0000000..dd929ee --- /dev/null +++ b/external/json/include/nlohmann/detail/meta/cpp_future.hpp @@ -0,0 +1,62 @@ +#pragma once + +#include // size_t +#include // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type + +namespace nlohmann +{ +namespace detail +{ +// alias templates to reduce boilerplate +template +using enable_if_t = typename std::enable_if::type; + +template +using uncvref_t = typename std::remove_cv::type>::type; + +// implementation of C++14 index_sequence and affiliates +// source: https://stackoverflow.com/a/32223343 +template +struct index_sequence +{ + using type = index_sequence; + using value_type = std::size_t; + static constexpr std::size_t size() noexcept + { + return sizeof...(Ints); + } +}; + +template +struct merge_and_renumber; + +template +struct merge_and_renumber, index_sequence> + : index_sequence < I1..., (sizeof...(I1) + I2)... > {}; + +template +struct make_index_sequence + : merge_and_renumber < typename make_index_sequence < N / 2 >::type, + typename make_index_sequence < N - N / 2 >::type > {}; + +template<> struct make_index_sequence<0> : index_sequence<> {}; +template<> struct make_index_sequence<1> : index_sequence<0> {}; + +template +using index_sequence_for = make_index_sequence; + +// dispatch utility (taken from ranges-v3) +template struct priority_tag : priority_tag < N - 1 > {}; +template<> struct priority_tag<0> {}; + +// taken from ranges-v3 +template +struct static_const +{ + static constexpr T value{}; +}; + +template +constexpr T static_const::value; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/meta/detected.hpp b/external/json/include/nlohmann/detail/meta/detected.hpp new file mode 100644 index 0000000..7b5a003 --- /dev/null +++ b/external/json/include/nlohmann/detail/meta/detected.hpp @@ -0,0 +1,58 @@ +#pragma once + +#include + +#include + +// https://en.cppreference.com/w/cpp/experimental/is_detected +namespace nlohmann +{ +namespace detail +{ +struct nonesuch +{ + nonesuch() = delete; + ~nonesuch() = delete; + nonesuch(nonesuch const&) = delete; + nonesuch(nonesuch const&&) = delete; + void operator=(nonesuch const&) = delete; + void operator=(nonesuch&&) = delete; +}; + +template class Op, + class... Args> +struct detector +{ + using value_t = std::false_type; + using type = Default; +}; + +template class Op, class... Args> +struct detector>, Op, Args...> +{ + using value_t = std::true_type; + using type = Op; +}; + +template class Op, class... Args> +using is_detected = typename detector::value_t; + +template class Op, class... Args> +using detected_t = typename detector::type; + +template class Op, class... Args> +using detected_or = detector; + +template class Op, class... Args> +using detected_or_t = typename detected_or::type; + +template class Op, class... Args> +using is_detected_exact = std::is_same>; + +template class Op, class... Args> +using is_detected_convertible = + std::is_convertible, To>; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/meta/is_sax.hpp b/external/json/include/nlohmann/detail/meta/is_sax.hpp new file mode 100644 index 0000000..e1e48a0 --- /dev/null +++ b/external/json/include/nlohmann/detail/meta/is_sax.hpp @@ -0,0 +1,149 @@ +#pragma once + +#include // size_t +#include // declval +#include // string + +#include +#include + +namespace nlohmann +{ +namespace detail +{ +template +using null_function_t = decltype(std::declval().null()); + +template +using boolean_function_t = + decltype(std::declval().boolean(std::declval())); + +template +using number_integer_function_t = + decltype(std::declval().number_integer(std::declval())); + +template +using number_unsigned_function_t = + decltype(std::declval().number_unsigned(std::declval())); + +template +using number_float_function_t = decltype(std::declval().number_float( + std::declval(), std::declval())); + +template +using string_function_t = + decltype(std::declval().string(std::declval())); + +template +using binary_function_t = + decltype(std::declval().binary(std::declval())); + +template +using start_object_function_t = + decltype(std::declval().start_object(std::declval())); + +template +using key_function_t = + decltype(std::declval().key(std::declval())); + +template +using end_object_function_t = decltype(std::declval().end_object()); + +template +using start_array_function_t = + decltype(std::declval().start_array(std::declval())); + +template +using end_array_function_t = decltype(std::declval().end_array()); + +template +using parse_error_function_t = decltype(std::declval().parse_error( + std::declval(), std::declval(), + std::declval())); + +template +struct is_sax +{ + private: + static_assert(is_basic_json::value, + "BasicJsonType must be of type basic_json<...>"); + + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using exception_t = typename BasicJsonType::exception; + + public: + static constexpr bool value = + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value; +}; + +template +struct is_sax_static_asserts +{ + private: + static_assert(is_basic_json::value, + "BasicJsonType must be of type basic_json<...>"); + + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using exception_t = typename BasicJsonType::exception; + + public: + static_assert(is_detected_exact::value, + "Missing/invalid function: bool null()"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool boolean(bool)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool boolean(bool)"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool number_integer(number_integer_t)"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool number_unsigned(number_unsigned_t)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool number_float(number_float_t, const string_t&)"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool string(string_t&)"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool binary(binary_t&)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool start_object(std::size_t)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool key(string_t&)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool end_object()"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool start_array(std::size_t)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool end_array()"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool parse_error(std::size_t, const " + "std::string&, const exception&)"); +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/meta/type_traits.hpp b/external/json/include/nlohmann/detail/meta/type_traits.hpp new file mode 100644 index 0000000..ac143be --- /dev/null +++ b/external/json/include/nlohmann/detail/meta/type_traits.hpp @@ -0,0 +1,396 @@ +#pragma once + +#include // numeric_limits +#include // false_type, is_constructible, is_integral, is_same, true_type +#include // declval + +#include +#include +#include +#include +#include + +namespace nlohmann +{ +/*! +@brief detail namespace with internal helper functions + +This namespace collects functions that should not be exposed, +implementations of some @ref basic_json methods, and meta-programming helpers. + +@since version 2.1.0 +*/ +namespace detail +{ +///////////// +// helpers // +///////////// + +// Note to maintainers: +// +// Every trait in this file expects a non CV-qualified type. +// The only exceptions are in the 'aliases for detected' section +// (i.e. those of the form: decltype(T::member_function(std::declval()))) +// +// In this case, T has to be properly CV-qualified to constraint the function arguments +// (e.g. to_json(BasicJsonType&, const T&)) + +template struct is_basic_json : std::false_type {}; + +NLOHMANN_BASIC_JSON_TPL_DECLARATION +struct is_basic_json : std::true_type {}; + +////////////////////// +// json_ref helpers // +////////////////////// + +template +class json_ref; + +template +struct is_json_ref : std::false_type {}; + +template +struct is_json_ref> : std::true_type {}; + +////////////////////////// +// aliases for detected // +////////////////////////// + +template +using mapped_type_t = typename T::mapped_type; + +template +using key_type_t = typename T::key_type; + +template +using value_type_t = typename T::value_type; + +template +using difference_type_t = typename T::difference_type; + +template +using pointer_t = typename T::pointer; + +template +using reference_t = typename T::reference; + +template +using iterator_category_t = typename T::iterator_category; + +template +using iterator_t = typename T::iterator; + +template +using to_json_function = decltype(T::to_json(std::declval()...)); + +template +using from_json_function = decltype(T::from_json(std::declval()...)); + +template +using get_template_function = decltype(std::declval().template get()); + +// trait checking if JSONSerializer::from_json(json const&, udt&) exists +template +struct has_from_json : std::false_type {}; + +// trait checking if j.get is valid +// use this trait instead of std::is_constructible or std::is_convertible, +// both rely on, or make use of implicit conversions, and thus fail when T +// has several constructors/operator= (see https://github.com/nlohmann/json/issues/958) +template +struct is_getable +{ + static constexpr bool value = is_detected::value; +}; + +template +struct has_from_json < BasicJsonType, T, + enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +// This trait checks if JSONSerializer::from_json(json const&) exists +// this overload is used for non-default-constructible user-defined-types +template +struct has_non_default_from_json : std::false_type {}; + +template +struct has_non_default_from_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +// This trait checks if BasicJsonType::json_serializer::to_json exists +// Do not evaluate the trait when T is a basic_json type, to avoid template instantiation infinite recursion. +template +struct has_to_json : std::false_type {}; + +template +struct has_to_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + + +/////////////////// +// is_ functions // +/////////////////// + +template +struct is_iterator_traits : std::false_type {}; + +template +struct is_iterator_traits> +{ + private: + using traits = iterator_traits; + + public: + static constexpr auto value = + is_detected::value && + is_detected::value && + is_detected::value && + is_detected::value && + is_detected::value; +}; + +// source: https://stackoverflow.com/a/37193089/4116453 + +template +struct is_complete_type : std::false_type {}; + +template +struct is_complete_type : std::true_type {}; + +template +struct is_compatible_object_type_impl : std::false_type {}; + +template +struct is_compatible_object_type_impl < + BasicJsonType, CompatibleObjectType, + enable_if_t < is_detected::value&& + is_detected::value >> +{ + + using object_t = typename BasicJsonType::object_t; + + // macOS's is_constructible does not play well with nonesuch... + static constexpr bool value = + std::is_constructible::value && + std::is_constructible::value; +}; + +template +struct is_compatible_object_type + : is_compatible_object_type_impl {}; + +template +struct is_constructible_object_type_impl : std::false_type {}; + +template +struct is_constructible_object_type_impl < + BasicJsonType, ConstructibleObjectType, + enable_if_t < is_detected::value&& + is_detected::value >> +{ + using object_t = typename BasicJsonType::object_t; + + static constexpr bool value = + (std::is_default_constructible::value && + (std::is_move_assignable::value || + std::is_copy_assignable::value) && + (std::is_constructible::value && + std::is_same < + typename object_t::mapped_type, + typename ConstructibleObjectType::mapped_type >::value)) || + (has_from_json::value || + has_non_default_from_json < + BasicJsonType, + typename ConstructibleObjectType::mapped_type >::value); +}; + +template +struct is_constructible_object_type + : is_constructible_object_type_impl {}; + +template +struct is_compatible_string_type_impl : std::false_type {}; + +template +struct is_compatible_string_type_impl < + BasicJsonType, CompatibleStringType, + enable_if_t::value >> +{ + static constexpr auto value = + std::is_constructible::value; +}; + +template +struct is_compatible_string_type + : is_compatible_string_type_impl {}; + +template +struct is_constructible_string_type_impl : std::false_type {}; + +template +struct is_constructible_string_type_impl < + BasicJsonType, ConstructibleStringType, + enable_if_t::value >> +{ + static constexpr auto value = + std::is_constructible::value; +}; + +template +struct is_constructible_string_type + : is_constructible_string_type_impl {}; + +template +struct is_compatible_array_type_impl : std::false_type {}; + +template +struct is_compatible_array_type_impl < + BasicJsonType, CompatibleArrayType, + enable_if_t < is_detected::value&& + is_detected::value&& +// This is needed because json_reverse_iterator has a ::iterator type... +// Therefore it is detected as a CompatibleArrayType. +// The real fix would be to have an Iterable concept. + !is_iterator_traits < + iterator_traits>::value >> +{ + static constexpr bool value = + std::is_constructible::value; +}; + +template +struct is_compatible_array_type + : is_compatible_array_type_impl {}; + +template +struct is_constructible_array_type_impl : std::false_type {}; + +template +struct is_constructible_array_type_impl < + BasicJsonType, ConstructibleArrayType, + enable_if_t::value >> + : std::true_type {}; + +template +struct is_constructible_array_type_impl < + BasicJsonType, ConstructibleArrayType, + enable_if_t < !std::is_same::value&& + std::is_default_constructible::value&& +(std::is_move_assignable::value || + std::is_copy_assignable::value)&& +is_detected::value&& +is_detected::value&& +is_complete_type < +detected_t>::value >> +{ + static constexpr bool value = + // This is needed because json_reverse_iterator has a ::iterator type, + // furthermore, std::back_insert_iterator (and other iterators) have a + // base class `iterator`... Therefore it is detected as a + // ConstructibleArrayType. The real fix would be to have an Iterable + // concept. + !is_iterator_traits>::value && + + (std::is_same::value || + has_from_json::value || + has_non_default_from_json < + BasicJsonType, typename ConstructibleArrayType::value_type >::value); +}; + +template +struct is_constructible_array_type + : is_constructible_array_type_impl {}; + +template +struct is_compatible_integer_type_impl : std::false_type {}; + +template +struct is_compatible_integer_type_impl < + RealIntegerType, CompatibleNumberIntegerType, + enable_if_t < std::is_integral::value&& + std::is_integral::value&& + !std::is_same::value >> +{ + // is there an assert somewhere on overflows? + using RealLimits = std::numeric_limits; + using CompatibleLimits = std::numeric_limits; + + static constexpr auto value = + std::is_constructible::value && + CompatibleLimits::is_integer && + RealLimits::is_signed == CompatibleLimits::is_signed; +}; + +template +struct is_compatible_integer_type + : is_compatible_integer_type_impl {}; + +template +struct is_compatible_type_impl: std::false_type {}; + +template +struct is_compatible_type_impl < + BasicJsonType, CompatibleType, + enable_if_t::value >> +{ + static constexpr bool value = + has_to_json::value; +}; + +template +struct is_compatible_type + : is_compatible_type_impl {}; + +// https://en.cppreference.com/w/cpp/types/conjunction +template struct conjunction : std::true_type { }; +template struct conjunction : B1 { }; +template +struct conjunction +: std::conditional, B1>::type {}; + +template +struct is_constructible_tuple : std::false_type {}; + +template +struct is_constructible_tuple> : conjunction...> {}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/meta/void_t.hpp b/external/json/include/nlohmann/detail/meta/void_t.hpp new file mode 100644 index 0000000..4ee2c86 --- /dev/null +++ b/external/json/include/nlohmann/detail/meta/void_t.hpp @@ -0,0 +1,13 @@ +#pragma once + +namespace nlohmann +{ +namespace detail +{ +template struct make_void +{ + using type = void; +}; +template using void_t = typename make_void::type; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/output/binary_writer.hpp b/external/json/include/nlohmann/detail/output/binary_writer.hpp new file mode 100644 index 0000000..0c6185e --- /dev/null +++ b/external/json/include/nlohmann/detail/output/binary_writer.hpp @@ -0,0 +1,1595 @@ +#pragma once + +#include // reverse +#include // array +#include // uint8_t, uint16_t, uint32_t, uint64_t +#include // memcpy +#include // numeric_limits +#include // string +#include // isnan, isinf + +#include +#include +#include + +namespace nlohmann +{ +namespace detail +{ +/////////////////// +// binary writer // +/////////////////// + +/*! +@brief serialization to CBOR and MessagePack values +*/ +template +class binary_writer +{ + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using number_float_t = typename BasicJsonType::number_float_t; + + public: + /*! + @brief create a binary writer + + @param[in] adapter output adapter to write to + */ + explicit binary_writer(output_adapter_t adapter) : oa(adapter) + { + JSON_ASSERT(oa); + } + + /*! + @param[in] j JSON value to serialize + @pre j.type() == value_t::object + */ + void write_bson(const BasicJsonType& j) + { + switch (j.type()) + { + case value_t::object: + { + write_bson_object(*j.m_value.object); + break; + } + + default: + { + JSON_THROW(type_error::create(317, "to serialize to BSON, top-level type must be object, but is " + std::string(j.type_name()))); + } + } + } + + /*! + @param[in] j JSON value to serialize + */ + void write_cbor(const BasicJsonType& j) + { + switch (j.type()) + { + case value_t::null: + { + oa->write_character(to_char_type(0xF6)); + break; + } + + case value_t::boolean: + { + oa->write_character(j.m_value.boolean + ? to_char_type(0xF5) + : to_char_type(0xF4)); + break; + } + + case value_t::number_integer: + { + if (j.m_value.number_integer >= 0) + { + // CBOR does not differentiate between positive signed + // integers and unsigned integers. Therefore, we used the + // code from the value_t::number_unsigned case here. + if (j.m_value.number_integer <= 0x17) + { + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x18)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x19)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x1A)); + write_number(static_cast(j.m_value.number_integer)); + } + else + { + oa->write_character(to_char_type(0x1B)); + write_number(static_cast(j.m_value.number_integer)); + } + } + else + { + // The conversions below encode the sign in the first + // byte, and the value is converted to a positive number. + const auto positive_number = -1 - j.m_value.number_integer; + if (j.m_value.number_integer >= -24) + { + write_number(static_cast(0x20 + positive_number)); + } + else if (positive_number <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x38)); + write_number(static_cast(positive_number)); + } + else if (positive_number <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x39)); + write_number(static_cast(positive_number)); + } + else if (positive_number <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x3A)); + write_number(static_cast(positive_number)); + } + else + { + oa->write_character(to_char_type(0x3B)); + write_number(static_cast(positive_number)); + } + } + break; + } + + case value_t::number_unsigned: + { + if (j.m_value.number_unsigned <= 0x17) + { + write_number(static_cast(j.m_value.number_unsigned)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x18)); + write_number(static_cast(j.m_value.number_unsigned)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x19)); + write_number(static_cast(j.m_value.number_unsigned)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x1A)); + write_number(static_cast(j.m_value.number_unsigned)); + } + else + { + oa->write_character(to_char_type(0x1B)); + write_number(static_cast(j.m_value.number_unsigned)); + } + break; + } + + case value_t::number_float: + { + if (std::isnan(j.m_value.number_float)) + { + // NaN is 0xf97e00 in CBOR + oa->write_character(to_char_type(0xF9)); + oa->write_character(to_char_type(0x7E)); + oa->write_character(to_char_type(0x00)); + } + else if (std::isinf(j.m_value.number_float)) + { + // Infinity is 0xf97c00, -Infinity is 0xf9fc00 + oa->write_character(to_char_type(0xf9)); + oa->write_character(j.m_value.number_float > 0 ? to_char_type(0x7C) : to_char_type(0xFC)); + oa->write_character(to_char_type(0x00)); + } + else + { + write_compact_float(j.m_value.number_float, detail::input_format_t::cbor); + } + break; + } + + case value_t::string: + { + // step 1: write control byte and the string length + const auto N = j.m_value.string->size(); + if (N <= 0x17) + { + write_number(static_cast(0x60 + N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x78)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x79)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x7A)); + write_number(static_cast(N)); + } + // LCOV_EXCL_START + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x7B)); + write_number(static_cast(N)); + } + // LCOV_EXCL_STOP + + // step 2: write the string + oa->write_characters( + reinterpret_cast(j.m_value.string->c_str()), + j.m_value.string->size()); + break; + } + + case value_t::array: + { + // step 1: write control byte and the array size + const auto N = j.m_value.array->size(); + if (N <= 0x17) + { + write_number(static_cast(0x80 + N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x98)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x99)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x9A)); + write_number(static_cast(N)); + } + // LCOV_EXCL_START + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x9B)); + write_number(static_cast(N)); + } + // LCOV_EXCL_STOP + + // step 2: write each element + for (const auto& el : *j.m_value.array) + { + write_cbor(el); + } + break; + } + + case value_t::binary: + { + if (j.m_value.binary->has_subtype()) + { + write_number(static_cast(0xd8)); + write_number(j.m_value.binary->subtype()); + } + + // step 1: write control byte and the binary array size + const auto N = j.m_value.binary->size(); + if (N <= 0x17) + { + write_number(static_cast(0x40 + N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x58)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x59)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x5A)); + write_number(static_cast(N)); + } + // LCOV_EXCL_START + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x5B)); + write_number(static_cast(N)); + } + // LCOV_EXCL_STOP + + // step 2: write each element + oa->write_characters( + reinterpret_cast(j.m_value.binary->data()), + N); + + break; + } + + case value_t::object: + { + // step 1: write control byte and the object size + const auto N = j.m_value.object->size(); + if (N <= 0x17) + { + write_number(static_cast(0xA0 + N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0xB8)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0xB9)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0xBA)); + write_number(static_cast(N)); + } + // LCOV_EXCL_START + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0xBB)); + write_number(static_cast(N)); + } + // LCOV_EXCL_STOP + + // step 2: write each element + for (const auto& el : *j.m_value.object) + { + write_cbor(el.first); + write_cbor(el.second); + } + break; + } + + default: + break; + } + } + + /*! + @param[in] j JSON value to serialize + */ + void write_msgpack(const BasicJsonType& j) + { + switch (j.type()) + { + case value_t::null: // nil + { + oa->write_character(to_char_type(0xC0)); + break; + } + + case value_t::boolean: // true and false + { + oa->write_character(j.m_value.boolean + ? to_char_type(0xC3) + : to_char_type(0xC2)); + break; + } + + case value_t::number_integer: + { + if (j.m_value.number_integer >= 0) + { + // MessagePack does not differentiate between positive + // signed integers and unsigned integers. Therefore, we used + // the code from the value_t::number_unsigned case here. + if (j.m_value.number_unsigned < 128) + { + // positive fixnum + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 8 + oa->write_character(to_char_type(0xCC)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 16 + oa->write_character(to_char_type(0xCD)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 32 + oa->write_character(to_char_type(0xCE)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 64 + oa->write_character(to_char_type(0xCF)); + write_number(static_cast(j.m_value.number_integer)); + } + } + else + { + if (j.m_value.number_integer >= -32) + { + // negative fixnum + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer >= (std::numeric_limits::min)() && + j.m_value.number_integer <= (std::numeric_limits::max)()) + { + // int 8 + oa->write_character(to_char_type(0xD0)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer >= (std::numeric_limits::min)() && + j.m_value.number_integer <= (std::numeric_limits::max)()) + { + // int 16 + oa->write_character(to_char_type(0xD1)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer >= (std::numeric_limits::min)() && + j.m_value.number_integer <= (std::numeric_limits::max)()) + { + // int 32 + oa->write_character(to_char_type(0xD2)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer >= (std::numeric_limits::min)() && + j.m_value.number_integer <= (std::numeric_limits::max)()) + { + // int 64 + oa->write_character(to_char_type(0xD3)); + write_number(static_cast(j.m_value.number_integer)); + } + } + break; + } + + case value_t::number_unsigned: + { + if (j.m_value.number_unsigned < 128) + { + // positive fixnum + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 8 + oa->write_character(to_char_type(0xCC)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 16 + oa->write_character(to_char_type(0xCD)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 32 + oa->write_character(to_char_type(0xCE)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 64 + oa->write_character(to_char_type(0xCF)); + write_number(static_cast(j.m_value.number_integer)); + } + break; + } + + case value_t::number_float: + { + write_compact_float(j.m_value.number_float, detail::input_format_t::msgpack); + break; + } + + case value_t::string: + { + // step 1: write control byte and the string length + const auto N = j.m_value.string->size(); + if (N <= 31) + { + // fixstr + write_number(static_cast(0xA0 | N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // str 8 + oa->write_character(to_char_type(0xD9)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // str 16 + oa->write_character(to_char_type(0xDA)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // str 32 + oa->write_character(to_char_type(0xDB)); + write_number(static_cast(N)); + } + + // step 2: write the string + oa->write_characters( + reinterpret_cast(j.m_value.string->c_str()), + j.m_value.string->size()); + break; + } + + case value_t::array: + { + // step 1: write control byte and the array size + const auto N = j.m_value.array->size(); + if (N <= 15) + { + // fixarray + write_number(static_cast(0x90 | N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // array 16 + oa->write_character(to_char_type(0xDC)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // array 32 + oa->write_character(to_char_type(0xDD)); + write_number(static_cast(N)); + } + + // step 2: write each element + for (const auto& el : *j.m_value.array) + { + write_msgpack(el); + } + break; + } + + case value_t::binary: + { + // step 0: determine if the binary type has a set subtype to + // determine whether or not to use the ext or fixext types + const bool use_ext = j.m_value.binary->has_subtype(); + + // step 1: write control byte and the byte string length + const auto N = j.m_value.binary->size(); + if (N <= (std::numeric_limits::max)()) + { + std::uint8_t output_type{}; + bool fixed = true; + if (use_ext) + { + switch (N) + { + case 1: + output_type = 0xD4; // fixext 1 + break; + case 2: + output_type = 0xD5; // fixext 2 + break; + case 4: + output_type = 0xD6; // fixext 4 + break; + case 8: + output_type = 0xD7; // fixext 8 + break; + case 16: + output_type = 0xD8; // fixext 16 + break; + default: + output_type = 0xC7; // ext 8 + fixed = false; + break; + } + + } + else + { + output_type = 0xC4; // bin 8 + fixed = false; + } + + oa->write_character(to_char_type(output_type)); + if (!fixed) + { + write_number(static_cast(N)); + } + } + else if (N <= (std::numeric_limits::max)()) + { + std::uint8_t output_type = use_ext + ? 0xC8 // ext 16 + : 0xC5; // bin 16 + + oa->write_character(to_char_type(output_type)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + std::uint8_t output_type = use_ext + ? 0xC9 // ext 32 + : 0xC6; // bin 32 + + oa->write_character(to_char_type(output_type)); + write_number(static_cast(N)); + } + + // step 1.5: if this is an ext type, write the subtype + if (use_ext) + { + write_number(static_cast(j.m_value.binary->subtype())); + } + + // step 2: write the byte string + oa->write_characters( + reinterpret_cast(j.m_value.binary->data()), + N); + + break; + } + + case value_t::object: + { + // step 1: write control byte and the object size + const auto N = j.m_value.object->size(); + if (N <= 15) + { + // fixmap + write_number(static_cast(0x80 | (N & 0xF))); + } + else if (N <= (std::numeric_limits::max)()) + { + // map 16 + oa->write_character(to_char_type(0xDE)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // map 32 + oa->write_character(to_char_type(0xDF)); + write_number(static_cast(N)); + } + + // step 2: write each element + for (const auto& el : *j.m_value.object) + { + write_msgpack(el.first); + write_msgpack(el.second); + } + break; + } + + default: + break; + } + } + + /*! + @param[in] j JSON value to serialize + @param[in] use_count whether to use '#' prefixes (optimized format) + @param[in] use_type whether to use '$' prefixes (optimized format) + @param[in] add_prefix whether prefixes need to be used for this value + */ + void write_ubjson(const BasicJsonType& j, const bool use_count, + const bool use_type, const bool add_prefix = true) + { + switch (j.type()) + { + case value_t::null: + { + if (add_prefix) + { + oa->write_character(to_char_type('Z')); + } + break; + } + + case value_t::boolean: + { + if (add_prefix) + { + oa->write_character(j.m_value.boolean + ? to_char_type('T') + : to_char_type('F')); + } + break; + } + + case value_t::number_integer: + { + write_number_with_ubjson_prefix(j.m_value.number_integer, add_prefix); + break; + } + + case value_t::number_unsigned: + { + write_number_with_ubjson_prefix(j.m_value.number_unsigned, add_prefix); + break; + } + + case value_t::number_float: + { + write_number_with_ubjson_prefix(j.m_value.number_float, add_prefix); + break; + } + + case value_t::string: + { + if (add_prefix) + { + oa->write_character(to_char_type('S')); + } + write_number_with_ubjson_prefix(j.m_value.string->size(), true); + oa->write_characters( + reinterpret_cast(j.m_value.string->c_str()), + j.m_value.string->size()); + break; + } + + case value_t::array: + { + if (add_prefix) + { + oa->write_character(to_char_type('[')); + } + + bool prefix_required = true; + if (use_type && !j.m_value.array->empty()) + { + JSON_ASSERT(use_count); + const CharType first_prefix = ubjson_prefix(j.front()); + const bool same_prefix = std::all_of(j.begin() + 1, j.end(), + [this, first_prefix](const BasicJsonType & v) + { + return ubjson_prefix(v) == first_prefix; + }); + + if (same_prefix) + { + prefix_required = false; + oa->write_character(to_char_type('$')); + oa->write_character(first_prefix); + } + } + + if (use_count) + { + oa->write_character(to_char_type('#')); + write_number_with_ubjson_prefix(j.m_value.array->size(), true); + } + + for (const auto& el : *j.m_value.array) + { + write_ubjson(el, use_count, use_type, prefix_required); + } + + if (!use_count) + { + oa->write_character(to_char_type(']')); + } + + break; + } + + case value_t::binary: + { + if (add_prefix) + { + oa->write_character(to_char_type('[')); + } + + if (use_type && !j.m_value.binary->empty()) + { + JSON_ASSERT(use_count); + oa->write_character(to_char_type('$')); + oa->write_character('U'); + } + + if (use_count) + { + oa->write_character(to_char_type('#')); + write_number_with_ubjson_prefix(j.m_value.binary->size(), true); + } + + if (use_type) + { + oa->write_characters( + reinterpret_cast(j.m_value.binary->data()), + j.m_value.binary->size()); + } + else + { + for (size_t i = 0; i < j.m_value.binary->size(); ++i) + { + oa->write_character(to_char_type('U')); + oa->write_character(j.m_value.binary->data()[i]); + } + } + + if (!use_count) + { + oa->write_character(to_char_type(']')); + } + + break; + } + + case value_t::object: + { + if (add_prefix) + { + oa->write_character(to_char_type('{')); + } + + bool prefix_required = true; + if (use_type && !j.m_value.object->empty()) + { + JSON_ASSERT(use_count); + const CharType first_prefix = ubjson_prefix(j.front()); + const bool same_prefix = std::all_of(j.begin(), j.end(), + [this, first_prefix](const BasicJsonType & v) + { + return ubjson_prefix(v) == first_prefix; + }); + + if (same_prefix) + { + prefix_required = false; + oa->write_character(to_char_type('$')); + oa->write_character(first_prefix); + } + } + + if (use_count) + { + oa->write_character(to_char_type('#')); + write_number_with_ubjson_prefix(j.m_value.object->size(), true); + } + + for (const auto& el : *j.m_value.object) + { + write_number_with_ubjson_prefix(el.first.size(), true); + oa->write_characters( + reinterpret_cast(el.first.c_str()), + el.first.size()); + write_ubjson(el.second, use_count, use_type, prefix_required); + } + + if (!use_count) + { + oa->write_character(to_char_type('}')); + } + + break; + } + + default: + break; + } + } + + private: + ////////// + // BSON // + ////////// + + /*! + @return The size of a BSON document entry header, including the id marker + and the entry name size (and its null-terminator). + */ + static std::size_t calc_bson_entry_header_size(const string_t& name) + { + const auto it = name.find(static_cast(0)); + if (JSON_HEDLEY_UNLIKELY(it != BasicJsonType::string_t::npos)) + { + JSON_THROW(out_of_range::create(409, + "BSON key cannot contain code point U+0000 (at byte " + std::to_string(it) + ")")); + } + + return /*id*/ 1ul + name.size() + /*zero-terminator*/1u; + } + + /*! + @brief Writes the given @a element_type and @a name to the output adapter + */ + void write_bson_entry_header(const string_t& name, + const std::uint8_t element_type) + { + oa->write_character(to_char_type(element_type)); // boolean + oa->write_characters( + reinterpret_cast(name.c_str()), + name.size() + 1u); + } + + /*! + @brief Writes a BSON element with key @a name and boolean value @a value + */ + void write_bson_boolean(const string_t& name, + const bool value) + { + write_bson_entry_header(name, 0x08); + oa->write_character(value ? to_char_type(0x01) : to_char_type(0x00)); + } + + /*! + @brief Writes a BSON element with key @a name and double value @a value + */ + void write_bson_double(const string_t& name, + const double value) + { + write_bson_entry_header(name, 0x01); + write_number(value); + } + + /*! + @return The size of the BSON-encoded string in @a value + */ + static std::size_t calc_bson_string_size(const string_t& value) + { + return sizeof(std::int32_t) + value.size() + 1ul; + } + + /*! + @brief Writes a BSON element with key @a name and string value @a value + */ + void write_bson_string(const string_t& name, + const string_t& value) + { + write_bson_entry_header(name, 0x02); + + write_number(static_cast(value.size() + 1ul)); + oa->write_characters( + reinterpret_cast(value.c_str()), + value.size() + 1); + } + + /*! + @brief Writes a BSON element with key @a name and null value + */ + void write_bson_null(const string_t& name) + { + write_bson_entry_header(name, 0x0A); + } + + /*! + @return The size of the BSON-encoded integer @a value + */ + static std::size_t calc_bson_integer_size(const std::int64_t value) + { + return (std::numeric_limits::min)() <= value && value <= (std::numeric_limits::max)() + ? sizeof(std::int32_t) + : sizeof(std::int64_t); + } + + /*! + @brief Writes a BSON element with key @a name and integer @a value + */ + void write_bson_integer(const string_t& name, + const std::int64_t value) + { + if ((std::numeric_limits::min)() <= value && value <= (std::numeric_limits::max)()) + { + write_bson_entry_header(name, 0x10); // int32 + write_number(static_cast(value)); + } + else + { + write_bson_entry_header(name, 0x12); // int64 + write_number(static_cast(value)); + } + } + + /*! + @return The size of the BSON-encoded unsigned integer in @a j + */ + static constexpr std::size_t calc_bson_unsigned_size(const std::uint64_t value) noexcept + { + return (value <= static_cast((std::numeric_limits::max)())) + ? sizeof(std::int32_t) + : sizeof(std::int64_t); + } + + /*! + @brief Writes a BSON element with key @a name and unsigned @a value + */ + void write_bson_unsigned(const string_t& name, + const std::uint64_t value) + { + if (value <= static_cast((std::numeric_limits::max)())) + { + write_bson_entry_header(name, 0x10 /* int32 */); + write_number(static_cast(value)); + } + else if (value <= static_cast((std::numeric_limits::max)())) + { + write_bson_entry_header(name, 0x12 /* int64 */); + write_number(static_cast(value)); + } + else + { + JSON_THROW(out_of_range::create(407, "integer number " + std::to_string(value) + " cannot be represented by BSON as it does not fit int64")); + } + } + + /*! + @brief Writes a BSON element with key @a name and object @a value + */ + void write_bson_object_entry(const string_t& name, + const typename BasicJsonType::object_t& value) + { + write_bson_entry_header(name, 0x03); // object + write_bson_object(value); + } + + /*! + @return The size of the BSON-encoded array @a value + */ + static std::size_t calc_bson_array_size(const typename BasicJsonType::array_t& value) + { + std::size_t array_index = 0ul; + + const std::size_t embedded_document_size = std::accumulate(std::begin(value), std::end(value), std::size_t(0), [&array_index](std::size_t result, const typename BasicJsonType::array_t::value_type & el) + { + return result + calc_bson_element_size(std::to_string(array_index++), el); + }); + + return sizeof(std::int32_t) + embedded_document_size + 1ul; + } + + /*! + @return The size of the BSON-encoded binary array @a value + */ + static std::size_t calc_bson_binary_size(const typename BasicJsonType::binary_t& value) + { + return sizeof(std::int32_t) + value.size() + 1ul; + } + + /*! + @brief Writes a BSON element with key @a name and array @a value + */ + void write_bson_array(const string_t& name, + const typename BasicJsonType::array_t& value) + { + write_bson_entry_header(name, 0x04); // array + write_number(static_cast(calc_bson_array_size(value))); + + std::size_t array_index = 0ul; + + for (const auto& el : value) + { + write_bson_element(std::to_string(array_index++), el); + } + + oa->write_character(to_char_type(0x00)); + } + + /*! + @brief Writes a BSON element with key @a name and binary value @a value + */ + void write_bson_binary(const string_t& name, + const binary_t& value) + { + write_bson_entry_header(name, 0x05); + + write_number(static_cast(value.size())); + write_number(value.has_subtype() ? value.subtype() : std::uint8_t(0x00)); + + oa->write_characters(reinterpret_cast(value.data()), value.size()); + } + + /*! + @brief Calculates the size necessary to serialize the JSON value @a j with its @a name + @return The calculated size for the BSON document entry for @a j with the given @a name. + */ + static std::size_t calc_bson_element_size(const string_t& name, + const BasicJsonType& j) + { + const auto header_size = calc_bson_entry_header_size(name); + switch (j.type()) + { + case value_t::object: + return header_size + calc_bson_object_size(*j.m_value.object); + + case value_t::array: + return header_size + calc_bson_array_size(*j.m_value.array); + + case value_t::binary: + return header_size + calc_bson_binary_size(*j.m_value.binary); + + case value_t::boolean: + return header_size + 1ul; + + case value_t::number_float: + return header_size + 8ul; + + case value_t::number_integer: + return header_size + calc_bson_integer_size(j.m_value.number_integer); + + case value_t::number_unsigned: + return header_size + calc_bson_unsigned_size(j.m_value.number_unsigned); + + case value_t::string: + return header_size + calc_bson_string_size(*j.m_value.string); + + case value_t::null: + return header_size + 0ul; + + // LCOV_EXCL_START + default: + JSON_ASSERT(false); + return 0ul; + // LCOV_EXCL_STOP + } + } + + /*! + @brief Serializes the JSON value @a j to BSON and associates it with the + key @a name. + @param name The name to associate with the JSON entity @a j within the + current BSON document + @return The size of the BSON entry + */ + void write_bson_element(const string_t& name, + const BasicJsonType& j) + { + switch (j.type()) + { + case value_t::object: + return write_bson_object_entry(name, *j.m_value.object); + + case value_t::array: + return write_bson_array(name, *j.m_value.array); + + case value_t::binary: + return write_bson_binary(name, *j.m_value.binary); + + case value_t::boolean: + return write_bson_boolean(name, j.m_value.boolean); + + case value_t::number_float: + return write_bson_double(name, j.m_value.number_float); + + case value_t::number_integer: + return write_bson_integer(name, j.m_value.number_integer); + + case value_t::number_unsigned: + return write_bson_unsigned(name, j.m_value.number_unsigned); + + case value_t::string: + return write_bson_string(name, *j.m_value.string); + + case value_t::null: + return write_bson_null(name); + + // LCOV_EXCL_START + default: + JSON_ASSERT(false); + return; + // LCOV_EXCL_STOP + } + } + + /*! + @brief Calculates the size of the BSON serialization of the given + JSON-object @a j. + @param[in] j JSON value to serialize + @pre j.type() == value_t::object + */ + static std::size_t calc_bson_object_size(const typename BasicJsonType::object_t& value) + { + std::size_t document_size = std::accumulate(value.begin(), value.end(), std::size_t(0), + [](size_t result, const typename BasicJsonType::object_t::value_type & el) + { + return result += calc_bson_element_size(el.first, el.second); + }); + + return sizeof(std::int32_t) + document_size + 1ul; + } + + /*! + @param[in] j JSON value to serialize + @pre j.type() == value_t::object + */ + void write_bson_object(const typename BasicJsonType::object_t& value) + { + write_number(static_cast(calc_bson_object_size(value))); + + for (const auto& el : value) + { + write_bson_element(el.first, el.second); + } + + oa->write_character(to_char_type(0x00)); + } + + ////////// + // CBOR // + ////////// + + static constexpr CharType get_cbor_float_prefix(float /*unused*/) + { + return to_char_type(0xFA); // Single-Precision Float + } + + static constexpr CharType get_cbor_float_prefix(double /*unused*/) + { + return to_char_type(0xFB); // Double-Precision Float + } + + ///////////// + // MsgPack // + ///////////// + + static constexpr CharType get_msgpack_float_prefix(float /*unused*/) + { + return to_char_type(0xCA); // float 32 + } + + static constexpr CharType get_msgpack_float_prefix(double /*unused*/) + { + return to_char_type(0xCB); // float 64 + } + + //////////// + // UBJSON // + //////////// + + // UBJSON: write number (floating point) + template::value, int>::type = 0> + void write_number_with_ubjson_prefix(const NumberType n, + const bool add_prefix) + { + if (add_prefix) + { + oa->write_character(get_ubjson_float_prefix(n)); + } + write_number(n); + } + + // UBJSON: write number (unsigned integer) + template::value, int>::type = 0> + void write_number_with_ubjson_prefix(const NumberType n, + const bool add_prefix) + { + if (n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('i')); // int8 + } + write_number(static_cast(n)); + } + else if (n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('U')); // uint8 + } + write_number(static_cast(n)); + } + else if (n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('I')); // int16 + } + write_number(static_cast(n)); + } + else if (n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('l')); // int32 + } + write_number(static_cast(n)); + } + else if (n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('L')); // int64 + } + write_number(static_cast(n)); + } + else + { + if (add_prefix) + { + oa->write_character(to_char_type('H')); // high-precision number + } + + const auto number = BasicJsonType(n).dump(); + write_number_with_ubjson_prefix(number.size(), true); + for (std::size_t i = 0; i < number.size(); ++i) + { + oa->write_character(to_char_type(static_cast(number[i]))); + } + } + } + + // UBJSON: write number (signed integer) + template < typename NumberType, typename std::enable_if < + std::is_signed::value&& + !std::is_floating_point::value, int >::type = 0 > + void write_number_with_ubjson_prefix(const NumberType n, + const bool add_prefix) + { + if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('i')); // int8 + } + write_number(static_cast(n)); + } + else if (static_cast((std::numeric_limits::min)()) <= n && n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('U')); // uint8 + } + write_number(static_cast(n)); + } + else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('I')); // int16 + } + write_number(static_cast(n)); + } + else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('l')); // int32 + } + write_number(static_cast(n)); + } + else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('L')); // int64 + } + write_number(static_cast(n)); + } + // LCOV_EXCL_START + else + { + if (add_prefix) + { + oa->write_character(to_char_type('H')); // high-precision number + } + + const auto number = BasicJsonType(n).dump(); + write_number_with_ubjson_prefix(number.size(), true); + for (std::size_t i = 0; i < number.size(); ++i) + { + oa->write_character(to_char_type(static_cast(number[i]))); + } + } + // LCOV_EXCL_STOP + } + + /*! + @brief determine the type prefix of container values + */ + CharType ubjson_prefix(const BasicJsonType& j) const noexcept + { + switch (j.type()) + { + case value_t::null: + return 'Z'; + + case value_t::boolean: + return j.m_value.boolean ? 'T' : 'F'; + + case value_t::number_integer: + { + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'i'; + } + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'U'; + } + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'I'; + } + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'l'; + } + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'L'; + } + // anything else is treated as high-precision number + return 'H'; // LCOV_EXCL_LINE + } + + case value_t::number_unsigned: + { + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'i'; + } + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'U'; + } + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'I'; + } + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'l'; + } + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'L'; + } + // anything else is treated as high-precision number + return 'H'; // LCOV_EXCL_LINE + } + + case value_t::number_float: + return get_ubjson_float_prefix(j.m_value.number_float); + + case value_t::string: + return 'S'; + + case value_t::array: // fallthrough + case value_t::binary: + return '['; + + case value_t::object: + return '{'; + + default: // discarded values + return 'N'; + } + } + + static constexpr CharType get_ubjson_float_prefix(float /*unused*/) + { + return 'd'; // float 32 + } + + static constexpr CharType get_ubjson_float_prefix(double /*unused*/) + { + return 'D'; // float 64 + } + + /////////////////////// + // Utility functions // + /////////////////////// + + /* + @brief write a number to output input + @param[in] n number of type @a NumberType + @tparam NumberType the type of the number + @tparam OutputIsLittleEndian Set to true if output data is + required to be little endian + + @note This function needs to respect the system's endianess, because bytes + in CBOR, MessagePack, and UBJSON are stored in network order (big + endian) and therefore need reordering on little endian systems. + */ + template + void write_number(const NumberType n) + { + // step 1: write number to array of length NumberType + std::array vec; + std::memcpy(vec.data(), &n, sizeof(NumberType)); + + // step 2: write array to output (with possible reordering) + if (is_little_endian != OutputIsLittleEndian) + { + // reverse byte order prior to conversion if necessary + std::reverse(vec.begin(), vec.end()); + } + + oa->write_characters(vec.data(), sizeof(NumberType)); + } + + void write_compact_float(const number_float_t n, detail::input_format_t format) + { + if (static_cast(n) >= static_cast(std::numeric_limits::lowest()) && + static_cast(n) <= static_cast((std::numeric_limits::max)()) && + static_cast(static_cast(n)) == static_cast(n)) + { + oa->write_character(format == detail::input_format_t::cbor + ? get_cbor_float_prefix(static_cast(n)) + : get_msgpack_float_prefix(static_cast(n))); + write_number(static_cast(n)); + } + else + { + oa->write_character(format == detail::input_format_t::cbor + ? get_cbor_float_prefix(n) + : get_msgpack_float_prefix(n)); + write_number(n); + } + } + + public: + // The following to_char_type functions are implement the conversion + // between uint8_t and CharType. In case CharType is not unsigned, + // such a conversion is required to allow values greater than 128. + // See for a discussion. + template < typename C = CharType, + enable_if_t < std::is_signed::value && std::is_signed::value > * = nullptr > + static constexpr CharType to_char_type(std::uint8_t x) noexcept + { + return *reinterpret_cast(&x); + } + + template < typename C = CharType, + enable_if_t < std::is_signed::value && std::is_unsigned::value > * = nullptr > + static CharType to_char_type(std::uint8_t x) noexcept + { + static_assert(sizeof(std::uint8_t) == sizeof(CharType), "size of CharType must be equal to std::uint8_t"); + static_assert(std::is_trivial::value, "CharType must be trivial"); + CharType result; + std::memcpy(&result, &x, sizeof(x)); + return result; + } + + template::value>* = nullptr> + static constexpr CharType to_char_type(std::uint8_t x) noexcept + { + return x; + } + + template < typename InputCharType, typename C = CharType, + enable_if_t < + std::is_signed::value && + std::is_signed::value && + std::is_same::type>::value + > * = nullptr > + static constexpr CharType to_char_type(InputCharType x) noexcept + { + return x; + } + + private: + /// whether we can assume little endianess + const bool is_little_endian = little_endianess(); + + /// the output + output_adapter_t oa = nullptr; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/output/output_adapters.hpp b/external/json/include/nlohmann/detail/output/output_adapters.hpp new file mode 100644 index 0000000..71ca65b --- /dev/null +++ b/external/json/include/nlohmann/detail/output/output_adapters.hpp @@ -0,0 +1,123 @@ +#pragma once + +#include // copy +#include // size_t +#include // streamsize +#include // back_inserter +#include // shared_ptr, make_shared +#include // basic_ostream +#include // basic_string +#include // vector +#include + +namespace nlohmann +{ +namespace detail +{ +/// abstract output adapter interface +template struct output_adapter_protocol +{ + virtual void write_character(CharType c) = 0; + virtual void write_characters(const CharType* s, std::size_t length) = 0; + virtual ~output_adapter_protocol() = default; +}; + +/// a type to simplify interfaces +template +using output_adapter_t = std::shared_ptr>; + +/// output adapter for byte vectors +template +class output_vector_adapter : public output_adapter_protocol +{ + public: + explicit output_vector_adapter(std::vector& vec) noexcept + : v(vec) + {} + + void write_character(CharType c) override + { + v.push_back(c); + } + + JSON_HEDLEY_NON_NULL(2) + void write_characters(const CharType* s, std::size_t length) override + { + std::copy(s, s + length, std::back_inserter(v)); + } + + private: + std::vector& v; +}; + +/// output adapter for output streams +template +class output_stream_adapter : public output_adapter_protocol +{ + public: + explicit output_stream_adapter(std::basic_ostream& s) noexcept + : stream(s) + {} + + void write_character(CharType c) override + { + stream.put(c); + } + + JSON_HEDLEY_NON_NULL(2) + void write_characters(const CharType* s, std::size_t length) override + { + stream.write(s, static_cast(length)); + } + + private: + std::basic_ostream& stream; +}; + +/// output adapter for basic_string +template> +class output_string_adapter : public output_adapter_protocol +{ + public: + explicit output_string_adapter(StringType& s) noexcept + : str(s) + {} + + void write_character(CharType c) override + { + str.push_back(c); + } + + JSON_HEDLEY_NON_NULL(2) + void write_characters(const CharType* s, std::size_t length) override + { + str.append(s, length); + } + + private: + StringType& str; +}; + +template> +class output_adapter +{ + public: + output_adapter(std::vector& vec) + : oa(std::make_shared>(vec)) {} + + output_adapter(std::basic_ostream& s) + : oa(std::make_shared>(s)) {} + + output_adapter(StringType& s) + : oa(std::make_shared>(s)) {} + + operator output_adapter_t() + { + return oa; + } + + private: + output_adapter_t oa = nullptr; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/output/serializer.hpp b/external/json/include/nlohmann/detail/output/serializer.hpp new file mode 100644 index 0000000..865b890 --- /dev/null +++ b/external/json/include/nlohmann/detail/output/serializer.hpp @@ -0,0 +1,947 @@ +#pragma once + +#include // reverse, remove, fill, find, none_of +#include // array +#include // localeconv, lconv +#include // labs, isfinite, isnan, signbit +#include // size_t, ptrdiff_t +#include // uint8_t +#include // snprintf +#include // numeric_limits +#include // string, char_traits +#include // is_same +#include // move + +#include +#include +#include +#include +#include +#include +#include + +namespace nlohmann +{ +namespace detail +{ +/////////////////// +// serialization // +/////////////////// + +/// how to treat decoding errors +enum class error_handler_t +{ + strict, ///< throw a type_error exception in case of invalid UTF-8 + replace, ///< replace invalid UTF-8 sequences with U+FFFD + ignore ///< ignore invalid UTF-8 sequences +}; + +template +class serializer +{ + using string_t = typename BasicJsonType::string_t; + using number_float_t = typename BasicJsonType::number_float_t; + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using binary_char_t = typename BasicJsonType::binary_t::value_type; + static constexpr std::uint8_t UTF8_ACCEPT = 0; + static constexpr std::uint8_t UTF8_REJECT = 1; + + public: + /*! + @param[in] s output stream to serialize to + @param[in] ichar indentation character to use + @param[in] error_handler_ how to react on decoding errors + */ + serializer(output_adapter_t s, const char ichar, + error_handler_t error_handler_ = error_handler_t::strict) + : o(std::move(s)) + , loc(std::localeconv()) + , thousands_sep(loc->thousands_sep == nullptr ? '\0' : std::char_traits::to_char_type(* (loc->thousands_sep))) + , decimal_point(loc->decimal_point == nullptr ? '\0' : std::char_traits::to_char_type(* (loc->decimal_point))) + , indent_char(ichar) + , indent_string(512, indent_char) + , error_handler(error_handler_) + {} + + // delete because of pointer members + serializer(const serializer&) = delete; + serializer& operator=(const serializer&) = delete; + serializer(serializer&&) = delete; + serializer& operator=(serializer&&) = delete; + ~serializer() = default; + + /*! + @brief internal implementation of the serialization function + + This function is called by the public member function dump and organizes + the serialization internally. The indentation level is propagated as + additional parameter. In case of arrays and objects, the function is + called recursively. + + - strings and object keys are escaped using `escape_string()` + - integer numbers are converted implicitly via `operator<<` + - floating-point numbers are converted to a string using `"%g"` format + - binary values are serialized as objects containing the subtype and the + byte array + + @param[in] val value to serialize + @param[in] pretty_print whether the output shall be pretty-printed + @param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters + in the output are escaped with `\uXXXX` sequences, and the result consists + of ASCII characters only. + @param[in] indent_step the indent level + @param[in] current_indent the current indent level (only used internally) + */ + void dump(const BasicJsonType& val, + const bool pretty_print, + const bool ensure_ascii, + const unsigned int indent_step, + const unsigned int current_indent = 0) + { + switch (val.m_type) + { + case value_t::object: + { + if (val.m_value.object->empty()) + { + o->write_characters("{}", 2); + return; + } + + if (pretty_print) + { + o->write_characters("{\n", 2); + + // variable to hold indentation for recursive calls + const auto new_indent = current_indent + indent_step; + if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) + { + indent_string.resize(indent_string.size() * 2, ' '); + } + + // first n-1 elements + auto i = val.m_value.object->cbegin(); + for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i) + { + o->write_characters(indent_string.c_str(), new_indent); + o->write_character('\"'); + dump_escaped(i->first, ensure_ascii); + o->write_characters("\": ", 3); + dump(i->second, true, ensure_ascii, indent_step, new_indent); + o->write_characters(",\n", 2); + } + + // last element + JSON_ASSERT(i != val.m_value.object->cend()); + JSON_ASSERT(std::next(i) == val.m_value.object->cend()); + o->write_characters(indent_string.c_str(), new_indent); + o->write_character('\"'); + dump_escaped(i->first, ensure_ascii); + o->write_characters("\": ", 3); + dump(i->second, true, ensure_ascii, indent_step, new_indent); + + o->write_character('\n'); + o->write_characters(indent_string.c_str(), current_indent); + o->write_character('}'); + } + else + { + o->write_character('{'); + + // first n-1 elements + auto i = val.m_value.object->cbegin(); + for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i) + { + o->write_character('\"'); + dump_escaped(i->first, ensure_ascii); + o->write_characters("\":", 2); + dump(i->second, false, ensure_ascii, indent_step, current_indent); + o->write_character(','); + } + + // last element + JSON_ASSERT(i != val.m_value.object->cend()); + JSON_ASSERT(std::next(i) == val.m_value.object->cend()); + o->write_character('\"'); + dump_escaped(i->first, ensure_ascii); + o->write_characters("\":", 2); + dump(i->second, false, ensure_ascii, indent_step, current_indent); + + o->write_character('}'); + } + + return; + } + + case value_t::array: + { + if (val.m_value.array->empty()) + { + o->write_characters("[]", 2); + return; + } + + if (pretty_print) + { + o->write_characters("[\n", 2); + + // variable to hold indentation for recursive calls + const auto new_indent = current_indent + indent_step; + if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) + { + indent_string.resize(indent_string.size() * 2, ' '); + } + + // first n-1 elements + for (auto i = val.m_value.array->cbegin(); + i != val.m_value.array->cend() - 1; ++i) + { + o->write_characters(indent_string.c_str(), new_indent); + dump(*i, true, ensure_ascii, indent_step, new_indent); + o->write_characters(",\n", 2); + } + + // last element + JSON_ASSERT(!val.m_value.array->empty()); + o->write_characters(indent_string.c_str(), new_indent); + dump(val.m_value.array->back(), true, ensure_ascii, indent_step, new_indent); + + o->write_character('\n'); + o->write_characters(indent_string.c_str(), current_indent); + o->write_character(']'); + } + else + { + o->write_character('['); + + // first n-1 elements + for (auto i = val.m_value.array->cbegin(); + i != val.m_value.array->cend() - 1; ++i) + { + dump(*i, false, ensure_ascii, indent_step, current_indent); + o->write_character(','); + } + + // last element + JSON_ASSERT(!val.m_value.array->empty()); + dump(val.m_value.array->back(), false, ensure_ascii, indent_step, current_indent); + + o->write_character(']'); + } + + return; + } + + case value_t::string: + { + o->write_character('\"'); + dump_escaped(*val.m_value.string, ensure_ascii); + o->write_character('\"'); + return; + } + + case value_t::binary: + { + if (pretty_print) + { + o->write_characters("{\n", 2); + + // variable to hold indentation for recursive calls + const auto new_indent = current_indent + indent_step; + if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) + { + indent_string.resize(indent_string.size() * 2, ' '); + } + + o->write_characters(indent_string.c_str(), new_indent); + + o->write_characters("\"bytes\": [", 10); + + if (!val.m_value.binary->empty()) + { + for (auto i = val.m_value.binary->cbegin(); + i != val.m_value.binary->cend() - 1; ++i) + { + dump_integer(*i); + o->write_characters(", ", 2); + } + dump_integer(val.m_value.binary->back()); + } + + o->write_characters("],\n", 3); + o->write_characters(indent_string.c_str(), new_indent); + + o->write_characters("\"subtype\": ", 11); + if (val.m_value.binary->has_subtype()) + { + dump_integer(val.m_value.binary->subtype()); + } + else + { + o->write_characters("null", 4); + } + o->write_character('\n'); + o->write_characters(indent_string.c_str(), current_indent); + o->write_character('}'); + } + else + { + o->write_characters("{\"bytes\":[", 10); + + if (!val.m_value.binary->empty()) + { + for (auto i = val.m_value.binary->cbegin(); + i != val.m_value.binary->cend() - 1; ++i) + { + dump_integer(*i); + o->write_character(','); + } + dump_integer(val.m_value.binary->back()); + } + + o->write_characters("],\"subtype\":", 12); + if (val.m_value.binary->has_subtype()) + { + dump_integer(val.m_value.binary->subtype()); + o->write_character('}'); + } + else + { + o->write_characters("null}", 5); + } + } + return; + } + + case value_t::boolean: + { + if (val.m_value.boolean) + { + o->write_characters("true", 4); + } + else + { + o->write_characters("false", 5); + } + return; + } + + case value_t::number_integer: + { + dump_integer(val.m_value.number_integer); + return; + } + + case value_t::number_unsigned: + { + dump_integer(val.m_value.number_unsigned); + return; + } + + case value_t::number_float: + { + dump_float(val.m_value.number_float); + return; + } + + case value_t::discarded: + { + o->write_characters("", 11); + return; + } + + case value_t::null: + { + o->write_characters("null", 4); + return; + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + } + + private: + /*! + @brief dump escaped string + + Escape a string by replacing certain special characters by a sequence of an + escape character (backslash) and another character and other control + characters by a sequence of "\u" followed by a four-digit hex + representation. The escaped string is written to output stream @a o. + + @param[in] s the string to escape + @param[in] ensure_ascii whether to escape non-ASCII characters with + \uXXXX sequences + + @complexity Linear in the length of string @a s. + */ + void dump_escaped(const string_t& s, const bool ensure_ascii) + { + std::uint32_t codepoint; + std::uint8_t state = UTF8_ACCEPT; + std::size_t bytes = 0; // number of bytes written to string_buffer + + // number of bytes written at the point of the last valid byte + std::size_t bytes_after_last_accept = 0; + std::size_t undumped_chars = 0; + + for (std::size_t i = 0; i < s.size(); ++i) + { + const auto byte = static_cast(s[i]); + + switch (decode(state, codepoint, byte)) + { + case UTF8_ACCEPT: // decode found a new code point + { + switch (codepoint) + { + case 0x08: // backspace + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'b'; + break; + } + + case 0x09: // horizontal tab + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 't'; + break; + } + + case 0x0A: // newline + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'n'; + break; + } + + case 0x0C: // formfeed + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'f'; + break; + } + + case 0x0D: // carriage return + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'r'; + break; + } + + case 0x22: // quotation mark + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = '\"'; + break; + } + + case 0x5C: // reverse solidus + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = '\\'; + break; + } + + default: + { + // escape control characters (0x00..0x1F) or, if + // ensure_ascii parameter is used, non-ASCII characters + if ((codepoint <= 0x1F) || (ensure_ascii && (codepoint >= 0x7F))) + { + if (codepoint <= 0xFFFF) + { + (std::snprintf)(string_buffer.data() + bytes, 7, "\\u%04x", + static_cast(codepoint)); + bytes += 6; + } + else + { + (std::snprintf)(string_buffer.data() + bytes, 13, "\\u%04x\\u%04x", + static_cast(0xD7C0u + (codepoint >> 10u)), + static_cast(0xDC00u + (codepoint & 0x3FFu))); + bytes += 12; + } + } + else + { + // copy byte to buffer (all previous bytes + // been copied have in default case above) + string_buffer[bytes++] = s[i]; + } + break; + } + } + + // write buffer and reset index; there must be 13 bytes + // left, as this is the maximal number of bytes to be + // written ("\uxxxx\uxxxx\0") for one code point + if (string_buffer.size() - bytes < 13) + { + o->write_characters(string_buffer.data(), bytes); + bytes = 0; + } + + // remember the byte position of this accept + bytes_after_last_accept = bytes; + undumped_chars = 0; + break; + } + + case UTF8_REJECT: // decode found invalid UTF-8 byte + { + switch (error_handler) + { + case error_handler_t::strict: + { + std::string sn(3, '\0'); + (std::snprintf)(&sn[0], sn.size(), "%.2X", byte); + JSON_THROW(type_error::create(316, "invalid UTF-8 byte at index " + std::to_string(i) + ": 0x" + sn)); + } + + case error_handler_t::ignore: + case error_handler_t::replace: + { + // in case we saw this character the first time, we + // would like to read it again, because the byte + // may be OK for itself, but just not OK for the + // previous sequence + if (undumped_chars > 0) + { + --i; + } + + // reset length buffer to the last accepted index; + // thus removing/ignoring the invalid characters + bytes = bytes_after_last_accept; + + if (error_handler == error_handler_t::replace) + { + // add a replacement character + if (ensure_ascii) + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'u'; + string_buffer[bytes++] = 'f'; + string_buffer[bytes++] = 'f'; + string_buffer[bytes++] = 'f'; + string_buffer[bytes++] = 'd'; + } + else + { + string_buffer[bytes++] = detail::binary_writer::to_char_type('\xEF'); + string_buffer[bytes++] = detail::binary_writer::to_char_type('\xBF'); + string_buffer[bytes++] = detail::binary_writer::to_char_type('\xBD'); + } + + // write buffer and reset index; there must be 13 bytes + // left, as this is the maximal number of bytes to be + // written ("\uxxxx\uxxxx\0") for one code point + if (string_buffer.size() - bytes < 13) + { + o->write_characters(string_buffer.data(), bytes); + bytes = 0; + } + + bytes_after_last_accept = bytes; + } + + undumped_chars = 0; + + // continue processing the string + state = UTF8_ACCEPT; + break; + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + break; + } + + default: // decode found yet incomplete multi-byte code point + { + if (!ensure_ascii) + { + // code point will not be escaped - copy byte to buffer + string_buffer[bytes++] = s[i]; + } + ++undumped_chars; + break; + } + } + } + + // we finished processing the string + if (JSON_HEDLEY_LIKELY(state == UTF8_ACCEPT)) + { + // write buffer + if (bytes > 0) + { + o->write_characters(string_buffer.data(), bytes); + } + } + else + { + // we finish reading, but do not accept: string was incomplete + switch (error_handler) + { + case error_handler_t::strict: + { + std::string sn(3, '\0'); + (std::snprintf)(&sn[0], sn.size(), "%.2X", static_cast(s.back())); + JSON_THROW(type_error::create(316, "incomplete UTF-8 string; last byte: 0x" + sn)); + } + + case error_handler_t::ignore: + { + // write all accepted bytes + o->write_characters(string_buffer.data(), bytes_after_last_accept); + break; + } + + case error_handler_t::replace: + { + // write all accepted bytes + o->write_characters(string_buffer.data(), bytes_after_last_accept); + // add a replacement character + if (ensure_ascii) + { + o->write_characters("\\ufffd", 6); + } + else + { + o->write_characters("\xEF\xBF\xBD", 3); + } + break; + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + } + } + + /*! + @brief count digits + + Count the number of decimal (base 10) digits for an input unsigned integer. + + @param[in] x unsigned integer number to count its digits + @return number of decimal digits + */ + inline unsigned int count_digits(number_unsigned_t x) noexcept + { + unsigned int n_digits = 1; + for (;;) + { + if (x < 10) + { + return n_digits; + } + if (x < 100) + { + return n_digits + 1; + } + if (x < 1000) + { + return n_digits + 2; + } + if (x < 10000) + { + return n_digits + 3; + } + x = x / 10000u; + n_digits += 4; + } + } + + /*! + @brief dump an integer + + Dump a given integer to output stream @a o. Works internally with + @a number_buffer. + + @param[in] x integer number (signed or unsigned) to dump + @tparam NumberType either @a number_integer_t or @a number_unsigned_t + */ + template < typename NumberType, detail::enable_if_t < + std::is_same::value || + std::is_same::value || + std::is_same::value, + int > = 0 > + void dump_integer(NumberType x) + { + static constexpr std::array, 100> digits_to_99 + { + { + {{'0', '0'}}, {{'0', '1'}}, {{'0', '2'}}, {{'0', '3'}}, {{'0', '4'}}, {{'0', '5'}}, {{'0', '6'}}, {{'0', '7'}}, {{'0', '8'}}, {{'0', '9'}}, + {{'1', '0'}}, {{'1', '1'}}, {{'1', '2'}}, {{'1', '3'}}, {{'1', '4'}}, {{'1', '5'}}, {{'1', '6'}}, {{'1', '7'}}, {{'1', '8'}}, {{'1', '9'}}, + {{'2', '0'}}, {{'2', '1'}}, {{'2', '2'}}, {{'2', '3'}}, {{'2', '4'}}, {{'2', '5'}}, {{'2', '6'}}, {{'2', '7'}}, {{'2', '8'}}, {{'2', '9'}}, + {{'3', '0'}}, {{'3', '1'}}, {{'3', '2'}}, {{'3', '3'}}, {{'3', '4'}}, {{'3', '5'}}, {{'3', '6'}}, {{'3', '7'}}, {{'3', '8'}}, {{'3', '9'}}, + {{'4', '0'}}, {{'4', '1'}}, {{'4', '2'}}, {{'4', '3'}}, {{'4', '4'}}, {{'4', '5'}}, {{'4', '6'}}, {{'4', '7'}}, {{'4', '8'}}, {{'4', '9'}}, + {{'5', '0'}}, {{'5', '1'}}, {{'5', '2'}}, {{'5', '3'}}, {{'5', '4'}}, {{'5', '5'}}, {{'5', '6'}}, {{'5', '7'}}, {{'5', '8'}}, {{'5', '9'}}, + {{'6', '0'}}, {{'6', '1'}}, {{'6', '2'}}, {{'6', '3'}}, {{'6', '4'}}, {{'6', '5'}}, {{'6', '6'}}, {{'6', '7'}}, {{'6', '8'}}, {{'6', '9'}}, + {{'7', '0'}}, {{'7', '1'}}, {{'7', '2'}}, {{'7', '3'}}, {{'7', '4'}}, {{'7', '5'}}, {{'7', '6'}}, {{'7', '7'}}, {{'7', '8'}}, {{'7', '9'}}, + {{'8', '0'}}, {{'8', '1'}}, {{'8', '2'}}, {{'8', '3'}}, {{'8', '4'}}, {{'8', '5'}}, {{'8', '6'}}, {{'8', '7'}}, {{'8', '8'}}, {{'8', '9'}}, + {{'9', '0'}}, {{'9', '1'}}, {{'9', '2'}}, {{'9', '3'}}, {{'9', '4'}}, {{'9', '5'}}, {{'9', '6'}}, {{'9', '7'}}, {{'9', '8'}}, {{'9', '9'}}, + } + }; + + // special case for "0" + if (x == 0) + { + o->write_character('0'); + return; + } + + // use a pointer to fill the buffer + auto buffer_ptr = number_buffer.begin(); + + const bool is_negative = std::is_same::value && !(x >= 0); // see issue #755 + number_unsigned_t abs_value; + + unsigned int n_chars; + + if (is_negative) + { + *buffer_ptr = '-'; + abs_value = remove_sign(static_cast(x)); + + // account one more byte for the minus sign + n_chars = 1 + count_digits(abs_value); + } + else + { + abs_value = static_cast(x); + n_chars = count_digits(abs_value); + } + + // spare 1 byte for '\0' + JSON_ASSERT(n_chars < number_buffer.size() - 1); + + // jump to the end to generate the string from backward + // so we later avoid reversing the result + buffer_ptr += n_chars; + + // Fast int2ascii implementation inspired by "Fastware" talk by Andrei Alexandrescu + // See: https://www.youtube.com/watch?v=o4-CwDo2zpg + while (abs_value >= 100) + { + const auto digits_index = static_cast((abs_value % 100)); + abs_value /= 100; + *(--buffer_ptr) = digits_to_99[digits_index][1]; + *(--buffer_ptr) = digits_to_99[digits_index][0]; + } + + if (abs_value >= 10) + { + const auto digits_index = static_cast(abs_value); + *(--buffer_ptr) = digits_to_99[digits_index][1]; + *(--buffer_ptr) = digits_to_99[digits_index][0]; + } + else + { + *(--buffer_ptr) = static_cast('0' + abs_value); + } + + o->write_characters(number_buffer.data(), n_chars); + } + + /*! + @brief dump a floating-point number + + Dump a given floating-point number to output stream @a o. Works internally + with @a number_buffer. + + @param[in] x floating-point number to dump + */ + void dump_float(number_float_t x) + { + // NaN / inf + if (!std::isfinite(x)) + { + o->write_characters("null", 4); + return; + } + + // If number_float_t is an IEEE-754 single or double precision number, + // use the Grisu2 algorithm to produce short numbers which are + // guaranteed to round-trip, using strtof and strtod, resp. + // + // NB: The test below works if == . + static constexpr bool is_ieee_single_or_double + = (std::numeric_limits::is_iec559 && std::numeric_limits::digits == 24 && std::numeric_limits::max_exponent == 128) || + (std::numeric_limits::is_iec559 && std::numeric_limits::digits == 53 && std::numeric_limits::max_exponent == 1024); + + dump_float(x, std::integral_constant()); + } + + void dump_float(number_float_t x, std::true_type /*is_ieee_single_or_double*/) + { + char* begin = number_buffer.data(); + char* end = ::nlohmann::detail::to_chars(begin, begin + number_buffer.size(), x); + + o->write_characters(begin, static_cast(end - begin)); + } + + void dump_float(number_float_t x, std::false_type /*is_ieee_single_or_double*/) + { + // get number of digits for a float -> text -> float round-trip + static constexpr auto d = std::numeric_limits::max_digits10; + + // the actual conversion + std::ptrdiff_t len = (std::snprintf)(number_buffer.data(), number_buffer.size(), "%.*g", d, x); + + // negative value indicates an error + JSON_ASSERT(len > 0); + // check if buffer was large enough + JSON_ASSERT(static_cast(len) < number_buffer.size()); + + // erase thousands separator + if (thousands_sep != '\0') + { + const auto end = std::remove(number_buffer.begin(), + number_buffer.begin() + len, thousands_sep); + std::fill(end, number_buffer.end(), '\0'); + JSON_ASSERT((end - number_buffer.begin()) <= len); + len = (end - number_buffer.begin()); + } + + // convert decimal point to '.' + if (decimal_point != '\0' && decimal_point != '.') + { + const auto dec_pos = std::find(number_buffer.begin(), number_buffer.end(), decimal_point); + if (dec_pos != number_buffer.end()) + { + *dec_pos = '.'; + } + } + + o->write_characters(number_buffer.data(), static_cast(len)); + + // determine if need to append ".0" + const bool value_is_int_like = + std::none_of(number_buffer.begin(), number_buffer.begin() + len + 1, + [](char c) + { + return c == '.' || c == 'e'; + }); + + if (value_is_int_like) + { + o->write_characters(".0", 2); + } + } + + /*! + @brief check whether a string is UTF-8 encoded + + The function checks each byte of a string whether it is UTF-8 encoded. The + result of the check is stored in the @a state parameter. The function must + be called initially with state 0 (accept). State 1 means the string must + be rejected, because the current byte is not allowed. If the string is + completely processed, but the state is non-zero, the string ended + prematurely; that is, the last byte indicated more bytes should have + followed. + + @param[in,out] state the state of the decoding + @param[in,out] codep codepoint (valid only if resulting state is UTF8_ACCEPT) + @param[in] byte next byte to decode + @return new state + + @note The function has been edited: a std::array is used. + + @copyright Copyright (c) 2008-2009 Bjoern Hoehrmann + @sa http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ + */ + static std::uint8_t decode(std::uint8_t& state, std::uint32_t& codep, const std::uint8_t byte) noexcept + { + static const std::array utf8d = + { + { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 00..1F + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 20..3F + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 40..5F + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 60..7F + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, // 80..9F + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, // A0..BF + 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // C0..DF + 0xA, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x4, 0x3, 0x3, // E0..EF + 0xB, 0x6, 0x6, 0x6, 0x5, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, // F0..FF + 0x0, 0x1, 0x2, 0x3, 0x5, 0x8, 0x7, 0x1, 0x1, 0x1, 0x4, 0x6, 0x1, 0x1, 0x1, 0x1, // s0..s0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, // s1..s2 + 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, // s3..s4 + 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, // s5..s6 + 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // s7..s8 + } + }; + + const std::uint8_t type = utf8d[byte]; + + codep = (state != UTF8_ACCEPT) + ? (byte & 0x3fu) | (codep << 6u) + : (0xFFu >> type) & (byte); + + std::size_t index = 256u + static_cast(state) * 16u + static_cast(type); + JSON_ASSERT(index < 400); + state = utf8d[index]; + return state; + } + + /* + * Overload to make the compiler happy while it is instantiating + * dump_integer for number_unsigned_t. + * Must never be called. + */ + number_unsigned_t remove_sign(number_unsigned_t x) + { + JSON_ASSERT(false); // LCOV_EXCL_LINE + return x; // LCOV_EXCL_LINE + } + + /* + * Helper function for dump_integer + * + * This function takes a negative signed integer and returns its absolute + * value as unsigned integer. The plus/minus shuffling is necessary as we can + * not directly remove the sign of an arbitrary signed integer as the + * absolute values of INT_MIN and INT_MAX are usually not the same. See + * #1708 for details. + */ + inline number_unsigned_t remove_sign(number_integer_t x) noexcept + { + JSON_ASSERT(x < 0 && x < (std::numeric_limits::max)()); + return static_cast(-(x + 1)) + 1; + } + + private: + /// the output of the serializer + output_adapter_t o = nullptr; + + /// a (hopefully) large enough character buffer + std::array number_buffer{{}}; + + /// the locale + const std::lconv* loc = nullptr; + /// the locale's thousand separator character + const char thousands_sep = '\0'; + /// the locale's decimal point character + const char decimal_point = '\0'; + + /// string buffer + std::array string_buffer{{}}; + + /// the indentation character + const char indent_char; + /// the indentation string + string_t indent_string; + + /// error_handler how to react on decoding errors + const error_handler_t error_handler; +}; +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/detail/value_t.hpp b/external/json/include/nlohmann/detail/value_t.hpp new file mode 100644 index 0000000..0383df0 --- /dev/null +++ b/external/json/include/nlohmann/detail/value_t.hpp @@ -0,0 +1,81 @@ +#pragma once + +#include // array +#include // size_t +#include // uint8_t +#include // string + +namespace nlohmann +{ +namespace detail +{ +/////////////////////////// +// JSON type enumeration // +/////////////////////////// + +/*! +@brief the JSON type enumeration + +This enumeration collects the different JSON types. It is internally used to +distinguish the stored values, and the functions @ref basic_json::is_null(), +@ref basic_json::is_object(), @ref basic_json::is_array(), +@ref basic_json::is_string(), @ref basic_json::is_boolean(), +@ref basic_json::is_number() (with @ref basic_json::is_number_integer(), +@ref basic_json::is_number_unsigned(), and @ref basic_json::is_number_float()), +@ref basic_json::is_discarded(), @ref basic_json::is_primitive(), and +@ref basic_json::is_structured() rely on it. + +@note There are three enumeration entries (number_integer, number_unsigned, and +number_float), because the library distinguishes these three types for numbers: +@ref basic_json::number_unsigned_t is used for unsigned integers, +@ref basic_json::number_integer_t is used for signed integers, and +@ref basic_json::number_float_t is used for floating-point numbers or to +approximate integers which do not fit in the limits of their respective type. + +@sa @ref basic_json::basic_json(const value_t value_type) -- create a JSON +value with the default value for a given type + +@since version 1.0.0 +*/ +enum class value_t : std::uint8_t +{ + null, ///< null value + object, ///< object (unordered set of name/value pairs) + array, ///< array (ordered collection of values) + string, ///< string value + boolean, ///< boolean value + number_integer, ///< number value (signed integer) + number_unsigned, ///< number value (unsigned integer) + number_float, ///< number value (floating-point) + binary, ///< binary array (ordered collection of bytes) + discarded ///< discarded by the parser callback function +}; + +/*! +@brief comparison operator for JSON types + +Returns an ordering that is similar to Python: +- order: null < boolean < number < object < array < string < binary +- furthermore, each type is not smaller than itself +- discarded values are not comparable +- binary is represented as a b"" string in python and directly comparable to a + string; however, making a binary array directly comparable with a string would + be surprising behavior in a JSON file. + +@since version 1.0.0 +*/ +inline bool operator<(const value_t lhs, const value_t rhs) noexcept +{ + static constexpr std::array order = {{ + 0 /* null */, 3 /* object */, 4 /* array */, 5 /* string */, + 1 /* boolean */, 2 /* integer */, 2 /* unsigned */, 2 /* float */, + 6 /* binary */ + } + }; + + const auto l_index = static_cast(lhs); + const auto r_index = static_cast(rhs); + return l_index < order.size() && r_index < order.size() && order[l_index] < order[r_index]; +} +} // namespace detail +} // namespace nlohmann diff --git a/external/json/include/nlohmann/json.hpp b/external/json/include/nlohmann/json.hpp new file mode 100644 index 0000000..a9e6c76 --- /dev/null +++ b/external/json/include/nlohmann/json.hpp @@ -0,0 +1,8791 @@ +/* + __ _____ _____ _____ + __| | __| | | | JSON for Modern C++ +| | |__ | | | | | | version 3.9.1 +|_____|_____|_____|_|___| https://github.com/nlohmann/json + +Licensed under the MIT License . +SPDX-License-Identifier: MIT +Copyright (c) 2013-2019 Niels Lohmann . + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ + +#ifndef INCLUDE_NLOHMANN_JSON_HPP_ +#define INCLUDE_NLOHMANN_JSON_HPP_ + +#define NLOHMANN_JSON_VERSION_MAJOR 3 +#define NLOHMANN_JSON_VERSION_MINOR 9 +#define NLOHMANN_JSON_VERSION_PATCH 1 + +#include // all_of, find, for_each +#include // nullptr_t, ptrdiff_t, size_t +#include // hash, less +#include // initializer_list +#include // istream, ostream +#include // random_access_iterator_tag +#include // unique_ptr +#include // accumulate +#include // string, stoi, to_string +#include // declval, forward, move, pair, swap +#include // vector + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/*! +@brief namespace for Niels Lohmann +@see https://github.com/nlohmann +@since version 1.0.0 +*/ +namespace nlohmann +{ + +/*! +@brief a class to store JSON values + +@tparam ObjectType type for JSON objects (`std::map` by default; will be used +in @ref object_t) +@tparam ArrayType type for JSON arrays (`std::vector` by default; will be used +in @ref array_t) +@tparam StringType type for JSON strings and object keys (`std::string` by +default; will be used in @ref string_t) +@tparam BooleanType type for JSON booleans (`bool` by default; will be used +in @ref boolean_t) +@tparam NumberIntegerType type for JSON integer numbers (`int64_t` by +default; will be used in @ref number_integer_t) +@tparam NumberUnsignedType type for JSON unsigned integer numbers (@c +`uint64_t` by default; will be used in @ref number_unsigned_t) +@tparam NumberFloatType type for JSON floating-point numbers (`double` by +default; will be used in @ref number_float_t) +@tparam BinaryType type for packed binary data for compatibility with binary +serialization formats (`std::vector` by default; will be used in +@ref binary_t) +@tparam AllocatorType type of the allocator to use (`std::allocator` by +default) +@tparam JSONSerializer the serializer to resolve internal calls to `to_json()` +and `from_json()` (@ref adl_serializer by default) + +@requirement The class satisfies the following concept requirements: +- Basic + - [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible): + JSON values can be default constructed. The result will be a JSON null + value. + - [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible): + A JSON value can be constructed from an rvalue argument. + - [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible): + A JSON value can be copy-constructed from an lvalue expression. + - [MoveAssignable](https://en.cppreference.com/w/cpp/named_req/MoveAssignable): + A JSON value van be assigned from an rvalue argument. + - [CopyAssignable](https://en.cppreference.com/w/cpp/named_req/CopyAssignable): + A JSON value can be copy-assigned from an lvalue expression. + - [Destructible](https://en.cppreference.com/w/cpp/named_req/Destructible): + JSON values can be destructed. +- Layout + - [StandardLayoutType](https://en.cppreference.com/w/cpp/named_req/StandardLayoutType): + JSON values have + [standard layout](https://en.cppreference.com/w/cpp/language/data_members#Standard_layout): + All non-static data members are private and standard layout types, the + class has no virtual functions or (virtual) base classes. +- Library-wide + - [EqualityComparable](https://en.cppreference.com/w/cpp/named_req/EqualityComparable): + JSON values can be compared with `==`, see @ref + operator==(const_reference,const_reference). + - [LessThanComparable](https://en.cppreference.com/w/cpp/named_req/LessThanComparable): + JSON values can be compared with `<`, see @ref + operator<(const_reference,const_reference). + - [Swappable](https://en.cppreference.com/w/cpp/named_req/Swappable): + Any JSON lvalue or rvalue of can be swapped with any lvalue or rvalue of + other compatible types, using unqualified function call @ref swap(). + - [NullablePointer](https://en.cppreference.com/w/cpp/named_req/NullablePointer): + JSON values can be compared against `std::nullptr_t` objects which are used + to model the `null` value. +- Container + - [Container](https://en.cppreference.com/w/cpp/named_req/Container): + JSON values can be used like STL containers and provide iterator access. + - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer); + JSON values can be used like STL containers and provide reverse iterator + access. + +@invariant The member variables @a m_value and @a m_type have the following +relationship: +- If `m_type == value_t::object`, then `m_value.object != nullptr`. +- If `m_type == value_t::array`, then `m_value.array != nullptr`. +- If `m_type == value_t::string`, then `m_value.string != nullptr`. +The invariants are checked by member function assert_invariant(). + +@internal +@note ObjectType trick from https://stackoverflow.com/a/9860911 +@endinternal + +@see [RFC 7159: The JavaScript Object Notation (JSON) Data Interchange +Format](http://rfc7159.net/rfc7159) + +@since version 1.0.0 + +@nosubgrouping +*/ +NLOHMANN_BASIC_JSON_TPL_DECLARATION +class basic_json +{ + private: + template friend struct detail::external_constructor; + friend ::nlohmann::json_pointer; + + template + friend class ::nlohmann::detail::parser; + friend ::nlohmann::detail::serializer; + template + friend class ::nlohmann::detail::iter_impl; + template + friend class ::nlohmann::detail::binary_writer; + template + friend class ::nlohmann::detail::binary_reader; + template + friend class ::nlohmann::detail::json_sax_dom_parser; + template + friend class ::nlohmann::detail::json_sax_dom_callback_parser; + + /// workaround type for MSVC + using basic_json_t = NLOHMANN_BASIC_JSON_TPL; + + // convenience aliases for types residing in namespace detail; + using lexer = ::nlohmann::detail::lexer_base; + + template + static ::nlohmann::detail::parser parser( + InputAdapterType adapter, + detail::parser_callback_tcb = nullptr, + const bool allow_exceptions = true, + const bool ignore_comments = false + ) + { + return ::nlohmann::detail::parser(std::move(adapter), + std::move(cb), allow_exceptions, ignore_comments); + } + + using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; + template + using internal_iterator = ::nlohmann::detail::internal_iterator; + template + using iter_impl = ::nlohmann::detail::iter_impl; + template + using iteration_proxy = ::nlohmann::detail::iteration_proxy; + template using json_reverse_iterator = ::nlohmann::detail::json_reverse_iterator; + + template + using output_adapter_t = ::nlohmann::detail::output_adapter_t; + + template + using binary_reader = ::nlohmann::detail::binary_reader; + template using binary_writer = ::nlohmann::detail::binary_writer; + + using serializer = ::nlohmann::detail::serializer; + + public: + using value_t = detail::value_t; + /// JSON Pointer, see @ref nlohmann::json_pointer + using json_pointer = ::nlohmann::json_pointer; + template + using json_serializer = JSONSerializer; + /// how to treat decoding errors + using error_handler_t = detail::error_handler_t; + /// how to treat CBOR tags + using cbor_tag_handler_t = detail::cbor_tag_handler_t; + /// helper type for initializer lists of basic_json values + using initializer_list_t = std::initializer_list>; + + using input_format_t = detail::input_format_t; + /// SAX interface type, see @ref nlohmann::json_sax + using json_sax_t = json_sax; + + //////////////// + // exceptions // + //////////////// + + /// @name exceptions + /// Classes to implement user-defined exceptions. + /// @{ + + /// @copydoc detail::exception + using exception = detail::exception; + /// @copydoc detail::parse_error + using parse_error = detail::parse_error; + /// @copydoc detail::invalid_iterator + using invalid_iterator = detail::invalid_iterator; + /// @copydoc detail::type_error + using type_error = detail::type_error; + /// @copydoc detail::out_of_range + using out_of_range = detail::out_of_range; + /// @copydoc detail::other_error + using other_error = detail::other_error; + + /// @} + + + ///////////////////// + // container types // + ///////////////////// + + /// @name container types + /// The canonic container types to use @ref basic_json like any other STL + /// container. + /// @{ + + /// the type of elements in a basic_json container + using value_type = basic_json; + + /// the type of an element reference + using reference = value_type&; + /// the type of an element const reference + using const_reference = const value_type&; + + /// a type to represent differences between iterators + using difference_type = std::ptrdiff_t; + /// a type to represent container sizes + using size_type = std::size_t; + + /// the allocator type + using allocator_type = AllocatorType; + + /// the type of an element pointer + using pointer = typename std::allocator_traits::pointer; + /// the type of an element const pointer + using const_pointer = typename std::allocator_traits::const_pointer; + + /// an iterator for a basic_json container + using iterator = iter_impl; + /// a const iterator for a basic_json container + using const_iterator = iter_impl; + /// a reverse iterator for a basic_json container + using reverse_iterator = json_reverse_iterator; + /// a const reverse iterator for a basic_json container + using const_reverse_iterator = json_reverse_iterator; + + /// @} + + + /*! + @brief returns the allocator associated with the container + */ + static allocator_type get_allocator() + { + return allocator_type(); + } + + /*! + @brief returns version information on the library + + This function returns a JSON object with information about the library, + including the version number and information on the platform and compiler. + + @return JSON object holding version information + key | description + ----------- | --------------- + `compiler` | Information on the used compiler. It is an object with the following keys: `c++` (the used C++ standard), `family` (the compiler family; possible values are `clang`, `icc`, `gcc`, `ilecpp`, `msvc`, `pgcpp`, `sunpro`, and `unknown`), and `version` (the compiler version). + `copyright` | The copyright line for the library as string. + `name` | The name of the library as string. + `platform` | The used platform as string. Possible values are `win32`, `linux`, `apple`, `unix`, and `unknown`. + `url` | The URL of the project as string. + `version` | The version of the library. It is an object with the following keys: `major`, `minor`, and `patch` as defined by [Semantic Versioning](http://semver.org), and `string` (the version string). + + @liveexample{The following code shows an example output of the `meta()` + function.,meta} + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @complexity Constant. + + @since 2.1.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json meta() + { + basic_json result; + + result["copyright"] = "(C) 2013-2020 Niels Lohmann"; + result["name"] = "JSON for Modern C++"; + result["url"] = "https://github.com/nlohmann/json"; + result["version"]["string"] = + std::to_string(NLOHMANN_JSON_VERSION_MAJOR) + "." + + std::to_string(NLOHMANN_JSON_VERSION_MINOR) + "." + + std::to_string(NLOHMANN_JSON_VERSION_PATCH); + result["version"]["major"] = NLOHMANN_JSON_VERSION_MAJOR; + result["version"]["minor"] = NLOHMANN_JSON_VERSION_MINOR; + result["version"]["patch"] = NLOHMANN_JSON_VERSION_PATCH; + +#ifdef _WIN32 + result["platform"] = "win32"; +#elif defined __linux__ + result["platform"] = "linux"; +#elif defined __APPLE__ + result["platform"] = "apple"; +#elif defined __unix__ + result["platform"] = "unix"; +#else + result["platform"] = "unknown"; +#endif + +#if defined(__ICC) || defined(__INTEL_COMPILER) + result["compiler"] = {{"family", "icc"}, {"version", __INTEL_COMPILER}}; +#elif defined(__clang__) + result["compiler"] = {{"family", "clang"}, {"version", __clang_version__}}; +#elif defined(__GNUC__) || defined(__GNUG__) + result["compiler"] = {{"family", "gcc"}, {"version", std::to_string(__GNUC__) + "." + std::to_string(__GNUC_MINOR__) + "." + std::to_string(__GNUC_PATCHLEVEL__)}}; +#elif defined(__HP_cc) || defined(__HP_aCC) + result["compiler"] = "hp" +#elif defined(__IBMCPP__) + result["compiler"] = {{"family", "ilecpp"}, {"version", __IBMCPP__}}; +#elif defined(_MSC_VER) + result["compiler"] = {{"family", "msvc"}, {"version", _MSC_VER}}; +#elif defined(__PGI) + result["compiler"] = {{"family", "pgcpp"}, {"version", __PGI}}; +#elif defined(__SUNPRO_CC) + result["compiler"] = {{"family", "sunpro"}, {"version", __SUNPRO_CC}}; +#else + result["compiler"] = {{"family", "unknown"}, {"version", "unknown"}}; +#endif + +#ifdef __cplusplus + result["compiler"]["c++"] = std::to_string(__cplusplus); +#else + result["compiler"]["c++"] = "unknown"; +#endif + return result; + } + + + /////////////////////////// + // JSON value data types // + /////////////////////////// + + /// @name JSON value data types + /// The data types to store a JSON value. These types are derived from + /// the template arguments passed to class @ref basic_json. + /// @{ + +#if defined(JSON_HAS_CPP_14) + // Use transparent comparator if possible, combined with perfect forwarding + // on find() and count() calls prevents unnecessary string construction. + using object_comparator_t = std::less<>; +#else + using object_comparator_t = std::less; +#endif + + /*! + @brief a type for an object + + [RFC 7159](http://rfc7159.net/rfc7159) describes JSON objects as follows: + > An object is an unordered collection of zero or more name/value pairs, + > where a name is a string and a value is a string, number, boolean, null, + > object, or array. + + To store objects in C++, a type is defined by the template parameters + described below. + + @tparam ObjectType the container to store objects (e.g., `std::map` or + `std::unordered_map`) + @tparam StringType the type of the keys or names (e.g., `std::string`). + The comparison function `std::less` is used to order elements + inside the container. + @tparam AllocatorType the allocator to use for objects (e.g., + `std::allocator`) + + #### Default type + + With the default values for @a ObjectType (`std::map`), @a StringType + (`std::string`), and @a AllocatorType (`std::allocator`), the default + value for @a object_t is: + + @code {.cpp} + std::map< + std::string, // key_type + basic_json, // value_type + std::less, // key_compare + std::allocator> // allocator_type + > + @endcode + + #### Behavior + + The choice of @a object_t influences the behavior of the JSON class. With + the default type, objects have the following behavior: + + - When all names are unique, objects will be interoperable in the sense + that all software implementations receiving that object will agree on + the name-value mappings. + - When the names within an object are not unique, it is unspecified which + one of the values for a given key will be chosen. For instance, + `{"key": 2, "key": 1}` could be equal to either `{"key": 1}` or + `{"key": 2}`. + - Internally, name/value pairs are stored in lexicographical order of the + names. Objects will also be serialized (see @ref dump) in this order. + For instance, `{"b": 1, "a": 2}` and `{"a": 2, "b": 1}` will be stored + and serialized as `{"a": 2, "b": 1}`. + - When comparing objects, the order of the name/value pairs is irrelevant. + This makes objects interoperable in the sense that they will not be + affected by these differences. For instance, `{"b": 1, "a": 2}` and + `{"a": 2, "b": 1}` will be treated as equal. + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) specifies: + > An implementation may set limits on the maximum depth of nesting. + + In this class, the object's limit of nesting is not explicitly constrained. + However, a maximum depth of nesting may be introduced by the compiler or + runtime environment. A theoretical limit can be queried by calling the + @ref max_size function of a JSON object. + + #### Storage + + Objects are stored as pointers in a @ref basic_json type. That is, for any + access to object values, a pointer of type `object_t*` must be + dereferenced. + + @sa @ref array_t -- type for an array value + + @since version 1.0.0 + + @note The order name/value pairs are added to the object is *not* + preserved by the library. Therefore, iterating an object may return + name/value pairs in a different order than they were originally stored. In + fact, keys will be traversed in alphabetical order as `std::map` with + `std::less` is used by default. Please note this behavior conforms to [RFC + 7159](http://rfc7159.net/rfc7159), because any order implements the + specified "unordered" nature of JSON objects. + */ + using object_t = ObjectType>>; + + /*! + @brief a type for an array + + [RFC 7159](http://rfc7159.net/rfc7159) describes JSON arrays as follows: + > An array is an ordered sequence of zero or more values. + + To store objects in C++, a type is defined by the template parameters + explained below. + + @tparam ArrayType container type to store arrays (e.g., `std::vector` or + `std::list`) + @tparam AllocatorType allocator to use for arrays (e.g., `std::allocator`) + + #### Default type + + With the default values for @a ArrayType (`std::vector`) and @a + AllocatorType (`std::allocator`), the default value for @a array_t is: + + @code {.cpp} + std::vector< + basic_json, // value_type + std::allocator // allocator_type + > + @endcode + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) specifies: + > An implementation may set limits on the maximum depth of nesting. + + In this class, the array's limit of nesting is not explicitly constrained. + However, a maximum depth of nesting may be introduced by the compiler or + runtime environment. A theoretical limit can be queried by calling the + @ref max_size function of a JSON array. + + #### Storage + + Arrays are stored as pointers in a @ref basic_json type. That is, for any + access to array values, a pointer of type `array_t*` must be dereferenced. + + @sa @ref object_t -- type for an object value + + @since version 1.0.0 + */ + using array_t = ArrayType>; + + /*! + @brief a type for a string + + [RFC 7159](http://rfc7159.net/rfc7159) describes JSON strings as follows: + > A string is a sequence of zero or more Unicode characters. + + To store objects in C++, a type is defined by the template parameter + described below. Unicode values are split by the JSON class into + byte-sized characters during deserialization. + + @tparam StringType the container to store strings (e.g., `std::string`). + Note this container is used for keys/names in objects, see @ref object_t. + + #### Default type + + With the default values for @a StringType (`std::string`), the default + value for @a string_t is: + + @code {.cpp} + std::string + @endcode + + #### Encoding + + Strings are stored in UTF-8 encoding. Therefore, functions like + `std::string::size()` or `std::string::length()` return the number of + bytes in the string rather than the number of characters or glyphs. + + #### String comparison + + [RFC 7159](http://rfc7159.net/rfc7159) states: + > Software implementations are typically required to test names of object + > members for equality. Implementations that transform the textual + > representation into sequences of Unicode code units and then perform the + > comparison numerically, code unit by code unit, are interoperable in the + > sense that implementations will agree in all cases on equality or + > inequality of two strings. For example, implementations that compare + > strings with escaped characters unconverted may incorrectly find that + > `"a\\b"` and `"a\u005Cb"` are not equal. + + This implementation is interoperable as it does compare strings code unit + by code unit. + + #### Storage + + String values are stored as pointers in a @ref basic_json type. That is, + for any access to string values, a pointer of type `string_t*` must be + dereferenced. + + @since version 1.0.0 + */ + using string_t = StringType; + + /*! + @brief a type for a boolean + + [RFC 7159](http://rfc7159.net/rfc7159) implicitly describes a boolean as a + type which differentiates the two literals `true` and `false`. + + To store objects in C++, a type is defined by the template parameter @a + BooleanType which chooses the type to use. + + #### Default type + + With the default values for @a BooleanType (`bool`), the default value for + @a boolean_t is: + + @code {.cpp} + bool + @endcode + + #### Storage + + Boolean values are stored directly inside a @ref basic_json type. + + @since version 1.0.0 + */ + using boolean_t = BooleanType; + + /*! + @brief a type for a number (integer) + + [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: + > The representation of numbers is similar to that used in most + > programming languages. A number is represented in base 10 using decimal + > digits. It contains an integer component that may be prefixed with an + > optional minus sign, which may be followed by a fraction part and/or an + > exponent part. Leading zeros are not allowed. (...) Numeric values that + > cannot be represented in the grammar below (such as Infinity and NaN) + > are not permitted. + + This description includes both integer and floating-point numbers. + However, C++ allows more precise storage if it is known whether the number + is a signed integer, an unsigned integer or a floating-point number. + Therefore, three different types, @ref number_integer_t, @ref + number_unsigned_t and @ref number_float_t are used. + + To store integer numbers in C++, a type is defined by the template + parameter @a NumberIntegerType which chooses the type to use. + + #### Default type + + With the default values for @a NumberIntegerType (`int64_t`), the default + value for @a number_integer_t is: + + @code {.cpp} + int64_t + @endcode + + #### Default behavior + + - The restrictions about leading zeros is not enforced in C++. Instead, + leading zeros in integer literals lead to an interpretation as octal + number. Internally, the value will be stored as decimal number. For + instance, the C++ integer literal `010` will be serialized to `8`. + During deserialization, leading zeros yield an error. + - Not-a-number (NaN) values will be serialized to `null`. + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) specifies: + > An implementation may set limits on the range and precision of numbers. + + When the default type is used, the maximal integer number that can be + stored is `9223372036854775807` (INT64_MAX) and the minimal integer number + that can be stored is `-9223372036854775808` (INT64_MIN). Integer numbers + that are out of range will yield over/underflow when used in a + constructor. During deserialization, too large or small integer numbers + will be automatically be stored as @ref number_unsigned_t or @ref + number_float_t. + + [RFC 7159](http://rfc7159.net/rfc7159) further states: + > Note that when such software is used, numbers that are integers and are + > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense + > that implementations will agree exactly on their numeric values. + + As this range is a subrange of the exactly supported range [INT64_MIN, + INT64_MAX], this class's integer type is interoperable. + + #### Storage + + Integer number values are stored directly inside a @ref basic_json type. + + @sa @ref number_float_t -- type for number values (floating-point) + + @sa @ref number_unsigned_t -- type for number values (unsigned integer) + + @since version 1.0.0 + */ + using number_integer_t = NumberIntegerType; + + /*! + @brief a type for a number (unsigned) + + [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: + > The representation of numbers is similar to that used in most + > programming languages. A number is represented in base 10 using decimal + > digits. It contains an integer component that may be prefixed with an + > optional minus sign, which may be followed by a fraction part and/or an + > exponent part. Leading zeros are not allowed. (...) Numeric values that + > cannot be represented in the grammar below (such as Infinity and NaN) + > are not permitted. + + This description includes both integer and floating-point numbers. + However, C++ allows more precise storage if it is known whether the number + is a signed integer, an unsigned integer or a floating-point number. + Therefore, three different types, @ref number_integer_t, @ref + number_unsigned_t and @ref number_float_t are used. + + To store unsigned integer numbers in C++, a type is defined by the + template parameter @a NumberUnsignedType which chooses the type to use. + + #### Default type + + With the default values for @a NumberUnsignedType (`uint64_t`), the + default value for @a number_unsigned_t is: + + @code {.cpp} + uint64_t + @endcode + + #### Default behavior + + - The restrictions about leading zeros is not enforced in C++. Instead, + leading zeros in integer literals lead to an interpretation as octal + number. Internally, the value will be stored as decimal number. For + instance, the C++ integer literal `010` will be serialized to `8`. + During deserialization, leading zeros yield an error. + - Not-a-number (NaN) values will be serialized to `null`. + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) specifies: + > An implementation may set limits on the range and precision of numbers. + + When the default type is used, the maximal integer number that can be + stored is `18446744073709551615` (UINT64_MAX) and the minimal integer + number that can be stored is `0`. Integer numbers that are out of range + will yield over/underflow when used in a constructor. During + deserialization, too large or small integer numbers will be automatically + be stored as @ref number_integer_t or @ref number_float_t. + + [RFC 7159](http://rfc7159.net/rfc7159) further states: + > Note that when such software is used, numbers that are integers and are + > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense + > that implementations will agree exactly on their numeric values. + + As this range is a subrange (when considered in conjunction with the + number_integer_t type) of the exactly supported range [0, UINT64_MAX], + this class's integer type is interoperable. + + #### Storage + + Integer number values are stored directly inside a @ref basic_json type. + + @sa @ref number_float_t -- type for number values (floating-point) + @sa @ref number_integer_t -- type for number values (integer) + + @since version 2.0.0 + */ + using number_unsigned_t = NumberUnsignedType; + + /*! + @brief a type for a number (floating-point) + + [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: + > The representation of numbers is similar to that used in most + > programming languages. A number is represented in base 10 using decimal + > digits. It contains an integer component that may be prefixed with an + > optional minus sign, which may be followed by a fraction part and/or an + > exponent part. Leading zeros are not allowed. (...) Numeric values that + > cannot be represented in the grammar below (such as Infinity and NaN) + > are not permitted. + + This description includes both integer and floating-point numbers. + However, C++ allows more precise storage if it is known whether the number + is a signed integer, an unsigned integer or a floating-point number. + Therefore, three different types, @ref number_integer_t, @ref + number_unsigned_t and @ref number_float_t are used. + + To store floating-point numbers in C++, a type is defined by the template + parameter @a NumberFloatType which chooses the type to use. + + #### Default type + + With the default values for @a NumberFloatType (`double`), the default + value for @a number_float_t is: + + @code {.cpp} + double + @endcode + + #### Default behavior + + - The restrictions about leading zeros is not enforced in C++. Instead, + leading zeros in floating-point literals will be ignored. Internally, + the value will be stored as decimal number. For instance, the C++ + floating-point literal `01.2` will be serialized to `1.2`. During + deserialization, leading zeros yield an error. + - Not-a-number (NaN) values will be serialized to `null`. + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) states: + > This specification allows implementations to set limits on the range and + > precision of numbers accepted. Since software that implements IEEE + > 754-2008 binary64 (double precision) numbers is generally available and + > widely used, good interoperability can be achieved by implementations + > that expect no more precision or range than these provide, in the sense + > that implementations will approximate JSON numbers within the expected + > precision. + + This implementation does exactly follow this approach, as it uses double + precision floating-point numbers. Note values smaller than + `-1.79769313486232e+308` and values greater than `1.79769313486232e+308` + will be stored as NaN internally and be serialized to `null`. + + #### Storage + + Floating-point number values are stored directly inside a @ref basic_json + type. + + @sa @ref number_integer_t -- type for number values (integer) + + @sa @ref number_unsigned_t -- type for number values (unsigned integer) + + @since version 1.0.0 + */ + using number_float_t = NumberFloatType; + + /*! + @brief a type for a packed binary type + + This type is a type designed to carry binary data that appears in various + serialized formats, such as CBOR's Major Type 2, MessagePack's bin, and + BSON's generic binary subtype. This type is NOT a part of standard JSON and + exists solely for compatibility with these binary types. As such, it is + simply defined as an ordered sequence of zero or more byte values. + + Additionally, as an implementation detail, the subtype of the binary data is + carried around as a `std::uint8_t`, which is compatible with both of the + binary data formats that use binary subtyping, (though the specific + numbering is incompatible with each other, and it is up to the user to + translate between them). + + [CBOR's RFC 7049](https://tools.ietf.org/html/rfc7049) describes this type + as: + > Major type 2: a byte string. The string's length in bytes is represented + > following the rules for positive integers (major type 0). + + [MessagePack's documentation on the bin type + family](https://github.com/msgpack/msgpack/blob/master/spec.md#bin-format-family) + describes this type as: + > Bin format family stores an byte array in 2, 3, or 5 bytes of extra bytes + > in addition to the size of the byte array. + + [BSON's specifications](http://bsonspec.org/spec.html) describe several + binary types; however, this type is intended to represent the generic binary + type which has the description: + > Generic binary subtype - This is the most commonly used binary subtype and + > should be the 'default' for drivers and tools. + + None of these impose any limitations on the internal representation other + than the basic unit of storage be some type of array whose parts are + decomposable into bytes. + + The default representation of this binary format is a + `std::vector`, which is a very common way to represent a byte + array in modern C++. + + #### Default type + + The default values for @a BinaryType is `std::vector` + + #### Storage + + Binary Arrays are stored as pointers in a @ref basic_json type. That is, + for any access to array values, a pointer of the type `binary_t*` must be + dereferenced. + + #### Notes on subtypes + + - CBOR + - Binary values are represented as byte strings. No subtypes are + supported and will be ignored when CBOR is written. + - MessagePack + - If a subtype is given and the binary array contains exactly 1, 2, 4, 8, + or 16 elements, the fixext family (fixext1, fixext2, fixext4, fixext8) + is used. For other sizes, the ext family (ext8, ext16, ext32) is used. + The subtype is then added as singed 8-bit integer. + - If no subtype is given, the bin family (bin8, bin16, bin32) is used. + - BSON + - If a subtype is given, it is used and added as unsigned 8-bit integer. + - If no subtype is given, the generic binary subtype 0x00 is used. + + @sa @ref binary -- create a binary array + + @since version 3.8.0 + */ + using binary_t = nlohmann::byte_container_with_subtype; + /// @} + + private: + + /// helper for exception-safe object creation + template + JSON_HEDLEY_RETURNS_NON_NULL + static T* create(Args&& ... args) + { + AllocatorType alloc; + using AllocatorTraits = std::allocator_traits>; + + auto deleter = [&](T * object) + { + AllocatorTraits::deallocate(alloc, object, 1); + }; + std::unique_ptr object(AllocatorTraits::allocate(alloc, 1), deleter); + AllocatorTraits::construct(alloc, object.get(), std::forward(args)...); + JSON_ASSERT(object != nullptr); + return object.release(); + } + + //////////////////////// + // JSON value storage // + //////////////////////// + + /*! + @brief a JSON value + + The actual storage for a JSON value of the @ref basic_json class. This + union combines the different storage types for the JSON value types + defined in @ref value_t. + + JSON type | value_t type | used type + --------- | --------------- | ------------------------ + object | object | pointer to @ref object_t + array | array | pointer to @ref array_t + string | string | pointer to @ref string_t + boolean | boolean | @ref boolean_t + number | number_integer | @ref number_integer_t + number | number_unsigned | @ref number_unsigned_t + number | number_float | @ref number_float_t + binary | binary | pointer to @ref binary_t + null | null | *no value is stored* + + @note Variable-length types (objects, arrays, and strings) are stored as + pointers. The size of the union should not exceed 64 bits if the default + value types are used. + + @since version 1.0.0 + */ + union json_value + { + /// object (stored with pointer to save storage) + object_t* object; + /// array (stored with pointer to save storage) + array_t* array; + /// string (stored with pointer to save storage) + string_t* string; + /// binary (stored with pointer to save storage) + binary_t* binary; + /// boolean + boolean_t boolean; + /// number (integer) + number_integer_t number_integer; + /// number (unsigned integer) + number_unsigned_t number_unsigned; + /// number (floating-point) + number_float_t number_float; + + /// default constructor (for null values) + json_value() = default; + /// constructor for booleans + json_value(boolean_t v) noexcept : boolean(v) {} + /// constructor for numbers (integer) + json_value(number_integer_t v) noexcept : number_integer(v) {} + /// constructor for numbers (unsigned) + json_value(number_unsigned_t v) noexcept : number_unsigned(v) {} + /// constructor for numbers (floating-point) + json_value(number_float_t v) noexcept : number_float(v) {} + /// constructor for empty values of a given type + json_value(value_t t) + { + switch (t) + { + case value_t::object: + { + object = create(); + break; + } + + case value_t::array: + { + array = create(); + break; + } + + case value_t::string: + { + string = create(""); + break; + } + + case value_t::binary: + { + binary = create(); + break; + } + + case value_t::boolean: + { + boolean = boolean_t(false); + break; + } + + case value_t::number_integer: + { + number_integer = number_integer_t(0); + break; + } + + case value_t::number_unsigned: + { + number_unsigned = number_unsigned_t(0); + break; + } + + case value_t::number_float: + { + number_float = number_float_t(0.0); + break; + } + + case value_t::null: + { + object = nullptr; // silence warning, see #821 + break; + } + + default: + { + object = nullptr; // silence warning, see #821 + if (JSON_HEDLEY_UNLIKELY(t == value_t::null)) + { + JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.9.1")); // LCOV_EXCL_LINE + } + break; + } + } + } + + /// constructor for strings + json_value(const string_t& value) + { + string = create(value); + } + + /// constructor for rvalue strings + json_value(string_t&& value) + { + string = create(std::move(value)); + } + + /// constructor for objects + json_value(const object_t& value) + { + object = create(value); + } + + /// constructor for rvalue objects + json_value(object_t&& value) + { + object = create(std::move(value)); + } + + /// constructor for arrays + json_value(const array_t& value) + { + array = create(value); + } + + /// constructor for rvalue arrays + json_value(array_t&& value) + { + array = create(std::move(value)); + } + + /// constructor for binary arrays + json_value(const typename binary_t::container_type& value) + { + binary = create(value); + } + + /// constructor for rvalue binary arrays + json_value(typename binary_t::container_type&& value) + { + binary = create(std::move(value)); + } + + /// constructor for binary arrays (internal type) + json_value(const binary_t& value) + { + binary = create(value); + } + + /// constructor for rvalue binary arrays (internal type) + json_value(binary_t&& value) + { + binary = create(std::move(value)); + } + + void destroy(value_t t) noexcept + { + // flatten the current json_value to a heap-allocated stack + std::vector stack; + + // move the top-level items to stack + if (t == value_t::array) + { + stack.reserve(array->size()); + std::move(array->begin(), array->end(), std::back_inserter(stack)); + } + else if (t == value_t::object) + { + stack.reserve(object->size()); + for (auto&& it : *object) + { + stack.push_back(std::move(it.second)); + } + } + + while (!stack.empty()) + { + // move the last item to local variable to be processed + basic_json current_item(std::move(stack.back())); + stack.pop_back(); + + // if current_item is array/object, move + // its children to the stack to be processed later + if (current_item.is_array()) + { + std::move(current_item.m_value.array->begin(), current_item.m_value.array->end(), + std::back_inserter(stack)); + + current_item.m_value.array->clear(); + } + else if (current_item.is_object()) + { + for (auto&& it : *current_item.m_value.object) + { + stack.push_back(std::move(it.second)); + } + + current_item.m_value.object->clear(); + } + + // it's now safe that current_item get destructed + // since it doesn't have any children + } + + switch (t) + { + case value_t::object: + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, object); + std::allocator_traits::deallocate(alloc, object, 1); + break; + } + + case value_t::array: + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, array); + std::allocator_traits::deallocate(alloc, array, 1); + break; + } + + case value_t::string: + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, string); + std::allocator_traits::deallocate(alloc, string, 1); + break; + } + + case value_t::binary: + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, binary); + std::allocator_traits::deallocate(alloc, binary, 1); + break; + } + + default: + { + break; + } + } + } + }; + + /*! + @brief checks the class invariants + + This function asserts the class invariants. It needs to be called at the + end of every constructor to make sure that created objects respect the + invariant. Furthermore, it has to be called each time the type of a JSON + value is changed, because the invariant expresses a relationship between + @a m_type and @a m_value. + */ + void assert_invariant() const noexcept + { + JSON_ASSERT(m_type != value_t::object || m_value.object != nullptr); + JSON_ASSERT(m_type != value_t::array || m_value.array != nullptr); + JSON_ASSERT(m_type != value_t::string || m_value.string != nullptr); + JSON_ASSERT(m_type != value_t::binary || m_value.binary != nullptr); + } + + public: + ////////////////////////// + // JSON parser callback // + ////////////////////////// + + /*! + @brief parser event types + + The parser callback distinguishes the following events: + - `object_start`: the parser read `{` and started to process a JSON object + - `key`: the parser read a key of a value in an object + - `object_end`: the parser read `}` and finished processing a JSON object + - `array_start`: the parser read `[` and started to process a JSON array + - `array_end`: the parser read `]` and finished processing a JSON array + - `value`: the parser finished reading a JSON value + + @image html callback_events.png "Example when certain parse events are triggered" + + @sa @ref parser_callback_t for more information and examples + */ + using parse_event_t = detail::parse_event_t; + + /*! + @brief per-element parser callback type + + With a parser callback function, the result of parsing a JSON text can be + influenced. When passed to @ref parse, it is called on certain events + (passed as @ref parse_event_t via parameter @a event) with a set recursion + depth @a depth and context JSON value @a parsed. The return value of the + callback function is a boolean indicating whether the element that emitted + the callback shall be kept or not. + + We distinguish six scenarios (determined by the event type) in which the + callback function can be called. The following table describes the values + of the parameters @a depth, @a event, and @a parsed. + + parameter @a event | description | parameter @a depth | parameter @a parsed + ------------------ | ----------- | ------------------ | ------------------- + parse_event_t::object_start | the parser read `{` and started to process a JSON object | depth of the parent of the JSON object | a JSON value with type discarded + parse_event_t::key | the parser read a key of a value in an object | depth of the currently parsed JSON object | a JSON string containing the key + parse_event_t::object_end | the parser read `}` and finished processing a JSON object | depth of the parent of the JSON object | the parsed JSON object + parse_event_t::array_start | the parser read `[` and started to process a JSON array | depth of the parent of the JSON array | a JSON value with type discarded + parse_event_t::array_end | the parser read `]` and finished processing a JSON array | depth of the parent of the JSON array | the parsed JSON array + parse_event_t::value | the parser finished reading a JSON value | depth of the value | the parsed JSON value + + @image html callback_events.png "Example when certain parse events are triggered" + + Discarding a value (i.e., returning `false`) has different effects + depending on the context in which function was called: + + - Discarded values in structured types are skipped. That is, the parser + will behave as if the discarded value was never read. + - In case a value outside a structured type is skipped, it is replaced + with `null`. This case happens if the top-level element is skipped. + + @param[in] depth the depth of the recursion during parsing + + @param[in] event an event of type parse_event_t indicating the context in + the callback function has been called + + @param[in,out] parsed the current intermediate parse result; note that + writing to this value has no effect for parse_event_t::key events + + @return Whether the JSON value which called the function during parsing + should be kept (`true`) or not (`false`). In the latter case, it is either + skipped completely or replaced by an empty discarded object. + + @sa @ref parse for examples + + @since version 1.0.0 + */ + using parser_callback_t = detail::parser_callback_t; + + ////////////////// + // constructors // + ////////////////// + + /// @name constructors and destructors + /// Constructors of class @ref basic_json, copy/move constructor, copy + /// assignment, static functions creating objects, and the destructor. + /// @{ + + /*! + @brief create an empty value with a given type + + Create an empty JSON value with a given type. The value will be default + initialized with an empty value which depends on the type: + + Value type | initial value + ----------- | ------------- + null | `null` + boolean | `false` + string | `""` + number | `0` + object | `{}` + array | `[]` + binary | empty array + + @param[in] v the type of the value to create + + @complexity Constant. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The following code shows the constructor for different @ref + value_t values,basic_json__value_t} + + @sa @ref clear() -- restores the postcondition of this constructor + + @since version 1.0.0 + */ + basic_json(const value_t v) + : m_type(v), m_value(v) + { + assert_invariant(); + } + + /*! + @brief create a null object + + Create a `null` JSON value. It either takes a null pointer as parameter + (explicitly creating `null`) or no parameter (implicitly creating `null`). + The passed null pointer itself is not read -- it is only used to choose + the right constructor. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this constructor never throws + exceptions. + + @liveexample{The following code shows the constructor with and without a + null pointer parameter.,basic_json__nullptr_t} + + @since version 1.0.0 + */ + basic_json(std::nullptr_t = nullptr) noexcept + : basic_json(value_t::null) + { + assert_invariant(); + } + + /*! + @brief create a JSON value + + This is a "catch all" constructor for all compatible JSON types; that is, + types for which a `to_json()` method exists. The constructor forwards the + parameter @a val to that method (to `json_serializer::to_json` method + with `U = uncvref_t`, to be exact). + + Template type @a CompatibleType includes, but is not limited to, the + following types: + - **arrays**: @ref array_t and all kinds of compatible containers such as + `std::vector`, `std::deque`, `std::list`, `std::forward_list`, + `std::array`, `std::valarray`, `std::set`, `std::unordered_set`, + `std::multiset`, and `std::unordered_multiset` with a `value_type` from + which a @ref basic_json value can be constructed. + - **objects**: @ref object_t and all kinds of compatible associative + containers such as `std::map`, `std::unordered_map`, `std::multimap`, + and `std::unordered_multimap` with a `key_type` compatible to + @ref string_t and a `value_type` from which a @ref basic_json value can + be constructed. + - **strings**: @ref string_t, string literals, and all compatible string + containers can be used. + - **numbers**: @ref number_integer_t, @ref number_unsigned_t, + @ref number_float_t, and all convertible number types such as `int`, + `size_t`, `int64_t`, `float` or `double` can be used. + - **boolean**: @ref boolean_t / `bool` can be used. + - **binary**: @ref binary_t / `std::vector` may be used, + unfortunately because string literals cannot be distinguished from binary + character arrays by the C++ type system, all types compatible with `const + char*` will be directed to the string constructor instead. This is both + for backwards compatibility, and due to the fact that a binary type is not + a standard JSON type. + + See the examples below. + + @tparam CompatibleType a type such that: + - @a CompatibleType is not derived from `std::istream`, + - @a CompatibleType is not @ref basic_json (to avoid hijacking copy/move + constructors), + - @a CompatibleType is not a different @ref basic_json type (i.e. with different template arguments) + - @a CompatibleType is not a @ref basic_json nested type (e.g., + @ref json_pointer, @ref iterator, etc ...) + - @ref @ref json_serializer has a + `to_json(basic_json_t&, CompatibleType&&)` method + + @tparam U = `uncvref_t` + + @param[in] val the value to be forwarded to the respective constructor + + @complexity Usually linear in the size of the passed @a val, also + depending on the implementation of the called `to_json()` + method. + + @exceptionsafety Depends on the called constructor. For types directly + supported by the library (i.e., all types for which no `to_json()` function + was provided), strong guarantee holds: if an exception is thrown, there are + no changes to any JSON value. + + @liveexample{The following code shows the constructor with several + compatible types.,basic_json__CompatibleType} + + @since version 2.1.0 + */ + template < typename CompatibleType, + typename U = detail::uncvref_t, + detail::enable_if_t < + !detail::is_basic_json::value && detail::is_compatible_type::value, int > = 0 > + basic_json(CompatibleType && val) noexcept(noexcept( + JSONSerializer::to_json(std::declval(), + std::forward(val)))) + { + JSONSerializer::to_json(*this, std::forward(val)); + assert_invariant(); + } + + /*! + @brief create a JSON value from an existing one + + This is a constructor for existing @ref basic_json types. + It does not hijack copy/move constructors, since the parameter has different + template arguments than the current ones. + + The constructor tries to convert the internal @ref m_value of the parameter. + + @tparam BasicJsonType a type such that: + - @a BasicJsonType is a @ref basic_json type. + - @a BasicJsonType has different template arguments than @ref basic_json_t. + + @param[in] val the @ref basic_json value to be converted. + + @complexity Usually linear in the size of the passed @a val, also + depending on the implementation of the called `to_json()` + method. + + @exceptionsafety Depends on the called constructor. For types directly + supported by the library (i.e., all types for which no `to_json()` function + was provided), strong guarantee holds: if an exception is thrown, there are + no changes to any JSON value. + + @since version 3.2.0 + */ + template < typename BasicJsonType, + detail::enable_if_t < + detail::is_basic_json::value&& !std::is_same::value, int > = 0 > + basic_json(const BasicJsonType& val) + { + using other_boolean_t = typename BasicJsonType::boolean_t; + using other_number_float_t = typename BasicJsonType::number_float_t; + using other_number_integer_t = typename BasicJsonType::number_integer_t; + using other_number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using other_string_t = typename BasicJsonType::string_t; + using other_object_t = typename BasicJsonType::object_t; + using other_array_t = typename BasicJsonType::array_t; + using other_binary_t = typename BasicJsonType::binary_t; + + switch (val.type()) + { + case value_t::boolean: + JSONSerializer::to_json(*this, val.template get()); + break; + case value_t::number_float: + JSONSerializer::to_json(*this, val.template get()); + break; + case value_t::number_integer: + JSONSerializer::to_json(*this, val.template get()); + break; + case value_t::number_unsigned: + JSONSerializer::to_json(*this, val.template get()); + break; + case value_t::string: + JSONSerializer::to_json(*this, val.template get_ref()); + break; + case value_t::object: + JSONSerializer::to_json(*this, val.template get_ref()); + break; + case value_t::array: + JSONSerializer::to_json(*this, val.template get_ref()); + break; + case value_t::binary: + JSONSerializer::to_json(*this, val.template get_ref()); + break; + case value_t::null: + *this = nullptr; + break; + case value_t::discarded: + m_type = value_t::discarded; + break; + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + assert_invariant(); + } + + /*! + @brief create a container (array or object) from an initializer list + + Creates a JSON value of type array or object from the passed initializer + list @a init. In case @a type_deduction is `true` (default), the type of + the JSON value to be created is deducted from the initializer list @a init + according to the following rules: + + 1. If the list is empty, an empty JSON object value `{}` is created. + 2. If the list consists of pairs whose first element is a string, a JSON + object value is created where the first elements of the pairs are + treated as keys and the second elements are as values. + 3. In all other cases, an array is created. + + The rules aim to create the best fit between a C++ initializer list and + JSON values. The rationale is as follows: + + 1. The empty initializer list is written as `{}` which is exactly an empty + JSON object. + 2. C++ has no way of describing mapped types other than to list a list of + pairs. As JSON requires that keys must be of type string, rule 2 is the + weakest constraint one can pose on initializer lists to interpret them + as an object. + 3. In all other cases, the initializer list could not be interpreted as + JSON object type, so interpreting it as JSON array type is safe. + + With the rules described above, the following JSON values cannot be + expressed by an initializer list: + + - the empty array (`[]`): use @ref array(initializer_list_t) + with an empty initializer list in this case + - arrays whose elements satisfy rule 2: use @ref + array(initializer_list_t) with the same initializer list + in this case + + @note When used without parentheses around an empty initializer list, @ref + basic_json() is called instead of this function, yielding the JSON null + value. + + @param[in] init initializer list with JSON values + + @param[in] type_deduction internal parameter; when set to `true`, the type + of the JSON value is deducted from the initializer list @a init; when set + to `false`, the type provided via @a manual_type is forced. This mode is + used by the functions @ref array(initializer_list_t) and + @ref object(initializer_list_t). + + @param[in] manual_type internal parameter; when @a type_deduction is set + to `false`, the created JSON value will use the provided type (only @ref + value_t::array and @ref value_t::object are valid); when @a type_deduction + is set to `true`, this parameter has no effect + + @throw type_error.301 if @a type_deduction is `false`, @a manual_type is + `value_t::object`, but @a init contains an element which is not a pair + whose first element is a string. In this case, the constructor could not + create an object. If @a type_deduction would have be `true`, an array + would have been created. See @ref object(initializer_list_t) + for an example. + + @complexity Linear in the size of the initializer list @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The example below shows how JSON values are created from + initializer lists.,basic_json__list_init_t} + + @sa @ref array(initializer_list_t) -- create a JSON array + value from an initializer list + @sa @ref object(initializer_list_t) -- create a JSON object + value from an initializer list + + @since version 1.0.0 + */ + basic_json(initializer_list_t init, + bool type_deduction = true, + value_t manual_type = value_t::array) + { + // check if each element is an array with two elements whose first + // element is a string + bool is_an_object = std::all_of(init.begin(), init.end(), + [](const detail::json_ref& element_ref) + { + return element_ref->is_array() && element_ref->size() == 2 && (*element_ref)[0].is_string(); + }); + + // adjust type if type deduction is not wanted + if (!type_deduction) + { + // if array is wanted, do not create an object though possible + if (manual_type == value_t::array) + { + is_an_object = false; + } + + // if object is wanted but impossible, throw an exception + if (JSON_HEDLEY_UNLIKELY(manual_type == value_t::object && !is_an_object)) + { + JSON_THROW(type_error::create(301, "cannot create object from initializer list")); + } + } + + if (is_an_object) + { + // the initializer list is a list of pairs -> create object + m_type = value_t::object; + m_value = value_t::object; + + std::for_each(init.begin(), init.end(), [this](const detail::json_ref& element_ref) + { + auto element = element_ref.moved_or_copied(); + m_value.object->emplace( + std::move(*((*element.m_value.array)[0].m_value.string)), + std::move((*element.m_value.array)[1])); + }); + } + else + { + // the initializer list describes an array -> create array + m_type = value_t::array; + m_value.array = create(init.begin(), init.end()); + } + + assert_invariant(); + } + + /*! + @brief explicitly create a binary array (without subtype) + + Creates a JSON binary array value from a given binary container. Binary + values are part of various binary formats, such as CBOR, MessagePack, and + BSON. This constructor is used to create a value for serialization to those + formats. + + @note Note, this function exists because of the difficulty in correctly + specifying the correct template overload in the standard value ctor, as both + JSON arrays and JSON binary arrays are backed with some form of a + `std::vector`. Because JSON binary arrays are a non-standard extension it + was decided that it would be best to prevent automatic initialization of a + binary array type, for backwards compatibility and so it does not happen on + accident. + + @param[in] init container containing bytes to use as binary type + + @return JSON binary array value + + @complexity Linear in the size of @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @since version 3.8.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json binary(const typename binary_t::container_type& init) + { + auto res = basic_json(); + res.m_type = value_t::binary; + res.m_value = init; + return res; + } + + /*! + @brief explicitly create a binary array (with subtype) + + Creates a JSON binary array value from a given binary container. Binary + values are part of various binary formats, such as CBOR, MessagePack, and + BSON. This constructor is used to create a value for serialization to those + formats. + + @note Note, this function exists because of the difficulty in correctly + specifying the correct template overload in the standard value ctor, as both + JSON arrays and JSON binary arrays are backed with some form of a + `std::vector`. Because JSON binary arrays are a non-standard extension it + was decided that it would be best to prevent automatic initialization of a + binary array type, for backwards compatibility and so it does not happen on + accident. + + @param[in] init container containing bytes to use as binary type + @param[in] subtype subtype to use in MessagePack and BSON + + @return JSON binary array value + + @complexity Linear in the size of @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @since version 3.8.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json binary(const typename binary_t::container_type& init, std::uint8_t subtype) + { + auto res = basic_json(); + res.m_type = value_t::binary; + res.m_value = binary_t(init, subtype); + return res; + } + + /// @copydoc binary(const typename binary_t::container_type&) + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json binary(typename binary_t::container_type&& init) + { + auto res = basic_json(); + res.m_type = value_t::binary; + res.m_value = std::move(init); + return res; + } + + /// @copydoc binary(const typename binary_t::container_type&, std::uint8_t) + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json binary(typename binary_t::container_type&& init, std::uint8_t subtype) + { + auto res = basic_json(); + res.m_type = value_t::binary; + res.m_value = binary_t(std::move(init), subtype); + return res; + } + + /*! + @brief explicitly create an array from an initializer list + + Creates a JSON array value from a given initializer list. That is, given a + list of values `a, b, c`, creates the JSON value `[a, b, c]`. If the + initializer list is empty, the empty array `[]` is created. + + @note This function is only needed to express two edge cases that cannot + be realized with the initializer list constructor (@ref + basic_json(initializer_list_t, bool, value_t)). These cases + are: + 1. creating an array whose elements are all pairs whose first element is a + string -- in this case, the initializer list constructor would create an + object, taking the first elements as keys + 2. creating an empty array -- passing the empty initializer list to the + initializer list constructor yields an empty object + + @param[in] init initializer list with JSON values to create an array from + (optional) + + @return JSON array value + + @complexity Linear in the size of @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The following code shows an example for the `array` + function.,array} + + @sa @ref basic_json(initializer_list_t, bool, value_t) -- + create a JSON value from an initializer list + @sa @ref object(initializer_list_t) -- create a JSON object + value from an initializer list + + @since version 1.0.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json array(initializer_list_t init = {}) + { + return basic_json(init, false, value_t::array); + } + + /*! + @brief explicitly create an object from an initializer list + + Creates a JSON object value from a given initializer list. The initializer + lists elements must be pairs, and their first elements must be strings. If + the initializer list is empty, the empty object `{}` is created. + + @note This function is only added for symmetry reasons. In contrast to the + related function @ref array(initializer_list_t), there are + no cases which can only be expressed by this function. That is, any + initializer list @a init can also be passed to the initializer list + constructor @ref basic_json(initializer_list_t, bool, value_t). + + @param[in] init initializer list to create an object from (optional) + + @return JSON object value + + @throw type_error.301 if @a init is not a list of pairs whose first + elements are strings. In this case, no object can be created. When such a + value is passed to @ref basic_json(initializer_list_t, bool, value_t), + an array would have been created from the passed initializer list @a init. + See example below. + + @complexity Linear in the size of @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The following code shows an example for the `object` + function.,object} + + @sa @ref basic_json(initializer_list_t, bool, value_t) -- + create a JSON value from an initializer list + @sa @ref array(initializer_list_t) -- create a JSON array + value from an initializer list + + @since version 1.0.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json object(initializer_list_t init = {}) + { + return basic_json(init, false, value_t::object); + } + + /*! + @brief construct an array with count copies of given value + + Constructs a JSON array value by creating @a cnt copies of a passed value. + In case @a cnt is `0`, an empty array is created. + + @param[in] cnt the number of JSON copies of @a val to create + @param[in] val the JSON value to copy + + @post `std::distance(begin(),end()) == cnt` holds. + + @complexity Linear in @a cnt. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The following code shows examples for the @ref + basic_json(size_type\, const basic_json&) + constructor.,basic_json__size_type_basic_json} + + @since version 1.0.0 + */ + basic_json(size_type cnt, const basic_json& val) + : m_type(value_t::array) + { + m_value.array = create(cnt, val); + assert_invariant(); + } + + /*! + @brief construct a JSON container given an iterator range + + Constructs the JSON value with the contents of the range `[first, last)`. + The semantics depends on the different types a JSON value can have: + - In case of a null type, invalid_iterator.206 is thrown. + - In case of other primitive types (number, boolean, or string), @a first + must be `begin()` and @a last must be `end()`. In this case, the value is + copied. Otherwise, invalid_iterator.204 is thrown. + - In case of structured types (array, object), the constructor behaves as + similar versions for `std::vector` or `std::map`; that is, a JSON array + or object is constructed from the values in the range. + + @tparam InputIT an input iterator type (@ref iterator or @ref + const_iterator) + + @param[in] first begin of the range to copy from (included) + @param[in] last end of the range to copy from (excluded) + + @pre Iterators @a first and @a last must be initialized. **This + precondition is enforced with an assertion (see warning).** If + assertions are switched off, a violation of this precondition yields + undefined behavior. + + @pre Range `[first, last)` is valid. Usually, this precondition cannot be + checked efficiently. Only certain edge cases are detected; see the + description of the exceptions below. A violation of this precondition + yields undefined behavior. + + @warning A precondition is enforced with a runtime assertion that will + result in calling `std::abort` if this precondition is not met. + Assertions can be disabled by defining `NDEBUG` at compile time. + See https://en.cppreference.com/w/cpp/error/assert for more + information. + + @throw invalid_iterator.201 if iterators @a first and @a last are not + compatible (i.e., do not belong to the same JSON value). In this case, + the range `[first, last)` is undefined. + @throw invalid_iterator.204 if iterators @a first and @a last belong to a + primitive type (number, boolean, or string), but @a first does not point + to the first element any more. In this case, the range `[first, last)` is + undefined. See example code below. + @throw invalid_iterator.206 if iterators @a first and @a last belong to a + null value. In this case, the range `[first, last)` is undefined. + + @complexity Linear in distance between @a first and @a last. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The example below shows several ways to create JSON values by + specifying a subrange with iterators.,basic_json__InputIt_InputIt} + + @since version 1.0.0 + */ + template < class InputIT, typename std::enable_if < + std::is_same::value || + std::is_same::value, int >::type = 0 > + basic_json(InputIT first, InputIT last) + { + JSON_ASSERT(first.m_object != nullptr); + JSON_ASSERT(last.m_object != nullptr); + + // make sure iterator fits the current value + if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) + { + JSON_THROW(invalid_iterator::create(201, "iterators are not compatible")); + } + + // copy type from first iterator + m_type = first.m_object->m_type; + + // check if iterator range is complete for primitive values + switch (m_type) + { + case value_t::boolean: + case value_t::number_float: + case value_t::number_integer: + case value_t::number_unsigned: + case value_t::string: + { + if (JSON_HEDLEY_UNLIKELY(!first.m_it.primitive_iterator.is_begin() + || !last.m_it.primitive_iterator.is_end())) + { + JSON_THROW(invalid_iterator::create(204, "iterators out of range")); + } + break; + } + + default: + break; + } + + switch (m_type) + { + case value_t::number_integer: + { + m_value.number_integer = first.m_object->m_value.number_integer; + break; + } + + case value_t::number_unsigned: + { + m_value.number_unsigned = first.m_object->m_value.number_unsigned; + break; + } + + case value_t::number_float: + { + m_value.number_float = first.m_object->m_value.number_float; + break; + } + + case value_t::boolean: + { + m_value.boolean = first.m_object->m_value.boolean; + break; + } + + case value_t::string: + { + m_value = *first.m_object->m_value.string; + break; + } + + case value_t::object: + { + m_value.object = create(first.m_it.object_iterator, + last.m_it.object_iterator); + break; + } + + case value_t::array: + { + m_value.array = create(first.m_it.array_iterator, + last.m_it.array_iterator); + break; + } + + case value_t::binary: + { + m_value = *first.m_object->m_value.binary; + break; + } + + default: + JSON_THROW(invalid_iterator::create(206, "cannot construct with iterators from " + + std::string(first.m_object->type_name()))); + } + + assert_invariant(); + } + + + /////////////////////////////////////// + // other constructors and destructor // + /////////////////////////////////////// + + template, + std::is_same>::value, int> = 0 > + basic_json(const JsonRef& ref) : basic_json(ref.moved_or_copied()) {} + + /*! + @brief copy constructor + + Creates a copy of a given JSON value. + + @param[in] other the JSON value to copy + + @post `*this == other` + + @complexity Linear in the size of @a other. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is linear. + - As postcondition, it holds: `other == basic_json(other)`. + + @liveexample{The following code shows an example for the copy + constructor.,basic_json__basic_json} + + @since version 1.0.0 + */ + basic_json(const basic_json& other) + : m_type(other.m_type) + { + // check of passed value is valid + other.assert_invariant(); + + switch (m_type) + { + case value_t::object: + { + m_value = *other.m_value.object; + break; + } + + case value_t::array: + { + m_value = *other.m_value.array; + break; + } + + case value_t::string: + { + m_value = *other.m_value.string; + break; + } + + case value_t::boolean: + { + m_value = other.m_value.boolean; + break; + } + + case value_t::number_integer: + { + m_value = other.m_value.number_integer; + break; + } + + case value_t::number_unsigned: + { + m_value = other.m_value.number_unsigned; + break; + } + + case value_t::number_float: + { + m_value = other.m_value.number_float; + break; + } + + case value_t::binary: + { + m_value = *other.m_value.binary; + break; + } + + default: + break; + } + + assert_invariant(); + } + + /*! + @brief move constructor + + Move constructor. Constructs a JSON value with the contents of the given + value @a other using move semantics. It "steals" the resources from @a + other and leaves it as JSON null value. + + @param[in,out] other value to move to this object + + @post `*this` has the same value as @a other before the call. + @post @a other is a JSON null value. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this constructor never throws + exceptions. + + @requirement This function helps `basic_json` satisfying the + [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible) + requirements. + + @liveexample{The code below shows the move constructor explicitly called + via std::move.,basic_json__moveconstructor} + + @since version 1.0.0 + */ + basic_json(basic_json&& other) noexcept + : m_type(std::move(other.m_type)), + m_value(std::move(other.m_value)) + { + // check that passed value is valid + other.assert_invariant(); + + // invalidate payload + other.m_type = value_t::null; + other.m_value = {}; + + assert_invariant(); + } + + /*! + @brief copy assignment + + Copy assignment operator. Copies a JSON value via the "copy and swap" + strategy: It is expressed in terms of the copy constructor, destructor, + and the `swap()` member function. + + @param[in] other value to copy from + + @complexity Linear. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is linear. + + @liveexample{The code below shows and example for the copy assignment. It + creates a copy of value `a` which is then swapped with `b`. Finally\, the + copy of `a` (which is the null value after the swap) is + destroyed.,basic_json__copyassignment} + + @since version 1.0.0 + */ + basic_json& operator=(basic_json other) noexcept ( + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value&& + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value + ) + { + // check that passed value is valid + other.assert_invariant(); + + using std::swap; + swap(m_type, other.m_type); + swap(m_value, other.m_value); + + assert_invariant(); + return *this; + } + + /*! + @brief destructor + + Destroys the JSON value and frees all allocated memory. + + @complexity Linear. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is linear. + - All stored elements are destroyed and all memory is freed. + + @since version 1.0.0 + */ + ~basic_json() noexcept + { + assert_invariant(); + m_value.destroy(m_type); + } + + /// @} + + public: + /////////////////////// + // object inspection // + /////////////////////// + + /// @name object inspection + /// Functions to inspect the type of a JSON value. + /// @{ + + /*! + @brief serialization + + Serialization function for JSON values. The function tries to mimic + Python's `json.dumps()` function, and currently supports its @a indent + and @a ensure_ascii parameters. + + @param[in] indent If indent is nonnegative, then array elements and object + members will be pretty-printed with that indent level. An indent level of + `0` will only insert newlines. `-1` (the default) selects the most compact + representation. + @param[in] indent_char The character to use for indentation if @a indent is + greater than `0`. The default is ` ` (space). + @param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters + in the output are escaped with `\uXXXX` sequences, and the result consists + of ASCII characters only. + @param[in] error_handler how to react on decoding errors; there are three + possible values: `strict` (throws and exception in case a decoding error + occurs; default), `replace` (replace invalid UTF-8 sequences with U+FFFD), + and `ignore` (ignore invalid UTF-8 sequences during serialization; all + bytes are copied to the output unchanged). + + @return string containing the serialization of the JSON value + + @throw type_error.316 if a string stored inside the JSON value is not + UTF-8 encoded and @a error_handler is set to strict + + @note Binary values are serialized as object containing two keys: + - "bytes": an array of bytes as integers + - "subtype": the subtype as integer or "null" if the binary has no subtype + + @complexity Linear. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @liveexample{The following example shows the effect of different @a indent\, + @a indent_char\, and @a ensure_ascii parameters to the result of the + serialization.,dump} + + @see https://docs.python.org/2/library/json.html#json.dump + + @since version 1.0.0; indentation character @a indent_char, option + @a ensure_ascii and exceptions added in version 3.0.0; error + handlers added in version 3.4.0; serialization of binary values added + in version 3.8.0. + */ + string_t dump(const int indent = -1, + const char indent_char = ' ', + const bool ensure_ascii = false, + const error_handler_t error_handler = error_handler_t::strict) const + { + string_t result; + serializer s(detail::output_adapter(result), indent_char, error_handler); + + if (indent >= 0) + { + s.dump(*this, true, ensure_ascii, static_cast(indent)); + } + else + { + s.dump(*this, false, ensure_ascii, 0); + } + + return result; + } + + /*! + @brief return the type of the JSON value (explicit) + + Return the type of the JSON value as a value from the @ref value_t + enumeration. + + @return the type of the JSON value + Value type | return value + ------------------------- | ------------------------- + null | value_t::null + boolean | value_t::boolean + string | value_t::string + number (integer) | value_t::number_integer + number (unsigned integer) | value_t::number_unsigned + number (floating-point) | value_t::number_float + object | value_t::object + array | value_t::array + binary | value_t::binary + discarded | value_t::discarded + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `type()` for all JSON + types.,type} + + @sa @ref operator value_t() -- return the type of the JSON value (implicit) + @sa @ref type_name() -- return the type as string + + @since version 1.0.0 + */ + constexpr value_t type() const noexcept + { + return m_type; + } + + /*! + @brief return whether type is primitive + + This function returns true if and only if the JSON type is primitive + (string, number, boolean, or null). + + @return `true` if type is primitive (string, number, boolean, or null), + `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_primitive()` for all JSON + types.,is_primitive} + + @sa @ref is_structured() -- returns whether JSON value is structured + @sa @ref is_null() -- returns whether JSON value is `null` + @sa @ref is_string() -- returns whether JSON value is a string + @sa @ref is_boolean() -- returns whether JSON value is a boolean + @sa @ref is_number() -- returns whether JSON value is a number + @sa @ref is_binary() -- returns whether JSON value is a binary array + + @since version 1.0.0 + */ + constexpr bool is_primitive() const noexcept + { + return is_null() || is_string() || is_boolean() || is_number() || is_binary(); + } + + /*! + @brief return whether type is structured + + This function returns true if and only if the JSON type is structured + (array or object). + + @return `true` if type is structured (array or object), `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_structured()` for all JSON + types.,is_structured} + + @sa @ref is_primitive() -- returns whether value is primitive + @sa @ref is_array() -- returns whether value is an array + @sa @ref is_object() -- returns whether value is an object + + @since version 1.0.0 + */ + constexpr bool is_structured() const noexcept + { + return is_array() || is_object(); + } + + /*! + @brief return whether value is null + + This function returns true if and only if the JSON value is null. + + @return `true` if type is null, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_null()` for all JSON + types.,is_null} + + @since version 1.0.0 + */ + constexpr bool is_null() const noexcept + { + return m_type == value_t::null; + } + + /*! + @brief return whether value is a boolean + + This function returns true if and only if the JSON value is a boolean. + + @return `true` if type is boolean, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_boolean()` for all JSON + types.,is_boolean} + + @since version 1.0.0 + */ + constexpr bool is_boolean() const noexcept + { + return m_type == value_t::boolean; + } + + /*! + @brief return whether value is a number + + This function returns true if and only if the JSON value is a number. This + includes both integer (signed and unsigned) and floating-point values. + + @return `true` if type is number (regardless whether integer, unsigned + integer or floating-type), `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_number()` for all JSON + types.,is_number} + + @sa @ref is_number_integer() -- check if value is an integer or unsigned + integer number + @sa @ref is_number_unsigned() -- check if value is an unsigned integer + number + @sa @ref is_number_float() -- check if value is a floating-point number + + @since version 1.0.0 + */ + constexpr bool is_number() const noexcept + { + return is_number_integer() || is_number_float(); + } + + /*! + @brief return whether value is an integer number + + This function returns true if and only if the JSON value is a signed or + unsigned integer number. This excludes floating-point values. + + @return `true` if type is an integer or unsigned integer number, `false` + otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_number_integer()` for all + JSON types.,is_number_integer} + + @sa @ref is_number() -- check if value is a number + @sa @ref is_number_unsigned() -- check if value is an unsigned integer + number + @sa @ref is_number_float() -- check if value is a floating-point number + + @since version 1.0.0 + */ + constexpr bool is_number_integer() const noexcept + { + return m_type == value_t::number_integer || m_type == value_t::number_unsigned; + } + + /*! + @brief return whether value is an unsigned integer number + + This function returns true if and only if the JSON value is an unsigned + integer number. This excludes floating-point and signed integer values. + + @return `true` if type is an unsigned integer number, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_number_unsigned()` for all + JSON types.,is_number_unsigned} + + @sa @ref is_number() -- check if value is a number + @sa @ref is_number_integer() -- check if value is an integer or unsigned + integer number + @sa @ref is_number_float() -- check if value is a floating-point number + + @since version 2.0.0 + */ + constexpr bool is_number_unsigned() const noexcept + { + return m_type == value_t::number_unsigned; + } + + /*! + @brief return whether value is a floating-point number + + This function returns true if and only if the JSON value is a + floating-point number. This excludes signed and unsigned integer values. + + @return `true` if type is a floating-point number, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_number_float()` for all + JSON types.,is_number_float} + + @sa @ref is_number() -- check if value is number + @sa @ref is_number_integer() -- check if value is an integer number + @sa @ref is_number_unsigned() -- check if value is an unsigned integer + number + + @since version 1.0.0 + */ + constexpr bool is_number_float() const noexcept + { + return m_type == value_t::number_float; + } + + /*! + @brief return whether value is an object + + This function returns true if and only if the JSON value is an object. + + @return `true` if type is object, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_object()` for all JSON + types.,is_object} + + @since version 1.0.0 + */ + constexpr bool is_object() const noexcept + { + return m_type == value_t::object; + } + + /*! + @brief return whether value is an array + + This function returns true if and only if the JSON value is an array. + + @return `true` if type is array, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_array()` for all JSON + types.,is_array} + + @since version 1.0.0 + */ + constexpr bool is_array() const noexcept + { + return m_type == value_t::array; + } + + /*! + @brief return whether value is a string + + This function returns true if and only if the JSON value is a string. + + @return `true` if type is string, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_string()` for all JSON + types.,is_string} + + @since version 1.0.0 + */ + constexpr bool is_string() const noexcept + { + return m_type == value_t::string; + } + + /*! + @brief return whether value is a binary array + + This function returns true if and only if the JSON value is a binary array. + + @return `true` if type is binary array, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_binary()` for all JSON + types.,is_binary} + + @since version 3.8.0 + */ + constexpr bool is_binary() const noexcept + { + return m_type == value_t::binary; + } + + /*! + @brief return whether value is discarded + + This function returns true if and only if the JSON value was discarded + during parsing with a callback function (see @ref parser_callback_t). + + @note This function will always be `false` for JSON values after parsing. + That is, discarded values can only occur during parsing, but will be + removed when inside a structured value or replaced by null in other cases. + + @return `true` if type is discarded, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_discarded()` for all JSON + types.,is_discarded} + + @since version 1.0.0 + */ + constexpr bool is_discarded() const noexcept + { + return m_type == value_t::discarded; + } + + /*! + @brief return the type of the JSON value (implicit) + + Implicitly return the type of the JSON value as a value from the @ref + value_t enumeration. + + @return the type of the JSON value + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies the @ref value_t operator for + all JSON types.,operator__value_t} + + @sa @ref type() -- return the type of the JSON value (explicit) + @sa @ref type_name() -- return the type as string + + @since version 1.0.0 + */ + constexpr operator value_t() const noexcept + { + return m_type; + } + + /// @} + + private: + ////////////////// + // value access // + ////////////////// + + /// get a boolean (explicit) + boolean_t get_impl(boolean_t* /*unused*/) const + { + if (JSON_HEDLEY_LIKELY(is_boolean())) + { + return m_value.boolean; + } + + JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(type_name()))); + } + + /// get a pointer to the value (object) + object_t* get_impl_ptr(object_t* /*unused*/) noexcept + { + return is_object() ? m_value.object : nullptr; + } + + /// get a pointer to the value (object) + constexpr const object_t* get_impl_ptr(const object_t* /*unused*/) const noexcept + { + return is_object() ? m_value.object : nullptr; + } + + /// get a pointer to the value (array) + array_t* get_impl_ptr(array_t* /*unused*/) noexcept + { + return is_array() ? m_value.array : nullptr; + } + + /// get a pointer to the value (array) + constexpr const array_t* get_impl_ptr(const array_t* /*unused*/) const noexcept + { + return is_array() ? m_value.array : nullptr; + } + + /// get a pointer to the value (string) + string_t* get_impl_ptr(string_t* /*unused*/) noexcept + { + return is_string() ? m_value.string : nullptr; + } + + /// get a pointer to the value (string) + constexpr const string_t* get_impl_ptr(const string_t* /*unused*/) const noexcept + { + return is_string() ? m_value.string : nullptr; + } + + /// get a pointer to the value (boolean) + boolean_t* get_impl_ptr(boolean_t* /*unused*/) noexcept + { + return is_boolean() ? &m_value.boolean : nullptr; + } + + /// get a pointer to the value (boolean) + constexpr const boolean_t* get_impl_ptr(const boolean_t* /*unused*/) const noexcept + { + return is_boolean() ? &m_value.boolean : nullptr; + } + + /// get a pointer to the value (integer number) + number_integer_t* get_impl_ptr(number_integer_t* /*unused*/) noexcept + { + return is_number_integer() ? &m_value.number_integer : nullptr; + } + + /// get a pointer to the value (integer number) + constexpr const number_integer_t* get_impl_ptr(const number_integer_t* /*unused*/) const noexcept + { + return is_number_integer() ? &m_value.number_integer : nullptr; + } + + /// get a pointer to the value (unsigned number) + number_unsigned_t* get_impl_ptr(number_unsigned_t* /*unused*/) noexcept + { + return is_number_unsigned() ? &m_value.number_unsigned : nullptr; + } + + /// get a pointer to the value (unsigned number) + constexpr const number_unsigned_t* get_impl_ptr(const number_unsigned_t* /*unused*/) const noexcept + { + return is_number_unsigned() ? &m_value.number_unsigned : nullptr; + } + + /// get a pointer to the value (floating-point number) + number_float_t* get_impl_ptr(number_float_t* /*unused*/) noexcept + { + return is_number_float() ? &m_value.number_float : nullptr; + } + + /// get a pointer to the value (floating-point number) + constexpr const number_float_t* get_impl_ptr(const number_float_t* /*unused*/) const noexcept + { + return is_number_float() ? &m_value.number_float : nullptr; + } + + /// get a pointer to the value (binary) + binary_t* get_impl_ptr(binary_t* /*unused*/) noexcept + { + return is_binary() ? m_value.binary : nullptr; + } + + /// get a pointer to the value (binary) + constexpr const binary_t* get_impl_ptr(const binary_t* /*unused*/) const noexcept + { + return is_binary() ? m_value.binary : nullptr; + } + + /*! + @brief helper function to implement get_ref() + + This function helps to implement get_ref() without code duplication for + const and non-const overloads + + @tparam ThisType will be deduced as `basic_json` or `const basic_json` + + @throw type_error.303 if ReferenceType does not match underlying value + type of the current JSON + */ + template + static ReferenceType get_ref_impl(ThisType& obj) + { + // delegate the call to get_ptr<>() + auto ptr = obj.template get_ptr::type>(); + + if (JSON_HEDLEY_LIKELY(ptr != nullptr)) + { + return *ptr; + } + + JSON_THROW(type_error::create(303, "incompatible ReferenceType for get_ref, actual type is " + std::string(obj.type_name()))); + } + + public: + /// @name value access + /// Direct access to the stored value of a JSON value. + /// @{ + + /*! + @brief get special-case overload + + This overloads avoids a lot of template boilerplate, it can be seen as the + identity method + + @tparam BasicJsonType == @ref basic_json + + @return a copy of *this + + @complexity Constant. + + @since version 2.1.0 + */ + template::type, basic_json_t>::value, + int> = 0> + basic_json get() const + { + return *this; + } + + /*! + @brief get special-case overload + + This overloads converts the current @ref basic_json in a different + @ref basic_json type + + @tparam BasicJsonType == @ref basic_json + + @return a copy of *this, converted into @tparam BasicJsonType + + @complexity Depending on the implementation of the called `from_json()` + method. + + @since version 3.2.0 + */ + template < typename BasicJsonType, detail::enable_if_t < + !std::is_same::value&& + detail::is_basic_json::value, int > = 0 > + BasicJsonType get() const + { + return *this; + } + + /*! + @brief get a value (explicit) + + Explicit type conversion between the JSON value and a compatible value + which is [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) + and [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). + The value is converted by calling the @ref json_serializer + `from_json()` method. + + The function is equivalent to executing + @code {.cpp} + ValueType ret; + JSONSerializer::from_json(*this, ret); + return ret; + @endcode + + This overloads is chosen if: + - @a ValueType is not @ref basic_json, + - @ref json_serializer has a `from_json()` method of the form + `void from_json(const basic_json&, ValueType&)`, and + - @ref json_serializer does not have a `from_json()` method of + the form `ValueType from_json(const basic_json&)` + + @tparam ValueTypeCV the provided value type + @tparam ValueType the returned value type + + @return copy of the JSON value, converted to @a ValueType + + @throw what @ref json_serializer `from_json()` method throws + + @liveexample{The example below shows several conversions from JSON values + to other types. There a few things to note: (1) Floating-point numbers can + be converted to integers\, (2) A JSON array can be converted to a standard + `std::vector`\, (3) A JSON object can be converted to C++ + associative containers such as `std::unordered_map`.,get__ValueType_const} + + @since version 2.1.0 + */ + template < typename ValueTypeCV, typename ValueType = detail::uncvref_t, + detail::enable_if_t < + !detail::is_basic_json::value && + detail::has_from_json::value && + !detail::has_non_default_from_json::value, + int > = 0 > + ValueType get() const noexcept(noexcept( + JSONSerializer::from_json(std::declval(), std::declval()))) + { + // we cannot static_assert on ValueTypeCV being non-const, because + // there is support for get(), which is why we + // still need the uncvref + static_assert(!std::is_reference::value, + "get() cannot be used with reference types, you might want to use get_ref()"); + static_assert(std::is_default_constructible::value, + "types must be DefaultConstructible when used with get()"); + + ValueType ret; + JSONSerializer::from_json(*this, ret); + return ret; + } + + /*! + @brief get a value (explicit); special case + + Explicit type conversion between the JSON value and a compatible value + which is **not** [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) + and **not** [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). + The value is converted by calling the @ref json_serializer + `from_json()` method. + + The function is equivalent to executing + @code {.cpp} + return JSONSerializer::from_json(*this); + @endcode + + This overloads is chosen if: + - @a ValueType is not @ref basic_json and + - @ref json_serializer has a `from_json()` method of the form + `ValueType from_json(const basic_json&)` + + @note If @ref json_serializer has both overloads of + `from_json()`, this one is chosen. + + @tparam ValueTypeCV the provided value type + @tparam ValueType the returned value type + + @return copy of the JSON value, converted to @a ValueType + + @throw what @ref json_serializer `from_json()` method throws + + @since version 2.1.0 + */ + template < typename ValueTypeCV, typename ValueType = detail::uncvref_t, + detail::enable_if_t < !std::is_same::value && + detail::has_non_default_from_json::value, + int > = 0 > + ValueType get() const noexcept(noexcept( + JSONSerializer::from_json(std::declval()))) + { + static_assert(!std::is_reference::value, + "get() cannot be used with reference types, you might want to use get_ref()"); + return JSONSerializer::from_json(*this); + } + + /*! + @brief get a value (explicit) + + Explicit type conversion between the JSON value and a compatible value. + The value is filled into the input parameter by calling the @ref json_serializer + `from_json()` method. + + The function is equivalent to executing + @code {.cpp} + ValueType v; + JSONSerializer::from_json(*this, v); + @endcode + + This overloads is chosen if: + - @a ValueType is not @ref basic_json, + - @ref json_serializer has a `from_json()` method of the form + `void from_json(const basic_json&, ValueType&)`, and + + @tparam ValueType the input parameter type. + + @return the input parameter, allowing chaining calls. + + @throw what @ref json_serializer `from_json()` method throws + + @liveexample{The example below shows several conversions from JSON values + to other types. There a few things to note: (1) Floating-point numbers can + be converted to integers\, (2) A JSON array can be converted to a standard + `std::vector`\, (3) A JSON object can be converted to C++ + associative containers such as `std::unordered_map`.,get_to} + + @since version 3.3.0 + */ + template < typename ValueType, + detail::enable_if_t < + !detail::is_basic_json::value&& + detail::has_from_json::value, + int > = 0 > + ValueType & get_to(ValueType& v) const noexcept(noexcept( + JSONSerializer::from_json(std::declval(), v))) + { + JSONSerializer::from_json(*this, v); + return v; + } + + // specialization to allow to call get_to with a basic_json value + // see https://github.com/nlohmann/json/issues/2175 + template::value, + int> = 0> + ValueType & get_to(ValueType& v) const + { + v = *this; + return v; + } + + template < + typename T, std::size_t N, + typename Array = T (&)[N], + detail::enable_if_t < + detail::has_from_json::value, int > = 0 > + Array get_to(T (&v)[N]) const + noexcept(noexcept(JSONSerializer::from_json( + std::declval(), v))) + { + JSONSerializer::from_json(*this, v); + return v; + } + + + /*! + @brief get a pointer value (implicit) + + Implicit pointer access to the internally stored JSON value. No copies are + made. + + @warning Writing data to the pointee of the result yields an undefined + state. + + @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref + object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, + @ref number_unsigned_t, or @ref number_float_t. Enforced by a static + assertion. + + @return pointer to the internally stored JSON value if the requested + pointer type @a PointerType fits to the JSON value; `nullptr` otherwise + + @complexity Constant. + + @liveexample{The example below shows how pointers to internal values of a + JSON value can be requested. Note that no type conversions are made and a + `nullptr` is returned if the value and the requested pointer type does not + match.,get_ptr} + + @since version 1.0.0 + */ + template::value, int>::type = 0> + auto get_ptr() noexcept -> decltype(std::declval().get_impl_ptr(std::declval())) + { + // delegate the call to get_impl_ptr<>() + return get_impl_ptr(static_cast(nullptr)); + } + + /*! + @brief get a pointer value (implicit) + @copydoc get_ptr() + */ + template < typename PointerType, typename std::enable_if < + std::is_pointer::value&& + std::is_const::type>::value, int >::type = 0 > + constexpr auto get_ptr() const noexcept -> decltype(std::declval().get_impl_ptr(std::declval())) + { + // delegate the call to get_impl_ptr<>() const + return get_impl_ptr(static_cast(nullptr)); + } + + /*! + @brief get a pointer value (explicit) + + Explicit pointer access to the internally stored JSON value. No copies are + made. + + @warning The pointer becomes invalid if the underlying JSON object + changes. + + @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref + object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, + @ref number_unsigned_t, or @ref number_float_t. + + @return pointer to the internally stored JSON value if the requested + pointer type @a PointerType fits to the JSON value; `nullptr` otherwise + + @complexity Constant. + + @liveexample{The example below shows how pointers to internal values of a + JSON value can be requested. Note that no type conversions are made and a + `nullptr` is returned if the value and the requested pointer type does not + match.,get__PointerType} + + @sa @ref get_ptr() for explicit pointer-member access + + @since version 1.0.0 + */ + template::value, int>::type = 0> + auto get() noexcept -> decltype(std::declval().template get_ptr()) + { + // delegate the call to get_ptr + return get_ptr(); + } + + /*! + @brief get a pointer value (explicit) + @copydoc get() + */ + template::value, int>::type = 0> + constexpr auto get() const noexcept -> decltype(std::declval().template get_ptr()) + { + // delegate the call to get_ptr + return get_ptr(); + } + + /*! + @brief get a reference value (implicit) + + Implicit reference access to the internally stored JSON value. No copies + are made. + + @warning Writing data to the referee of the result yields an undefined + state. + + @tparam ReferenceType reference type; must be a reference to @ref array_t, + @ref object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or + @ref number_float_t. Enforced by static assertion. + + @return reference to the internally stored JSON value if the requested + reference type @a ReferenceType fits to the JSON value; throws + type_error.303 otherwise + + @throw type_error.303 in case passed type @a ReferenceType is incompatible + with the stored JSON value; see example below + + @complexity Constant. + + @liveexample{The example shows several calls to `get_ref()`.,get_ref} + + @since version 1.1.0 + */ + template::value, int>::type = 0> + ReferenceType get_ref() + { + // delegate call to get_ref_impl + return get_ref_impl(*this); + } + + /*! + @brief get a reference value (implicit) + @copydoc get_ref() + */ + template < typename ReferenceType, typename std::enable_if < + std::is_reference::value&& + std::is_const::type>::value, int >::type = 0 > + ReferenceType get_ref() const + { + // delegate call to get_ref_impl + return get_ref_impl(*this); + } + + /*! + @brief get a value (implicit) + + Implicit type conversion between the JSON value and a compatible value. + The call is realized by calling @ref get() const. + + @tparam ValueType non-pointer type compatible to the JSON value, for + instance `int` for JSON integer numbers, `bool` for JSON booleans, or + `std::vector` types for JSON arrays. The character type of @ref string_t + as well as an initializer list of this type is excluded to avoid + ambiguities as these types implicitly convert to `std::string`. + + @return copy of the JSON value, converted to type @a ValueType + + @throw type_error.302 in case passed type @a ValueType is incompatible + to the JSON value type (e.g., the JSON value is of type boolean, but a + string is requested); see example below + + @complexity Linear in the size of the JSON value. + + @liveexample{The example below shows several conversions from JSON values + to other types. There a few things to note: (1) Floating-point numbers can + be converted to integers\, (2) A JSON array can be converted to a standard + `std::vector`\, (3) A JSON object can be converted to C++ + associative containers such as `std::unordered_map`.,operator__ValueType} + + @since version 1.0.0 + */ + template < typename ValueType, typename std::enable_if < + !std::is_pointer::value&& + !std::is_same>::value&& + !std::is_same::value&& + !detail::is_basic_json::value + && !std::is_same>::value +#if defined(JSON_HAS_CPP_17) && (defined(__GNUC__) || (defined(_MSC_VER) && _MSC_VER >= 1910 && _MSC_VER <= 1914)) + && !std::is_same::value +#endif + && detail::is_detected::value + , int >::type = 0 > + JSON_EXPLICIT operator ValueType() const + { + // delegate the call to get<>() const + return get(); + } + + /*! + @return reference to the binary value + + @throw type_error.302 if the value is not binary + + @sa @ref is_binary() to check if the value is binary + + @since version 3.8.0 + */ + binary_t& get_binary() + { + if (!is_binary()) + { + JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(type_name()))); + } + + return *get_ptr(); + } + + /// @copydoc get_binary() + const binary_t& get_binary() const + { + if (!is_binary()) + { + JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(type_name()))); + } + + return *get_ptr(); + } + + /// @} + + + //////////////////// + // element access // + //////////////////// + + /// @name element access + /// Access to the JSON value. + /// @{ + + /*! + @brief access specified array element with bounds checking + + Returns a reference to the element at specified location @a idx, with + bounds checking. + + @param[in] idx index of the element to access + + @return reference to the element at index @a idx + + @throw type_error.304 if the JSON value is not an array; in this case, + calling `at` with an index makes no sense. See example below. + @throw out_of_range.401 if the index @a idx is out of range of the array; + that is, `idx >= size()`. See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 1.0.0 + + @liveexample{The example below shows how array elements can be read and + written using `at()`. It also demonstrates the different exceptions that + can be thrown.,at__size_type} + */ + reference at(size_type idx) + { + // at only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + JSON_TRY + { + return m_value.array->at(idx); + } + JSON_CATCH (std::out_of_range&) + { + // create better exception explanation + JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); + } + } + else + { + JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); + } + } + + /*! + @brief access specified array element with bounds checking + + Returns a const reference to the element at specified location @a idx, + with bounds checking. + + @param[in] idx index of the element to access + + @return const reference to the element at index @a idx + + @throw type_error.304 if the JSON value is not an array; in this case, + calling `at` with an index makes no sense. See example below. + @throw out_of_range.401 if the index @a idx is out of range of the array; + that is, `idx >= size()`. See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 1.0.0 + + @liveexample{The example below shows how array elements can be read using + `at()`. It also demonstrates the different exceptions that can be thrown., + at__size_type_const} + */ + const_reference at(size_type idx) const + { + // at only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + JSON_TRY + { + return m_value.array->at(idx); + } + JSON_CATCH (std::out_of_range&) + { + // create better exception explanation + JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); + } + } + else + { + JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); + } + } + + /*! + @brief access specified object element with bounds checking + + Returns a reference to the element at with specified key @a key, with + bounds checking. + + @param[in] key key of the element to access + + @return reference to the element at key @a key + + @throw type_error.304 if the JSON value is not an object; in this case, + calling `at` with a key makes no sense. See example below. + @throw out_of_range.403 if the key @a key is is not stored in the object; + that is, `find(key) == end()`. See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Logarithmic in the size of the container. + + @sa @ref operator[](const typename object_t::key_type&) for unchecked + access by reference + @sa @ref value() for access by value with a default value + + @since version 1.0.0 + + @liveexample{The example below shows how object elements can be read and + written using `at()`. It also demonstrates the different exceptions that + can be thrown.,at__object_t_key_type} + */ + reference at(const typename object_t::key_type& key) + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + JSON_TRY + { + return m_value.object->at(key); + } + JSON_CATCH (std::out_of_range&) + { + // create better exception explanation + JSON_THROW(out_of_range::create(403, "key '" + key + "' not found")); + } + } + else + { + JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); + } + } + + /*! + @brief access specified object element with bounds checking + + Returns a const reference to the element at with specified key @a key, + with bounds checking. + + @param[in] key key of the element to access + + @return const reference to the element at key @a key + + @throw type_error.304 if the JSON value is not an object; in this case, + calling `at` with a key makes no sense. See example below. + @throw out_of_range.403 if the key @a key is is not stored in the object; + that is, `find(key) == end()`. See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Logarithmic in the size of the container. + + @sa @ref operator[](const typename object_t::key_type&) for unchecked + access by reference + @sa @ref value() for access by value with a default value + + @since version 1.0.0 + + @liveexample{The example below shows how object elements can be read using + `at()`. It also demonstrates the different exceptions that can be thrown., + at__object_t_key_type_const} + */ + const_reference at(const typename object_t::key_type& key) const + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + JSON_TRY + { + return m_value.object->at(key); + } + JSON_CATCH (std::out_of_range&) + { + // create better exception explanation + JSON_THROW(out_of_range::create(403, "key '" + key + "' not found")); + } + } + else + { + JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); + } + } + + /*! + @brief access specified array element + + Returns a reference to the element at specified location @a idx. + + @note If @a idx is beyond the range of the array (i.e., `idx >= size()`), + then the array is silently filled up with `null` values to make `idx` a + valid reference to the last stored element. + + @param[in] idx index of the element to access + + @return reference to the element at index @a idx + + @throw type_error.305 if the JSON value is not an array or null; in that + cases, using the [] operator with an index makes no sense. + + @complexity Constant if @a idx is in the range of the array. Otherwise + linear in `idx - size()`. + + @liveexample{The example below shows how array elements can be read and + written using `[]` operator. Note the addition of `null` + values.,operatorarray__size_type} + + @since version 1.0.0 + */ + reference operator[](size_type idx) + { + // implicitly convert null value to an empty array + if (is_null()) + { + m_type = value_t::array; + m_value.array = create(); + assert_invariant(); + } + + // operator[] only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + // fill up array with null values if given idx is outside range + if (idx >= m_value.array->size()) + { + m_value.array->insert(m_value.array->end(), + idx - m_value.array->size() + 1, + basic_json()); + } + + return m_value.array->operator[](idx); + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name()))); + } + + /*! + @brief access specified array element + + Returns a const reference to the element at specified location @a idx. + + @param[in] idx index of the element to access + + @return const reference to the element at index @a idx + + @throw type_error.305 if the JSON value is not an array; in that case, + using the [] operator with an index makes no sense. + + @complexity Constant. + + @liveexample{The example below shows how array elements can be read using + the `[]` operator.,operatorarray__size_type_const} + + @since version 1.0.0 + */ + const_reference operator[](size_type idx) const + { + // const operator[] only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + return m_value.array->operator[](idx); + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name()))); + } + + /*! + @brief access specified object element + + Returns a reference to the element at with specified key @a key. + + @note If @a key is not found in the object, then it is silently added to + the object and filled with a `null` value to make `key` a valid reference. + In case the value was `null` before, it is converted to an object. + + @param[in] key key of the element to access + + @return reference to the element at key @a key + + @throw type_error.305 if the JSON value is not an object or null; in that + cases, using the [] operator with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be read and + written using the `[]` operator.,operatorarray__key_type} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref value() for access by value with a default value + + @since version 1.0.0 + */ + reference operator[](const typename object_t::key_type& key) + { + // implicitly convert null value to an empty object + if (is_null()) + { + m_type = value_t::object; + m_value.object = create(); + assert_invariant(); + } + + // operator[] only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + return m_value.object->operator[](key); + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); + } + + /*! + @brief read-only access specified object element + + Returns a const reference to the element at with specified key @a key. No + bounds checking is performed. + + @warning If the element with key @a key does not exist, the behavior is + undefined. + + @param[in] key key of the element to access + + @return const reference to the element at key @a key + + @pre The element with key @a key must exist. **This precondition is + enforced with an assertion.** + + @throw type_error.305 if the JSON value is not an object; in that case, + using the [] operator with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be read using + the `[]` operator.,operatorarray__key_type_const} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref value() for access by value with a default value + + @since version 1.0.0 + */ + const_reference operator[](const typename object_t::key_type& key) const + { + // const operator[] only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + JSON_ASSERT(m_value.object->find(key) != m_value.object->end()); + return m_value.object->find(key)->second; + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); + } + + /*! + @brief access specified object element + + Returns a reference to the element at with specified key @a key. + + @note If @a key is not found in the object, then it is silently added to + the object and filled with a `null` value to make `key` a valid reference. + In case the value was `null` before, it is converted to an object. + + @param[in] key key of the element to access + + @return reference to the element at key @a key + + @throw type_error.305 if the JSON value is not an object or null; in that + cases, using the [] operator with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be read and + written using the `[]` operator.,operatorarray__key_type} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref value() for access by value with a default value + + @since version 1.1.0 + */ + template + JSON_HEDLEY_NON_NULL(2) + reference operator[](T* key) + { + // implicitly convert null to object + if (is_null()) + { + m_type = value_t::object; + m_value = value_t::object; + assert_invariant(); + } + + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + return m_value.object->operator[](key); + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); + } + + /*! + @brief read-only access specified object element + + Returns a const reference to the element at with specified key @a key. No + bounds checking is performed. + + @warning If the element with key @a key does not exist, the behavior is + undefined. + + @param[in] key key of the element to access + + @return const reference to the element at key @a key + + @pre The element with key @a key must exist. **This precondition is + enforced with an assertion.** + + @throw type_error.305 if the JSON value is not an object; in that case, + using the [] operator with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be read using + the `[]` operator.,operatorarray__key_type_const} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref value() for access by value with a default value + + @since version 1.1.0 + */ + template + JSON_HEDLEY_NON_NULL(2) + const_reference operator[](T* key) const + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + JSON_ASSERT(m_value.object->find(key) != m_value.object->end()); + return m_value.object->find(key)->second; + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); + } + + /*! + @brief access specified object element with default value + + Returns either a copy of an object's element at the specified key @a key + or a given default value if no element with key @a key exists. + + The function is basically equivalent to executing + @code {.cpp} + try { + return at(key); + } catch(out_of_range) { + return default_value; + } + @endcode + + @note Unlike @ref at(const typename object_t::key_type&), this function + does not throw if the given key @a key was not found. + + @note Unlike @ref operator[](const typename object_t::key_type& key), this + function does not implicitly add an element to the position defined by @a + key. This function is furthermore also applicable to const objects. + + @param[in] key key of the element to access + @param[in] default_value the value to return if @a key is not found + + @tparam ValueType type compatible to JSON values, for instance `int` for + JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for + JSON arrays. Note the type of the expected value at @a key and the default + value @a default_value must be compatible. + + @return copy of the element at key @a key or @a default_value if @a key + is not found + + @throw type_error.302 if @a default_value does not match the type of the + value at @a key + @throw type_error.306 if the JSON value is not an object; in that case, + using `value()` with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be queried + with a default value.,basic_json__value} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref operator[](const typename object_t::key_type&) for unchecked + access by reference + + @since version 1.0.0 + */ + // using std::is_convertible in a std::enable_if will fail when using explicit conversions + template < class ValueType, typename std::enable_if < + detail::is_getable::value + && !std::is_same::value, int >::type = 0 > + ValueType value(const typename object_t::key_type& key, const ValueType& default_value) const + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + // if key is found, return value and given default value otherwise + const auto it = find(key); + if (it != end()) + { + return it->template get(); + } + + return default_value; + } + + JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name()))); + } + + /*! + @brief overload for a default value of type const char* + @copydoc basic_json::value(const typename object_t::key_type&, const ValueType&) const + */ + string_t value(const typename object_t::key_type& key, const char* default_value) const + { + return value(key, string_t(default_value)); + } + + /*! + @brief access specified object element via JSON Pointer with default value + + Returns either a copy of an object's element at the specified key @a key + or a given default value if no element with key @a key exists. + + The function is basically equivalent to executing + @code {.cpp} + try { + return at(ptr); + } catch(out_of_range) { + return default_value; + } + @endcode + + @note Unlike @ref at(const json_pointer&), this function does not throw + if the given key @a key was not found. + + @param[in] ptr a JSON pointer to the element to access + @param[in] default_value the value to return if @a ptr found no value + + @tparam ValueType type compatible to JSON values, for instance `int` for + JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for + JSON arrays. Note the type of the expected value at @a key and the default + value @a default_value must be compatible. + + @return copy of the element at key @a key or @a default_value if @a key + is not found + + @throw type_error.302 if @a default_value does not match the type of the + value at @a ptr + @throw type_error.306 if the JSON value is not an object; in that case, + using `value()` with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be queried + with a default value.,basic_json__value_ptr} + + @sa @ref operator[](const json_pointer&) for unchecked access by reference + + @since version 2.0.2 + */ + template::value, int>::type = 0> + ValueType value(const json_pointer& ptr, const ValueType& default_value) const + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + // if pointer resolves a value, return it or use default value + JSON_TRY + { + return ptr.get_checked(this).template get(); + } + JSON_INTERNAL_CATCH (out_of_range&) + { + return default_value; + } + } + + JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name()))); + } + + /*! + @brief overload for a default value of type const char* + @copydoc basic_json::value(const json_pointer&, ValueType) const + */ + JSON_HEDLEY_NON_NULL(3) + string_t value(const json_pointer& ptr, const char* default_value) const + { + return value(ptr, string_t(default_value)); + } + + /*! + @brief access the first element + + Returns a reference to the first element in the container. For a JSON + container `c`, the expression `c.front()` is equivalent to `*c.begin()`. + + @return In case of a structured type (array or object), a reference to the + first element is returned. In case of number, string, boolean, or binary + values, a reference to the value is returned. + + @complexity Constant. + + @pre The JSON value must not be `null` (would throw `std::out_of_range`) + or an empty array or object (undefined behavior, **guarded by + assertions**). + @post The JSON value remains unchanged. + + @throw invalid_iterator.214 when called on `null` value + + @liveexample{The following code shows an example for `front()`.,front} + + @sa @ref back() -- access the last element + + @since version 1.0.0 + */ + reference front() + { + return *begin(); + } + + /*! + @copydoc basic_json::front() + */ + const_reference front() const + { + return *cbegin(); + } + + /*! + @brief access the last element + + Returns a reference to the last element in the container. For a JSON + container `c`, the expression `c.back()` is equivalent to + @code {.cpp} + auto tmp = c.end(); + --tmp; + return *tmp; + @endcode + + @return In case of a structured type (array or object), a reference to the + last element is returned. In case of number, string, boolean, or binary + values, a reference to the value is returned. + + @complexity Constant. + + @pre The JSON value must not be `null` (would throw `std::out_of_range`) + or an empty array or object (undefined behavior, **guarded by + assertions**). + @post The JSON value remains unchanged. + + @throw invalid_iterator.214 when called on a `null` value. See example + below. + + @liveexample{The following code shows an example for `back()`.,back} + + @sa @ref front() -- access the first element + + @since version 1.0.0 + */ + reference back() + { + auto tmp = end(); + --tmp; + return *tmp; + } + + /*! + @copydoc basic_json::back() + */ + const_reference back() const + { + auto tmp = cend(); + --tmp; + return *tmp; + } + + /*! + @brief remove element given an iterator + + Removes the element specified by iterator @a pos. The iterator @a pos must + be valid and dereferenceable. Thus the `end()` iterator (which is valid, + but is not dereferenceable) cannot be used as a value for @a pos. + + If called on a primitive type other than `null`, the resulting JSON value + will be `null`. + + @param[in] pos iterator to the element to remove + @return Iterator following the last removed element. If the iterator @a + pos refers to the last element, the `end()` iterator is returned. + + @tparam IteratorType an @ref iterator or @ref const_iterator + + @post Invalidates iterators and references at or after the point of the + erase, including the `end()` iterator. + + @throw type_error.307 if called on a `null` value; example: `"cannot use + erase() with null"` + @throw invalid_iterator.202 if called on an iterator which does not belong + to the current JSON value; example: `"iterator does not fit current + value"` + @throw invalid_iterator.205 if called on a primitive type with invalid + iterator (i.e., any iterator which is not `begin()`); example: `"iterator + out of range"` + + @complexity The complexity depends on the type: + - objects: amortized constant + - arrays: linear in distance between @a pos and the end of the container + - strings and binary: linear in the length of the member + - other types: constant + + @liveexample{The example shows the result of `erase()` for different JSON + types.,erase__IteratorType} + + @sa @ref erase(IteratorType, IteratorType) -- removes the elements in + the given range + @sa @ref erase(const typename object_t::key_type&) -- removes the element + from an object at the given key + @sa @ref erase(const size_type) -- removes the element from an array at + the given index + + @since version 1.0.0 + */ + template < class IteratorType, typename std::enable_if < + std::is_same::value || + std::is_same::value, int >::type + = 0 > + IteratorType erase(IteratorType pos) + { + // make sure iterator fits the current value + if (JSON_HEDLEY_UNLIKELY(this != pos.m_object)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + IteratorType result = end(); + + switch (m_type) + { + case value_t::boolean: + case value_t::number_float: + case value_t::number_integer: + case value_t::number_unsigned: + case value_t::string: + case value_t::binary: + { + if (JSON_HEDLEY_UNLIKELY(!pos.m_it.primitive_iterator.is_begin())) + { + JSON_THROW(invalid_iterator::create(205, "iterator out of range")); + } + + if (is_string()) + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, m_value.string); + std::allocator_traits::deallocate(alloc, m_value.string, 1); + m_value.string = nullptr; + } + else if (is_binary()) + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, m_value.binary); + std::allocator_traits::deallocate(alloc, m_value.binary, 1); + m_value.binary = nullptr; + } + + m_type = value_t::null; + assert_invariant(); + break; + } + + case value_t::object: + { + result.m_it.object_iterator = m_value.object->erase(pos.m_it.object_iterator); + break; + } + + case value_t::array: + { + result.m_it.array_iterator = m_value.array->erase(pos.m_it.array_iterator); + break; + } + + default: + JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); + } + + return result; + } + + /*! + @brief remove elements given an iterator range + + Removes the element specified by the range `[first; last)`. The iterator + @a first does not need to be dereferenceable if `first == last`: erasing + an empty range is a no-op. + + If called on a primitive type other than `null`, the resulting JSON value + will be `null`. + + @param[in] first iterator to the beginning of the range to remove + @param[in] last iterator past the end of the range to remove + @return Iterator following the last removed element. If the iterator @a + second refers to the last element, the `end()` iterator is returned. + + @tparam IteratorType an @ref iterator or @ref const_iterator + + @post Invalidates iterators and references at or after the point of the + erase, including the `end()` iterator. + + @throw type_error.307 if called on a `null` value; example: `"cannot use + erase() with null"` + @throw invalid_iterator.203 if called on iterators which does not belong + to the current JSON value; example: `"iterators do not fit current value"` + @throw invalid_iterator.204 if called on a primitive type with invalid + iterators (i.e., if `first != begin()` and `last != end()`); example: + `"iterators out of range"` + + @complexity The complexity depends on the type: + - objects: `log(size()) + std::distance(first, last)` + - arrays: linear in the distance between @a first and @a last, plus linear + in the distance between @a last and end of the container + - strings and binary: linear in the length of the member + - other types: constant + + @liveexample{The example shows the result of `erase()` for different JSON + types.,erase__IteratorType_IteratorType} + + @sa @ref erase(IteratorType) -- removes the element at a given position + @sa @ref erase(const typename object_t::key_type&) -- removes the element + from an object at the given key + @sa @ref erase(const size_type) -- removes the element from an array at + the given index + + @since version 1.0.0 + */ + template < class IteratorType, typename std::enable_if < + std::is_same::value || + std::is_same::value, int >::type + = 0 > + IteratorType erase(IteratorType first, IteratorType last) + { + // make sure iterator fits the current value + if (JSON_HEDLEY_UNLIKELY(this != first.m_object || this != last.m_object)) + { + JSON_THROW(invalid_iterator::create(203, "iterators do not fit current value")); + } + + IteratorType result = end(); + + switch (m_type) + { + case value_t::boolean: + case value_t::number_float: + case value_t::number_integer: + case value_t::number_unsigned: + case value_t::string: + case value_t::binary: + { + if (JSON_HEDLEY_LIKELY(!first.m_it.primitive_iterator.is_begin() + || !last.m_it.primitive_iterator.is_end())) + { + JSON_THROW(invalid_iterator::create(204, "iterators out of range")); + } + + if (is_string()) + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, m_value.string); + std::allocator_traits::deallocate(alloc, m_value.string, 1); + m_value.string = nullptr; + } + else if (is_binary()) + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, m_value.binary); + std::allocator_traits::deallocate(alloc, m_value.binary, 1); + m_value.binary = nullptr; + } + + m_type = value_t::null; + assert_invariant(); + break; + } + + case value_t::object: + { + result.m_it.object_iterator = m_value.object->erase(first.m_it.object_iterator, + last.m_it.object_iterator); + break; + } + + case value_t::array: + { + result.m_it.array_iterator = m_value.array->erase(first.m_it.array_iterator, + last.m_it.array_iterator); + break; + } + + default: + JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); + } + + return result; + } + + /*! + @brief remove element from a JSON object given a key + + Removes elements from a JSON object with the key value @a key. + + @param[in] key value of the elements to remove + + @return Number of elements removed. If @a ObjectType is the default + `std::map` type, the return value will always be `0` (@a key was not + found) or `1` (@a key was found). + + @post References and iterators to the erased elements are invalidated. + Other references and iterators are not affected. + + @throw type_error.307 when called on a type other than JSON object; + example: `"cannot use erase() with null"` + + @complexity `log(size()) + count(key)` + + @liveexample{The example shows the effect of `erase()`.,erase__key_type} + + @sa @ref erase(IteratorType) -- removes the element at a given position + @sa @ref erase(IteratorType, IteratorType) -- removes the elements in + the given range + @sa @ref erase(const size_type) -- removes the element from an array at + the given index + + @since version 1.0.0 + */ + size_type erase(const typename object_t::key_type& key) + { + // this erase only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + return m_value.object->erase(key); + } + + JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); + } + + /*! + @brief remove element from a JSON array given an index + + Removes element from a JSON array at the index @a idx. + + @param[in] idx index of the element to remove + + @throw type_error.307 when called on a type other than JSON object; + example: `"cannot use erase() with null"` + @throw out_of_range.401 when `idx >= size()`; example: `"array index 17 + is out of range"` + + @complexity Linear in distance between @a idx and the end of the container. + + @liveexample{The example shows the effect of `erase()`.,erase__size_type} + + @sa @ref erase(IteratorType) -- removes the element at a given position + @sa @ref erase(IteratorType, IteratorType) -- removes the elements in + the given range + @sa @ref erase(const typename object_t::key_type&) -- removes the element + from an object at the given key + + @since version 1.0.0 + */ + void erase(const size_type idx) + { + // this erase only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + if (JSON_HEDLEY_UNLIKELY(idx >= size())) + { + JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); + } + + m_value.array->erase(m_value.array->begin() + static_cast(idx)); + } + else + { + JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); + } + } + + /// @} + + + //////////// + // lookup // + //////////// + + /// @name lookup + /// @{ + + /*! + @brief find an element in a JSON object + + Finds an element in a JSON object with key equivalent to @a key. If the + element is not found or the JSON value is not an object, end() is + returned. + + @note This method always returns @ref end() when executed on a JSON type + that is not an object. + + @param[in] key key value of the element to search for. + + @return Iterator to an element with key equivalent to @a key. If no such + element is found or the JSON value is not an object, past-the-end (see + @ref end()) iterator is returned. + + @complexity Logarithmic in the size of the JSON object. + + @liveexample{The example shows how `find()` is used.,find__key_type} + + @sa @ref contains(KeyT&&) const -- checks whether a key exists + + @since version 1.0.0 + */ + template + iterator find(KeyT&& key) + { + auto result = end(); + + if (is_object()) + { + result.m_it.object_iterator = m_value.object->find(std::forward(key)); + } + + return result; + } + + /*! + @brief find an element in a JSON object + @copydoc find(KeyT&&) + */ + template + const_iterator find(KeyT&& key) const + { + auto result = cend(); + + if (is_object()) + { + result.m_it.object_iterator = m_value.object->find(std::forward(key)); + } + + return result; + } + + /*! + @brief returns the number of occurrences of a key in a JSON object + + Returns the number of elements with key @a key. If ObjectType is the + default `std::map` type, the return value will always be `0` (@a key was + not found) or `1` (@a key was found). + + @note This method always returns `0` when executed on a JSON type that is + not an object. + + @param[in] key key value of the element to count + + @return Number of elements with key @a key. If the JSON value is not an + object, the return value will be `0`. + + @complexity Logarithmic in the size of the JSON object. + + @liveexample{The example shows how `count()` is used.,count} + + @since version 1.0.0 + */ + template + size_type count(KeyT&& key) const + { + // return 0 for all nonobject types + return is_object() ? m_value.object->count(std::forward(key)) : 0; + } + + /*! + @brief check the existence of an element in a JSON object + + Check whether an element exists in a JSON object with key equivalent to + @a key. If the element is not found or the JSON value is not an object, + false is returned. + + @note This method always returns false when executed on a JSON type + that is not an object. + + @param[in] key key value to check its existence. + + @return true if an element with specified @a key exists. If no such + element with such key is found or the JSON value is not an object, + false is returned. + + @complexity Logarithmic in the size of the JSON object. + + @liveexample{The following code shows an example for `contains()`.,contains} + + @sa @ref find(KeyT&&) -- returns an iterator to an object element + @sa @ref contains(const json_pointer&) const -- checks the existence for a JSON pointer + + @since version 3.6.0 + */ + template < typename KeyT, typename std::enable_if < + !std::is_same::type, json_pointer>::value, int >::type = 0 > + bool contains(KeyT && key) const + { + return is_object() && m_value.object->find(std::forward(key)) != m_value.object->end(); + } + + /*! + @brief check the existence of an element in a JSON object given a JSON pointer + + Check whether the given JSON pointer @a ptr can be resolved in the current + JSON value. + + @note This method can be executed on any JSON value type. + + @param[in] ptr JSON pointer to check its existence. + + @return true if the JSON pointer can be resolved to a stored value, false + otherwise. + + @post If `j.contains(ptr)` returns true, it is safe to call `j[ptr]`. + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + + @complexity Logarithmic in the size of the JSON object. + + @liveexample{The following code shows an example for `contains()`.,contains_json_pointer} + + @sa @ref contains(KeyT &&) const -- checks the existence of a key + + @since version 3.7.0 + */ + bool contains(const json_pointer& ptr) const + { + return ptr.contains(this); + } + + /// @} + + + /////////////// + // iterators // + /////////////// + + /// @name iterators + /// @{ + + /*! + @brief returns an iterator to the first element + + Returns an iterator to the first element. + + @image html range-begin-end.svg "Illustration from cppreference.com" + + @return iterator to the first element + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + + @liveexample{The following code shows an example for `begin()`.,begin} + + @sa @ref cbegin() -- returns a const iterator to the beginning + @sa @ref end() -- returns an iterator to the end + @sa @ref cend() -- returns a const iterator to the end + + @since version 1.0.0 + */ + iterator begin() noexcept + { + iterator result(this); + result.set_begin(); + return result; + } + + /*! + @copydoc basic_json::cbegin() + */ + const_iterator begin() const noexcept + { + return cbegin(); + } + + /*! + @brief returns a const iterator to the first element + + Returns a const iterator to the first element. + + @image html range-begin-end.svg "Illustration from cppreference.com" + + @return const iterator to the first element + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of `const_cast(*this).begin()`. + + @liveexample{The following code shows an example for `cbegin()`.,cbegin} + + @sa @ref begin() -- returns an iterator to the beginning + @sa @ref end() -- returns an iterator to the end + @sa @ref cend() -- returns a const iterator to the end + + @since version 1.0.0 + */ + const_iterator cbegin() const noexcept + { + const_iterator result(this); + result.set_begin(); + return result; + } + + /*! + @brief returns an iterator to one past the last element + + Returns an iterator to one past the last element. + + @image html range-begin-end.svg "Illustration from cppreference.com" + + @return iterator one past the last element + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + + @liveexample{The following code shows an example for `end()`.,end} + + @sa @ref cend() -- returns a const iterator to the end + @sa @ref begin() -- returns an iterator to the beginning + @sa @ref cbegin() -- returns a const iterator to the beginning + + @since version 1.0.0 + */ + iterator end() noexcept + { + iterator result(this); + result.set_end(); + return result; + } + + /*! + @copydoc basic_json::cend() + */ + const_iterator end() const noexcept + { + return cend(); + } + + /*! + @brief returns a const iterator to one past the last element + + Returns a const iterator to one past the last element. + + @image html range-begin-end.svg "Illustration from cppreference.com" + + @return const iterator one past the last element + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of `const_cast(*this).end()`. + + @liveexample{The following code shows an example for `cend()`.,cend} + + @sa @ref end() -- returns an iterator to the end + @sa @ref begin() -- returns an iterator to the beginning + @sa @ref cbegin() -- returns a const iterator to the beginning + + @since version 1.0.0 + */ + const_iterator cend() const noexcept + { + const_iterator result(this); + result.set_end(); + return result; + } + + /*! + @brief returns an iterator to the reverse-beginning + + Returns an iterator to the reverse-beginning; that is, the last element. + + @image html range-rbegin-rend.svg "Illustration from cppreference.com" + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) + requirements: + - The complexity is constant. + - Has the semantics of `reverse_iterator(end())`. + + @liveexample{The following code shows an example for `rbegin()`.,rbegin} + + @sa @ref crbegin() -- returns a const reverse iterator to the beginning + @sa @ref rend() -- returns a reverse iterator to the end + @sa @ref crend() -- returns a const reverse iterator to the end + + @since version 1.0.0 + */ + reverse_iterator rbegin() noexcept + { + return reverse_iterator(end()); + } + + /*! + @copydoc basic_json::crbegin() + */ + const_reverse_iterator rbegin() const noexcept + { + return crbegin(); + } + + /*! + @brief returns an iterator to the reverse-end + + Returns an iterator to the reverse-end; that is, one before the first + element. + + @image html range-rbegin-rend.svg "Illustration from cppreference.com" + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) + requirements: + - The complexity is constant. + - Has the semantics of `reverse_iterator(begin())`. + + @liveexample{The following code shows an example for `rend()`.,rend} + + @sa @ref crend() -- returns a const reverse iterator to the end + @sa @ref rbegin() -- returns a reverse iterator to the beginning + @sa @ref crbegin() -- returns a const reverse iterator to the beginning + + @since version 1.0.0 + */ + reverse_iterator rend() noexcept + { + return reverse_iterator(begin()); + } + + /*! + @copydoc basic_json::crend() + */ + const_reverse_iterator rend() const noexcept + { + return crend(); + } + + /*! + @brief returns a const reverse iterator to the last element + + Returns a const iterator to the reverse-beginning; that is, the last + element. + + @image html range-rbegin-rend.svg "Illustration from cppreference.com" + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) + requirements: + - The complexity is constant. + - Has the semantics of `const_cast(*this).rbegin()`. + + @liveexample{The following code shows an example for `crbegin()`.,crbegin} + + @sa @ref rbegin() -- returns a reverse iterator to the beginning + @sa @ref rend() -- returns a reverse iterator to the end + @sa @ref crend() -- returns a const reverse iterator to the end + + @since version 1.0.0 + */ + const_reverse_iterator crbegin() const noexcept + { + return const_reverse_iterator(cend()); + } + + /*! + @brief returns a const reverse iterator to one before the first + + Returns a const reverse iterator to the reverse-end; that is, one before + the first element. + + @image html range-rbegin-rend.svg "Illustration from cppreference.com" + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) + requirements: + - The complexity is constant. + - Has the semantics of `const_cast(*this).rend()`. + + @liveexample{The following code shows an example for `crend()`.,crend} + + @sa @ref rend() -- returns a reverse iterator to the end + @sa @ref rbegin() -- returns a reverse iterator to the beginning + @sa @ref crbegin() -- returns a const reverse iterator to the beginning + + @since version 1.0.0 + */ + const_reverse_iterator crend() const noexcept + { + return const_reverse_iterator(cbegin()); + } + + public: + /*! + @brief wrapper to access iterator member functions in range-based for + + This function allows to access @ref iterator::key() and @ref + iterator::value() during range-based for loops. In these loops, a + reference to the JSON values is returned, so there is no access to the + underlying iterator. + + For loop without iterator_wrapper: + + @code{cpp} + for (auto it = j_object.begin(); it != j_object.end(); ++it) + { + std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; + } + @endcode + + Range-based for loop without iterator proxy: + + @code{cpp} + for (auto it : j_object) + { + // "it" is of type json::reference and has no key() member + std::cout << "value: " << it << '\n'; + } + @endcode + + Range-based for loop with iterator proxy: + + @code{cpp} + for (auto it : json::iterator_wrapper(j_object)) + { + std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; + } + @endcode + + @note When iterating over an array, `key()` will return the index of the + element as string (see example). + + @param[in] ref reference to a JSON value + @return iteration proxy object wrapping @a ref with an interface to use in + range-based for loops + + @liveexample{The following code shows how the wrapper is used,iterator_wrapper} + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @note The name of this function is not yet final and may change in the + future. + + @deprecated This stream operator is deprecated and will be removed in + future 4.0.0 of the library. Please use @ref items() instead; + that is, replace `json::iterator_wrapper(j)` with `j.items()`. + */ + JSON_HEDLEY_DEPRECATED_FOR(3.1.0, items()) + static iteration_proxy iterator_wrapper(reference ref) noexcept + { + return ref.items(); + } + + /*! + @copydoc iterator_wrapper(reference) + */ + JSON_HEDLEY_DEPRECATED_FOR(3.1.0, items()) + static iteration_proxy iterator_wrapper(const_reference ref) noexcept + { + return ref.items(); + } + + /*! + @brief helper to access iterator member functions in range-based for + + This function allows to access @ref iterator::key() and @ref + iterator::value() during range-based for loops. In these loops, a + reference to the JSON values is returned, so there is no access to the + underlying iterator. + + For loop without `items()` function: + + @code{cpp} + for (auto it = j_object.begin(); it != j_object.end(); ++it) + { + std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; + } + @endcode + + Range-based for loop without `items()` function: + + @code{cpp} + for (auto it : j_object) + { + // "it" is of type json::reference and has no key() member + std::cout << "value: " << it << '\n'; + } + @endcode + + Range-based for loop with `items()` function: + + @code{cpp} + for (auto& el : j_object.items()) + { + std::cout << "key: " << el.key() << ", value:" << el.value() << '\n'; + } + @endcode + + The `items()` function also allows to use + [structured bindings](https://en.cppreference.com/w/cpp/language/structured_binding) + (C++17): + + @code{cpp} + for (auto& [key, val] : j_object.items()) + { + std::cout << "key: " << key << ", value:" << val << '\n'; + } + @endcode + + @note When iterating over an array, `key()` will return the index of the + element as string (see example). For primitive types (e.g., numbers), + `key()` returns an empty string. + + @warning Using `items()` on temporary objects is dangerous. Make sure the + object's lifetime exeeds the iteration. See + for more + information. + + @return iteration proxy object wrapping @a ref with an interface to use in + range-based for loops + + @liveexample{The following code shows how the function is used.,items} + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 3.1.0, structured bindings support since 3.5.0. + */ + iteration_proxy items() noexcept + { + return iteration_proxy(*this); + } + + /*! + @copydoc items() + */ + iteration_proxy items() const noexcept + { + return iteration_proxy(*this); + } + + /// @} + + + ////////////// + // capacity // + ////////////// + + /// @name capacity + /// @{ + + /*! + @brief checks whether the container is empty. + + Checks if a JSON value has no elements (i.e. whether its @ref size is `0`). + + @return The return value depends on the different types and is + defined as follows: + Value type | return value + ----------- | ------------- + null | `true` + boolean | `false` + string | `false` + number | `false` + binary | `false` + object | result of function `object_t::empty()` + array | result of function `array_t::empty()` + + @liveexample{The following code uses `empty()` to check if a JSON + object contains any elements.,empty} + + @complexity Constant, as long as @ref array_t and @ref object_t satisfy + the Container concept; that is, their `empty()` functions have constant + complexity. + + @iterators No changes. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @note This function does not return whether a string stored as JSON value + is empty - it returns whether the JSON container itself is empty which is + false in the case of a string. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of `begin() == end()`. + + @sa @ref size() -- returns the number of elements + + @since version 1.0.0 + */ + bool empty() const noexcept + { + switch (m_type) + { + case value_t::null: + { + // null values are empty + return true; + } + + case value_t::array: + { + // delegate call to array_t::empty() + return m_value.array->empty(); + } + + case value_t::object: + { + // delegate call to object_t::empty() + return m_value.object->empty(); + } + + default: + { + // all other types are nonempty + return false; + } + } + } + + /*! + @brief returns the number of elements + + Returns the number of elements in a JSON value. + + @return The return value depends on the different types and is + defined as follows: + Value type | return value + ----------- | ------------- + null | `0` + boolean | `1` + string | `1` + number | `1` + binary | `1` + object | result of function object_t::size() + array | result of function array_t::size() + + @liveexample{The following code calls `size()` on the different value + types.,size} + + @complexity Constant, as long as @ref array_t and @ref object_t satisfy + the Container concept; that is, their size() functions have constant + complexity. + + @iterators No changes. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @note This function does not return the length of a string stored as JSON + value - it returns the number of elements in the JSON value which is 1 in + the case of a string. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of `std::distance(begin(), end())`. + + @sa @ref empty() -- checks whether the container is empty + @sa @ref max_size() -- returns the maximal number of elements + + @since version 1.0.0 + */ + size_type size() const noexcept + { + switch (m_type) + { + case value_t::null: + { + // null values are empty + return 0; + } + + case value_t::array: + { + // delegate call to array_t::size() + return m_value.array->size(); + } + + case value_t::object: + { + // delegate call to object_t::size() + return m_value.object->size(); + } + + default: + { + // all other types have size 1 + return 1; + } + } + } + + /*! + @brief returns the maximum possible number of elements + + Returns the maximum number of elements a JSON value is able to hold due to + system or library implementation limitations, i.e. `std::distance(begin(), + end())` for the JSON value. + + @return The return value depends on the different types and is + defined as follows: + Value type | return value + ----------- | ------------- + null | `0` (same as `size()`) + boolean | `1` (same as `size()`) + string | `1` (same as `size()`) + number | `1` (same as `size()`) + binary | `1` (same as `size()`) + object | result of function `object_t::max_size()` + array | result of function `array_t::max_size()` + + @liveexample{The following code calls `max_size()` on the different value + types. Note the output is implementation specific.,max_size} + + @complexity Constant, as long as @ref array_t and @ref object_t satisfy + the Container concept; that is, their `max_size()` functions have constant + complexity. + + @iterators No changes. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of returning `b.size()` where `b` is the largest + possible JSON value. + + @sa @ref size() -- returns the number of elements + + @since version 1.0.0 + */ + size_type max_size() const noexcept + { + switch (m_type) + { + case value_t::array: + { + // delegate call to array_t::max_size() + return m_value.array->max_size(); + } + + case value_t::object: + { + // delegate call to object_t::max_size() + return m_value.object->max_size(); + } + + default: + { + // all other types have max_size() == size() + return size(); + } + } + } + + /// @} + + + /////////////// + // modifiers // + /////////////// + + /// @name modifiers + /// @{ + + /*! + @brief clears the contents + + Clears the content of a JSON value and resets it to the default value as + if @ref basic_json(value_t) would have been called with the current value + type from @ref type(): + + Value type | initial value + ----------- | ------------- + null | `null` + boolean | `false` + string | `""` + number | `0` + binary | An empty byte vector + object | `{}` + array | `[]` + + @post Has the same effect as calling + @code {.cpp} + *this = basic_json(type()); + @endcode + + @liveexample{The example below shows the effect of `clear()` to different + JSON types.,clear} + + @complexity Linear in the size of the JSON value. + + @iterators All iterators, pointers and references related to this container + are invalidated. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @sa @ref basic_json(value_t) -- constructor that creates an object with the + same value than calling `clear()` + + @since version 1.0.0 + */ + void clear() noexcept + { + switch (m_type) + { + case value_t::number_integer: + { + m_value.number_integer = 0; + break; + } + + case value_t::number_unsigned: + { + m_value.number_unsigned = 0; + break; + } + + case value_t::number_float: + { + m_value.number_float = 0.0; + break; + } + + case value_t::boolean: + { + m_value.boolean = false; + break; + } + + case value_t::string: + { + m_value.string->clear(); + break; + } + + case value_t::binary: + { + m_value.binary->clear(); + break; + } + + case value_t::array: + { + m_value.array->clear(); + break; + } + + case value_t::object: + { + m_value.object->clear(); + break; + } + + default: + break; + } + } + + /*! + @brief add an object to an array + + Appends the given element @a val to the end of the JSON value. If the + function is called on a JSON null value, an empty array is created before + appending @a val. + + @param[in] val the value to add to the JSON array + + @throw type_error.308 when called on a type other than JSON array or + null; example: `"cannot use push_back() with number"` + + @complexity Amortized constant. + + @liveexample{The example shows how `push_back()` and `+=` can be used to + add elements to a JSON array. Note how the `null` value was silently + converted to a JSON array.,push_back} + + @since version 1.0.0 + */ + void push_back(basic_json&& val) + { + // push_back only works for null objects or arrays + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) + { + JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); + } + + // transform null object into an array + if (is_null()) + { + m_type = value_t::array; + m_value = value_t::array; + assert_invariant(); + } + + // add element to array (move semantics) + m_value.array->push_back(std::move(val)); + // if val is moved from, basic_json move constructor marks it null so we do not call the destructor + } + + /*! + @brief add an object to an array + @copydoc push_back(basic_json&&) + */ + reference operator+=(basic_json&& val) + { + push_back(std::move(val)); + return *this; + } + + /*! + @brief add an object to an array + @copydoc push_back(basic_json&&) + */ + void push_back(const basic_json& val) + { + // push_back only works for null objects or arrays + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) + { + JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); + } + + // transform null object into an array + if (is_null()) + { + m_type = value_t::array; + m_value = value_t::array; + assert_invariant(); + } + + // add element to array + m_value.array->push_back(val); + } + + /*! + @brief add an object to an array + @copydoc push_back(basic_json&&) + */ + reference operator+=(const basic_json& val) + { + push_back(val); + return *this; + } + + /*! + @brief add an object to an object + + Inserts the given element @a val to the JSON object. If the function is + called on a JSON null value, an empty object is created before inserting + @a val. + + @param[in] val the value to add to the JSON object + + @throw type_error.308 when called on a type other than JSON object or + null; example: `"cannot use push_back() with number"` + + @complexity Logarithmic in the size of the container, O(log(`size()`)). + + @liveexample{The example shows how `push_back()` and `+=` can be used to + add elements to a JSON object. Note how the `null` value was silently + converted to a JSON object.,push_back__object_t__value} + + @since version 1.0.0 + */ + void push_back(const typename object_t::value_type& val) + { + // push_back only works for null objects or objects + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object()))) + { + JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); + } + + // transform null object into an object + if (is_null()) + { + m_type = value_t::object; + m_value = value_t::object; + assert_invariant(); + } + + // add element to array + m_value.object->insert(val); + } + + /*! + @brief add an object to an object + @copydoc push_back(const typename object_t::value_type&) + */ + reference operator+=(const typename object_t::value_type& val) + { + push_back(val); + return *this; + } + + /*! + @brief add an object to an object + + This function allows to use `push_back` with an initializer list. In case + + 1. the current value is an object, + 2. the initializer list @a init contains only two elements, and + 3. the first element of @a init is a string, + + @a init is converted into an object element and added using + @ref push_back(const typename object_t::value_type&). Otherwise, @a init + is converted to a JSON value and added using @ref push_back(basic_json&&). + + @param[in] init an initializer list + + @complexity Linear in the size of the initializer list @a init. + + @note This function is required to resolve an ambiguous overload error, + because pairs like `{"key", "value"}` can be both interpreted as + `object_t::value_type` or `std::initializer_list`, see + https://github.com/nlohmann/json/issues/235 for more information. + + @liveexample{The example shows how initializer lists are treated as + objects when possible.,push_back__initializer_list} + */ + void push_back(initializer_list_t init) + { + if (is_object() && init.size() == 2 && (*init.begin())->is_string()) + { + basic_json&& key = init.begin()->moved_or_copied(); + push_back(typename object_t::value_type( + std::move(key.get_ref()), (init.begin() + 1)->moved_or_copied())); + } + else + { + push_back(basic_json(init)); + } + } + + /*! + @brief add an object to an object + @copydoc push_back(initializer_list_t) + */ + reference operator+=(initializer_list_t init) + { + push_back(init); + return *this; + } + + /*! + @brief add an object to an array + + Creates a JSON value from the passed parameters @a args to the end of the + JSON value. If the function is called on a JSON null value, an empty array + is created before appending the value created from @a args. + + @param[in] args arguments to forward to a constructor of @ref basic_json + @tparam Args compatible types to create a @ref basic_json object + + @return reference to the inserted element + + @throw type_error.311 when called on a type other than JSON array or + null; example: `"cannot use emplace_back() with number"` + + @complexity Amortized constant. + + @liveexample{The example shows how `push_back()` can be used to add + elements to a JSON array. Note how the `null` value was silently converted + to a JSON array.,emplace_back} + + @since version 2.0.8, returns reference since 3.7.0 + */ + template + reference emplace_back(Args&& ... args) + { + // emplace_back only works for null objects or arrays + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) + { + JSON_THROW(type_error::create(311, "cannot use emplace_back() with " + std::string(type_name()))); + } + + // transform null object into an array + if (is_null()) + { + m_type = value_t::array; + m_value = value_t::array; + assert_invariant(); + } + + // add element to array (perfect forwarding) +#ifdef JSON_HAS_CPP_17 + return m_value.array->emplace_back(std::forward(args)...); +#else + m_value.array->emplace_back(std::forward(args)...); + return m_value.array->back(); +#endif + } + + /*! + @brief add an object to an object if key does not exist + + Inserts a new element into a JSON object constructed in-place with the + given @a args if there is no element with the key in the container. If the + function is called on a JSON null value, an empty object is created before + appending the value created from @a args. + + @param[in] args arguments to forward to a constructor of @ref basic_json + @tparam Args compatible types to create a @ref basic_json object + + @return a pair consisting of an iterator to the inserted element, or the + already-existing element if no insertion happened, and a bool + denoting whether the insertion took place. + + @throw type_error.311 when called on a type other than JSON object or + null; example: `"cannot use emplace() with number"` + + @complexity Logarithmic in the size of the container, O(log(`size()`)). + + @liveexample{The example shows how `emplace()` can be used to add elements + to a JSON object. Note how the `null` value was silently converted to a + JSON object. Further note how no value is added if there was already one + value stored with the same key.,emplace} + + @since version 2.0.8 + */ + template + std::pair emplace(Args&& ... args) + { + // emplace only works for null objects or arrays + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object()))) + { + JSON_THROW(type_error::create(311, "cannot use emplace() with " + std::string(type_name()))); + } + + // transform null object into an object + if (is_null()) + { + m_type = value_t::object; + m_value = value_t::object; + assert_invariant(); + } + + // add element to array (perfect forwarding) + auto res = m_value.object->emplace(std::forward(args)...); + // create result iterator and set iterator to the result of emplace + auto it = begin(); + it.m_it.object_iterator = res.first; + + // return pair of iterator and boolean + return {it, res.second}; + } + + /// Helper for insertion of an iterator + /// @note: This uses std::distance to support GCC 4.8, + /// see https://github.com/nlohmann/json/pull/1257 + template + iterator insert_iterator(const_iterator pos, Args&& ... args) + { + iterator result(this); + JSON_ASSERT(m_value.array != nullptr); + + auto insert_pos = std::distance(m_value.array->begin(), pos.m_it.array_iterator); + m_value.array->insert(pos.m_it.array_iterator, std::forward(args)...); + result.m_it.array_iterator = m_value.array->begin() + insert_pos; + + // This could have been written as: + // result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, cnt, val); + // but the return value of insert is missing in GCC 4.8, so it is written this way instead. + + return result; + } + + /*! + @brief inserts element + + Inserts element @a val before iterator @a pos. + + @param[in] pos iterator before which the content will be inserted; may be + the end() iterator + @param[in] val element to insert + @return iterator pointing to the inserted @a val. + + @throw type_error.309 if called on JSON values other than arrays; + example: `"cannot use insert() with string"` + @throw invalid_iterator.202 if @a pos is not an iterator of *this; + example: `"iterator does not fit current value"` + + @complexity Constant plus linear in the distance between @a pos and end of + the container. + + @liveexample{The example shows how `insert()` is used.,insert} + + @since version 1.0.0 + */ + iterator insert(const_iterator pos, const basic_json& val) + { + // insert only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + // check if iterator pos fits to this JSON value + if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + // insert to array and return iterator + return insert_iterator(pos, val); + } + + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + /*! + @brief inserts element + @copydoc insert(const_iterator, const basic_json&) + */ + iterator insert(const_iterator pos, basic_json&& val) + { + return insert(pos, val); + } + + /*! + @brief inserts elements + + Inserts @a cnt copies of @a val before iterator @a pos. + + @param[in] pos iterator before which the content will be inserted; may be + the end() iterator + @param[in] cnt number of copies of @a val to insert + @param[in] val element to insert + @return iterator pointing to the first element inserted, or @a pos if + `cnt==0` + + @throw type_error.309 if called on JSON values other than arrays; example: + `"cannot use insert() with string"` + @throw invalid_iterator.202 if @a pos is not an iterator of *this; + example: `"iterator does not fit current value"` + + @complexity Linear in @a cnt plus linear in the distance between @a pos + and end of the container. + + @liveexample{The example shows how `insert()` is used.,insert__count} + + @since version 1.0.0 + */ + iterator insert(const_iterator pos, size_type cnt, const basic_json& val) + { + // insert only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + // check if iterator pos fits to this JSON value + if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + // insert to array and return iterator + return insert_iterator(pos, cnt, val); + } + + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + /*! + @brief inserts elements + + Inserts elements from range `[first, last)` before iterator @a pos. + + @param[in] pos iterator before which the content will be inserted; may be + the end() iterator + @param[in] first begin of the range of elements to insert + @param[in] last end of the range of elements to insert + + @throw type_error.309 if called on JSON values other than arrays; example: + `"cannot use insert() with string"` + @throw invalid_iterator.202 if @a pos is not an iterator of *this; + example: `"iterator does not fit current value"` + @throw invalid_iterator.210 if @a first and @a last do not belong to the + same JSON value; example: `"iterators do not fit"` + @throw invalid_iterator.211 if @a first or @a last are iterators into + container for which insert is called; example: `"passed iterators may not + belong to container"` + + @return iterator pointing to the first element inserted, or @a pos if + `first==last` + + @complexity Linear in `std::distance(first, last)` plus linear in the + distance between @a pos and end of the container. + + @liveexample{The example shows how `insert()` is used.,insert__range} + + @since version 1.0.0 + */ + iterator insert(const_iterator pos, const_iterator first, const_iterator last) + { + // insert only works for arrays + if (JSON_HEDLEY_UNLIKELY(!is_array())) + { + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + // check if iterator pos fits to this JSON value + if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + // check if range iterators belong to the same JSON object + if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) + { + JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); + } + + if (JSON_HEDLEY_UNLIKELY(first.m_object == this)) + { + JSON_THROW(invalid_iterator::create(211, "passed iterators may not belong to container")); + } + + // insert to array and return iterator + return insert_iterator(pos, first.m_it.array_iterator, last.m_it.array_iterator); + } + + /*! + @brief inserts elements + + Inserts elements from initializer list @a ilist before iterator @a pos. + + @param[in] pos iterator before which the content will be inserted; may be + the end() iterator + @param[in] ilist initializer list to insert the values from + + @throw type_error.309 if called on JSON values other than arrays; example: + `"cannot use insert() with string"` + @throw invalid_iterator.202 if @a pos is not an iterator of *this; + example: `"iterator does not fit current value"` + + @return iterator pointing to the first element inserted, or @a pos if + `ilist` is empty + + @complexity Linear in `ilist.size()` plus linear in the distance between + @a pos and end of the container. + + @liveexample{The example shows how `insert()` is used.,insert__ilist} + + @since version 1.0.0 + */ + iterator insert(const_iterator pos, initializer_list_t ilist) + { + // insert only works for arrays + if (JSON_HEDLEY_UNLIKELY(!is_array())) + { + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + // check if iterator pos fits to this JSON value + if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + // insert to array and return iterator + return insert_iterator(pos, ilist.begin(), ilist.end()); + } + + /*! + @brief inserts elements + + Inserts elements from range `[first, last)`. + + @param[in] first begin of the range of elements to insert + @param[in] last end of the range of elements to insert + + @throw type_error.309 if called on JSON values other than objects; example: + `"cannot use insert() with string"` + @throw invalid_iterator.202 if iterator @a first or @a last does does not + point to an object; example: `"iterators first and last must point to + objects"` + @throw invalid_iterator.210 if @a first and @a last do not belong to the + same JSON value; example: `"iterators do not fit"` + + @complexity Logarithmic: `O(N*log(size() + N))`, where `N` is the number + of elements to insert. + + @liveexample{The example shows how `insert()` is used.,insert__range_object} + + @since version 3.0.0 + */ + void insert(const_iterator first, const_iterator last) + { + // insert only works for objects + if (JSON_HEDLEY_UNLIKELY(!is_object())) + { + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + // check if range iterators belong to the same JSON object + if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) + { + JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); + } + + // passed iterators must belong to objects + if (JSON_HEDLEY_UNLIKELY(!first.m_object->is_object())) + { + JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects")); + } + + m_value.object->insert(first.m_it.object_iterator, last.m_it.object_iterator); + } + + /*! + @brief updates a JSON object from another object, overwriting existing keys + + Inserts all values from JSON object @a j and overwrites existing keys. + + @param[in] j JSON object to read values from + + @throw type_error.312 if called on JSON values other than objects; example: + `"cannot use update() with string"` + + @complexity O(N*log(size() + N)), where N is the number of elements to + insert. + + @liveexample{The example shows how `update()` is used.,update} + + @sa https://docs.python.org/3.6/library/stdtypes.html#dict.update + + @since version 3.0.0 + */ + void update(const_reference j) + { + // implicitly convert null value to an empty object + if (is_null()) + { + m_type = value_t::object; + m_value.object = create(); + assert_invariant(); + } + + if (JSON_HEDLEY_UNLIKELY(!is_object())) + { + JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name()))); + } + if (JSON_HEDLEY_UNLIKELY(!j.is_object())) + { + JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(j.type_name()))); + } + + for (auto it = j.cbegin(); it != j.cend(); ++it) + { + m_value.object->operator[](it.key()) = it.value(); + } + } + + /*! + @brief updates a JSON object from another object, overwriting existing keys + + Inserts all values from from range `[first, last)` and overwrites existing + keys. + + @param[in] first begin of the range of elements to insert + @param[in] last end of the range of elements to insert + + @throw type_error.312 if called on JSON values other than objects; example: + `"cannot use update() with string"` + @throw invalid_iterator.202 if iterator @a first or @a last does does not + point to an object; example: `"iterators first and last must point to + objects"` + @throw invalid_iterator.210 if @a first and @a last do not belong to the + same JSON value; example: `"iterators do not fit"` + + @complexity O(N*log(size() + N)), where N is the number of elements to + insert. + + @liveexample{The example shows how `update()` is used__range.,update} + + @sa https://docs.python.org/3.6/library/stdtypes.html#dict.update + + @since version 3.0.0 + */ + void update(const_iterator first, const_iterator last) + { + // implicitly convert null value to an empty object + if (is_null()) + { + m_type = value_t::object; + m_value.object = create(); + assert_invariant(); + } + + if (JSON_HEDLEY_UNLIKELY(!is_object())) + { + JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name()))); + } + + // check if range iterators belong to the same JSON object + if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) + { + JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); + } + + // passed iterators must belong to objects + if (JSON_HEDLEY_UNLIKELY(!first.m_object->is_object() + || !last.m_object->is_object())) + { + JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects")); + } + + for (auto it = first; it != last; ++it) + { + m_value.object->operator[](it.key()) = it.value(); + } + } + + /*! + @brief exchanges the values + + Exchanges the contents of the JSON value with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other JSON value to exchange the contents with + + @complexity Constant. + + @liveexample{The example below shows how JSON values can be swapped with + `swap()`.,swap__reference} + + @since version 1.0.0 + */ + void swap(reference other) noexcept ( + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value&& + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value + ) + { + std::swap(m_type, other.m_type); + std::swap(m_value, other.m_value); + assert_invariant(); + } + + /*! + @brief exchanges the values + + Exchanges the contents of the JSON value from @a left with those of @a right. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. implemented as a friend function callable via ADL. + + @param[in,out] left JSON value to exchange the contents with + @param[in,out] right JSON value to exchange the contents with + + @complexity Constant. + + @liveexample{The example below shows how JSON values can be swapped with + `swap()`.,swap__reference} + + @since version 1.0.0 + */ + friend void swap(reference left, reference right) noexcept ( + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value&& + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value + ) + { + left.swap(right); + } + + /*! + @brief exchanges the values + + Exchanges the contents of a JSON array with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other array to exchange the contents with + + @throw type_error.310 when JSON value is not an array; example: `"cannot + use swap() with string"` + + @complexity Constant. + + @liveexample{The example below shows how arrays can be swapped with + `swap()`.,swap__array_t} + + @since version 1.0.0 + */ + void swap(array_t& other) + { + // swap only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + std::swap(*(m_value.array), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /*! + @brief exchanges the values + + Exchanges the contents of a JSON object with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other object to exchange the contents with + + @throw type_error.310 when JSON value is not an object; example: + `"cannot use swap() with string"` + + @complexity Constant. + + @liveexample{The example below shows how objects can be swapped with + `swap()`.,swap__object_t} + + @since version 1.0.0 + */ + void swap(object_t& other) + { + // swap only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + std::swap(*(m_value.object), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /*! + @brief exchanges the values + + Exchanges the contents of a JSON string with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other string to exchange the contents with + + @throw type_error.310 when JSON value is not a string; example: `"cannot + use swap() with boolean"` + + @complexity Constant. + + @liveexample{The example below shows how strings can be swapped with + `swap()`.,swap__string_t} + + @since version 1.0.0 + */ + void swap(string_t& other) + { + // swap only works for strings + if (JSON_HEDLEY_LIKELY(is_string())) + { + std::swap(*(m_value.string), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /*! + @brief exchanges the values + + Exchanges the contents of a JSON string with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other binary to exchange the contents with + + @throw type_error.310 when JSON value is not a string; example: `"cannot + use swap() with boolean"` + + @complexity Constant. + + @liveexample{The example below shows how strings can be swapped with + `swap()`.,swap__binary_t} + + @since version 3.8.0 + */ + void swap(binary_t& other) + { + // swap only works for strings + if (JSON_HEDLEY_LIKELY(is_binary())) + { + std::swap(*(m_value.binary), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /// @copydoc swap(binary_t) + void swap(typename binary_t::container_type& other) + { + // swap only works for strings + if (JSON_HEDLEY_LIKELY(is_binary())) + { + std::swap(*(m_value.binary), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /// @} + + public: + ////////////////////////////////////////// + // lexicographical comparison operators // + ////////////////////////////////////////// + + /// @name lexicographical comparison operators + /// @{ + + /*! + @brief comparison: equal + + Compares two JSON values for equality according to the following rules: + - Two JSON values are equal if (1) they are from the same type and (2) + their stored values are the same according to their respective + `operator==`. + - Integer and floating-point numbers are automatically converted before + comparison. Note that two NaN values are always treated as unequal. + - Two JSON null values are equal. + + @note Floating-point inside JSON values numbers are compared with + `json::number_float_t::operator==` which is `double::operator==` by + default. To compare floating-point while respecting an epsilon, an alternative + [comparison function](https://github.com/mariokonrad/marnav/blob/master/include/marnav/math/floatingpoint.hpp#L34-#L39) + could be used, for instance + @code {.cpp} + template::value, T>::type> + inline bool is_same(T a, T b, T epsilon = std::numeric_limits::epsilon()) noexcept + { + return std::abs(a - b) <= epsilon; + } + @endcode + Or you can self-defined operator equal function like this: + @code {.cpp} + bool my_equal(const_reference lhs, const_reference rhs) { + const auto lhs_type lhs.type(); + const auto rhs_type rhs.type(); + if (lhs_type == rhs_type) { + switch(lhs_type) + // self_defined case + case value_t::number_float: + return std::abs(lhs - rhs) <= std::numeric_limits::epsilon(); + // other cases remain the same with the original + ... + } + ... + } + @endcode + + @note NaN values never compare equal to themselves or to other NaN values. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether the values @a lhs and @a rhs are equal + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @complexity Linear. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__equal} + + @since version 1.0.0 + */ + friend bool operator==(const_reference lhs, const_reference rhs) noexcept + { + const auto lhs_type = lhs.type(); + const auto rhs_type = rhs.type(); + + if (lhs_type == rhs_type) + { + switch (lhs_type) + { + case value_t::array: + return *lhs.m_value.array == *rhs.m_value.array; + + case value_t::object: + return *lhs.m_value.object == *rhs.m_value.object; + + case value_t::null: + return true; + + case value_t::string: + return *lhs.m_value.string == *rhs.m_value.string; + + case value_t::boolean: + return lhs.m_value.boolean == rhs.m_value.boolean; + + case value_t::number_integer: + return lhs.m_value.number_integer == rhs.m_value.number_integer; + + case value_t::number_unsigned: + return lhs.m_value.number_unsigned == rhs.m_value.number_unsigned; + + case value_t::number_float: + return lhs.m_value.number_float == rhs.m_value.number_float; + + case value_t::binary: + return *lhs.m_value.binary == *rhs.m_value.binary; + + default: + return false; + } + } + else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) + { + return static_cast(lhs.m_value.number_integer) == rhs.m_value.number_float; + } + else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) + { + return lhs.m_value.number_float == static_cast(rhs.m_value.number_integer); + } + else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) + { + return static_cast(lhs.m_value.number_unsigned) == rhs.m_value.number_float; + } + else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) + { + return lhs.m_value.number_float == static_cast(rhs.m_value.number_unsigned); + } + else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) + { + return static_cast(lhs.m_value.number_unsigned) == rhs.m_value.number_integer; + } + else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) + { + return lhs.m_value.number_integer == static_cast(rhs.m_value.number_unsigned); + } + + return false; + } + + /*! + @brief comparison: equal + @copydoc operator==(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator==(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs == basic_json(rhs); + } + + /*! + @brief comparison: equal + @copydoc operator==(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator==(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) == rhs; + } + + /*! + @brief comparison: not equal + + Compares two JSON values for inequality by calculating `not (lhs == rhs)`. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether the values @a lhs and @a rhs are not equal + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__notequal} + + @since version 1.0.0 + */ + friend bool operator!=(const_reference lhs, const_reference rhs) noexcept + { + return !(lhs == rhs); + } + + /*! + @brief comparison: not equal + @copydoc operator!=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator!=(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs != basic_json(rhs); + } + + /*! + @brief comparison: not equal + @copydoc operator!=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator!=(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) != rhs; + } + + /*! + @brief comparison: less than + + Compares whether one JSON value @a lhs is less than another JSON value @a + rhs according to the following rules: + - If @a lhs and @a rhs have the same type, the values are compared using + the default `<` operator. + - Integer and floating-point numbers are automatically converted before + comparison + - In case @a lhs and @a rhs have different types, the values are ignored + and the order of the types is considered, see + @ref operator<(const value_t, const value_t). + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether @a lhs is less than @a rhs + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__less} + + @since version 1.0.0 + */ + friend bool operator<(const_reference lhs, const_reference rhs) noexcept + { + const auto lhs_type = lhs.type(); + const auto rhs_type = rhs.type(); + + if (lhs_type == rhs_type) + { + switch (lhs_type) + { + case value_t::array: + // note parentheses are necessary, see + // https://github.com/nlohmann/json/issues/1530 + return (*lhs.m_value.array) < (*rhs.m_value.array); + + case value_t::object: + return (*lhs.m_value.object) < (*rhs.m_value.object); + + case value_t::null: + return false; + + case value_t::string: + return (*lhs.m_value.string) < (*rhs.m_value.string); + + case value_t::boolean: + return (lhs.m_value.boolean) < (rhs.m_value.boolean); + + case value_t::number_integer: + return (lhs.m_value.number_integer) < (rhs.m_value.number_integer); + + case value_t::number_unsigned: + return (lhs.m_value.number_unsigned) < (rhs.m_value.number_unsigned); + + case value_t::number_float: + return (lhs.m_value.number_float) < (rhs.m_value.number_float); + + case value_t::binary: + return (*lhs.m_value.binary) < (*rhs.m_value.binary); + + default: + return false; + } + } + else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) + { + return static_cast(lhs.m_value.number_integer) < rhs.m_value.number_float; + } + else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) + { + return lhs.m_value.number_float < static_cast(rhs.m_value.number_integer); + } + else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) + { + return static_cast(lhs.m_value.number_unsigned) < rhs.m_value.number_float; + } + else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) + { + return lhs.m_value.number_float < static_cast(rhs.m_value.number_unsigned); + } + else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) + { + return lhs.m_value.number_integer < static_cast(rhs.m_value.number_unsigned); + } + else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) + { + return static_cast(lhs.m_value.number_unsigned) < rhs.m_value.number_integer; + } + + // We only reach this line if we cannot compare values. In that case, + // we compare types. Note we have to call the operator explicitly, + // because MSVC has problems otherwise. + return operator<(lhs_type, rhs_type); + } + + /*! + @brief comparison: less than + @copydoc operator<(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator<(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs < basic_json(rhs); + } + + /*! + @brief comparison: less than + @copydoc operator<(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator<(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) < rhs; + } + + /*! + @brief comparison: less than or equal + + Compares whether one JSON value @a lhs is less than or equal to another + JSON value by calculating `not (rhs < lhs)`. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether @a lhs is less than or equal to @a rhs + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__greater} + + @since version 1.0.0 + */ + friend bool operator<=(const_reference lhs, const_reference rhs) noexcept + { + return !(rhs < lhs); + } + + /*! + @brief comparison: less than or equal + @copydoc operator<=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator<=(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs <= basic_json(rhs); + } + + /*! + @brief comparison: less than or equal + @copydoc operator<=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator<=(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) <= rhs; + } + + /*! + @brief comparison: greater than + + Compares whether one JSON value @a lhs is greater than another + JSON value by calculating `not (lhs <= rhs)`. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether @a lhs is greater than to @a rhs + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__lessequal} + + @since version 1.0.0 + */ + friend bool operator>(const_reference lhs, const_reference rhs) noexcept + { + return !(lhs <= rhs); + } + + /*! + @brief comparison: greater than + @copydoc operator>(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator>(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs > basic_json(rhs); + } + + /*! + @brief comparison: greater than + @copydoc operator>(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator>(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) > rhs; + } + + /*! + @brief comparison: greater than or equal + + Compares whether one JSON value @a lhs is greater than or equal to another + JSON value by calculating `not (lhs < rhs)`. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether @a lhs is greater than or equal to @a rhs + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__greaterequal} + + @since version 1.0.0 + */ + friend bool operator>=(const_reference lhs, const_reference rhs) noexcept + { + return !(lhs < rhs); + } + + /*! + @brief comparison: greater than or equal + @copydoc operator>=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator>=(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs >= basic_json(rhs); + } + + /*! + @brief comparison: greater than or equal + @copydoc operator>=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator>=(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) >= rhs; + } + + /// @} + + /////////////////// + // serialization // + /////////////////// + + /// @name serialization + /// @{ + + /*! + @brief serialize to stream + + Serialize the given JSON value @a j to the output stream @a o. The JSON + value will be serialized using the @ref dump member function. + + - The indentation of the output can be controlled with the member variable + `width` of the output stream @a o. For instance, using the manipulator + `std::setw(4)` on @a o sets the indentation level to `4` and the + serialization result is the same as calling `dump(4)`. + + - The indentation character can be controlled with the member variable + `fill` of the output stream @a o. For instance, the manipulator + `std::setfill('\\t')` sets indentation to use a tab character rather than + the default space character. + + @param[in,out] o stream to serialize to + @param[in] j JSON value to serialize + + @return the stream @a o + + @throw type_error.316 if a string stored inside the JSON value is not + UTF-8 encoded + + @complexity Linear. + + @liveexample{The example below shows the serialization with different + parameters to `width` to adjust the indentation level.,operator_serialize} + + @since version 1.0.0; indentation character added in version 3.0.0 + */ + friend std::ostream& operator<<(std::ostream& o, const basic_json& j) + { + // read width member and use it as indentation parameter if nonzero + const bool pretty_print = o.width() > 0; + const auto indentation = pretty_print ? o.width() : 0; + + // reset width to 0 for subsequent calls to this stream + o.width(0); + + // do the actual serialization + serializer s(detail::output_adapter(o), o.fill()); + s.dump(j, pretty_print, false, static_cast(indentation)); + return o; + } + + /*! + @brief serialize to stream + @deprecated This stream operator is deprecated and will be removed in + future 4.0.0 of the library. Please use + @ref operator<<(std::ostream&, const basic_json&) + instead; that is, replace calls like `j >> o;` with `o << j;`. + @since version 1.0.0; deprecated since version 3.0.0 + */ + JSON_HEDLEY_DEPRECATED_FOR(3.0.0, operator<<(std::ostream&, const basic_json&)) + friend std::ostream& operator>>(const basic_json& j, std::ostream& o) + { + return o << j; + } + + /// @} + + + ///////////////////// + // deserialization // + ///////////////////// + + /// @name deserialization + /// @{ + + /*! + @brief deserialize from a compatible input + + @tparam InputType A compatible input, for instance + - an std::istream object + - a FILE pointer + - a C-style array of characters + - a pointer to a null-terminated string of single byte characters + - an object obj for which begin(obj) and end(obj) produces a valid pair of + iterators. + + @param[in] i input to read from + @param[in] cb a parser callback function of type @ref parser_callback_t + which is used to control the deserialization by filtering unwanted values + (optional) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + @param[in] ignore_comments whether comments should be ignored and treated + like whitespace (true) or yield a parse error (true); (optional, false by + default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.101 if a parse error occurs; example: `""unexpected end + of input; expected string literal""` + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + + @complexity Linear in the length of the input. The parser is a predictive + LL(1) parser. The complexity can be higher if the parser callback function + @a cb or reading from the input @a i has a super-linear complexity. + + @note A UTF-8 byte order mark is silently ignored. + + @liveexample{The example below demonstrates the `parse()` function reading + from an array.,parse__array__parser_callback_t} + + @liveexample{The example below demonstrates the `parse()` function with + and without callback function.,parse__string__parser_callback_t} + + @liveexample{The example below demonstrates the `parse()` function with + and without callback function.,parse__istream__parser_callback_t} + + @liveexample{The example below demonstrates the `parse()` function reading + from a contiguous container.,parse__contiguouscontainer__parser_callback_t} + + @since version 2.0.3 (contiguous containers); version 3.9.0 allowed to + ignore comments. + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json parse(InputType&& i, + const parser_callback_t cb = nullptr, + const bool allow_exceptions = true, + const bool ignore_comments = false) + { + basic_json result; + parser(detail::input_adapter(std::forward(i)), cb, allow_exceptions, ignore_comments).parse(true, result); + return result; + } + + /*! + @brief deserialize from a pair of character iterators + + The value_type of the iterator must be a integral type with size of 1, 2 or + 4 bytes, which will be interpreted respectively as UTF-8, UTF-16 and UTF-32. + + @param[in] first iterator to start of character range + @param[in] last iterator to end of character range + @param[in] cb a parser callback function of type @ref parser_callback_t + which is used to control the deserialization by filtering unwanted values + (optional) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + @param[in] ignore_comments whether comments should be ignored and treated + like whitespace (true) or yield a parse error (true); (optional, false by + default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.101 if a parse error occurs; example: `""unexpected end + of input; expected string literal""` + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json parse(IteratorType first, + IteratorType last, + const parser_callback_t cb = nullptr, + const bool allow_exceptions = true, + const bool ignore_comments = false) + { + basic_json result; + parser(detail::input_adapter(std::move(first), std::move(last)), cb, allow_exceptions, ignore_comments).parse(true, result); + return result; + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, parse(ptr, ptr + len)) + static basic_json parse(detail::span_input_adapter&& i, + const parser_callback_t cb = nullptr, + const bool allow_exceptions = true, + const bool ignore_comments = false) + { + basic_json result; + parser(i.get(), cb, allow_exceptions, ignore_comments).parse(true, result); + return result; + } + + /*! + @brief check if the input is valid JSON + + Unlike the @ref parse(InputType&&, const parser_callback_t,const bool) + function, this function neither throws an exception in case of invalid JSON + input (i.e., a parse error) nor creates diagnostic information. + + @tparam InputType A compatible input, for instance + - an std::istream object + - a FILE pointer + - a C-style array of characters + - a pointer to a null-terminated string of single byte characters + - an object obj for which begin(obj) and end(obj) produces a valid pair of + iterators. + + @param[in] i input to read from + @param[in] ignore_comments whether comments should be ignored and treated + like whitespace (true) or yield a parse error (true); (optional, false by + default) + + @return Whether the input read from @a i is valid JSON. + + @complexity Linear in the length of the input. The parser is a predictive + LL(1) parser. + + @note A UTF-8 byte order mark is silently ignored. + + @liveexample{The example below demonstrates the `accept()` function reading + from a string.,accept__string} + */ + template + static bool accept(InputType&& i, + const bool ignore_comments = false) + { + return parser(detail::input_adapter(std::forward(i)), nullptr, false, ignore_comments).accept(true); + } + + template + static bool accept(IteratorType first, IteratorType last, + const bool ignore_comments = false) + { + return parser(detail::input_adapter(std::move(first), std::move(last)), nullptr, false, ignore_comments).accept(true); + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, accept(ptr, ptr + len)) + static bool accept(detail::span_input_adapter&& i, + const bool ignore_comments = false) + { + return parser(i.get(), nullptr, false, ignore_comments).accept(true); + } + + /*! + @brief generate SAX events + + The SAX event lister must follow the interface of @ref json_sax. + + This function reads from a compatible input. Examples are: + - an std::istream object + - a FILE pointer + - a C-style array of characters + - a pointer to a null-terminated string of single byte characters + - an object obj for which begin(obj) and end(obj) produces a valid pair of + iterators. + + @param[in] i input to read from + @param[in,out] sax SAX event listener + @param[in] format the format to parse (JSON, CBOR, MessagePack, or UBJSON) + @param[in] strict whether the input has to be consumed completely + @param[in] ignore_comments whether comments should be ignored and treated + like whitespace (true) or yield a parse error (true); (optional, false by + default); only applies to the JSON file format. + + @return return value of the last processed SAX event + + @throw parse_error.101 if a parse error occurs; example: `""unexpected end + of input; expected string literal""` + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + + @complexity Linear in the length of the input. The parser is a predictive + LL(1) parser. The complexity can be higher if the SAX consumer @a sax has + a super-linear complexity. + + @note A UTF-8 byte order mark is silently ignored. + + @liveexample{The example below demonstrates the `sax_parse()` function + reading from string and processing the events with a user-defined SAX + event consumer.,sax_parse} + + @since version 3.2.0 + */ + template + JSON_HEDLEY_NON_NULL(2) + static bool sax_parse(InputType&& i, SAX* sax, + input_format_t format = input_format_t::json, + const bool strict = true, + const bool ignore_comments = false) + { + auto ia = detail::input_adapter(std::forward(i)); + return format == input_format_t::json + ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) + : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); + } + + template + JSON_HEDLEY_NON_NULL(3) + static bool sax_parse(IteratorType first, IteratorType last, SAX* sax, + input_format_t format = input_format_t::json, + const bool strict = true, + const bool ignore_comments = false) + { + auto ia = detail::input_adapter(std::move(first), std::move(last)); + return format == input_format_t::json + ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) + : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); + } + + template + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, sax_parse(ptr, ptr + len, ...)) + JSON_HEDLEY_NON_NULL(2) + static bool sax_parse(detail::span_input_adapter&& i, SAX* sax, + input_format_t format = input_format_t::json, + const bool strict = true, + const bool ignore_comments = false) + { + auto ia = i.get(); + return format == input_format_t::json + ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) + : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); + } + + /*! + @brief deserialize from stream + @deprecated This stream operator is deprecated and will be removed in + version 4.0.0 of the library. Please use + @ref operator>>(std::istream&, basic_json&) + instead; that is, replace calls like `j << i;` with `i >> j;`. + @since version 1.0.0; deprecated since version 3.0.0 + */ + JSON_HEDLEY_DEPRECATED_FOR(3.0.0, operator>>(std::istream&, basic_json&)) + friend std::istream& operator<<(basic_json& j, std::istream& i) + { + return operator>>(i, j); + } + + /*! + @brief deserialize from stream + + Deserializes an input stream to a JSON value. + + @param[in,out] i input stream to read a serialized JSON value from + @param[in,out] j JSON value to write the deserialized input to + + @throw parse_error.101 in case of an unexpected token + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + + @complexity Linear in the length of the input. The parser is a predictive + LL(1) parser. + + @note A UTF-8 byte order mark is silently ignored. + + @liveexample{The example below shows how a JSON value is constructed by + reading a serialization from a stream.,operator_deserialize} + + @sa parse(std::istream&, const parser_callback_t) for a variant with a + parser callback function to filter values while parsing + + @since version 1.0.0 + */ + friend std::istream& operator>>(std::istream& i, basic_json& j) + { + parser(detail::input_adapter(i)).parse(false, j); + return i; + } + + /// @} + + /////////////////////////// + // convenience functions // + /////////////////////////// + + /*! + @brief return the type as string + + Returns the type name as string to be used in error messages - usually to + indicate that a function was called on a wrong JSON type. + + @return a string representation of a the @a m_type member: + Value type | return value + ----------- | ------------- + null | `"null"` + boolean | `"boolean"` + string | `"string"` + number | `"number"` (for all number types) + object | `"object"` + array | `"array"` + binary | `"binary"` + discarded | `"discarded"` + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @complexity Constant. + + @liveexample{The following code exemplifies `type_name()` for all JSON + types.,type_name} + + @sa @ref type() -- return the type of the JSON value + @sa @ref operator value_t() -- return the type of the JSON value (implicit) + + @since version 1.0.0, public since 2.1.0, `const char*` and `noexcept` + since 3.0.0 + */ + JSON_HEDLEY_RETURNS_NON_NULL + const char* type_name() const noexcept + { + { + switch (m_type) + { + case value_t::null: + return "null"; + case value_t::object: + return "object"; + case value_t::array: + return "array"; + case value_t::string: + return "string"; + case value_t::boolean: + return "boolean"; + case value_t::binary: + return "binary"; + case value_t::discarded: + return "discarded"; + default: + return "number"; + } + } + } + + + private: + ////////////////////// + // member variables // + ////////////////////// + + /// the type of the current element + value_t m_type = value_t::null; + + /// the value of the current element + json_value m_value = {}; + + ////////////////////////////////////////// + // binary serialization/deserialization // + ////////////////////////////////////////// + + /// @name binary serialization/deserialization support + /// @{ + + public: + /*! + @brief create a CBOR serialization of a given JSON value + + Serializes a given JSON value @a j to a byte vector using the CBOR (Concise + Binary Object Representation) serialization format. CBOR is a binary + serialization format which aims to be more compact than JSON itself, yet + more efficient to parse. + + The library uses the following mapping from JSON values types to + CBOR types according to the CBOR specification (RFC 7049): + + JSON value type | value/range | CBOR type | first byte + --------------- | ------------------------------------------ | ---------------------------------- | --------------- + null | `null` | Null | 0xF6 + boolean | `true` | True | 0xF5 + boolean | `false` | False | 0xF4 + number_integer | -9223372036854775808..-2147483649 | Negative integer (8 bytes follow) | 0x3B + number_integer | -2147483648..-32769 | Negative integer (4 bytes follow) | 0x3A + number_integer | -32768..-129 | Negative integer (2 bytes follow) | 0x39 + number_integer | -128..-25 | Negative integer (1 byte follow) | 0x38 + number_integer | -24..-1 | Negative integer | 0x20..0x37 + number_integer | 0..23 | Integer | 0x00..0x17 + number_integer | 24..255 | Unsigned integer (1 byte follow) | 0x18 + number_integer | 256..65535 | Unsigned integer (2 bytes follow) | 0x19 + number_integer | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A + number_integer | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B + number_unsigned | 0..23 | Integer | 0x00..0x17 + number_unsigned | 24..255 | Unsigned integer (1 byte follow) | 0x18 + number_unsigned | 256..65535 | Unsigned integer (2 bytes follow) | 0x19 + number_unsigned | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A + number_unsigned | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B + number_float | *any value representable by a float* | Single-Precision Float | 0xFA + number_float | *any value NOT representable by a float* | Double-Precision Float | 0xFB + string | *length*: 0..23 | UTF-8 string | 0x60..0x77 + string | *length*: 23..255 | UTF-8 string (1 byte follow) | 0x78 + string | *length*: 256..65535 | UTF-8 string (2 bytes follow) | 0x79 + string | *length*: 65536..4294967295 | UTF-8 string (4 bytes follow) | 0x7A + string | *length*: 4294967296..18446744073709551615 | UTF-8 string (8 bytes follow) | 0x7B + array | *size*: 0..23 | array | 0x80..0x97 + array | *size*: 23..255 | array (1 byte follow) | 0x98 + array | *size*: 256..65535 | array (2 bytes follow) | 0x99 + array | *size*: 65536..4294967295 | array (4 bytes follow) | 0x9A + array | *size*: 4294967296..18446744073709551615 | array (8 bytes follow) | 0x9B + object | *size*: 0..23 | map | 0xA0..0xB7 + object | *size*: 23..255 | map (1 byte follow) | 0xB8 + object | *size*: 256..65535 | map (2 bytes follow) | 0xB9 + object | *size*: 65536..4294967295 | map (4 bytes follow) | 0xBA + object | *size*: 4294967296..18446744073709551615 | map (8 bytes follow) | 0xBB + binary | *size*: 0..23 | byte string | 0x40..0x57 + binary | *size*: 23..255 | byte string (1 byte follow) | 0x58 + binary | *size*: 256..65535 | byte string (2 bytes follow) | 0x59 + binary | *size*: 65536..4294967295 | byte string (4 bytes follow) | 0x5A + binary | *size*: 4294967296..18446744073709551615 | byte string (8 bytes follow) | 0x5B + + @note The mapping is **complete** in the sense that any JSON value type + can be converted to a CBOR value. + + @note If NaN or Infinity are stored inside a JSON number, they are + serialized properly. This behavior differs from the @ref dump() + function which serializes NaN or Infinity to `null`. + + @note The following CBOR types are not used in the conversion: + - UTF-8 strings terminated by "break" (0x7F) + - arrays terminated by "break" (0x9F) + - maps terminated by "break" (0xBF) + - byte strings terminated by "break" (0x5F) + - date/time (0xC0..0xC1) + - bignum (0xC2..0xC3) + - decimal fraction (0xC4) + - bigfloat (0xC5) + - expected conversions (0xD5..0xD7) + - simple values (0xE0..0xF3, 0xF8) + - undefined (0xF7) + - half-precision floats (0xF9) + - break (0xFF) + + @param[in] j JSON value to serialize + @return CBOR serialization as byte vector + + @complexity Linear in the size of the JSON value @a j. + + @liveexample{The example shows the serialization of a JSON value to a byte + vector in CBOR format.,to_cbor} + + @sa http://cbor.io + @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the + analogous deserialization + @sa @ref to_msgpack(const basic_json&) for the related MessagePack format + @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the + related UBJSON format + + @since version 2.0.9; compact representation of floating-point numbers + since version 3.8.0 + */ + static std::vector to_cbor(const basic_json& j) + { + std::vector result; + to_cbor(j, result); + return result; + } + + static void to_cbor(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_cbor(j); + } + + static void to_cbor(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_cbor(j); + } + + /*! + @brief create a MessagePack serialization of a given JSON value + + Serializes a given JSON value @a j to a byte vector using the MessagePack + serialization format. MessagePack is a binary serialization format which + aims to be more compact than JSON itself, yet more efficient to parse. + + The library uses the following mapping from JSON values types to + MessagePack types according to the MessagePack specification: + + JSON value type | value/range | MessagePack type | first byte + --------------- | --------------------------------- | ---------------- | ---------- + null | `null` | nil | 0xC0 + boolean | `true` | true | 0xC3 + boolean | `false` | false | 0xC2 + number_integer | -9223372036854775808..-2147483649 | int64 | 0xD3 + number_integer | -2147483648..-32769 | int32 | 0xD2 + number_integer | -32768..-129 | int16 | 0xD1 + number_integer | -128..-33 | int8 | 0xD0 + number_integer | -32..-1 | negative fixint | 0xE0..0xFF + number_integer | 0..127 | positive fixint | 0x00..0x7F + number_integer | 128..255 | uint 8 | 0xCC + number_integer | 256..65535 | uint 16 | 0xCD + number_integer | 65536..4294967295 | uint 32 | 0xCE + number_integer | 4294967296..18446744073709551615 | uint 64 | 0xCF + number_unsigned | 0..127 | positive fixint | 0x00..0x7F + number_unsigned | 128..255 | uint 8 | 0xCC + number_unsigned | 256..65535 | uint 16 | 0xCD + number_unsigned | 65536..4294967295 | uint 32 | 0xCE + number_unsigned | 4294967296..18446744073709551615 | uint 64 | 0xCF + number_float | *any value representable by a float* | float 32 | 0xCA + number_float | *any value NOT representable by a float* | float 64 | 0xCB + string | *length*: 0..31 | fixstr | 0xA0..0xBF + string | *length*: 32..255 | str 8 | 0xD9 + string | *length*: 256..65535 | str 16 | 0xDA + string | *length*: 65536..4294967295 | str 32 | 0xDB + array | *size*: 0..15 | fixarray | 0x90..0x9F + array | *size*: 16..65535 | array 16 | 0xDC + array | *size*: 65536..4294967295 | array 32 | 0xDD + object | *size*: 0..15 | fix map | 0x80..0x8F + object | *size*: 16..65535 | map 16 | 0xDE + object | *size*: 65536..4294967295 | map 32 | 0xDF + binary | *size*: 0..255 | bin 8 | 0xC4 + binary | *size*: 256..65535 | bin 16 | 0xC5 + binary | *size*: 65536..4294967295 | bin 32 | 0xC6 + + @note The mapping is **complete** in the sense that any JSON value type + can be converted to a MessagePack value. + + @note The following values can **not** be converted to a MessagePack value: + - strings with more than 4294967295 bytes + - byte strings with more than 4294967295 bytes + - arrays with more than 4294967295 elements + - objects with more than 4294967295 elements + + @note Any MessagePack output created @ref to_msgpack can be successfully + parsed by @ref from_msgpack. + + @note If NaN or Infinity are stored inside a JSON number, they are + serialized properly. This behavior differs from the @ref dump() + function which serializes NaN or Infinity to `null`. + + @param[in] j JSON value to serialize + @return MessagePack serialization as byte vector + + @complexity Linear in the size of the JSON value @a j. + + @liveexample{The example shows the serialization of a JSON value to a byte + vector in MessagePack format.,to_msgpack} + + @sa http://msgpack.org + @sa @ref from_msgpack for the analogous deserialization + @sa @ref to_cbor(const basic_json& for the related CBOR format + @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the + related UBJSON format + + @since version 2.0.9 + */ + static std::vector to_msgpack(const basic_json& j) + { + std::vector result; + to_msgpack(j, result); + return result; + } + + static void to_msgpack(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_msgpack(j); + } + + static void to_msgpack(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_msgpack(j); + } + + /*! + @brief create a UBJSON serialization of a given JSON value + + Serializes a given JSON value @a j to a byte vector using the UBJSON + (Universal Binary JSON) serialization format. UBJSON aims to be more compact + than JSON itself, yet more efficient to parse. + + The library uses the following mapping from JSON values types to + UBJSON types according to the UBJSON specification: + + JSON value type | value/range | UBJSON type | marker + --------------- | --------------------------------- | ----------- | ------ + null | `null` | null | `Z` + boolean | `true` | true | `T` + boolean | `false` | false | `F` + number_integer | -9223372036854775808..-2147483649 | int64 | `L` + number_integer | -2147483648..-32769 | int32 | `l` + number_integer | -32768..-129 | int16 | `I` + number_integer | -128..127 | int8 | `i` + number_integer | 128..255 | uint8 | `U` + number_integer | 256..32767 | int16 | `I` + number_integer | 32768..2147483647 | int32 | `l` + number_integer | 2147483648..9223372036854775807 | int64 | `L` + number_unsigned | 0..127 | int8 | `i` + number_unsigned | 128..255 | uint8 | `U` + number_unsigned | 256..32767 | int16 | `I` + number_unsigned | 32768..2147483647 | int32 | `l` + number_unsigned | 2147483648..9223372036854775807 | int64 | `L` + number_unsigned | 2147483649..18446744073709551615 | high-precision | `H` + number_float | *any value* | float64 | `D` + string | *with shortest length indicator* | string | `S` + array | *see notes on optimized format* | array | `[` + object | *see notes on optimized format* | map | `{` + + @note The mapping is **complete** in the sense that any JSON value type + can be converted to a UBJSON value. + + @note The following values can **not** be converted to a UBJSON value: + - strings with more than 9223372036854775807 bytes (theoretical) + + @note The following markers are not used in the conversion: + - `Z`: no-op values are not created. + - `C`: single-byte strings are serialized with `S` markers. + + @note Any UBJSON output created @ref to_ubjson can be successfully parsed + by @ref from_ubjson. + + @note If NaN or Infinity are stored inside a JSON number, they are + serialized properly. This behavior differs from the @ref dump() + function which serializes NaN or Infinity to `null`. + + @note The optimized formats for containers are supported: Parameter + @a use_size adds size information to the beginning of a container and + removes the closing marker. Parameter @a use_type further checks + whether all elements of a container have the same type and adds the + type marker to the beginning of the container. The @a use_type + parameter must only be used together with @a use_size = true. Note + that @a use_size = true alone may result in larger representations - + the benefit of this parameter is that the receiving side is + immediately informed on the number of elements of the container. + + @note If the JSON data contains the binary type, the value stored is a list + of integers, as suggested by the UBJSON documentation. In particular, + this means that serialization and the deserialization of a JSON + containing binary values into UBJSON and back will result in a + different JSON object. + + @param[in] j JSON value to serialize + @param[in] use_size whether to add size annotations to container types + @param[in] use_type whether to add type annotations to container types + (must be combined with @a use_size = true) + @return UBJSON serialization as byte vector + + @complexity Linear in the size of the JSON value @a j. + + @liveexample{The example shows the serialization of a JSON value to a byte + vector in UBJSON format.,to_ubjson} + + @sa http://ubjson.org + @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the + analogous deserialization + @sa @ref to_cbor(const basic_json& for the related CBOR format + @sa @ref to_msgpack(const basic_json&) for the related MessagePack format + + @since version 3.1.0 + */ + static std::vector to_ubjson(const basic_json& j, + const bool use_size = false, + const bool use_type = false) + { + std::vector result; + to_ubjson(j, result, use_size, use_type); + return result; + } + + static void to_ubjson(const basic_json& j, detail::output_adapter o, + const bool use_size = false, const bool use_type = false) + { + binary_writer(o).write_ubjson(j, use_size, use_type); + } + + static void to_ubjson(const basic_json& j, detail::output_adapter o, + const bool use_size = false, const bool use_type = false) + { + binary_writer(o).write_ubjson(j, use_size, use_type); + } + + + /*! + @brief Serializes the given JSON object `j` to BSON and returns a vector + containing the corresponding BSON-representation. + + BSON (Binary JSON) is a binary format in which zero or more ordered key/value pairs are + stored as a single entity (a so-called document). + + The library uses the following mapping from JSON values types to BSON types: + + JSON value type | value/range | BSON type | marker + --------------- | --------------------------------- | ----------- | ------ + null | `null` | null | 0x0A + boolean | `true`, `false` | boolean | 0x08 + number_integer | -9223372036854775808..-2147483649 | int64 | 0x12 + number_integer | -2147483648..2147483647 | int32 | 0x10 + number_integer | 2147483648..9223372036854775807 | int64 | 0x12 + number_unsigned | 0..2147483647 | int32 | 0x10 + number_unsigned | 2147483648..9223372036854775807 | int64 | 0x12 + number_unsigned | 9223372036854775808..18446744073709551615| -- | -- + number_float | *any value* | double | 0x01 + string | *any value* | string | 0x02 + array | *any value* | document | 0x04 + object | *any value* | document | 0x03 + binary | *any value* | binary | 0x05 + + @warning The mapping is **incomplete**, since only JSON-objects (and things + contained therein) can be serialized to BSON. + Also, integers larger than 9223372036854775807 cannot be serialized to BSON, + and the keys may not contain U+0000, since they are serialized a + zero-terminated c-strings. + + @throw out_of_range.407 if `j.is_number_unsigned() && j.get() > 9223372036854775807` + @throw out_of_range.409 if a key in `j` contains a NULL (U+0000) + @throw type_error.317 if `!j.is_object()` + + @pre The input `j` is required to be an object: `j.is_object() == true`. + + @note Any BSON output created via @ref to_bson can be successfully parsed + by @ref from_bson. + + @param[in] j JSON value to serialize + @return BSON serialization as byte vector + + @complexity Linear in the size of the JSON value @a j. + + @liveexample{The example shows the serialization of a JSON value to a byte + vector in BSON format.,to_bson} + + @sa http://bsonspec.org/spec.html + @sa @ref from_bson(detail::input_adapter&&, const bool strict) for the + analogous deserialization + @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the + related UBJSON format + @sa @ref to_cbor(const basic_json&) for the related CBOR format + @sa @ref to_msgpack(const basic_json&) for the related MessagePack format + */ + static std::vector to_bson(const basic_json& j) + { + std::vector result; + to_bson(j, result); + return result; + } + + /*! + @brief Serializes the given JSON object `j` to BSON and forwards the + corresponding BSON-representation to the given output_adapter `o`. + @param j The JSON object to convert to BSON. + @param o The output adapter that receives the binary BSON representation. + @pre The input `j` shall be an object: `j.is_object() == true` + @sa @ref to_bson(const basic_json&) + */ + static void to_bson(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_bson(j); + } + + /*! + @copydoc to_bson(const basic_json&, detail::output_adapter) + */ + static void to_bson(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_bson(j); + } + + + /*! + @brief create a JSON value from an input in CBOR format + + Deserializes a given input @a i to a JSON value using the CBOR (Concise + Binary Object Representation) serialization format. + + The library maps CBOR types to JSON value types as follows: + + CBOR type | JSON value type | first byte + ---------------------- | --------------- | ---------- + Integer | number_unsigned | 0x00..0x17 + Unsigned integer | number_unsigned | 0x18 + Unsigned integer | number_unsigned | 0x19 + Unsigned integer | number_unsigned | 0x1A + Unsigned integer | number_unsigned | 0x1B + Negative integer | number_integer | 0x20..0x37 + Negative integer | number_integer | 0x38 + Negative integer | number_integer | 0x39 + Negative integer | number_integer | 0x3A + Negative integer | number_integer | 0x3B + Byte string | binary | 0x40..0x57 + Byte string | binary | 0x58 + Byte string | binary | 0x59 + Byte string | binary | 0x5A + Byte string | binary | 0x5B + UTF-8 string | string | 0x60..0x77 + UTF-8 string | string | 0x78 + UTF-8 string | string | 0x79 + UTF-8 string | string | 0x7A + UTF-8 string | string | 0x7B + UTF-8 string | string | 0x7F + array | array | 0x80..0x97 + array | array | 0x98 + array | array | 0x99 + array | array | 0x9A + array | array | 0x9B + array | array | 0x9F + map | object | 0xA0..0xB7 + map | object | 0xB8 + map | object | 0xB9 + map | object | 0xBA + map | object | 0xBB + map | object | 0xBF + False | `false` | 0xF4 + True | `true` | 0xF5 + Null | `null` | 0xF6 + Half-Precision Float | number_float | 0xF9 + Single-Precision Float | number_float | 0xFA + Double-Precision Float | number_float | 0xFB + + @warning The mapping is **incomplete** in the sense that not all CBOR + types can be converted to a JSON value. The following CBOR types + are not supported and will yield parse errors (parse_error.112): + - date/time (0xC0..0xC1) + - bignum (0xC2..0xC3) + - decimal fraction (0xC4) + - bigfloat (0xC5) + - expected conversions (0xD5..0xD7) + - simple values (0xE0..0xF3, 0xF8) + - undefined (0xF7) + + @warning CBOR allows map keys of any type, whereas JSON only allows + strings as keys in object values. Therefore, CBOR maps with keys + other than UTF-8 strings are rejected (parse_error.113). + + @note Any CBOR output created @ref to_cbor can be successfully parsed by + @ref from_cbor. + + @param[in] i an input in CBOR format convertible to an input adapter + @param[in] strict whether to expect the input to be consumed until EOF + (true by default) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + @param[in] tag_handler how to treat CBOR tags (optional, error by default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.110 if the given input ends prematurely or the end of + file was not reached when @a strict was set to true + @throw parse_error.112 if unsupported features from CBOR were + used in the given input @a v or if the input is not valid CBOR + @throw parse_error.113 if a string was expected as map key, but not found + + @complexity Linear in the size of the input @a i. + + @liveexample{The example shows the deserialization of a byte vector in CBOR + format to a JSON value.,from_cbor} + + @sa http://cbor.io + @sa @ref to_cbor(const basic_json&) for the analogous serialization + @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for the + related MessagePack format + @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the + related UBJSON format + + @since version 2.0.9; parameter @a start_index since 2.1.1; changed to + consume input adapters, removed start_index parameter, and added + @a strict parameter since 3.0.0; added @a allow_exceptions parameter + since 3.2.0; added @a tag_handler parameter since 3.9.0. + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_cbor(InputType&& i, + const bool strict = true, + const bool allow_exceptions = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::forward(i)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @copydoc from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_cbor(IteratorType first, IteratorType last, + const bool strict = true, + const bool allow_exceptions = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::move(first), std::move(last)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); + return res ? result : basic_json(value_t::discarded); + } + + template + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_cbor(ptr, ptr + len)) + static basic_json from_cbor(const T* ptr, std::size_t len, + const bool strict = true, + const bool allow_exceptions = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + return from_cbor(ptr, ptr + len, strict, allow_exceptions, tag_handler); + } + + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_cbor(ptr, ptr + len)) + static basic_json from_cbor(detail::span_input_adapter&& i, + const bool strict = true, + const bool allow_exceptions = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = i.get(); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @brief create a JSON value from an input in MessagePack format + + Deserializes a given input @a i to a JSON value using the MessagePack + serialization format. + + The library maps MessagePack types to JSON value types as follows: + + MessagePack type | JSON value type | first byte + ---------------- | --------------- | ---------- + positive fixint | number_unsigned | 0x00..0x7F + fixmap | object | 0x80..0x8F + fixarray | array | 0x90..0x9F + fixstr | string | 0xA0..0xBF + nil | `null` | 0xC0 + false | `false` | 0xC2 + true | `true` | 0xC3 + float 32 | number_float | 0xCA + float 64 | number_float | 0xCB + uint 8 | number_unsigned | 0xCC + uint 16 | number_unsigned | 0xCD + uint 32 | number_unsigned | 0xCE + uint 64 | number_unsigned | 0xCF + int 8 | number_integer | 0xD0 + int 16 | number_integer | 0xD1 + int 32 | number_integer | 0xD2 + int 64 | number_integer | 0xD3 + str 8 | string | 0xD9 + str 16 | string | 0xDA + str 32 | string | 0xDB + array 16 | array | 0xDC + array 32 | array | 0xDD + map 16 | object | 0xDE + map 32 | object | 0xDF + bin 8 | binary | 0xC4 + bin 16 | binary | 0xC5 + bin 32 | binary | 0xC6 + ext 8 | binary | 0xC7 + ext 16 | binary | 0xC8 + ext 32 | binary | 0xC9 + fixext 1 | binary | 0xD4 + fixext 2 | binary | 0xD5 + fixext 4 | binary | 0xD6 + fixext 8 | binary | 0xD7 + fixext 16 | binary | 0xD8 + negative fixint | number_integer | 0xE0-0xFF + + @note Any MessagePack output created @ref to_msgpack can be successfully + parsed by @ref from_msgpack. + + @param[in] i an input in MessagePack format convertible to an input + adapter + @param[in] strict whether to expect the input to be consumed until EOF + (true by default) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.110 if the given input ends prematurely or the end of + file was not reached when @a strict was set to true + @throw parse_error.112 if unsupported features from MessagePack were + used in the given input @a i or if the input is not valid MessagePack + @throw parse_error.113 if a string was expected as map key, but not found + + @complexity Linear in the size of the input @a i. + + @liveexample{The example shows the deserialization of a byte vector in + MessagePack format to a JSON value.,from_msgpack} + + @sa http://msgpack.org + @sa @ref to_msgpack(const basic_json&) for the analogous serialization + @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the + related CBOR format + @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for + the related UBJSON format + @sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for + the related BSON format + + @since version 2.0.9; parameter @a start_index since 2.1.1; changed to + consume input adapters, removed start_index parameter, and added + @a strict parameter since 3.0.0; added @a allow_exceptions parameter + since 3.2.0 + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_msgpack(InputType&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::forward(i)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @copydoc from_msgpack(detail::input_adapter&&, const bool, const bool) + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_msgpack(IteratorType first, IteratorType last, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::move(first), std::move(last)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + + template + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_msgpack(ptr, ptr + len)) + static basic_json from_msgpack(const T* ptr, std::size_t len, + const bool strict = true, + const bool allow_exceptions = true) + { + return from_msgpack(ptr, ptr + len, strict, allow_exceptions); + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_msgpack(ptr, ptr + len)) + static basic_json from_msgpack(detail::span_input_adapter&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = i.get(); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + + /*! + @brief create a JSON value from an input in UBJSON format + + Deserializes a given input @a i to a JSON value using the UBJSON (Universal + Binary JSON) serialization format. + + The library maps UBJSON types to JSON value types as follows: + + UBJSON type | JSON value type | marker + ----------- | --------------------------------------- | ------ + no-op | *no value, next value is read* | `N` + null | `null` | `Z` + false | `false` | `F` + true | `true` | `T` + float32 | number_float | `d` + float64 | number_float | `D` + uint8 | number_unsigned | `U` + int8 | number_integer | `i` + int16 | number_integer | `I` + int32 | number_integer | `l` + int64 | number_integer | `L` + high-precision number | number_integer, number_unsigned, or number_float - depends on number string | 'H' + string | string | `S` + char | string | `C` + array | array (optimized values are supported) | `[` + object | object (optimized values are supported) | `{` + + @note The mapping is **complete** in the sense that any UBJSON value can + be converted to a JSON value. + + @param[in] i an input in UBJSON format convertible to an input adapter + @param[in] strict whether to expect the input to be consumed until EOF + (true by default) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.110 if the given input ends prematurely or the end of + file was not reached when @a strict was set to true + @throw parse_error.112 if a parse error occurs + @throw parse_error.113 if a string could not be parsed successfully + + @complexity Linear in the size of the input @a i. + + @liveexample{The example shows the deserialization of a byte vector in + UBJSON format to a JSON value.,from_ubjson} + + @sa http://ubjson.org + @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the + analogous serialization + @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the + related CBOR format + @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for + the related MessagePack format + @sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for + the related BSON format + + @since version 3.1.0; added @a allow_exceptions parameter since 3.2.0 + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_ubjson(InputType&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::forward(i)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @copydoc from_ubjson(detail::input_adapter&&, const bool, const bool) + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_ubjson(IteratorType first, IteratorType last, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::move(first), std::move(last)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + template + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_ubjson(ptr, ptr + len)) + static basic_json from_ubjson(const T* ptr, std::size_t len, + const bool strict = true, + const bool allow_exceptions = true) + { + return from_ubjson(ptr, ptr + len, strict, allow_exceptions); + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_ubjson(ptr, ptr + len)) + static basic_json from_ubjson(detail::span_input_adapter&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = i.get(); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + + /*! + @brief Create a JSON value from an input in BSON format + + Deserializes a given input @a i to a JSON value using the BSON (Binary JSON) + serialization format. + + The library maps BSON record types to JSON value types as follows: + + BSON type | BSON marker byte | JSON value type + --------------- | ---------------- | --------------------------- + double | 0x01 | number_float + string | 0x02 | string + document | 0x03 | object + array | 0x04 | array + binary | 0x05 | still unsupported + undefined | 0x06 | still unsupported + ObjectId | 0x07 | still unsupported + boolean | 0x08 | boolean + UTC Date-Time | 0x09 | still unsupported + null | 0x0A | null + Regular Expr. | 0x0B | still unsupported + DB Pointer | 0x0C | still unsupported + JavaScript Code | 0x0D | still unsupported + Symbol | 0x0E | still unsupported + JavaScript Code | 0x0F | still unsupported + int32 | 0x10 | number_integer + Timestamp | 0x11 | still unsupported + 128-bit decimal float | 0x13 | still unsupported + Max Key | 0x7F | still unsupported + Min Key | 0xFF | still unsupported + + @warning The mapping is **incomplete**. The unsupported mappings + are indicated in the table above. + + @param[in] i an input in BSON format convertible to an input adapter + @param[in] strict whether to expect the input to be consumed until EOF + (true by default) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.114 if an unsupported BSON record type is encountered + + @complexity Linear in the size of the input @a i. + + @liveexample{The example shows the deserialization of a byte vector in + BSON format to a JSON value.,from_bson} + + @sa http://bsonspec.org/spec.html + @sa @ref to_bson(const basic_json&) for the analogous serialization + @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the + related CBOR format + @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for + the related MessagePack format + @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the + related UBJSON format + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_bson(InputType&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::forward(i)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @copydoc from_bson(detail::input_adapter&&, const bool, const bool) + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_bson(IteratorType first, IteratorType last, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::move(first), std::move(last)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + template + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) + static basic_json from_bson(const T* ptr, std::size_t len, + const bool strict = true, + const bool allow_exceptions = true) + { + return from_bson(ptr, ptr + len, strict, allow_exceptions); + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) + static basic_json from_bson(detail::span_input_adapter&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = i.get(); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + /// @} + + ////////////////////////// + // JSON Pointer support // + ////////////////////////// + + /// @name JSON Pointer functions + /// @{ + + /*! + @brief access specified element via JSON Pointer + + Uses a JSON pointer to retrieve a reference to the respective JSON value. + No bound checking is performed. Similar to @ref operator[](const typename + object_t::key_type&), `null` values are created in arrays and objects if + necessary. + + In particular: + - If the JSON pointer points to an object key that does not exist, it + is created an filled with a `null` value before a reference to it + is returned. + - If the JSON pointer points to an array index that does not exist, it + is created an filled with a `null` value before a reference to it + is returned. All indices between the current maximum and the given + index are also filled with `null`. + - The special value `-` is treated as a synonym for the index past the + end. + + @param[in] ptr a JSON pointer + + @return reference to the element pointed to by @a ptr + + @complexity Constant. + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.404 if the JSON pointer can not be resolved + + @liveexample{The behavior is shown in the example.,operatorjson_pointer} + + @since version 2.0.0 + */ + reference operator[](const json_pointer& ptr) + { + return ptr.get_unchecked(this); + } + + /*! + @brief access specified element via JSON Pointer + + Uses a JSON pointer to retrieve a reference to the respective JSON value. + No bound checking is performed. The function does not change the JSON + value; no `null` values are created. In particular, the special value + `-` yields an exception. + + @param[in] ptr JSON pointer to the desired element + + @return const reference to the element pointed to by @a ptr + + @complexity Constant. + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.402 if the array index '-' is used + @throw out_of_range.404 if the JSON pointer can not be resolved + + @liveexample{The behavior is shown in the example.,operatorjson_pointer_const} + + @since version 2.0.0 + */ + const_reference operator[](const json_pointer& ptr) const + { + return ptr.get_unchecked(this); + } + + /*! + @brief access specified element via JSON Pointer + + Returns a reference to the element at with specified JSON pointer @a ptr, + with bounds checking. + + @param[in] ptr JSON pointer to the desired element + + @return reference to the element pointed to by @a ptr + + @throw parse_error.106 if an array index in the passed JSON pointer @a ptr + begins with '0'. See example below. + + @throw parse_error.109 if an array index in the passed JSON pointer @a ptr + is not a number. See example below. + + @throw out_of_range.401 if an array index in the passed JSON pointer @a ptr + is out of range. See example below. + + @throw out_of_range.402 if the array index '-' is used in the passed JSON + pointer @a ptr. As `at` provides checked access (and no elements are + implicitly inserted), the index '-' is always invalid. See example below. + + @throw out_of_range.403 if the JSON pointer describes a key of an object + which cannot be found. See example below. + + @throw out_of_range.404 if the JSON pointer @a ptr can not be resolved. + See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 2.0.0 + + @liveexample{The behavior is shown in the example.,at_json_pointer} + */ + reference at(const json_pointer& ptr) + { + return ptr.get_checked(this); + } + + /*! + @brief access specified element via JSON Pointer + + Returns a const reference to the element at with specified JSON pointer @a + ptr, with bounds checking. + + @param[in] ptr JSON pointer to the desired element + + @return reference to the element pointed to by @a ptr + + @throw parse_error.106 if an array index in the passed JSON pointer @a ptr + begins with '0'. See example below. + + @throw parse_error.109 if an array index in the passed JSON pointer @a ptr + is not a number. See example below. + + @throw out_of_range.401 if an array index in the passed JSON pointer @a ptr + is out of range. See example below. + + @throw out_of_range.402 if the array index '-' is used in the passed JSON + pointer @a ptr. As `at` provides checked access (and no elements are + implicitly inserted), the index '-' is always invalid. See example below. + + @throw out_of_range.403 if the JSON pointer describes a key of an object + which cannot be found. See example below. + + @throw out_of_range.404 if the JSON pointer @a ptr can not be resolved. + See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 2.0.0 + + @liveexample{The behavior is shown in the example.,at_json_pointer_const} + */ + const_reference at(const json_pointer& ptr) const + { + return ptr.get_checked(this); + } + + /*! + @brief return flattened JSON value + + The function creates a JSON object whose keys are JSON pointers (see [RFC + 6901](https://tools.ietf.org/html/rfc6901)) and whose values are all + primitive. The original JSON value can be restored using the @ref + unflatten() function. + + @return an object that maps JSON pointers to primitive values + + @note Empty objects and arrays are flattened to `null` and will not be + reconstructed correctly by the @ref unflatten() function. + + @complexity Linear in the size the JSON value. + + @liveexample{The following code shows how a JSON object is flattened to an + object whose keys consist of JSON pointers.,flatten} + + @sa @ref unflatten() for the reverse function + + @since version 2.0.0 + */ + basic_json flatten() const + { + basic_json result(value_t::object); + json_pointer::flatten("", *this, result); + return result; + } + + /*! + @brief unflatten a previously flattened JSON value + + The function restores the arbitrary nesting of a JSON value that has been + flattened before using the @ref flatten() function. The JSON value must + meet certain constraints: + 1. The value must be an object. + 2. The keys must be JSON pointers (see + [RFC 6901](https://tools.ietf.org/html/rfc6901)) + 3. The mapped values must be primitive JSON types. + + @return the original JSON from a flattened version + + @note Empty objects and arrays are flattened by @ref flatten() to `null` + values and can not unflattened to their original type. Apart from + this example, for a JSON value `j`, the following is always true: + `j == j.flatten().unflatten()`. + + @complexity Linear in the size the JSON value. + + @throw type_error.314 if value is not an object + @throw type_error.315 if object values are not primitive + + @liveexample{The following code shows how a flattened JSON object is + unflattened into the original nested JSON object.,unflatten} + + @sa @ref flatten() for the reverse function + + @since version 2.0.0 + */ + basic_json unflatten() const + { + return json_pointer::unflatten(*this); + } + + /// @} + + ////////////////////////// + // JSON Patch functions // + ////////////////////////// + + /// @name JSON Patch functions + /// @{ + + /*! + @brief applies a JSON patch + + [JSON Patch](http://jsonpatch.com) defines a JSON document structure for + expressing a sequence of operations to apply to a JSON) document. With + this function, a JSON Patch is applied to the current JSON value by + executing all operations from the patch. + + @param[in] json_patch JSON patch document + @return patched document + + @note The application of a patch is atomic: Either all operations succeed + and the patched document is returned or an exception is thrown. In + any case, the original value is not changed: the patch is applied + to a copy of the value. + + @throw parse_error.104 if the JSON patch does not consist of an array of + objects + + @throw parse_error.105 if the JSON patch is malformed (e.g., mandatory + attributes are missing); example: `"operation add must have member path"` + + @throw out_of_range.401 if an array index is out of range. + + @throw out_of_range.403 if a JSON pointer inside the patch could not be + resolved successfully in the current JSON value; example: `"key baz not + found"` + + @throw out_of_range.405 if JSON pointer has no parent ("add", "remove", + "move") + + @throw other_error.501 if "test" operation was unsuccessful + + @complexity Linear in the size of the JSON value and the length of the + JSON patch. As usually only a fraction of the JSON value is affected by + the patch, the complexity can usually be neglected. + + @liveexample{The following code shows how a JSON patch is applied to a + value.,patch} + + @sa @ref diff -- create a JSON patch by comparing two JSON values + + @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902) + @sa [RFC 6901 (JSON Pointer)](https://tools.ietf.org/html/rfc6901) + + @since version 2.0.0 + */ + basic_json patch(const basic_json& json_patch) const + { + // make a working copy to apply the patch to + basic_json result = *this; + + // the valid JSON Patch operations + enum class patch_operations {add, remove, replace, move, copy, test, invalid}; + + const auto get_op = [](const std::string & op) + { + if (op == "add") + { + return patch_operations::add; + } + if (op == "remove") + { + return patch_operations::remove; + } + if (op == "replace") + { + return patch_operations::replace; + } + if (op == "move") + { + return patch_operations::move; + } + if (op == "copy") + { + return patch_operations::copy; + } + if (op == "test") + { + return patch_operations::test; + } + + return patch_operations::invalid; + }; + + // wrapper for "add" operation; add value at ptr + const auto operation_add = [&result](json_pointer & ptr, basic_json val) + { + // adding to the root of the target document means replacing it + if (ptr.empty()) + { + result = val; + return; + } + + // make sure the top element of the pointer exists + json_pointer top_pointer = ptr.top(); + if (top_pointer != ptr) + { + result.at(top_pointer); + } + + // get reference to parent of JSON pointer ptr + const auto last_path = ptr.back(); + ptr.pop_back(); + basic_json& parent = result[ptr]; + + switch (parent.m_type) + { + case value_t::null: + case value_t::object: + { + // use operator[] to add value + parent[last_path] = val; + break; + } + + case value_t::array: + { + if (last_path == "-") + { + // special case: append to back + parent.push_back(val); + } + else + { + const auto idx = json_pointer::array_index(last_path); + if (JSON_HEDLEY_UNLIKELY(idx > parent.size())) + { + // avoid undefined behavior + JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); + } + + // default case: insert add offset + parent.insert(parent.begin() + static_cast(idx), val); + } + break; + } + + // if there exists a parent it cannot be primitive + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + }; + + // wrapper for "remove" operation; remove value at ptr + const auto operation_remove = [&result](json_pointer & ptr) + { + // get reference to parent of JSON pointer ptr + const auto last_path = ptr.back(); + ptr.pop_back(); + basic_json& parent = result.at(ptr); + + // remove child + if (parent.is_object()) + { + // perform range check + auto it = parent.find(last_path); + if (JSON_HEDLEY_LIKELY(it != parent.end())) + { + parent.erase(it); + } + else + { + JSON_THROW(out_of_range::create(403, "key '" + last_path + "' not found")); + } + } + else if (parent.is_array()) + { + // note erase performs range check + parent.erase(json_pointer::array_index(last_path)); + } + }; + + // type check: top level value must be an array + if (JSON_HEDLEY_UNLIKELY(!json_patch.is_array())) + { + JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects")); + } + + // iterate and apply the operations + for (const auto& val : json_patch) + { + // wrapper to get a value for an operation + const auto get_value = [&val](const std::string & op, + const std::string & member, + bool string_type) -> basic_json & + { + // find value + auto it = val.m_value.object->find(member); + + // context-sensitive error message + const auto error_msg = (op == "op") ? "operation" : "operation '" + op + "'"; + + // check if desired value is present + if (JSON_HEDLEY_UNLIKELY(it == val.m_value.object->end())) + { + JSON_THROW(parse_error::create(105, 0, error_msg + " must have member '" + member + "'")); + } + + // check if result is of type string + if (JSON_HEDLEY_UNLIKELY(string_type && !it->second.is_string())) + { + JSON_THROW(parse_error::create(105, 0, error_msg + " must have string member '" + member + "'")); + } + + // no error: return value + return it->second; + }; + + // type check: every element of the array must be an object + if (JSON_HEDLEY_UNLIKELY(!val.is_object())) + { + JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects")); + } + + // collect mandatory members + const auto op = get_value("op", "op", true).template get(); + const auto path = get_value(op, "path", true).template get(); + json_pointer ptr(path); + + switch (get_op(op)) + { + case patch_operations::add: + { + operation_add(ptr, get_value("add", "value", false)); + break; + } + + case patch_operations::remove: + { + operation_remove(ptr); + break; + } + + case patch_operations::replace: + { + // the "path" location must exist - use at() + result.at(ptr) = get_value("replace", "value", false); + break; + } + + case patch_operations::move: + { + const auto from_path = get_value("move", "from", true).template get(); + json_pointer from_ptr(from_path); + + // the "from" location must exist - use at() + basic_json v = result.at(from_ptr); + + // The move operation is functionally identical to a + // "remove" operation on the "from" location, followed + // immediately by an "add" operation at the target + // location with the value that was just removed. + operation_remove(from_ptr); + operation_add(ptr, v); + break; + } + + case patch_operations::copy: + { + const auto from_path = get_value("copy", "from", true).template get(); + const json_pointer from_ptr(from_path); + + // the "from" location must exist - use at() + basic_json v = result.at(from_ptr); + + // The copy is functionally identical to an "add" + // operation at the target location using the value + // specified in the "from" member. + operation_add(ptr, v); + break; + } + + case patch_operations::test: + { + bool success = false; + JSON_TRY + { + // check if "value" matches the one at "path" + // the "path" location must exist - use at() + success = (result.at(ptr) == get_value("test", "value", false)); + } + JSON_INTERNAL_CATCH (out_of_range&) + { + // ignore out of range errors: success remains false + } + + // throw an exception if test fails + if (JSON_HEDLEY_UNLIKELY(!success)) + { + JSON_THROW(other_error::create(501, "unsuccessful: " + val.dump())); + } + + break; + } + + default: + { + // op must be "add", "remove", "replace", "move", "copy", or + // "test" + JSON_THROW(parse_error::create(105, 0, "operation value '" + op + "' is invalid")); + } + } + } + + return result; + } + + /*! + @brief creates a diff as a JSON patch + + Creates a [JSON Patch](http://jsonpatch.com) so that value @a source can + be changed into the value @a target by calling @ref patch function. + + @invariant For two JSON values @a source and @a target, the following code + yields always `true`: + @code {.cpp} + source.patch(diff(source, target)) == target; + @endcode + + @note Currently, only `remove`, `add`, and `replace` operations are + generated. + + @param[in] source JSON value to compare from + @param[in] target JSON value to compare against + @param[in] path helper value to create JSON pointers + + @return a JSON patch to convert the @a source to @a target + + @complexity Linear in the lengths of @a source and @a target. + + @liveexample{The following code shows how a JSON patch is created as a + diff for two JSON values.,diff} + + @sa @ref patch -- apply a JSON patch + @sa @ref merge_patch -- apply a JSON Merge Patch + + @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902) + + @since version 2.0.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json diff(const basic_json& source, const basic_json& target, + const std::string& path = "") + { + // the patch + basic_json result(value_t::array); + + // if the values are the same, return empty patch + if (source == target) + { + return result; + } + + if (source.type() != target.type()) + { + // different types: replace value + result.push_back( + { + {"op", "replace"}, {"path", path}, {"value", target} + }); + return result; + } + + switch (source.type()) + { + case value_t::array: + { + // first pass: traverse common elements + std::size_t i = 0; + while (i < source.size() && i < target.size()) + { + // recursive call to compare array values at index i + auto temp_diff = diff(source[i], target[i], path + "/" + std::to_string(i)); + result.insert(result.end(), temp_diff.begin(), temp_diff.end()); + ++i; + } + + // i now reached the end of at least one array + // in a second pass, traverse the remaining elements + + // remove my remaining elements + const auto end_index = static_cast(result.size()); + while (i < source.size()) + { + // add operations in reverse order to avoid invalid + // indices + result.insert(result.begin() + end_index, object( + { + {"op", "remove"}, + {"path", path + "/" + std::to_string(i)} + })); + ++i; + } + + // add other remaining elements + while (i < target.size()) + { + result.push_back( + { + {"op", "add"}, + {"path", path + "/-"}, + {"value", target[i]} + }); + ++i; + } + + break; + } + + case value_t::object: + { + // first pass: traverse this object's elements + for (auto it = source.cbegin(); it != source.cend(); ++it) + { + // escape the key name to be used in a JSON patch + const auto key = json_pointer::escape(it.key()); + + if (target.find(it.key()) != target.end()) + { + // recursive call to compare object values at key it + auto temp_diff = diff(it.value(), target[it.key()], path + "/" + key); + result.insert(result.end(), temp_diff.begin(), temp_diff.end()); + } + else + { + // found a key that is not in o -> remove it + result.push_back(object( + { + {"op", "remove"}, {"path", path + "/" + key} + })); + } + } + + // second pass: traverse other object's elements + for (auto it = target.cbegin(); it != target.cend(); ++it) + { + if (source.find(it.key()) == source.end()) + { + // found a key that is not in this -> add it + const auto key = json_pointer::escape(it.key()); + result.push_back( + { + {"op", "add"}, {"path", path + "/" + key}, + {"value", it.value()} + }); + } + } + + break; + } + + default: + { + // both primitive type: replace value + result.push_back( + { + {"op", "replace"}, {"path", path}, {"value", target} + }); + break; + } + } + + return result; + } + + /// @} + + //////////////////////////////// + // JSON Merge Patch functions // + //////////////////////////////// + + /// @name JSON Merge Patch functions + /// @{ + + /*! + @brief applies a JSON Merge Patch + + The merge patch format is primarily intended for use with the HTTP PATCH + method as a means of describing a set of modifications to a target + resource's content. This function applies a merge patch to the current + JSON value. + + The function implements the following algorithm from Section 2 of + [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396): + + ``` + define MergePatch(Target, Patch): + if Patch is an Object: + if Target is not an Object: + Target = {} // Ignore the contents and set it to an empty Object + for each Name/Value pair in Patch: + if Value is null: + if Name exists in Target: + remove the Name/Value pair from Target + else: + Target[Name] = MergePatch(Target[Name], Value) + return Target + else: + return Patch + ``` + + Thereby, `Target` is the current object; that is, the patch is applied to + the current value. + + @param[in] apply_patch the patch to apply + + @complexity Linear in the lengths of @a patch. + + @liveexample{The following code shows how a JSON Merge Patch is applied to + a JSON document.,merge_patch} + + @sa @ref patch -- apply a JSON patch + @sa [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396) + + @since version 3.0.0 + */ + void merge_patch(const basic_json& apply_patch) + { + if (apply_patch.is_object()) + { + if (!is_object()) + { + *this = object(); + } + for (auto it = apply_patch.begin(); it != apply_patch.end(); ++it) + { + if (it.value().is_null()) + { + erase(it.key()); + } + else + { + operator[](it.key()).merge_patch(it.value()); + } + } + } + else + { + *this = apply_patch; + } + } + + /// @} +}; + +/*! +@brief user-defined to_string function for JSON values + +This function implements a user-defined to_string for JSON objects. + +@param[in] j a JSON object +@return a std::string object +*/ + +NLOHMANN_BASIC_JSON_TPL_DECLARATION +std::string to_string(const NLOHMANN_BASIC_JSON_TPL& j) +{ + return j.dump(); +} +} // namespace nlohmann + +/////////////////////// +// nonmember support // +/////////////////////// + +// specialization of std::swap, and std::hash +namespace std +{ + +/// hash value for JSON objects +template<> +struct hash +{ + /*! + @brief return a hash value for a JSON object + + @since version 1.0.0 + */ + std::size_t operator()(const nlohmann::json& j) const + { + return nlohmann::detail::hash(j); + } +}; + +/// specialization for std::less +/// @note: do not remove the space after '<', +/// see https://github.com/nlohmann/json/pull/679 +template<> +struct less<::nlohmann::detail::value_t> +{ + /*! + @brief compare two value_t enum values + @since version 3.0.0 + */ + bool operator()(nlohmann::detail::value_t lhs, + nlohmann::detail::value_t rhs) const noexcept + { + return nlohmann::detail::operator<(lhs, rhs); + } +}; + +// C++20 prohibit function specialization in the std namespace. +#ifndef JSON_HAS_CPP_20 + +/*! +@brief exchanges the values of two JSON objects + +@since version 1.0.0 +*/ +template<> +inline void swap(nlohmann::json& j1, nlohmann::json& j2) noexcept( + is_nothrow_move_constructible::value&& + is_nothrow_move_assignable::value +) +{ + j1.swap(j2); +} + +#endif + +} // namespace std + +/*! +@brief user-defined string literal for JSON values + +This operator implements a user-defined string literal for JSON objects. It +can be used by adding `"_json"` to a string literal and returns a JSON object +if no parse error occurred. + +@param[in] s a string representation of a JSON object +@param[in] n the length of string @a s +@return a JSON object + +@since version 1.0.0 +*/ +JSON_HEDLEY_NON_NULL(1) +inline nlohmann::json operator "" _json(const char* s, std::size_t n) +{ + return nlohmann::json::parse(s, s + n); +} + +/*! +@brief user-defined string literal for JSON pointer + +This operator implements a user-defined string literal for JSON Pointers. It +can be used by adding `"_json_pointer"` to a string literal and returns a JSON pointer +object if no parse error occurred. + +@param[in] s a string representation of a JSON Pointer +@param[in] n the length of string @a s +@return a JSON pointer object + +@since version 2.0.0 +*/ +JSON_HEDLEY_NON_NULL(1) +inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t n) +{ + return nlohmann::json::json_pointer(std::string(s, n)); +} + +#include + +#endif // INCLUDE_NLOHMANN_JSON_HPP_ diff --git a/external/json/include/nlohmann/json_fwd.hpp b/external/json/include/nlohmann/json_fwd.hpp new file mode 100644 index 0000000..332227c --- /dev/null +++ b/external/json/include/nlohmann/json_fwd.hpp @@ -0,0 +1,78 @@ +#ifndef INCLUDE_NLOHMANN_JSON_FWD_HPP_ +#define INCLUDE_NLOHMANN_JSON_FWD_HPP_ + +#include // int64_t, uint64_t +#include // map +#include // allocator +#include // string +#include // vector + +/*! +@brief namespace for Niels Lohmann +@see https://github.com/nlohmann +@since version 1.0.0 +*/ +namespace nlohmann +{ +/*! +@brief default JSONSerializer template argument + +This serializer ignores the template arguments and uses ADL +([argument-dependent lookup](https://en.cppreference.com/w/cpp/language/adl)) +for serialization. +*/ +template +struct adl_serializer; + +template class ObjectType = + std::map, + template class ArrayType = std::vector, + class StringType = std::string, class BooleanType = bool, + class NumberIntegerType = std::int64_t, + class NumberUnsignedType = std::uint64_t, + class NumberFloatType = double, + template class AllocatorType = std::allocator, + template class JSONSerializer = + adl_serializer, + class BinaryType = std::vector> +class basic_json; + +/*! +@brief JSON Pointer + +A JSON pointer defines a string syntax for identifying a specific value +within a JSON document. It can be used with functions `at` and +`operator[]`. Furthermore, JSON pointers are the base for JSON patches. + +@sa [RFC 6901](https://tools.ietf.org/html/rfc6901) + +@since version 2.0.0 +*/ +template +class json_pointer; + +/*! +@brief default JSON class + +This type is the default specialization of the @ref basic_json class which +uses the standard template types. + +@since version 1.0.0 +*/ +using json = basic_json<>; + +template +struct ordered_map; + +/*! +@brief ordered JSON class + +This type preserves the insertion order of object keys. + +@since version 3.9.0 +*/ +using ordered_json = basic_json; + +} // namespace nlohmann + +#endif // INCLUDE_NLOHMANN_JSON_FWD_HPP_ diff --git a/external/json/include/nlohmann/ordered_map.hpp b/external/json/include/nlohmann/ordered_map.hpp new file mode 100644 index 0000000..5767909 --- /dev/null +++ b/external/json/include/nlohmann/ordered_map.hpp @@ -0,0 +1,171 @@ +#pragma once + +#include // less +#include // allocator +#include // pair +#include // vector + +namespace nlohmann +{ + +/// ordered_map: a minimal map-like container that preserves insertion order +/// for use within nlohmann::basic_json +template , + class Allocator = std::allocator>> + struct ordered_map : std::vector, Allocator> +{ + using key_type = Key; + using mapped_type = T; + using Container = std::vector, Allocator>; + using typename Container::iterator; + using typename Container::const_iterator; + using typename Container::size_type; + using typename Container::value_type; + + // Explicit constructors instead of `using Container::Container` + // otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4) + ordered_map(const Allocator& alloc = Allocator()) : Container{alloc} {} + template + ordered_map(It first, It last, const Allocator& alloc = Allocator()) + : Container{first, last, alloc} {} + ordered_map(std::initializer_list init, const Allocator& alloc = Allocator() ) + : Container{init, alloc} {} + + std::pair emplace(const key_type& key, T&& t) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return {it, false}; + } + } + Container::emplace_back(key, t); + return {--this->end(), true}; + } + + T& operator[](const Key& key) + { + return emplace(key, T{}).first->second; + } + + const T& operator[](const Key& key) const + { + return at(key); + } + + T& at(const Key& key) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return it->second; + } + } + + throw std::out_of_range("key not found"); + } + + const T& at(const Key& key) const + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return it->second; + } + } + + throw std::out_of_range("key not found"); + } + + size_type erase(const Key& key) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + // Since we cannot move const Keys, re-construct them in place + for (auto next = it; ++next != this->end(); ++it) + { + it->~value_type(); // Destroy but keep allocation + new (&*it) value_type{std::move(*next)}; + } + Container::pop_back(); + return 1; + } + } + return 0; + } + + iterator erase(iterator pos) + { + auto it = pos; + + // Since we cannot move const Keys, re-construct them in place + for (auto next = it; ++next != this->end(); ++it) + { + it->~value_type(); // Destroy but keep allocation + new (&*it) value_type{std::move(*next)}; + } + Container::pop_back(); + return pos; + } + + size_type count(const Key& key) const + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return 1; + } + } + return 0; + } + + iterator find(const Key& key) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return it; + } + } + return Container::end(); + } + + const_iterator find(const Key& key) const + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return it; + } + } + return Container::end(); + } + + std::pair insert( value_type&& value ) + { + return emplace(value.first, std::move(value.second)); + } + + std::pair insert( const value_type& value ) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == value.first) + { + return {it, false}; + } + } + Container::push_back(value); + return {--this->end(), true}; + } +}; + +} // namespace nlohmann diff --git a/external/json/include/nlohmann/thirdparty/hedley/hedley.hpp b/external/json/include/nlohmann/thirdparty/hedley/hedley.hpp new file mode 100644 index 0000000..521c78f --- /dev/null +++ b/external/json/include/nlohmann/thirdparty/hedley/hedley.hpp @@ -0,0 +1,1911 @@ +/* Hedley - https://nemequ.github.io/hedley + * Created by Evan Nemerson + * + * To the extent possible under law, the author(s) have dedicated all + * copyright and related and neighboring rights to this software to + * the public domain worldwide. This software is distributed without + * any warranty. + * + * For details, see . + * SPDX-License-Identifier: CC0-1.0 + */ + +#if !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < 13) +#if defined(JSON_HEDLEY_VERSION) + #undef JSON_HEDLEY_VERSION +#endif +#define JSON_HEDLEY_VERSION 13 + +#if defined(JSON_HEDLEY_STRINGIFY_EX) + #undef JSON_HEDLEY_STRINGIFY_EX +#endif +#define JSON_HEDLEY_STRINGIFY_EX(x) #x + +#if defined(JSON_HEDLEY_STRINGIFY) + #undef JSON_HEDLEY_STRINGIFY +#endif +#define JSON_HEDLEY_STRINGIFY(x) JSON_HEDLEY_STRINGIFY_EX(x) + +#if defined(JSON_HEDLEY_CONCAT_EX) + #undef JSON_HEDLEY_CONCAT_EX +#endif +#define JSON_HEDLEY_CONCAT_EX(a,b) a##b + +#if defined(JSON_HEDLEY_CONCAT) + #undef JSON_HEDLEY_CONCAT +#endif +#define JSON_HEDLEY_CONCAT(a,b) JSON_HEDLEY_CONCAT_EX(a,b) + +#if defined(JSON_HEDLEY_CONCAT3_EX) + #undef JSON_HEDLEY_CONCAT3_EX +#endif +#define JSON_HEDLEY_CONCAT3_EX(a,b,c) a##b##c + +#if defined(JSON_HEDLEY_CONCAT3) + #undef JSON_HEDLEY_CONCAT3 +#endif +#define JSON_HEDLEY_CONCAT3(a,b,c) JSON_HEDLEY_CONCAT3_EX(a,b,c) + +#if defined(JSON_HEDLEY_VERSION_ENCODE) + #undef JSON_HEDLEY_VERSION_ENCODE +#endif +#define JSON_HEDLEY_VERSION_ENCODE(major,minor,revision) (((major) * 1000000) + ((minor) * 1000) + (revision)) + +#if defined(JSON_HEDLEY_VERSION_DECODE_MAJOR) + #undef JSON_HEDLEY_VERSION_DECODE_MAJOR +#endif +#define JSON_HEDLEY_VERSION_DECODE_MAJOR(version) ((version) / 1000000) + +#if defined(JSON_HEDLEY_VERSION_DECODE_MINOR) + #undef JSON_HEDLEY_VERSION_DECODE_MINOR +#endif +#define JSON_HEDLEY_VERSION_DECODE_MINOR(version) (((version) % 1000000) / 1000) + +#if defined(JSON_HEDLEY_VERSION_DECODE_REVISION) + #undef JSON_HEDLEY_VERSION_DECODE_REVISION +#endif +#define JSON_HEDLEY_VERSION_DECODE_REVISION(version) ((version) % 1000) + +#if defined(JSON_HEDLEY_GNUC_VERSION) + #undef JSON_HEDLEY_GNUC_VERSION +#endif +#if defined(__GNUC__) && defined(__GNUC_PATCHLEVEL__) + #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__) +#elif defined(__GNUC__) + #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, 0) +#endif + +#if defined(JSON_HEDLEY_GNUC_VERSION_CHECK) + #undef JSON_HEDLEY_GNUC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_GNUC_VERSION) + #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GNUC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_MSVC_VERSION) + #undef JSON_HEDLEY_MSVC_VERSION +#endif +#if defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 140000000) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 10000000, (_MSC_FULL_VER % 10000000) / 100000, (_MSC_FULL_VER % 100000) / 100) +#elif defined(_MSC_FULL_VER) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 1000000, (_MSC_FULL_VER % 1000000) / 10000, (_MSC_FULL_VER % 10000) / 10) +#elif defined(_MSC_VER) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_VER / 100, _MSC_VER % 100, 0) +#endif + +#if defined(JSON_HEDLEY_MSVC_VERSION_CHECK) + #undef JSON_HEDLEY_MSVC_VERSION_CHECK +#endif +#if !defined(_MSC_VER) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (0) +#elif defined(_MSC_VER) && (_MSC_VER >= 1400) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch))) +#elif defined(_MSC_VER) && (_MSC_VER >= 1200) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch))) +#else + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_VER >= ((major * 100) + (minor))) +#endif + +#if defined(JSON_HEDLEY_INTEL_VERSION) + #undef JSON_HEDLEY_INTEL_VERSION +#endif +#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE) + #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, __INTEL_COMPILER_UPDATE) +#elif defined(__INTEL_COMPILER) + #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, 0) +#endif + +#if defined(JSON_HEDLEY_INTEL_VERSION_CHECK) + #undef JSON_HEDLEY_INTEL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_INTEL_VERSION) + #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_PGI_VERSION) + #undef JSON_HEDLEY_PGI_VERSION +#endif +#if defined(__PGI) && defined(__PGIC__) && defined(__PGIC_MINOR__) && defined(__PGIC_PATCHLEVEL__) + #define JSON_HEDLEY_PGI_VERSION JSON_HEDLEY_VERSION_ENCODE(__PGIC__, __PGIC_MINOR__, __PGIC_PATCHLEVEL__) +#endif + +#if defined(JSON_HEDLEY_PGI_VERSION_CHECK) + #undef JSON_HEDLEY_PGI_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_PGI_VERSION) + #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PGI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_SUNPRO_VERSION) + #undef JSON_HEDLEY_SUNPRO_VERSION +#endif +#if defined(__SUNPRO_C) && (__SUNPRO_C > 0x1000) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_C >> 16) & 0xf) * 10) + ((__SUNPRO_C >> 12) & 0xf), (((__SUNPRO_C >> 8) & 0xf) * 10) + ((__SUNPRO_C >> 4) & 0xf), (__SUNPRO_C & 0xf) * 10) +#elif defined(__SUNPRO_C) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_C >> 8) & 0xf, (__SUNPRO_C >> 4) & 0xf, (__SUNPRO_C) & 0xf) +#elif defined(__SUNPRO_CC) && (__SUNPRO_CC > 0x1000) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_CC >> 16) & 0xf) * 10) + ((__SUNPRO_CC >> 12) & 0xf), (((__SUNPRO_CC >> 8) & 0xf) * 10) + ((__SUNPRO_CC >> 4) & 0xf), (__SUNPRO_CC & 0xf) * 10) +#elif defined(__SUNPRO_CC) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_CC >> 8) & 0xf, (__SUNPRO_CC >> 4) & 0xf, (__SUNPRO_CC) & 0xf) +#endif + +#if defined(JSON_HEDLEY_SUNPRO_VERSION_CHECK) + #undef JSON_HEDLEY_SUNPRO_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_SUNPRO_VERSION) + #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_SUNPRO_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) + #undef JSON_HEDLEY_EMSCRIPTEN_VERSION +#endif +#if defined(__EMSCRIPTEN__) + #define JSON_HEDLEY_EMSCRIPTEN_VERSION JSON_HEDLEY_VERSION_ENCODE(__EMSCRIPTEN_major__, __EMSCRIPTEN_minor__, __EMSCRIPTEN_tiny__) +#endif + +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK) + #undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) + #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_EMSCRIPTEN_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_ARM_VERSION) + #undef JSON_HEDLEY_ARM_VERSION +#endif +#if defined(__CC_ARM) && defined(__ARMCOMPILER_VERSION) + #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCOMPILER_VERSION / 1000000, (__ARMCOMPILER_VERSION % 1000000) / 10000, (__ARMCOMPILER_VERSION % 10000) / 100) +#elif defined(__CC_ARM) && defined(__ARMCC_VERSION) + #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCC_VERSION / 1000000, (__ARMCC_VERSION % 1000000) / 10000, (__ARMCC_VERSION % 10000) / 100) +#endif + +#if defined(JSON_HEDLEY_ARM_VERSION_CHECK) + #undef JSON_HEDLEY_ARM_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_ARM_VERSION) + #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_ARM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_IBM_VERSION) + #undef JSON_HEDLEY_IBM_VERSION +#endif +#if defined(__ibmxl__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ibmxl_version__, __ibmxl_release__, __ibmxl_modification__) +#elif defined(__xlC__) && defined(__xlC_ver__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, (__xlC_ver__ >> 8) & 0xff) +#elif defined(__xlC__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, 0) +#endif + +#if defined(JSON_HEDLEY_IBM_VERSION_CHECK) + #undef JSON_HEDLEY_IBM_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_IBM_VERSION) + #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IBM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_VERSION) + #undef JSON_HEDLEY_TI_VERSION +#endif +#if \ + defined(__TI_COMPILER_VERSION__) && \ + ( \ + defined(__TMS470__) || defined(__TI_ARM__) || \ + defined(__MSP430__) || \ + defined(__TMS320C2000__) \ + ) +#if (__TI_COMPILER_VERSION__ >= 16000000) + #define JSON_HEDLEY_TI_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif +#endif + +#if defined(JSON_HEDLEY_TI_VERSION_CHECK) + #undef JSON_HEDLEY_TI_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_VERSION) + #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL2000_VERSION) + #undef JSON_HEDLEY_TI_CL2000_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C2000__) + #define JSON_HEDLEY_TI_CL2000_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL2000_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL2000_VERSION) + #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL2000_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL430_VERSION) + #undef JSON_HEDLEY_TI_CL430_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__MSP430__) + #define JSON_HEDLEY_TI_CL430_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL430_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL430_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL430_VERSION) + #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL430_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) + #undef JSON_HEDLEY_TI_ARMCL_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && (defined(__TMS470__) || defined(__TI_ARM__)) + #define JSON_HEDLEY_TI_ARMCL_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION_CHECK) + #undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) + #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_ARMCL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL6X_VERSION) + #undef JSON_HEDLEY_TI_CL6X_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C6X__) + #define JSON_HEDLEY_TI_CL6X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL6X_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL6X_VERSION) + #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL6X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL7X_VERSION) + #undef JSON_HEDLEY_TI_CL7X_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__C7000__) + #define JSON_HEDLEY_TI_CL7X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL7X_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL7X_VERSION) + #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL7X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) + #undef JSON_HEDLEY_TI_CLPRU_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__PRU__) + #define JSON_HEDLEY_TI_CLPRU_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) + #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CLPRU_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_CRAY_VERSION) + #undef JSON_HEDLEY_CRAY_VERSION +#endif +#if defined(_CRAYC) + #if defined(_RELEASE_PATCHLEVEL) + #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, _RELEASE_PATCHLEVEL) + #else + #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, 0) + #endif +#endif + +#if defined(JSON_HEDLEY_CRAY_VERSION_CHECK) + #undef JSON_HEDLEY_CRAY_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_CRAY_VERSION) + #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_CRAY_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_IAR_VERSION) + #undef JSON_HEDLEY_IAR_VERSION +#endif +#if defined(__IAR_SYSTEMS_ICC__) + #if __VER__ > 1000 + #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE((__VER__ / 1000000), ((__VER__ / 1000) % 1000), (__VER__ % 1000)) + #else + #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE(VER / 100, __VER__ % 100, 0) + #endif +#endif + +#if defined(JSON_HEDLEY_IAR_VERSION_CHECK) + #undef JSON_HEDLEY_IAR_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_IAR_VERSION) + #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IAR_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TINYC_VERSION) + #undef JSON_HEDLEY_TINYC_VERSION +#endif +#if defined(__TINYC__) + #define JSON_HEDLEY_TINYC_VERSION JSON_HEDLEY_VERSION_ENCODE(__TINYC__ / 1000, (__TINYC__ / 100) % 10, __TINYC__ % 100) +#endif + +#if defined(JSON_HEDLEY_TINYC_VERSION_CHECK) + #undef JSON_HEDLEY_TINYC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TINYC_VERSION) + #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TINYC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_DMC_VERSION) + #undef JSON_HEDLEY_DMC_VERSION +#endif +#if defined(__DMC__) + #define JSON_HEDLEY_DMC_VERSION JSON_HEDLEY_VERSION_ENCODE(__DMC__ >> 8, (__DMC__ >> 4) & 0xf, __DMC__ & 0xf) +#endif + +#if defined(JSON_HEDLEY_DMC_VERSION_CHECK) + #undef JSON_HEDLEY_DMC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_DMC_VERSION) + #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_DMC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_COMPCERT_VERSION) + #undef JSON_HEDLEY_COMPCERT_VERSION +#endif +#if defined(__COMPCERT_VERSION__) + #define JSON_HEDLEY_COMPCERT_VERSION JSON_HEDLEY_VERSION_ENCODE(__COMPCERT_VERSION__ / 10000, (__COMPCERT_VERSION__ / 100) % 100, __COMPCERT_VERSION__ % 100) +#endif + +#if defined(JSON_HEDLEY_COMPCERT_VERSION_CHECK) + #undef JSON_HEDLEY_COMPCERT_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_COMPCERT_VERSION) + #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_COMPCERT_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_PELLES_VERSION) + #undef JSON_HEDLEY_PELLES_VERSION +#endif +#if defined(__POCC__) + #define JSON_HEDLEY_PELLES_VERSION JSON_HEDLEY_VERSION_ENCODE(__POCC__ / 100, __POCC__ % 100, 0) +#endif + +#if defined(JSON_HEDLEY_PELLES_VERSION_CHECK) + #undef JSON_HEDLEY_PELLES_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_PELLES_VERSION) + #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PELLES_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_GCC_VERSION) + #undef JSON_HEDLEY_GCC_VERSION +#endif +#if \ + defined(JSON_HEDLEY_GNUC_VERSION) && \ + !defined(__clang__) && \ + !defined(JSON_HEDLEY_INTEL_VERSION) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_ARM_VERSION) && \ + !defined(JSON_HEDLEY_TI_VERSION) && \ + !defined(JSON_HEDLEY_TI_ARMCL_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL430_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL2000_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL6X_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL7X_VERSION) && \ + !defined(JSON_HEDLEY_TI_CLPRU_VERSION) && \ + !defined(__COMPCERT__) + #define JSON_HEDLEY_GCC_VERSION JSON_HEDLEY_GNUC_VERSION +#endif + +#if defined(JSON_HEDLEY_GCC_VERSION_CHECK) + #undef JSON_HEDLEY_GCC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_GCC_VERSION) + #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) __has_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE +#endif +#if \ + defined(__has_cpp_attribute) && \ + defined(__cplusplus) && \ + (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS) + #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS +#endif +#if !defined(__cplusplus) || !defined(__has_cpp_attribute) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) +#elif \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_IAR_VERSION) && \ + (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) && \ + (!defined(JSON_HEDLEY_MSVC_VERSION) || JSON_HEDLEY_MSVC_VERSION_CHECK(19,20,0)) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(ns::attribute) +#else + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE +#endif +#if defined(__has_cpp_attribute) && defined(__cplusplus) + #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE +#endif +#if defined(__has_cpp_attribute) && defined(__cplusplus) + #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_BUILTIN) + #undef JSON_HEDLEY_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_HAS_BUILTIN(builtin) __has_builtin(builtin) +#else + #define JSON_HEDLEY_HAS_BUILTIN(builtin) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_BUILTIN) + #undef JSON_HEDLEY_GNUC_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) +#else + #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_BUILTIN) + #undef JSON_HEDLEY_GCC_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) +#else + #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_FEATURE) + #undef JSON_HEDLEY_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_HAS_FEATURE(feature) __has_feature(feature) +#else + #define JSON_HEDLEY_HAS_FEATURE(feature) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_FEATURE) + #undef JSON_HEDLEY_GNUC_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) +#else + #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_FEATURE) + #undef JSON_HEDLEY_GCC_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) +#else + #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_EXTENSION) + #undef JSON_HEDLEY_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_HAS_EXTENSION(extension) __has_extension(extension) +#else + #define JSON_HEDLEY_HAS_EXTENSION(extension) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_EXTENSION) + #undef JSON_HEDLEY_GNUC_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) +#else + #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_EXTENSION) + #undef JSON_HEDLEY_GCC_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) +#else + #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_WARNING) + #undef JSON_HEDLEY_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_HAS_WARNING(warning) __has_warning(warning) +#else + #define JSON_HEDLEY_HAS_WARNING(warning) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_WARNING) + #undef JSON_HEDLEY_GNUC_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) +#else + #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_WARNING) + #undef JSON_HEDLEY_GCC_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) +#else + #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +/* JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ is for + HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ +#endif +#if defined(__cplusplus) +# if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat") +# if JSON_HEDLEY_HAS_WARNING("-Wc++17-extensions") +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + _Pragma("clang diagnostic ignored \"-Wc++17-extensions\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# endif +# endif +#endif +#if !defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(x) x +#endif + +#if defined(JSON_HEDLEY_CONST_CAST) + #undef JSON_HEDLEY_CONST_CAST +#endif +#if defined(__cplusplus) +# define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast(expr)) +#elif \ + JSON_HEDLEY_HAS_WARNING("-Wcast-qual") || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL \ + ((T) (expr)); \ + JSON_HEDLEY_DIAGNOSTIC_POP \ + })) +#else +# define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_REINTERPRET_CAST) + #undef JSON_HEDLEY_REINTERPRET_CAST +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast(expr)) +#else + #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_STATIC_CAST) + #undef JSON_HEDLEY_STATIC_CAST +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_STATIC_CAST(T, expr) (static_cast(expr)) +#else + #define JSON_HEDLEY_STATIC_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_CPP_CAST) + #undef JSON_HEDLEY_CPP_CAST +#endif +#if defined(__cplusplus) +# if JSON_HEDLEY_HAS_WARNING("-Wold-style-cast") +# define JSON_HEDLEY_CPP_CAST(T, expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wold-style-cast\"") \ + ((T) (expr)) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# elif JSON_HEDLEY_IAR_VERSION_CHECK(8,3,0) +# define JSON_HEDLEY_CPP_CAST(T, expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("diag_suppress=Pe137") \ + JSON_HEDLEY_DIAGNOSTIC_POP \ +# else +# define JSON_HEDLEY_CPP_CAST(T, expr) ((T) (expr)) +# endif +#else +# define JSON_HEDLEY_CPP_CAST(T, expr) (expr) +#endif + +#if \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ + defined(__clang__) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,17) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(8,0,0) || \ + (JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) && defined(__C99_PRAGMA_OPERATOR)) + #define JSON_HEDLEY_PRAGMA(value) _Pragma(#value) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_PRAGMA(value) __pragma(value) +#else + #define JSON_HEDLEY_PRAGMA(value) +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_PUSH) + #undef JSON_HEDLEY_DIAGNOSTIC_PUSH +#endif +#if defined(JSON_HEDLEY_DIAGNOSTIC_POP) + #undef JSON_HEDLEY_DIAGNOSTIC_POP +#endif +#if defined(__clang__) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("clang diagnostic push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("clang diagnostic pop") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH __pragma(warning(push)) + #define JSON_HEDLEY_DIAGNOSTIC_POP __pragma(warning(pop)) +#elif JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("pop") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,4,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("diag_push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("diag_pop") +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") +#else + #define JSON_HEDLEY_DIAGNOSTIC_PUSH + #define JSON_HEDLEY_DIAGNOSTIC_POP +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wdeprecated-declarations") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warning(disable:1478 1786)") +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:4996)) +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1291,1718") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && !defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,E_DEPRECATED_ATT,E_DEPRECATED_ATT_MESS)") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,symdeprecated,symdeprecated2)") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress=Pe1444,Pe1215") +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warn(disable:2241)") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("clang diagnostic ignored \"-Wunknown-pragmas\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("warning(disable:161)") +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 1675") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("GCC diagnostic ignored \"-Wunknown-pragmas\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:4068)) +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(16,9,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress=Pe161") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-attributes") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("clang diagnostic ignored \"-Wunknown-attributes\"") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("warning(disable:1292)") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:5030)) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("error_messages(off,attrskipunsup)") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1173") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress=Pe1097") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wcast-qual") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("clang diagnostic ignored \"-Wcast-qual\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("warning(disable:2203 2331)") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("GCC diagnostic ignored \"-Wcast-qual\"") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#endif + +#if defined(JSON_HEDLEY_DEPRECATED) + #undef JSON_HEDLEY_DEPRECATED +#endif +#if defined(JSON_HEDLEY_DEPRECATED_FOR) + #undef JSON_HEDLEY_DEPRECATED_FOR +#endif +#if JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) + #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated("Since " # since)) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated("Since " #since "; use " #replacement)) +#elif defined(__cplusplus) && (__cplusplus >= 201402L) + #define JSON_HEDLEY_DEPRECATED(since) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since)]]) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since "; use " #replacement)]]) +#elif \ + JSON_HEDLEY_HAS_EXTENSION(attribute_deprecated_with_message) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) + #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__("Since " #since))) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__("Since " #since "; use " #replacement))) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(deprecated) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__)) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_PELLES_VERSION_CHECK(6,50,0) + #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated) +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DEPRECATED(since) _Pragma("deprecated") + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) _Pragma("deprecated") +#else + #define JSON_HEDLEY_DEPRECATED(since) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) +#endif + +#if defined(JSON_HEDLEY_UNAVAILABLE) + #undef JSON_HEDLEY_UNAVAILABLE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(warning) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_UNAVAILABLE(available_since) __attribute__((__warning__("Not available until " #available_since))) +#else + #define JSON_HEDLEY_UNAVAILABLE(available_since) +#endif + +#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT) + #undef JSON_HEDLEY_WARN_UNUSED_RESULT +#endif +#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT_MSG) + #undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG +#endif +#if (JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) >= 201907L) + #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard(msg)]]) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) + #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(warn_unused_result) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) __attribute__((__warn_unused_result__)) +#elif defined(_Check_return_) /* SAL */ + #define JSON_HEDLEY_WARN_UNUSED_RESULT _Check_return_ + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) _Check_return_ +#else + #define JSON_HEDLEY_WARN_UNUSED_RESULT + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) +#endif + +#if defined(JSON_HEDLEY_SENTINEL) + #undef JSON_HEDLEY_SENTINEL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(sentinel) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) + #define JSON_HEDLEY_SENTINEL(position) __attribute__((__sentinel__(position))) +#else + #define JSON_HEDLEY_SENTINEL(position) +#endif + +#if defined(JSON_HEDLEY_NO_RETURN) + #undef JSON_HEDLEY_NO_RETURN +#endif +#if JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_NO_RETURN __noreturn +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) +#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L + #define JSON_HEDLEY_NO_RETURN _Noreturn +#elif defined(__cplusplus) && (__cplusplus >= 201103L) + #define JSON_HEDLEY_NO_RETURN JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[noreturn]]) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(noreturn) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,2,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_NO_RETURN _Pragma("does_not_return") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) + #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) + #define JSON_HEDLEY_NO_RETURN _Pragma("FUNC_NEVER_RETURNS;") +#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) + #define JSON_HEDLEY_NO_RETURN __attribute((noreturn)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) + #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) +#else + #define JSON_HEDLEY_NO_RETURN +#endif + +#if defined(JSON_HEDLEY_NO_ESCAPE) + #undef JSON_HEDLEY_NO_ESCAPE +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(noescape) + #define JSON_HEDLEY_NO_ESCAPE __attribute__((__noescape__)) +#else + #define JSON_HEDLEY_NO_ESCAPE +#endif + +#if defined(JSON_HEDLEY_UNREACHABLE) + #undef JSON_HEDLEY_UNREACHABLE +#endif +#if defined(JSON_HEDLEY_UNREACHABLE_RETURN) + #undef JSON_HEDLEY_UNREACHABLE_RETURN +#endif +#if defined(JSON_HEDLEY_ASSUME) + #undef JSON_HEDLEY_ASSUME +#endif +#if \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_ASSUME(expr) __assume(expr) +#elif JSON_HEDLEY_HAS_BUILTIN(__builtin_assume) + #define JSON_HEDLEY_ASSUME(expr) __builtin_assume(expr) +#elif \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) + #if defined(__cplusplus) + #define JSON_HEDLEY_ASSUME(expr) std::_nassert(expr) + #else + #define JSON_HEDLEY_ASSUME(expr) _nassert(expr) + #endif +#endif +#if \ + (JSON_HEDLEY_HAS_BUILTIN(__builtin_unreachable) && (!defined(JSON_HEDLEY_ARM_VERSION))) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,10,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,5) + #define JSON_HEDLEY_UNREACHABLE() __builtin_unreachable() +#elif defined(JSON_HEDLEY_ASSUME) + #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) +#endif +#if !defined(JSON_HEDLEY_ASSUME) + #if defined(JSON_HEDLEY_UNREACHABLE) + #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, ((expr) ? 1 : (JSON_HEDLEY_UNREACHABLE(), 1))) + #else + #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, expr) + #endif +#endif +#if defined(JSON_HEDLEY_UNREACHABLE) + #if \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (JSON_HEDLEY_STATIC_CAST(void, JSON_HEDLEY_ASSUME(0)), (value)) + #else + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) JSON_HEDLEY_UNREACHABLE() + #endif +#else + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (value) +#endif +#if !defined(JSON_HEDLEY_UNREACHABLE) + #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) +#endif + +JSON_HEDLEY_DIAGNOSTIC_PUSH +#if JSON_HEDLEY_HAS_WARNING("-Wpedantic") + #pragma clang diagnostic ignored "-Wpedantic" +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat-pedantic") && defined(__cplusplus) + #pragma clang diagnostic ignored "-Wc++98-compat-pedantic" +#endif +#if JSON_HEDLEY_GCC_HAS_WARNING("-Wvariadic-macros",4,0,0) + #if defined(__clang__) + #pragma clang diagnostic ignored "-Wvariadic-macros" + #elif defined(JSON_HEDLEY_GCC_VERSION) + #pragma GCC diagnostic ignored "-Wvariadic-macros" + #endif +#endif +#if defined(JSON_HEDLEY_NON_NULL) + #undef JSON_HEDLEY_NON_NULL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(nonnull) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) + #define JSON_HEDLEY_NON_NULL(...) __attribute__((__nonnull__(__VA_ARGS__))) +#else + #define JSON_HEDLEY_NON_NULL(...) +#endif +JSON_HEDLEY_DIAGNOSTIC_POP + +#if defined(JSON_HEDLEY_PRINTF_FORMAT) + #undef JSON_HEDLEY_PRINTF_FORMAT +#endif +#if defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && !defined(__USE_MINGW_ANSI_STDIO) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(ms_printf, string_idx, first_to_check))) +#elif defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && defined(__USE_MINGW_ANSI_STDIO) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(gnu_printf, string_idx, first_to_check))) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(format) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(__printf__, string_idx, first_to_check))) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(6,0,0) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __declspec(vaformat(printf,string_idx,first_to_check)) +#else + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) +#endif + +#if defined(JSON_HEDLEY_CONSTEXPR) + #undef JSON_HEDLEY_CONSTEXPR +#endif +#if defined(__cplusplus) + #if __cplusplus >= 201103L + #define JSON_HEDLEY_CONSTEXPR JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(constexpr) + #endif +#endif +#if !defined(JSON_HEDLEY_CONSTEXPR) + #define JSON_HEDLEY_CONSTEXPR +#endif + +#if defined(JSON_HEDLEY_PREDICT) + #undef JSON_HEDLEY_PREDICT +#endif +#if defined(JSON_HEDLEY_LIKELY) + #undef JSON_HEDLEY_LIKELY +#endif +#if defined(JSON_HEDLEY_UNLIKELY) + #undef JSON_HEDLEY_UNLIKELY +#endif +#if defined(JSON_HEDLEY_UNPREDICTABLE) + #undef JSON_HEDLEY_UNPREDICTABLE +#endif +#if JSON_HEDLEY_HAS_BUILTIN(__builtin_unpredictable) + #define JSON_HEDLEY_UNPREDICTABLE(expr) __builtin_unpredictable((expr)) +#endif +#if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_expect_with_probability) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(9,0,0) +# define JSON_HEDLEY_PREDICT(expr, value, probability) __builtin_expect_with_probability( (expr), (value), (probability)) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) __builtin_expect_with_probability(!!(expr), 1 , (probability)) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) __builtin_expect_with_probability(!!(expr), 0 , (probability)) +# define JSON_HEDLEY_LIKELY(expr) __builtin_expect (!!(expr), 1 ) +# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect (!!(expr), 0 ) +#elif \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_expect) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,27) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) +# define JSON_HEDLEY_PREDICT(expr, expected, probability) \ + (((probability) >= 0.9) ? __builtin_expect((expr), (expected)) : (JSON_HEDLEY_STATIC_CAST(void, expected), (expr))) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) \ + (__extension__ ({ \ + double hedley_probability_ = (probability); \ + ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 1) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 0) : !!(expr))); \ + })) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) \ + (__extension__ ({ \ + double hedley_probability_ = (probability); \ + ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 0) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 1) : !!(expr))); \ + })) +# define JSON_HEDLEY_LIKELY(expr) __builtin_expect(!!(expr), 1) +# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect(!!(expr), 0) +#else +# define JSON_HEDLEY_PREDICT(expr, expected, probability) (JSON_HEDLEY_STATIC_CAST(void, expected), (expr)) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) (!!(expr)) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) (!!(expr)) +# define JSON_HEDLEY_LIKELY(expr) (!!(expr)) +# define JSON_HEDLEY_UNLIKELY(expr) (!!(expr)) +#endif +#if !defined(JSON_HEDLEY_UNPREDICTABLE) + #define JSON_HEDLEY_UNPREDICTABLE(expr) JSON_HEDLEY_PREDICT(expr, 1, 0.5) +#endif + +#if defined(JSON_HEDLEY_MALLOC) + #undef JSON_HEDLEY_MALLOC +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(malloc) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_MALLOC __attribute__((__malloc__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_MALLOC _Pragma("returns_new_memory") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(14, 0, 0) + #define JSON_HEDLEY_MALLOC __declspec(restrict) +#else + #define JSON_HEDLEY_MALLOC +#endif + +#if defined(JSON_HEDLEY_PURE) + #undef JSON_HEDLEY_PURE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(pure) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(2,96,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) +# define JSON_HEDLEY_PURE __attribute__((__pure__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) +# define JSON_HEDLEY_PURE _Pragma("does_not_write_global_data") +#elif defined(__cplusplus) && \ + ( \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) \ + ) +# define JSON_HEDLEY_PURE _Pragma("FUNC_IS_PURE;") +#else +# define JSON_HEDLEY_PURE +#endif + +#if defined(JSON_HEDLEY_CONST) + #undef JSON_HEDLEY_CONST +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(const) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(2,5,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_CONST __attribute__((__const__)) +#elif \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_CONST _Pragma("no_side_effect") +#else + #define JSON_HEDLEY_CONST JSON_HEDLEY_PURE +#endif + +#if defined(JSON_HEDLEY_RESTRICT) + #undef JSON_HEDLEY_RESTRICT +#endif +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__cplusplus) + #define JSON_HEDLEY_RESTRICT restrict +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,4) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ + defined(__clang__) + #define JSON_HEDLEY_RESTRICT __restrict +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,3,0) && !defined(__cplusplus) + #define JSON_HEDLEY_RESTRICT _Restrict +#else + #define JSON_HEDLEY_RESTRICT +#endif + +#if defined(JSON_HEDLEY_INLINE) + #undef JSON_HEDLEY_INLINE +#endif +#if \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ + (defined(__cplusplus) && (__cplusplus >= 199711L)) + #define JSON_HEDLEY_INLINE inline +#elif \ + defined(JSON_HEDLEY_GCC_VERSION) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(6,2,0) + #define JSON_HEDLEY_INLINE __inline__ +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,1,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_INLINE __inline +#else + #define JSON_HEDLEY_INLINE +#endif + +#if defined(JSON_HEDLEY_ALWAYS_INLINE) + #undef JSON_HEDLEY_ALWAYS_INLINE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(always_inline) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) +# define JSON_HEDLEY_ALWAYS_INLINE __attribute__((__always_inline__)) JSON_HEDLEY_INLINE +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) +# define JSON_HEDLEY_ALWAYS_INLINE __forceinline +#elif defined(__cplusplus) && \ + ( \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) \ + ) +# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("FUNC_ALWAYS_INLINE;") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) +# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("inline=forced") +#else +# define JSON_HEDLEY_ALWAYS_INLINE JSON_HEDLEY_INLINE +#endif + +#if defined(JSON_HEDLEY_NEVER_INLINE) + #undef JSON_HEDLEY_NEVER_INLINE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(noinline) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_NEVER_INLINE __attribute__((__noinline__)) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) + #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(10,2,0) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("noinline") +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("FUNC_CANNOT_INLINE;") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("inline=never") +#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) + #define JSON_HEDLEY_NEVER_INLINE __attribute((noinline)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) + #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) +#else + #define JSON_HEDLEY_NEVER_INLINE +#endif + +#if defined(JSON_HEDLEY_PRIVATE) + #undef JSON_HEDLEY_PRIVATE +#endif +#if defined(JSON_HEDLEY_PUBLIC) + #undef JSON_HEDLEY_PUBLIC +#endif +#if defined(JSON_HEDLEY_IMPORT) + #undef JSON_HEDLEY_IMPORT +#endif +#if defined(_WIN32) || defined(__CYGWIN__) +# define JSON_HEDLEY_PRIVATE +# define JSON_HEDLEY_PUBLIC __declspec(dllexport) +# define JSON_HEDLEY_IMPORT __declspec(dllimport) +#else +# if \ + JSON_HEDLEY_HAS_ATTRIBUTE(visibility) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + ( \ + defined(__TI_EABI__) && \ + ( \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) \ + ) \ + ) +# define JSON_HEDLEY_PRIVATE __attribute__((__visibility__("hidden"))) +# define JSON_HEDLEY_PUBLIC __attribute__((__visibility__("default"))) +# else +# define JSON_HEDLEY_PRIVATE +# define JSON_HEDLEY_PUBLIC +# endif +# define JSON_HEDLEY_IMPORT extern +#endif + +#if defined(JSON_HEDLEY_NO_THROW) + #undef JSON_HEDLEY_NO_THROW +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(nothrow) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_NO_THROW __attribute__((__nothrow__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) + #define JSON_HEDLEY_NO_THROW __declspec(nothrow) +#else + #define JSON_HEDLEY_NO_THROW +#endif + +#if defined(JSON_HEDLEY_FALL_THROUGH) + #undef JSON_HEDLEY_FALL_THROUGH +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(fallthrough) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(7,0,0) + #define JSON_HEDLEY_FALL_THROUGH __attribute__((__fallthrough__)) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(clang,fallthrough) + #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[clang::fallthrough]]) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(fallthrough) + #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[fallthrough]]) +#elif defined(__fallthrough) /* SAL */ + #define JSON_HEDLEY_FALL_THROUGH __fallthrough +#else + #define JSON_HEDLEY_FALL_THROUGH +#endif + +#if defined(JSON_HEDLEY_RETURNS_NON_NULL) + #undef JSON_HEDLEY_RETURNS_NON_NULL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(returns_nonnull) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) + #define JSON_HEDLEY_RETURNS_NON_NULL __attribute__((__returns_nonnull__)) +#elif defined(_Ret_notnull_) /* SAL */ + #define JSON_HEDLEY_RETURNS_NON_NULL _Ret_notnull_ +#else + #define JSON_HEDLEY_RETURNS_NON_NULL +#endif + +#if defined(JSON_HEDLEY_ARRAY_PARAM) + #undef JSON_HEDLEY_ARRAY_PARAM +#endif +#if \ + defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \ + !defined(__STDC_NO_VLA__) && \ + !defined(__cplusplus) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_TINYC_VERSION) + #define JSON_HEDLEY_ARRAY_PARAM(name) (name) +#else + #define JSON_HEDLEY_ARRAY_PARAM(name) +#endif + +#if defined(JSON_HEDLEY_IS_CONSTANT) + #undef JSON_HEDLEY_IS_CONSTANT +#endif +#if defined(JSON_HEDLEY_REQUIRE_CONSTEXPR) + #undef JSON_HEDLEY_REQUIRE_CONSTEXPR +#endif +/* JSON_HEDLEY_IS_CONSTEXPR_ is for + HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ +#if defined(JSON_HEDLEY_IS_CONSTEXPR_) + #undef JSON_HEDLEY_IS_CONSTEXPR_ +#endif +#if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_constant_p) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,19) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) && !defined(__cplusplus)) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) + #define JSON_HEDLEY_IS_CONSTANT(expr) __builtin_constant_p(expr) +#endif +#if !defined(__cplusplus) +# if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_types_compatible_p) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,24) +#if defined(__INTPTR_TYPE__) + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0)), int*) +#else + #include + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((intptr_t) ((expr) * 0)) : (int*) 0)), int*) +#endif +# elif \ + ( \ + defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && \ + !defined(JSON_HEDLEY_SUNPRO_VERSION) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_IAR_VERSION)) || \ + JSON_HEDLEY_HAS_EXTENSION(c_generic_selections) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,3,0) +#if defined(__INTPTR_TYPE__) + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0), int*: 1, void*: 0) +#else + #include + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((intptr_t) * 0) : (int*) 0), int*: 1, void*: 0) +#endif +# elif \ + defined(JSON_HEDLEY_GCC_VERSION) || \ + defined(JSON_HEDLEY_INTEL_VERSION) || \ + defined(JSON_HEDLEY_TINYC_VERSION) || \ + defined(JSON_HEDLEY_TI_ARMCL_VERSION) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(18,12,0) || \ + defined(JSON_HEDLEY_TI_CL2000_VERSION) || \ + defined(JSON_HEDLEY_TI_CL6X_VERSION) || \ + defined(JSON_HEDLEY_TI_CL7X_VERSION) || \ + defined(JSON_HEDLEY_TI_CLPRU_VERSION) || \ + defined(__clang__) +# define JSON_HEDLEY_IS_CONSTEXPR_(expr) ( \ + sizeof(void) != \ + sizeof(*( \ + 1 ? \ + ((void*) ((expr) * 0L) ) : \ +((struct { char v[sizeof(void) * 2]; } *) 1) \ + ) \ + ) \ + ) +# endif +#endif +#if defined(JSON_HEDLEY_IS_CONSTEXPR_) + #if !defined(JSON_HEDLEY_IS_CONSTANT) + #define JSON_HEDLEY_IS_CONSTANT(expr) JSON_HEDLEY_IS_CONSTEXPR_(expr) + #endif + #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (JSON_HEDLEY_IS_CONSTEXPR_(expr) ? (expr) : (-1)) +#else + #if !defined(JSON_HEDLEY_IS_CONSTANT) + #define JSON_HEDLEY_IS_CONSTANT(expr) (0) + #endif + #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (expr) +#endif + +#if defined(JSON_HEDLEY_BEGIN_C_DECLS) + #undef JSON_HEDLEY_BEGIN_C_DECLS +#endif +#if defined(JSON_HEDLEY_END_C_DECLS) + #undef JSON_HEDLEY_END_C_DECLS +#endif +#if defined(JSON_HEDLEY_C_DECL) + #undef JSON_HEDLEY_C_DECL +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_BEGIN_C_DECLS extern "C" { + #define JSON_HEDLEY_END_C_DECLS } + #define JSON_HEDLEY_C_DECL extern "C" +#else + #define JSON_HEDLEY_BEGIN_C_DECLS + #define JSON_HEDLEY_END_C_DECLS + #define JSON_HEDLEY_C_DECL +#endif + +#if defined(JSON_HEDLEY_STATIC_ASSERT) + #undef JSON_HEDLEY_STATIC_ASSERT +#endif +#if \ + !defined(__cplusplus) && ( \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)) || \ + JSON_HEDLEY_HAS_FEATURE(c_static_assert) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(6,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + defined(_Static_assert) \ + ) +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) _Static_assert(expr, message) +#elif \ + (defined(__cplusplus) && (__cplusplus >= 201103L)) || \ + JSON_HEDLEY_MSVC_VERSION_CHECK(16,0,0) +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(static_assert(expr, message)) +#else +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) +#endif + +#if defined(JSON_HEDLEY_NULL) + #undef JSON_HEDLEY_NULL +#endif +#if defined(__cplusplus) + #if __cplusplus >= 201103L + #define JSON_HEDLEY_NULL JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(nullptr) + #elif defined(NULL) + #define JSON_HEDLEY_NULL NULL + #else + #define JSON_HEDLEY_NULL JSON_HEDLEY_STATIC_CAST(void*, 0) + #endif +#elif defined(NULL) + #define JSON_HEDLEY_NULL NULL +#else + #define JSON_HEDLEY_NULL ((void*) 0) +#endif + +#if defined(JSON_HEDLEY_MESSAGE) + #undef JSON_HEDLEY_MESSAGE +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") +# define JSON_HEDLEY_MESSAGE(msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ + JSON_HEDLEY_PRAGMA(message msg) \ + JSON_HEDLEY_DIAGNOSTIC_POP +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message msg) +#elif JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(_CRI message msg) +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#else +# define JSON_HEDLEY_MESSAGE(msg) +#endif + +#if defined(JSON_HEDLEY_WARNING) + #undef JSON_HEDLEY_WARNING +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") +# define JSON_HEDLEY_WARNING(msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ + JSON_HEDLEY_PRAGMA(clang warning msg) \ + JSON_HEDLEY_DIAGNOSTIC_POP +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,8,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(GCC warning msg) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#else +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_MESSAGE(msg) +#endif + +#if defined(JSON_HEDLEY_REQUIRE) + #undef JSON_HEDLEY_REQUIRE +#endif +#if defined(JSON_HEDLEY_REQUIRE_MSG) + #undef JSON_HEDLEY_REQUIRE_MSG +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(diagnose_if) +# if JSON_HEDLEY_HAS_WARNING("-Wgcc-compat") +# define JSON_HEDLEY_REQUIRE(expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ + __attribute__((diagnose_if(!(expr), #expr, "error"))) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ + __attribute__((diagnose_if(!(expr), msg, "error"))) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_REQUIRE(expr) __attribute__((diagnose_if(!(expr), #expr, "error"))) +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) __attribute__((diagnose_if(!(expr), msg, "error"))) +# endif +#else +# define JSON_HEDLEY_REQUIRE(expr) +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) +#endif + +#if defined(JSON_HEDLEY_FLAGS) + #undef JSON_HEDLEY_FLAGS +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(flag_enum) + #define JSON_HEDLEY_FLAGS __attribute__((__flag_enum__)) +#endif + +#if defined(JSON_HEDLEY_FLAGS_CAST) + #undef JSON_HEDLEY_FLAGS_CAST +#endif +#if JSON_HEDLEY_INTEL_VERSION_CHECK(19,0,0) +# define JSON_HEDLEY_FLAGS_CAST(T, expr) (__extension__ ({ \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("warning(disable:188)") \ + ((T) (expr)); \ + JSON_HEDLEY_DIAGNOSTIC_POP \ + })) +#else +# define JSON_HEDLEY_FLAGS_CAST(T, expr) JSON_HEDLEY_STATIC_CAST(T, expr) +#endif + +#if defined(JSON_HEDLEY_EMPTY_BASES) + #undef JSON_HEDLEY_EMPTY_BASES +#endif +#if JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,23918) && !JSON_HEDLEY_MSVC_VERSION_CHECK(20,0,0) + #define JSON_HEDLEY_EMPTY_BASES __declspec(empty_bases) +#else + #define JSON_HEDLEY_EMPTY_BASES +#endif + +/* Remaining macros are deprecated. */ + +#if defined(JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK) + #undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK +#endif +#if defined(__clang__) + #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) (0) +#else + #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_CLANG_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_BUILTIN) + #undef JSON_HEDLEY_CLANG_HAS_BUILTIN +#endif +#define JSON_HEDLEY_CLANG_HAS_BUILTIN(builtin) JSON_HEDLEY_HAS_BUILTIN(builtin) + +#if defined(JSON_HEDLEY_CLANG_HAS_FEATURE) + #undef JSON_HEDLEY_CLANG_HAS_FEATURE +#endif +#define JSON_HEDLEY_CLANG_HAS_FEATURE(feature) JSON_HEDLEY_HAS_FEATURE(feature) + +#if defined(JSON_HEDLEY_CLANG_HAS_EXTENSION) + #undef JSON_HEDLEY_CLANG_HAS_EXTENSION +#endif +#define JSON_HEDLEY_CLANG_HAS_EXTENSION(extension) JSON_HEDLEY_HAS_EXTENSION(extension) + +#if defined(JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_DECLSPEC_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_WARNING) + #undef JSON_HEDLEY_CLANG_HAS_WARNING +#endif +#define JSON_HEDLEY_CLANG_HAS_WARNING(warning) JSON_HEDLEY_HAS_WARNING(warning) + +#endif /* !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < X) */ diff --git a/external/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp b/external/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp new file mode 100644 index 0000000..5fc2e31 --- /dev/null +++ b/external/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp @@ -0,0 +1,143 @@ +#undef JSON_HEDLEY_ALWAYS_INLINE +#undef JSON_HEDLEY_ARM_VERSION +#undef JSON_HEDLEY_ARM_VERSION_CHECK +#undef JSON_HEDLEY_ARRAY_PARAM +#undef JSON_HEDLEY_ASSUME +#undef JSON_HEDLEY_BEGIN_C_DECLS +#undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE +#undef JSON_HEDLEY_CLANG_HAS_BUILTIN +#undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE +#undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE +#undef JSON_HEDLEY_CLANG_HAS_EXTENSION +#undef JSON_HEDLEY_CLANG_HAS_FEATURE +#undef JSON_HEDLEY_CLANG_HAS_WARNING +#undef JSON_HEDLEY_COMPCERT_VERSION +#undef JSON_HEDLEY_COMPCERT_VERSION_CHECK +#undef JSON_HEDLEY_CONCAT +#undef JSON_HEDLEY_CONCAT3 +#undef JSON_HEDLEY_CONCAT3_EX +#undef JSON_HEDLEY_CONCAT_EX +#undef JSON_HEDLEY_CONST +#undef JSON_HEDLEY_CONSTEXPR +#undef JSON_HEDLEY_CONST_CAST +#undef JSON_HEDLEY_CPP_CAST +#undef JSON_HEDLEY_CRAY_VERSION +#undef JSON_HEDLEY_CRAY_VERSION_CHECK +#undef JSON_HEDLEY_C_DECL +#undef JSON_HEDLEY_DEPRECATED +#undef JSON_HEDLEY_DEPRECATED_FOR +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#undef JSON_HEDLEY_DIAGNOSTIC_POP +#undef JSON_HEDLEY_DIAGNOSTIC_PUSH +#undef JSON_HEDLEY_DMC_VERSION +#undef JSON_HEDLEY_DMC_VERSION_CHECK +#undef JSON_HEDLEY_EMPTY_BASES +#undef JSON_HEDLEY_EMSCRIPTEN_VERSION +#undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK +#undef JSON_HEDLEY_END_C_DECLS +#undef JSON_HEDLEY_FLAGS +#undef JSON_HEDLEY_FLAGS_CAST +#undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE +#undef JSON_HEDLEY_GCC_HAS_BUILTIN +#undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE +#undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE +#undef JSON_HEDLEY_GCC_HAS_EXTENSION +#undef JSON_HEDLEY_GCC_HAS_FEATURE +#undef JSON_HEDLEY_GCC_HAS_WARNING +#undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK +#undef JSON_HEDLEY_GCC_VERSION +#undef JSON_HEDLEY_GCC_VERSION_CHECK +#undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE +#undef JSON_HEDLEY_GNUC_HAS_BUILTIN +#undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE +#undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE +#undef JSON_HEDLEY_GNUC_HAS_EXTENSION +#undef JSON_HEDLEY_GNUC_HAS_FEATURE +#undef JSON_HEDLEY_GNUC_HAS_WARNING +#undef JSON_HEDLEY_GNUC_VERSION +#undef JSON_HEDLEY_GNUC_VERSION_CHECK +#undef JSON_HEDLEY_HAS_ATTRIBUTE +#undef JSON_HEDLEY_HAS_BUILTIN +#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE +#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS +#undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE +#undef JSON_HEDLEY_HAS_EXTENSION +#undef JSON_HEDLEY_HAS_FEATURE +#undef JSON_HEDLEY_HAS_WARNING +#undef JSON_HEDLEY_IAR_VERSION +#undef JSON_HEDLEY_IAR_VERSION_CHECK +#undef JSON_HEDLEY_IBM_VERSION +#undef JSON_HEDLEY_IBM_VERSION_CHECK +#undef JSON_HEDLEY_IMPORT +#undef JSON_HEDLEY_INLINE +#undef JSON_HEDLEY_INTEL_VERSION +#undef JSON_HEDLEY_INTEL_VERSION_CHECK +#undef JSON_HEDLEY_IS_CONSTANT +#undef JSON_HEDLEY_IS_CONSTEXPR_ +#undef JSON_HEDLEY_LIKELY +#undef JSON_HEDLEY_MALLOC +#undef JSON_HEDLEY_MESSAGE +#undef JSON_HEDLEY_MSVC_VERSION +#undef JSON_HEDLEY_MSVC_VERSION_CHECK +#undef JSON_HEDLEY_NEVER_INLINE +#undef JSON_HEDLEY_NON_NULL +#undef JSON_HEDLEY_NO_ESCAPE +#undef JSON_HEDLEY_NO_RETURN +#undef JSON_HEDLEY_NO_THROW +#undef JSON_HEDLEY_NULL +#undef JSON_HEDLEY_PELLES_VERSION +#undef JSON_HEDLEY_PELLES_VERSION_CHECK +#undef JSON_HEDLEY_PGI_VERSION +#undef JSON_HEDLEY_PGI_VERSION_CHECK +#undef JSON_HEDLEY_PREDICT +#undef JSON_HEDLEY_PRINTF_FORMAT +#undef JSON_HEDLEY_PRIVATE +#undef JSON_HEDLEY_PUBLIC +#undef JSON_HEDLEY_PURE +#undef JSON_HEDLEY_REINTERPRET_CAST +#undef JSON_HEDLEY_REQUIRE +#undef JSON_HEDLEY_REQUIRE_CONSTEXPR +#undef JSON_HEDLEY_REQUIRE_MSG +#undef JSON_HEDLEY_RESTRICT +#undef JSON_HEDLEY_RETURNS_NON_NULL +#undef JSON_HEDLEY_SENTINEL +#undef JSON_HEDLEY_STATIC_ASSERT +#undef JSON_HEDLEY_STATIC_CAST +#undef JSON_HEDLEY_STRINGIFY +#undef JSON_HEDLEY_STRINGIFY_EX +#undef JSON_HEDLEY_SUNPRO_VERSION +#undef JSON_HEDLEY_SUNPRO_VERSION_CHECK +#undef JSON_HEDLEY_TINYC_VERSION +#undef JSON_HEDLEY_TINYC_VERSION_CHECK +#undef JSON_HEDLEY_TI_ARMCL_VERSION +#undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK +#undef JSON_HEDLEY_TI_CL2000_VERSION +#undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK +#undef JSON_HEDLEY_TI_CL430_VERSION +#undef JSON_HEDLEY_TI_CL430_VERSION_CHECK +#undef JSON_HEDLEY_TI_CL6X_VERSION +#undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK +#undef JSON_HEDLEY_TI_CL7X_VERSION +#undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK +#undef JSON_HEDLEY_TI_CLPRU_VERSION +#undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK +#undef JSON_HEDLEY_TI_VERSION +#undef JSON_HEDLEY_TI_VERSION_CHECK +#undef JSON_HEDLEY_UNAVAILABLE +#undef JSON_HEDLEY_UNLIKELY +#undef JSON_HEDLEY_UNPREDICTABLE +#undef JSON_HEDLEY_UNREACHABLE +#undef JSON_HEDLEY_UNREACHABLE_RETURN +#undef JSON_HEDLEY_VERSION +#undef JSON_HEDLEY_VERSION_DECODE_MAJOR +#undef JSON_HEDLEY_VERSION_DECODE_MINOR +#undef JSON_HEDLEY_VERSION_DECODE_REVISION +#undef JSON_HEDLEY_VERSION_ENCODE +#undef JSON_HEDLEY_WARNING +#undef JSON_HEDLEY_WARN_UNUSED_RESULT +#undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG +#undef JSON_HEDLEY_FALL_THROUGH diff --git a/external/json/meson.build b/external/json/meson.build new file mode 100644 index 0000000..c7b2cb4 --- /dev/null +++ b/external/json/meson.build @@ -0,0 +1,23 @@ +project('nlohmann_json', + 'cpp', + version : '3.9.1', + license : 'MIT', +) + +nlohmann_json_dep = declare_dependency( + include_directories: include_directories('single_include') +) + +nlohmann_json_multiple_headers = declare_dependency( + include_directories: include_directories('include') +) + +if not meson.is_subproject() +install_headers('single_include/nlohmann/json.hpp', subdir: 'nlohmann') + +pkgc = import('pkgconfig') +pkgc.generate(name: 'nlohmann_json', + version: meson.project_version(), + description: 'JSON for Modern C++' +) +endif diff --git a/external/json/single_include/nlohmann/json.hpp b/external/json/single_include/nlohmann/json.hpp new file mode 100644 index 0000000..a70aaf8 --- /dev/null +++ b/external/json/single_include/nlohmann/json.hpp @@ -0,0 +1,25447 @@ +/* + __ _____ _____ _____ + __| | __| | | | JSON for Modern C++ +| | |__ | | | | | | version 3.9.1 +|_____|_____|_____|_|___| https://github.com/nlohmann/json + +Licensed under the MIT License . +SPDX-License-Identifier: MIT +Copyright (c) 2013-2019 Niels Lohmann . + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ + +#ifndef INCLUDE_NLOHMANN_JSON_HPP_ +#define INCLUDE_NLOHMANN_JSON_HPP_ + +#define NLOHMANN_JSON_VERSION_MAJOR 3 +#define NLOHMANN_JSON_VERSION_MINOR 9 +#define NLOHMANN_JSON_VERSION_PATCH 1 + +#include // all_of, find, for_each +#include // nullptr_t, ptrdiff_t, size_t +#include // hash, less +#include // initializer_list +#include // istream, ostream +#include // random_access_iterator_tag +#include // unique_ptr +#include // accumulate +#include // string, stoi, to_string +#include // declval, forward, move, pair, swap +#include // vector + +// #include + + +#include + +// #include + + +#include // transform +#include // array +#include // forward_list +#include // inserter, front_inserter, end +#include // map +#include // string +#include // tuple, make_tuple +#include // is_arithmetic, is_same, is_enum, underlying_type, is_convertible +#include // unordered_map +#include // pair, declval +#include // valarray + +// #include + + +#include // exception +#include // runtime_error +#include // to_string + +// #include + + +#include // size_t + +namespace nlohmann +{ +namespace detail +{ +/// struct to capture the start position of the current token +struct position_t +{ + /// the total number of characters read + std::size_t chars_read_total = 0; + /// the number of characters read in the current line + std::size_t chars_read_current_line = 0; + /// the number of lines read + std::size_t lines_read = 0; + + /// conversion to size_t to preserve SAX interface + constexpr operator size_t() const + { + return chars_read_total; + } +}; + +} // namespace detail +} // namespace nlohmann + +// #include + + +#include // pair +// #include +/* Hedley - https://nemequ.github.io/hedley + * Created by Evan Nemerson + * + * To the extent possible under law, the author(s) have dedicated all + * copyright and related and neighboring rights to this software to + * the public domain worldwide. This software is distributed without + * any warranty. + * + * For details, see . + * SPDX-License-Identifier: CC0-1.0 + */ + +#if !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < 13) +#if defined(JSON_HEDLEY_VERSION) + #undef JSON_HEDLEY_VERSION +#endif +#define JSON_HEDLEY_VERSION 13 + +#if defined(JSON_HEDLEY_STRINGIFY_EX) + #undef JSON_HEDLEY_STRINGIFY_EX +#endif +#define JSON_HEDLEY_STRINGIFY_EX(x) #x + +#if defined(JSON_HEDLEY_STRINGIFY) + #undef JSON_HEDLEY_STRINGIFY +#endif +#define JSON_HEDLEY_STRINGIFY(x) JSON_HEDLEY_STRINGIFY_EX(x) + +#if defined(JSON_HEDLEY_CONCAT_EX) + #undef JSON_HEDLEY_CONCAT_EX +#endif +#define JSON_HEDLEY_CONCAT_EX(a,b) a##b + +#if defined(JSON_HEDLEY_CONCAT) + #undef JSON_HEDLEY_CONCAT +#endif +#define JSON_HEDLEY_CONCAT(a,b) JSON_HEDLEY_CONCAT_EX(a,b) + +#if defined(JSON_HEDLEY_CONCAT3_EX) + #undef JSON_HEDLEY_CONCAT3_EX +#endif +#define JSON_HEDLEY_CONCAT3_EX(a,b,c) a##b##c + +#if defined(JSON_HEDLEY_CONCAT3) + #undef JSON_HEDLEY_CONCAT3 +#endif +#define JSON_HEDLEY_CONCAT3(a,b,c) JSON_HEDLEY_CONCAT3_EX(a,b,c) + +#if defined(JSON_HEDLEY_VERSION_ENCODE) + #undef JSON_HEDLEY_VERSION_ENCODE +#endif +#define JSON_HEDLEY_VERSION_ENCODE(major,minor,revision) (((major) * 1000000) + ((minor) * 1000) + (revision)) + +#if defined(JSON_HEDLEY_VERSION_DECODE_MAJOR) + #undef JSON_HEDLEY_VERSION_DECODE_MAJOR +#endif +#define JSON_HEDLEY_VERSION_DECODE_MAJOR(version) ((version) / 1000000) + +#if defined(JSON_HEDLEY_VERSION_DECODE_MINOR) + #undef JSON_HEDLEY_VERSION_DECODE_MINOR +#endif +#define JSON_HEDLEY_VERSION_DECODE_MINOR(version) (((version) % 1000000) / 1000) + +#if defined(JSON_HEDLEY_VERSION_DECODE_REVISION) + #undef JSON_HEDLEY_VERSION_DECODE_REVISION +#endif +#define JSON_HEDLEY_VERSION_DECODE_REVISION(version) ((version) % 1000) + +#if defined(JSON_HEDLEY_GNUC_VERSION) + #undef JSON_HEDLEY_GNUC_VERSION +#endif +#if defined(__GNUC__) && defined(__GNUC_PATCHLEVEL__) + #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__) +#elif defined(__GNUC__) + #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, 0) +#endif + +#if defined(JSON_HEDLEY_GNUC_VERSION_CHECK) + #undef JSON_HEDLEY_GNUC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_GNUC_VERSION) + #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GNUC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_MSVC_VERSION) + #undef JSON_HEDLEY_MSVC_VERSION +#endif +#if defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 140000000) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 10000000, (_MSC_FULL_VER % 10000000) / 100000, (_MSC_FULL_VER % 100000) / 100) +#elif defined(_MSC_FULL_VER) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 1000000, (_MSC_FULL_VER % 1000000) / 10000, (_MSC_FULL_VER % 10000) / 10) +#elif defined(_MSC_VER) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_VER / 100, _MSC_VER % 100, 0) +#endif + +#if defined(JSON_HEDLEY_MSVC_VERSION_CHECK) + #undef JSON_HEDLEY_MSVC_VERSION_CHECK +#endif +#if !defined(_MSC_VER) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (0) +#elif defined(_MSC_VER) && (_MSC_VER >= 1400) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch))) +#elif defined(_MSC_VER) && (_MSC_VER >= 1200) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch))) +#else + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_VER >= ((major * 100) + (minor))) +#endif + +#if defined(JSON_HEDLEY_INTEL_VERSION) + #undef JSON_HEDLEY_INTEL_VERSION +#endif +#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE) + #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, __INTEL_COMPILER_UPDATE) +#elif defined(__INTEL_COMPILER) + #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, 0) +#endif + +#if defined(JSON_HEDLEY_INTEL_VERSION_CHECK) + #undef JSON_HEDLEY_INTEL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_INTEL_VERSION) + #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_PGI_VERSION) + #undef JSON_HEDLEY_PGI_VERSION +#endif +#if defined(__PGI) && defined(__PGIC__) && defined(__PGIC_MINOR__) && defined(__PGIC_PATCHLEVEL__) + #define JSON_HEDLEY_PGI_VERSION JSON_HEDLEY_VERSION_ENCODE(__PGIC__, __PGIC_MINOR__, __PGIC_PATCHLEVEL__) +#endif + +#if defined(JSON_HEDLEY_PGI_VERSION_CHECK) + #undef JSON_HEDLEY_PGI_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_PGI_VERSION) + #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PGI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_SUNPRO_VERSION) + #undef JSON_HEDLEY_SUNPRO_VERSION +#endif +#if defined(__SUNPRO_C) && (__SUNPRO_C > 0x1000) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_C >> 16) & 0xf) * 10) + ((__SUNPRO_C >> 12) & 0xf), (((__SUNPRO_C >> 8) & 0xf) * 10) + ((__SUNPRO_C >> 4) & 0xf), (__SUNPRO_C & 0xf) * 10) +#elif defined(__SUNPRO_C) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_C >> 8) & 0xf, (__SUNPRO_C >> 4) & 0xf, (__SUNPRO_C) & 0xf) +#elif defined(__SUNPRO_CC) && (__SUNPRO_CC > 0x1000) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_CC >> 16) & 0xf) * 10) + ((__SUNPRO_CC >> 12) & 0xf), (((__SUNPRO_CC >> 8) & 0xf) * 10) + ((__SUNPRO_CC >> 4) & 0xf), (__SUNPRO_CC & 0xf) * 10) +#elif defined(__SUNPRO_CC) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_CC >> 8) & 0xf, (__SUNPRO_CC >> 4) & 0xf, (__SUNPRO_CC) & 0xf) +#endif + +#if defined(JSON_HEDLEY_SUNPRO_VERSION_CHECK) + #undef JSON_HEDLEY_SUNPRO_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_SUNPRO_VERSION) + #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_SUNPRO_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) + #undef JSON_HEDLEY_EMSCRIPTEN_VERSION +#endif +#if defined(__EMSCRIPTEN__) + #define JSON_HEDLEY_EMSCRIPTEN_VERSION JSON_HEDLEY_VERSION_ENCODE(__EMSCRIPTEN_major__, __EMSCRIPTEN_minor__, __EMSCRIPTEN_tiny__) +#endif + +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK) + #undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) + #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_EMSCRIPTEN_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_ARM_VERSION) + #undef JSON_HEDLEY_ARM_VERSION +#endif +#if defined(__CC_ARM) && defined(__ARMCOMPILER_VERSION) + #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCOMPILER_VERSION / 1000000, (__ARMCOMPILER_VERSION % 1000000) / 10000, (__ARMCOMPILER_VERSION % 10000) / 100) +#elif defined(__CC_ARM) && defined(__ARMCC_VERSION) + #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCC_VERSION / 1000000, (__ARMCC_VERSION % 1000000) / 10000, (__ARMCC_VERSION % 10000) / 100) +#endif + +#if defined(JSON_HEDLEY_ARM_VERSION_CHECK) + #undef JSON_HEDLEY_ARM_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_ARM_VERSION) + #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_ARM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_IBM_VERSION) + #undef JSON_HEDLEY_IBM_VERSION +#endif +#if defined(__ibmxl__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ibmxl_version__, __ibmxl_release__, __ibmxl_modification__) +#elif defined(__xlC__) && defined(__xlC_ver__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, (__xlC_ver__ >> 8) & 0xff) +#elif defined(__xlC__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, 0) +#endif + +#if defined(JSON_HEDLEY_IBM_VERSION_CHECK) + #undef JSON_HEDLEY_IBM_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_IBM_VERSION) + #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IBM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_VERSION) + #undef JSON_HEDLEY_TI_VERSION +#endif +#if \ + defined(__TI_COMPILER_VERSION__) && \ + ( \ + defined(__TMS470__) || defined(__TI_ARM__) || \ + defined(__MSP430__) || \ + defined(__TMS320C2000__) \ + ) +#if (__TI_COMPILER_VERSION__ >= 16000000) + #define JSON_HEDLEY_TI_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif +#endif + +#if defined(JSON_HEDLEY_TI_VERSION_CHECK) + #undef JSON_HEDLEY_TI_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_VERSION) + #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL2000_VERSION) + #undef JSON_HEDLEY_TI_CL2000_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C2000__) + #define JSON_HEDLEY_TI_CL2000_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL2000_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL2000_VERSION) + #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL2000_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL430_VERSION) + #undef JSON_HEDLEY_TI_CL430_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__MSP430__) + #define JSON_HEDLEY_TI_CL430_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL430_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL430_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL430_VERSION) + #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL430_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) + #undef JSON_HEDLEY_TI_ARMCL_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && (defined(__TMS470__) || defined(__TI_ARM__)) + #define JSON_HEDLEY_TI_ARMCL_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION_CHECK) + #undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) + #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_ARMCL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL6X_VERSION) + #undef JSON_HEDLEY_TI_CL6X_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C6X__) + #define JSON_HEDLEY_TI_CL6X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL6X_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL6X_VERSION) + #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL6X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL7X_VERSION) + #undef JSON_HEDLEY_TI_CL7X_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__C7000__) + #define JSON_HEDLEY_TI_CL7X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL7X_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL7X_VERSION) + #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL7X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) + #undef JSON_HEDLEY_TI_CLPRU_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__PRU__) + #define JSON_HEDLEY_TI_CLPRU_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) + #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CLPRU_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_CRAY_VERSION) + #undef JSON_HEDLEY_CRAY_VERSION +#endif +#if defined(_CRAYC) + #if defined(_RELEASE_PATCHLEVEL) + #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, _RELEASE_PATCHLEVEL) + #else + #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, 0) + #endif +#endif + +#if defined(JSON_HEDLEY_CRAY_VERSION_CHECK) + #undef JSON_HEDLEY_CRAY_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_CRAY_VERSION) + #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_CRAY_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_IAR_VERSION) + #undef JSON_HEDLEY_IAR_VERSION +#endif +#if defined(__IAR_SYSTEMS_ICC__) + #if __VER__ > 1000 + #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE((__VER__ / 1000000), ((__VER__ / 1000) % 1000), (__VER__ % 1000)) + #else + #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE(VER / 100, __VER__ % 100, 0) + #endif +#endif + +#if defined(JSON_HEDLEY_IAR_VERSION_CHECK) + #undef JSON_HEDLEY_IAR_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_IAR_VERSION) + #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IAR_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TINYC_VERSION) + #undef JSON_HEDLEY_TINYC_VERSION +#endif +#if defined(__TINYC__) + #define JSON_HEDLEY_TINYC_VERSION JSON_HEDLEY_VERSION_ENCODE(__TINYC__ / 1000, (__TINYC__ / 100) % 10, __TINYC__ % 100) +#endif + +#if defined(JSON_HEDLEY_TINYC_VERSION_CHECK) + #undef JSON_HEDLEY_TINYC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TINYC_VERSION) + #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TINYC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_DMC_VERSION) + #undef JSON_HEDLEY_DMC_VERSION +#endif +#if defined(__DMC__) + #define JSON_HEDLEY_DMC_VERSION JSON_HEDLEY_VERSION_ENCODE(__DMC__ >> 8, (__DMC__ >> 4) & 0xf, __DMC__ & 0xf) +#endif + +#if defined(JSON_HEDLEY_DMC_VERSION_CHECK) + #undef JSON_HEDLEY_DMC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_DMC_VERSION) + #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_DMC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_COMPCERT_VERSION) + #undef JSON_HEDLEY_COMPCERT_VERSION +#endif +#if defined(__COMPCERT_VERSION__) + #define JSON_HEDLEY_COMPCERT_VERSION JSON_HEDLEY_VERSION_ENCODE(__COMPCERT_VERSION__ / 10000, (__COMPCERT_VERSION__ / 100) % 100, __COMPCERT_VERSION__ % 100) +#endif + +#if defined(JSON_HEDLEY_COMPCERT_VERSION_CHECK) + #undef JSON_HEDLEY_COMPCERT_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_COMPCERT_VERSION) + #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_COMPCERT_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_PELLES_VERSION) + #undef JSON_HEDLEY_PELLES_VERSION +#endif +#if defined(__POCC__) + #define JSON_HEDLEY_PELLES_VERSION JSON_HEDLEY_VERSION_ENCODE(__POCC__ / 100, __POCC__ % 100, 0) +#endif + +#if defined(JSON_HEDLEY_PELLES_VERSION_CHECK) + #undef JSON_HEDLEY_PELLES_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_PELLES_VERSION) + #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PELLES_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_GCC_VERSION) + #undef JSON_HEDLEY_GCC_VERSION +#endif +#if \ + defined(JSON_HEDLEY_GNUC_VERSION) && \ + !defined(__clang__) && \ + !defined(JSON_HEDLEY_INTEL_VERSION) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_ARM_VERSION) && \ + !defined(JSON_HEDLEY_TI_VERSION) && \ + !defined(JSON_HEDLEY_TI_ARMCL_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL430_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL2000_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL6X_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL7X_VERSION) && \ + !defined(JSON_HEDLEY_TI_CLPRU_VERSION) && \ + !defined(__COMPCERT__) + #define JSON_HEDLEY_GCC_VERSION JSON_HEDLEY_GNUC_VERSION +#endif + +#if defined(JSON_HEDLEY_GCC_VERSION_CHECK) + #undef JSON_HEDLEY_GCC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_GCC_VERSION) + #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) __has_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE +#endif +#if \ + defined(__has_cpp_attribute) && \ + defined(__cplusplus) && \ + (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS) + #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS +#endif +#if !defined(__cplusplus) || !defined(__has_cpp_attribute) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) +#elif \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_IAR_VERSION) && \ + (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) && \ + (!defined(JSON_HEDLEY_MSVC_VERSION) || JSON_HEDLEY_MSVC_VERSION_CHECK(19,20,0)) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(ns::attribute) +#else + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE +#endif +#if defined(__has_cpp_attribute) && defined(__cplusplus) + #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE +#endif +#if defined(__has_cpp_attribute) && defined(__cplusplus) + #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_BUILTIN) + #undef JSON_HEDLEY_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_HAS_BUILTIN(builtin) __has_builtin(builtin) +#else + #define JSON_HEDLEY_HAS_BUILTIN(builtin) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_BUILTIN) + #undef JSON_HEDLEY_GNUC_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) +#else + #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_BUILTIN) + #undef JSON_HEDLEY_GCC_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) +#else + #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_FEATURE) + #undef JSON_HEDLEY_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_HAS_FEATURE(feature) __has_feature(feature) +#else + #define JSON_HEDLEY_HAS_FEATURE(feature) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_FEATURE) + #undef JSON_HEDLEY_GNUC_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) +#else + #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_FEATURE) + #undef JSON_HEDLEY_GCC_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) +#else + #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_EXTENSION) + #undef JSON_HEDLEY_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_HAS_EXTENSION(extension) __has_extension(extension) +#else + #define JSON_HEDLEY_HAS_EXTENSION(extension) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_EXTENSION) + #undef JSON_HEDLEY_GNUC_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) +#else + #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_EXTENSION) + #undef JSON_HEDLEY_GCC_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) +#else + #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_WARNING) + #undef JSON_HEDLEY_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_HAS_WARNING(warning) __has_warning(warning) +#else + #define JSON_HEDLEY_HAS_WARNING(warning) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_WARNING) + #undef JSON_HEDLEY_GNUC_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) +#else + #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_WARNING) + #undef JSON_HEDLEY_GCC_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) +#else + #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +/* JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ is for + HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ +#endif +#if defined(__cplusplus) +# if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat") +# if JSON_HEDLEY_HAS_WARNING("-Wc++17-extensions") +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + _Pragma("clang diagnostic ignored \"-Wc++17-extensions\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# endif +# endif +#endif +#if !defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(x) x +#endif + +#if defined(JSON_HEDLEY_CONST_CAST) + #undef JSON_HEDLEY_CONST_CAST +#endif +#if defined(__cplusplus) +# define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast(expr)) +#elif \ + JSON_HEDLEY_HAS_WARNING("-Wcast-qual") || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL \ + ((T) (expr)); \ + JSON_HEDLEY_DIAGNOSTIC_POP \ + })) +#else +# define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_REINTERPRET_CAST) + #undef JSON_HEDLEY_REINTERPRET_CAST +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast(expr)) +#else + #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_STATIC_CAST) + #undef JSON_HEDLEY_STATIC_CAST +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_STATIC_CAST(T, expr) (static_cast(expr)) +#else + #define JSON_HEDLEY_STATIC_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_CPP_CAST) + #undef JSON_HEDLEY_CPP_CAST +#endif +#if defined(__cplusplus) +# if JSON_HEDLEY_HAS_WARNING("-Wold-style-cast") +# define JSON_HEDLEY_CPP_CAST(T, expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wold-style-cast\"") \ + ((T) (expr)) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# elif JSON_HEDLEY_IAR_VERSION_CHECK(8,3,0) +# define JSON_HEDLEY_CPP_CAST(T, expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("diag_suppress=Pe137") \ + JSON_HEDLEY_DIAGNOSTIC_POP \ +# else +# define JSON_HEDLEY_CPP_CAST(T, expr) ((T) (expr)) +# endif +#else +# define JSON_HEDLEY_CPP_CAST(T, expr) (expr) +#endif + +#if \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ + defined(__clang__) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,17) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(8,0,0) || \ + (JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) && defined(__C99_PRAGMA_OPERATOR)) + #define JSON_HEDLEY_PRAGMA(value) _Pragma(#value) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_PRAGMA(value) __pragma(value) +#else + #define JSON_HEDLEY_PRAGMA(value) +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_PUSH) + #undef JSON_HEDLEY_DIAGNOSTIC_PUSH +#endif +#if defined(JSON_HEDLEY_DIAGNOSTIC_POP) + #undef JSON_HEDLEY_DIAGNOSTIC_POP +#endif +#if defined(__clang__) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("clang diagnostic push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("clang diagnostic pop") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH __pragma(warning(push)) + #define JSON_HEDLEY_DIAGNOSTIC_POP __pragma(warning(pop)) +#elif JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("pop") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,4,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("diag_push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("diag_pop") +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") +#else + #define JSON_HEDLEY_DIAGNOSTIC_PUSH + #define JSON_HEDLEY_DIAGNOSTIC_POP +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wdeprecated-declarations") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warning(disable:1478 1786)") +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:4996)) +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1291,1718") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && !defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,E_DEPRECATED_ATT,E_DEPRECATED_ATT_MESS)") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,symdeprecated,symdeprecated2)") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress=Pe1444,Pe1215") +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warn(disable:2241)") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("clang diagnostic ignored \"-Wunknown-pragmas\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("warning(disable:161)") +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 1675") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("GCC diagnostic ignored \"-Wunknown-pragmas\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:4068)) +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(16,9,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress=Pe161") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-attributes") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("clang diagnostic ignored \"-Wunknown-attributes\"") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("warning(disable:1292)") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:5030)) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("error_messages(off,attrskipunsup)") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1173") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress=Pe1097") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wcast-qual") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("clang diagnostic ignored \"-Wcast-qual\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("warning(disable:2203 2331)") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("GCC diagnostic ignored \"-Wcast-qual\"") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#endif + +#if defined(JSON_HEDLEY_DEPRECATED) + #undef JSON_HEDLEY_DEPRECATED +#endif +#if defined(JSON_HEDLEY_DEPRECATED_FOR) + #undef JSON_HEDLEY_DEPRECATED_FOR +#endif +#if JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) + #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated("Since " # since)) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated("Since " #since "; use " #replacement)) +#elif defined(__cplusplus) && (__cplusplus >= 201402L) + #define JSON_HEDLEY_DEPRECATED(since) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since)]]) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since "; use " #replacement)]]) +#elif \ + JSON_HEDLEY_HAS_EXTENSION(attribute_deprecated_with_message) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) + #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__("Since " #since))) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__("Since " #since "; use " #replacement))) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(deprecated) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__)) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_PELLES_VERSION_CHECK(6,50,0) + #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated) +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DEPRECATED(since) _Pragma("deprecated") + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) _Pragma("deprecated") +#else + #define JSON_HEDLEY_DEPRECATED(since) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) +#endif + +#if defined(JSON_HEDLEY_UNAVAILABLE) + #undef JSON_HEDLEY_UNAVAILABLE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(warning) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_UNAVAILABLE(available_since) __attribute__((__warning__("Not available until " #available_since))) +#else + #define JSON_HEDLEY_UNAVAILABLE(available_since) +#endif + +#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT) + #undef JSON_HEDLEY_WARN_UNUSED_RESULT +#endif +#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT_MSG) + #undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG +#endif +#if (JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) >= 201907L) + #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard(msg)]]) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) + #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(warn_unused_result) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) __attribute__((__warn_unused_result__)) +#elif defined(_Check_return_) /* SAL */ + #define JSON_HEDLEY_WARN_UNUSED_RESULT _Check_return_ + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) _Check_return_ +#else + #define JSON_HEDLEY_WARN_UNUSED_RESULT + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) +#endif + +#if defined(JSON_HEDLEY_SENTINEL) + #undef JSON_HEDLEY_SENTINEL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(sentinel) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) + #define JSON_HEDLEY_SENTINEL(position) __attribute__((__sentinel__(position))) +#else + #define JSON_HEDLEY_SENTINEL(position) +#endif + +#if defined(JSON_HEDLEY_NO_RETURN) + #undef JSON_HEDLEY_NO_RETURN +#endif +#if JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_NO_RETURN __noreturn +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) +#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L + #define JSON_HEDLEY_NO_RETURN _Noreturn +#elif defined(__cplusplus) && (__cplusplus >= 201103L) + #define JSON_HEDLEY_NO_RETURN JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[noreturn]]) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(noreturn) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,2,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_NO_RETURN _Pragma("does_not_return") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) + #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) + #define JSON_HEDLEY_NO_RETURN _Pragma("FUNC_NEVER_RETURNS;") +#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) + #define JSON_HEDLEY_NO_RETURN __attribute((noreturn)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) + #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) +#else + #define JSON_HEDLEY_NO_RETURN +#endif + +#if defined(JSON_HEDLEY_NO_ESCAPE) + #undef JSON_HEDLEY_NO_ESCAPE +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(noescape) + #define JSON_HEDLEY_NO_ESCAPE __attribute__((__noescape__)) +#else + #define JSON_HEDLEY_NO_ESCAPE +#endif + +#if defined(JSON_HEDLEY_UNREACHABLE) + #undef JSON_HEDLEY_UNREACHABLE +#endif +#if defined(JSON_HEDLEY_UNREACHABLE_RETURN) + #undef JSON_HEDLEY_UNREACHABLE_RETURN +#endif +#if defined(JSON_HEDLEY_ASSUME) + #undef JSON_HEDLEY_ASSUME +#endif +#if \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_ASSUME(expr) __assume(expr) +#elif JSON_HEDLEY_HAS_BUILTIN(__builtin_assume) + #define JSON_HEDLEY_ASSUME(expr) __builtin_assume(expr) +#elif \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) + #if defined(__cplusplus) + #define JSON_HEDLEY_ASSUME(expr) std::_nassert(expr) + #else + #define JSON_HEDLEY_ASSUME(expr) _nassert(expr) + #endif +#endif +#if \ + (JSON_HEDLEY_HAS_BUILTIN(__builtin_unreachable) && (!defined(JSON_HEDLEY_ARM_VERSION))) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,10,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,5) + #define JSON_HEDLEY_UNREACHABLE() __builtin_unreachable() +#elif defined(JSON_HEDLEY_ASSUME) + #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) +#endif +#if !defined(JSON_HEDLEY_ASSUME) + #if defined(JSON_HEDLEY_UNREACHABLE) + #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, ((expr) ? 1 : (JSON_HEDLEY_UNREACHABLE(), 1))) + #else + #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, expr) + #endif +#endif +#if defined(JSON_HEDLEY_UNREACHABLE) + #if \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (JSON_HEDLEY_STATIC_CAST(void, JSON_HEDLEY_ASSUME(0)), (value)) + #else + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) JSON_HEDLEY_UNREACHABLE() + #endif +#else + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (value) +#endif +#if !defined(JSON_HEDLEY_UNREACHABLE) + #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) +#endif + +JSON_HEDLEY_DIAGNOSTIC_PUSH +#if JSON_HEDLEY_HAS_WARNING("-Wpedantic") + #pragma clang diagnostic ignored "-Wpedantic" +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat-pedantic") && defined(__cplusplus) + #pragma clang diagnostic ignored "-Wc++98-compat-pedantic" +#endif +#if JSON_HEDLEY_GCC_HAS_WARNING("-Wvariadic-macros",4,0,0) + #if defined(__clang__) + #pragma clang diagnostic ignored "-Wvariadic-macros" + #elif defined(JSON_HEDLEY_GCC_VERSION) + #pragma GCC diagnostic ignored "-Wvariadic-macros" + #endif +#endif +#if defined(JSON_HEDLEY_NON_NULL) + #undef JSON_HEDLEY_NON_NULL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(nonnull) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) + #define JSON_HEDLEY_NON_NULL(...) __attribute__((__nonnull__(__VA_ARGS__))) +#else + #define JSON_HEDLEY_NON_NULL(...) +#endif +JSON_HEDLEY_DIAGNOSTIC_POP + +#if defined(JSON_HEDLEY_PRINTF_FORMAT) + #undef JSON_HEDLEY_PRINTF_FORMAT +#endif +#if defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && !defined(__USE_MINGW_ANSI_STDIO) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(ms_printf, string_idx, first_to_check))) +#elif defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && defined(__USE_MINGW_ANSI_STDIO) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(gnu_printf, string_idx, first_to_check))) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(format) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(__printf__, string_idx, first_to_check))) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(6,0,0) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __declspec(vaformat(printf,string_idx,first_to_check)) +#else + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) +#endif + +#if defined(JSON_HEDLEY_CONSTEXPR) + #undef JSON_HEDLEY_CONSTEXPR +#endif +#if defined(__cplusplus) + #if __cplusplus >= 201103L + #define JSON_HEDLEY_CONSTEXPR JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(constexpr) + #endif +#endif +#if !defined(JSON_HEDLEY_CONSTEXPR) + #define JSON_HEDLEY_CONSTEXPR +#endif + +#if defined(JSON_HEDLEY_PREDICT) + #undef JSON_HEDLEY_PREDICT +#endif +#if defined(JSON_HEDLEY_LIKELY) + #undef JSON_HEDLEY_LIKELY +#endif +#if defined(JSON_HEDLEY_UNLIKELY) + #undef JSON_HEDLEY_UNLIKELY +#endif +#if defined(JSON_HEDLEY_UNPREDICTABLE) + #undef JSON_HEDLEY_UNPREDICTABLE +#endif +#if JSON_HEDLEY_HAS_BUILTIN(__builtin_unpredictable) + #define JSON_HEDLEY_UNPREDICTABLE(expr) __builtin_unpredictable((expr)) +#endif +#if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_expect_with_probability) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(9,0,0) +# define JSON_HEDLEY_PREDICT(expr, value, probability) __builtin_expect_with_probability( (expr), (value), (probability)) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) __builtin_expect_with_probability(!!(expr), 1 , (probability)) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) __builtin_expect_with_probability(!!(expr), 0 , (probability)) +# define JSON_HEDLEY_LIKELY(expr) __builtin_expect (!!(expr), 1 ) +# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect (!!(expr), 0 ) +#elif \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_expect) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,27) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) +# define JSON_HEDLEY_PREDICT(expr, expected, probability) \ + (((probability) >= 0.9) ? __builtin_expect((expr), (expected)) : (JSON_HEDLEY_STATIC_CAST(void, expected), (expr))) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) \ + (__extension__ ({ \ + double hedley_probability_ = (probability); \ + ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 1) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 0) : !!(expr))); \ + })) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) \ + (__extension__ ({ \ + double hedley_probability_ = (probability); \ + ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 0) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 1) : !!(expr))); \ + })) +# define JSON_HEDLEY_LIKELY(expr) __builtin_expect(!!(expr), 1) +# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect(!!(expr), 0) +#else +# define JSON_HEDLEY_PREDICT(expr, expected, probability) (JSON_HEDLEY_STATIC_CAST(void, expected), (expr)) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) (!!(expr)) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) (!!(expr)) +# define JSON_HEDLEY_LIKELY(expr) (!!(expr)) +# define JSON_HEDLEY_UNLIKELY(expr) (!!(expr)) +#endif +#if !defined(JSON_HEDLEY_UNPREDICTABLE) + #define JSON_HEDLEY_UNPREDICTABLE(expr) JSON_HEDLEY_PREDICT(expr, 1, 0.5) +#endif + +#if defined(JSON_HEDLEY_MALLOC) + #undef JSON_HEDLEY_MALLOC +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(malloc) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_MALLOC __attribute__((__malloc__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_MALLOC _Pragma("returns_new_memory") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(14, 0, 0) + #define JSON_HEDLEY_MALLOC __declspec(restrict) +#else + #define JSON_HEDLEY_MALLOC +#endif + +#if defined(JSON_HEDLEY_PURE) + #undef JSON_HEDLEY_PURE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(pure) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(2,96,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) +# define JSON_HEDLEY_PURE __attribute__((__pure__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) +# define JSON_HEDLEY_PURE _Pragma("does_not_write_global_data") +#elif defined(__cplusplus) && \ + ( \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) \ + ) +# define JSON_HEDLEY_PURE _Pragma("FUNC_IS_PURE;") +#else +# define JSON_HEDLEY_PURE +#endif + +#if defined(JSON_HEDLEY_CONST) + #undef JSON_HEDLEY_CONST +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(const) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(2,5,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_CONST __attribute__((__const__)) +#elif \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_CONST _Pragma("no_side_effect") +#else + #define JSON_HEDLEY_CONST JSON_HEDLEY_PURE +#endif + +#if defined(JSON_HEDLEY_RESTRICT) + #undef JSON_HEDLEY_RESTRICT +#endif +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__cplusplus) + #define JSON_HEDLEY_RESTRICT restrict +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,4) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ + defined(__clang__) + #define JSON_HEDLEY_RESTRICT __restrict +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,3,0) && !defined(__cplusplus) + #define JSON_HEDLEY_RESTRICT _Restrict +#else + #define JSON_HEDLEY_RESTRICT +#endif + +#if defined(JSON_HEDLEY_INLINE) + #undef JSON_HEDLEY_INLINE +#endif +#if \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ + (defined(__cplusplus) && (__cplusplus >= 199711L)) + #define JSON_HEDLEY_INLINE inline +#elif \ + defined(JSON_HEDLEY_GCC_VERSION) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(6,2,0) + #define JSON_HEDLEY_INLINE __inline__ +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,1,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_INLINE __inline +#else + #define JSON_HEDLEY_INLINE +#endif + +#if defined(JSON_HEDLEY_ALWAYS_INLINE) + #undef JSON_HEDLEY_ALWAYS_INLINE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(always_inline) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) +# define JSON_HEDLEY_ALWAYS_INLINE __attribute__((__always_inline__)) JSON_HEDLEY_INLINE +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) +# define JSON_HEDLEY_ALWAYS_INLINE __forceinline +#elif defined(__cplusplus) && \ + ( \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) \ + ) +# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("FUNC_ALWAYS_INLINE;") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) +# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("inline=forced") +#else +# define JSON_HEDLEY_ALWAYS_INLINE JSON_HEDLEY_INLINE +#endif + +#if defined(JSON_HEDLEY_NEVER_INLINE) + #undef JSON_HEDLEY_NEVER_INLINE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(noinline) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_NEVER_INLINE __attribute__((__noinline__)) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) + #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(10,2,0) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("noinline") +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("FUNC_CANNOT_INLINE;") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("inline=never") +#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) + #define JSON_HEDLEY_NEVER_INLINE __attribute((noinline)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) + #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) +#else + #define JSON_HEDLEY_NEVER_INLINE +#endif + +#if defined(JSON_HEDLEY_PRIVATE) + #undef JSON_HEDLEY_PRIVATE +#endif +#if defined(JSON_HEDLEY_PUBLIC) + #undef JSON_HEDLEY_PUBLIC +#endif +#if defined(JSON_HEDLEY_IMPORT) + #undef JSON_HEDLEY_IMPORT +#endif +#if defined(_WIN32) || defined(__CYGWIN__) +# define JSON_HEDLEY_PRIVATE +# define JSON_HEDLEY_PUBLIC __declspec(dllexport) +# define JSON_HEDLEY_IMPORT __declspec(dllimport) +#else +# if \ + JSON_HEDLEY_HAS_ATTRIBUTE(visibility) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + ( \ + defined(__TI_EABI__) && \ + ( \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) \ + ) \ + ) +# define JSON_HEDLEY_PRIVATE __attribute__((__visibility__("hidden"))) +# define JSON_HEDLEY_PUBLIC __attribute__((__visibility__("default"))) +# else +# define JSON_HEDLEY_PRIVATE +# define JSON_HEDLEY_PUBLIC +# endif +# define JSON_HEDLEY_IMPORT extern +#endif + +#if defined(JSON_HEDLEY_NO_THROW) + #undef JSON_HEDLEY_NO_THROW +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(nothrow) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_NO_THROW __attribute__((__nothrow__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) + #define JSON_HEDLEY_NO_THROW __declspec(nothrow) +#else + #define JSON_HEDLEY_NO_THROW +#endif + +#if defined(JSON_HEDLEY_FALL_THROUGH) + #undef JSON_HEDLEY_FALL_THROUGH +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(fallthrough) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(7,0,0) + #define JSON_HEDLEY_FALL_THROUGH __attribute__((__fallthrough__)) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(clang,fallthrough) + #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[clang::fallthrough]]) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(fallthrough) + #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[fallthrough]]) +#elif defined(__fallthrough) /* SAL */ + #define JSON_HEDLEY_FALL_THROUGH __fallthrough +#else + #define JSON_HEDLEY_FALL_THROUGH +#endif + +#if defined(JSON_HEDLEY_RETURNS_NON_NULL) + #undef JSON_HEDLEY_RETURNS_NON_NULL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(returns_nonnull) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) + #define JSON_HEDLEY_RETURNS_NON_NULL __attribute__((__returns_nonnull__)) +#elif defined(_Ret_notnull_) /* SAL */ + #define JSON_HEDLEY_RETURNS_NON_NULL _Ret_notnull_ +#else + #define JSON_HEDLEY_RETURNS_NON_NULL +#endif + +#if defined(JSON_HEDLEY_ARRAY_PARAM) + #undef JSON_HEDLEY_ARRAY_PARAM +#endif +#if \ + defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \ + !defined(__STDC_NO_VLA__) && \ + !defined(__cplusplus) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_TINYC_VERSION) + #define JSON_HEDLEY_ARRAY_PARAM(name) (name) +#else + #define JSON_HEDLEY_ARRAY_PARAM(name) +#endif + +#if defined(JSON_HEDLEY_IS_CONSTANT) + #undef JSON_HEDLEY_IS_CONSTANT +#endif +#if defined(JSON_HEDLEY_REQUIRE_CONSTEXPR) + #undef JSON_HEDLEY_REQUIRE_CONSTEXPR +#endif +/* JSON_HEDLEY_IS_CONSTEXPR_ is for + HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ +#if defined(JSON_HEDLEY_IS_CONSTEXPR_) + #undef JSON_HEDLEY_IS_CONSTEXPR_ +#endif +#if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_constant_p) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,19) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) && !defined(__cplusplus)) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) + #define JSON_HEDLEY_IS_CONSTANT(expr) __builtin_constant_p(expr) +#endif +#if !defined(__cplusplus) +# if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_types_compatible_p) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,24) +#if defined(__INTPTR_TYPE__) + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0)), int*) +#else + #include + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((intptr_t) ((expr) * 0)) : (int*) 0)), int*) +#endif +# elif \ + ( \ + defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && \ + !defined(JSON_HEDLEY_SUNPRO_VERSION) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_IAR_VERSION)) || \ + JSON_HEDLEY_HAS_EXTENSION(c_generic_selections) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,3,0) +#if defined(__INTPTR_TYPE__) + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0), int*: 1, void*: 0) +#else + #include + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((intptr_t) * 0) : (int*) 0), int*: 1, void*: 0) +#endif +# elif \ + defined(JSON_HEDLEY_GCC_VERSION) || \ + defined(JSON_HEDLEY_INTEL_VERSION) || \ + defined(JSON_HEDLEY_TINYC_VERSION) || \ + defined(JSON_HEDLEY_TI_ARMCL_VERSION) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(18,12,0) || \ + defined(JSON_HEDLEY_TI_CL2000_VERSION) || \ + defined(JSON_HEDLEY_TI_CL6X_VERSION) || \ + defined(JSON_HEDLEY_TI_CL7X_VERSION) || \ + defined(JSON_HEDLEY_TI_CLPRU_VERSION) || \ + defined(__clang__) +# define JSON_HEDLEY_IS_CONSTEXPR_(expr) ( \ + sizeof(void) != \ + sizeof(*( \ + 1 ? \ + ((void*) ((expr) * 0L) ) : \ +((struct { char v[sizeof(void) * 2]; } *) 1) \ + ) \ + ) \ + ) +# endif +#endif +#if defined(JSON_HEDLEY_IS_CONSTEXPR_) + #if !defined(JSON_HEDLEY_IS_CONSTANT) + #define JSON_HEDLEY_IS_CONSTANT(expr) JSON_HEDLEY_IS_CONSTEXPR_(expr) + #endif + #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (JSON_HEDLEY_IS_CONSTEXPR_(expr) ? (expr) : (-1)) +#else + #if !defined(JSON_HEDLEY_IS_CONSTANT) + #define JSON_HEDLEY_IS_CONSTANT(expr) (0) + #endif + #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (expr) +#endif + +#if defined(JSON_HEDLEY_BEGIN_C_DECLS) + #undef JSON_HEDLEY_BEGIN_C_DECLS +#endif +#if defined(JSON_HEDLEY_END_C_DECLS) + #undef JSON_HEDLEY_END_C_DECLS +#endif +#if defined(JSON_HEDLEY_C_DECL) + #undef JSON_HEDLEY_C_DECL +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_BEGIN_C_DECLS extern "C" { + #define JSON_HEDLEY_END_C_DECLS } + #define JSON_HEDLEY_C_DECL extern "C" +#else + #define JSON_HEDLEY_BEGIN_C_DECLS + #define JSON_HEDLEY_END_C_DECLS + #define JSON_HEDLEY_C_DECL +#endif + +#if defined(JSON_HEDLEY_STATIC_ASSERT) + #undef JSON_HEDLEY_STATIC_ASSERT +#endif +#if \ + !defined(__cplusplus) && ( \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)) || \ + JSON_HEDLEY_HAS_FEATURE(c_static_assert) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(6,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + defined(_Static_assert) \ + ) +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) _Static_assert(expr, message) +#elif \ + (defined(__cplusplus) && (__cplusplus >= 201103L)) || \ + JSON_HEDLEY_MSVC_VERSION_CHECK(16,0,0) +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(static_assert(expr, message)) +#else +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) +#endif + +#if defined(JSON_HEDLEY_NULL) + #undef JSON_HEDLEY_NULL +#endif +#if defined(__cplusplus) + #if __cplusplus >= 201103L + #define JSON_HEDLEY_NULL JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(nullptr) + #elif defined(NULL) + #define JSON_HEDLEY_NULL NULL + #else + #define JSON_HEDLEY_NULL JSON_HEDLEY_STATIC_CAST(void*, 0) + #endif +#elif defined(NULL) + #define JSON_HEDLEY_NULL NULL +#else + #define JSON_HEDLEY_NULL ((void*) 0) +#endif + +#if defined(JSON_HEDLEY_MESSAGE) + #undef JSON_HEDLEY_MESSAGE +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") +# define JSON_HEDLEY_MESSAGE(msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ + JSON_HEDLEY_PRAGMA(message msg) \ + JSON_HEDLEY_DIAGNOSTIC_POP +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message msg) +#elif JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(_CRI message msg) +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#else +# define JSON_HEDLEY_MESSAGE(msg) +#endif + +#if defined(JSON_HEDLEY_WARNING) + #undef JSON_HEDLEY_WARNING +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") +# define JSON_HEDLEY_WARNING(msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ + JSON_HEDLEY_PRAGMA(clang warning msg) \ + JSON_HEDLEY_DIAGNOSTIC_POP +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,8,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(GCC warning msg) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#else +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_MESSAGE(msg) +#endif + +#if defined(JSON_HEDLEY_REQUIRE) + #undef JSON_HEDLEY_REQUIRE +#endif +#if defined(JSON_HEDLEY_REQUIRE_MSG) + #undef JSON_HEDLEY_REQUIRE_MSG +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(diagnose_if) +# if JSON_HEDLEY_HAS_WARNING("-Wgcc-compat") +# define JSON_HEDLEY_REQUIRE(expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ + __attribute__((diagnose_if(!(expr), #expr, "error"))) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ + __attribute__((diagnose_if(!(expr), msg, "error"))) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_REQUIRE(expr) __attribute__((diagnose_if(!(expr), #expr, "error"))) +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) __attribute__((diagnose_if(!(expr), msg, "error"))) +# endif +#else +# define JSON_HEDLEY_REQUIRE(expr) +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) +#endif + +#if defined(JSON_HEDLEY_FLAGS) + #undef JSON_HEDLEY_FLAGS +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(flag_enum) + #define JSON_HEDLEY_FLAGS __attribute__((__flag_enum__)) +#endif + +#if defined(JSON_HEDLEY_FLAGS_CAST) + #undef JSON_HEDLEY_FLAGS_CAST +#endif +#if JSON_HEDLEY_INTEL_VERSION_CHECK(19,0,0) +# define JSON_HEDLEY_FLAGS_CAST(T, expr) (__extension__ ({ \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("warning(disable:188)") \ + ((T) (expr)); \ + JSON_HEDLEY_DIAGNOSTIC_POP \ + })) +#else +# define JSON_HEDLEY_FLAGS_CAST(T, expr) JSON_HEDLEY_STATIC_CAST(T, expr) +#endif + +#if defined(JSON_HEDLEY_EMPTY_BASES) + #undef JSON_HEDLEY_EMPTY_BASES +#endif +#if JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,23918) && !JSON_HEDLEY_MSVC_VERSION_CHECK(20,0,0) + #define JSON_HEDLEY_EMPTY_BASES __declspec(empty_bases) +#else + #define JSON_HEDLEY_EMPTY_BASES +#endif + +/* Remaining macros are deprecated. */ + +#if defined(JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK) + #undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK +#endif +#if defined(__clang__) + #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) (0) +#else + #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_CLANG_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_BUILTIN) + #undef JSON_HEDLEY_CLANG_HAS_BUILTIN +#endif +#define JSON_HEDLEY_CLANG_HAS_BUILTIN(builtin) JSON_HEDLEY_HAS_BUILTIN(builtin) + +#if defined(JSON_HEDLEY_CLANG_HAS_FEATURE) + #undef JSON_HEDLEY_CLANG_HAS_FEATURE +#endif +#define JSON_HEDLEY_CLANG_HAS_FEATURE(feature) JSON_HEDLEY_HAS_FEATURE(feature) + +#if defined(JSON_HEDLEY_CLANG_HAS_EXTENSION) + #undef JSON_HEDLEY_CLANG_HAS_EXTENSION +#endif +#define JSON_HEDLEY_CLANG_HAS_EXTENSION(extension) JSON_HEDLEY_HAS_EXTENSION(extension) + +#if defined(JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_DECLSPEC_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_WARNING) + #undef JSON_HEDLEY_CLANG_HAS_WARNING +#endif +#define JSON_HEDLEY_CLANG_HAS_WARNING(warning) JSON_HEDLEY_HAS_WARNING(warning) + +#endif /* !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < X) */ + + +// This file contains all internal macro definitions +// You MUST include macro_unscope.hpp at the end of json.hpp to undef all of them + +// exclude unsupported compilers +#if !defined(JSON_SKIP_UNSUPPORTED_COMPILER_CHECK) + #if defined(__clang__) + #if (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) < 30400 + #error "unsupported Clang version - see https://github.com/nlohmann/json#supported-compilers" + #endif + #elif defined(__GNUC__) && !(defined(__ICC) || defined(__INTEL_COMPILER)) + #if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800 + #error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers" + #endif + #endif +#endif + +// C++ language standard detection +#if (defined(__cplusplus) && __cplusplus >= 202002L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) + #define JSON_HAS_CPP_20 + #define JSON_HAS_CPP_17 + #define JSON_HAS_CPP_14 +#elif (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1) // fix for issue #464 + #define JSON_HAS_CPP_17 + #define JSON_HAS_CPP_14 +#elif (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1) + #define JSON_HAS_CPP_14 +#endif + +// disable float-equal warnings on GCC/clang +#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__) + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wfloat-equal" +#endif + +// disable documentation warnings on clang +#if defined(__clang__) + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdocumentation" +#endif + +// allow to disable exceptions +#if (defined(__cpp_exceptions) || defined(__EXCEPTIONS) || defined(_CPPUNWIND)) && !defined(JSON_NOEXCEPTION) + #define JSON_THROW(exception) throw exception + #define JSON_TRY try + #define JSON_CATCH(exception) catch(exception) + #define JSON_INTERNAL_CATCH(exception) catch(exception) +#else + #include + #define JSON_THROW(exception) std::abort() + #define JSON_TRY if(true) + #define JSON_CATCH(exception) if(false) + #define JSON_INTERNAL_CATCH(exception) if(false) +#endif + +// override exception macros +#if defined(JSON_THROW_USER) + #undef JSON_THROW + #define JSON_THROW JSON_THROW_USER +#endif +#if defined(JSON_TRY_USER) + #undef JSON_TRY + #define JSON_TRY JSON_TRY_USER +#endif +#if defined(JSON_CATCH_USER) + #undef JSON_CATCH + #define JSON_CATCH JSON_CATCH_USER + #undef JSON_INTERNAL_CATCH + #define JSON_INTERNAL_CATCH JSON_CATCH_USER +#endif +#if defined(JSON_INTERNAL_CATCH_USER) + #undef JSON_INTERNAL_CATCH + #define JSON_INTERNAL_CATCH JSON_INTERNAL_CATCH_USER +#endif + +// allow to override assert +#if !defined(JSON_ASSERT) + #include // assert + #define JSON_ASSERT(x) assert(x) +#endif + +/*! +@brief macro to briefly define a mapping between an enum and JSON +@def NLOHMANN_JSON_SERIALIZE_ENUM +@since version 3.4.0 +*/ +#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \ + template \ + inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \ + { \ + static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ + static const std::pair m[] = __VA_ARGS__; \ + auto it = std::find_if(std::begin(m), std::end(m), \ + [e](const std::pair& ej_pair) -> bool \ + { \ + return ej_pair.first == e; \ + }); \ + j = ((it != std::end(m)) ? it : std::begin(m))->second; \ + } \ + template \ + inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \ + { \ + static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ + static const std::pair m[] = __VA_ARGS__; \ + auto it = std::find_if(std::begin(m), std::end(m), \ + [&j](const std::pair& ej_pair) -> bool \ + { \ + return ej_pair.second == j; \ + }); \ + e = ((it != std::end(m)) ? it : std::begin(m))->first; \ + } + +// Ugly macros to avoid uglier copy-paste when specializing basic_json. They +// may be removed in the future once the class is split. + +#define NLOHMANN_BASIC_JSON_TPL_DECLARATION \ + template class ObjectType, \ + template class ArrayType, \ + class StringType, class BooleanType, class NumberIntegerType, \ + class NumberUnsignedType, class NumberFloatType, \ + template class AllocatorType, \ + template class JSONSerializer, \ + class BinaryType> + +#define NLOHMANN_BASIC_JSON_TPL \ + basic_json + +// Macros to simplify conversion from/to types + +#define NLOHMANN_JSON_EXPAND( x ) x +#define NLOHMANN_JSON_GET_MACRO(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, NAME,...) NAME +#define NLOHMANN_JSON_PASTE(...) NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_GET_MACRO(__VA_ARGS__, \ + NLOHMANN_JSON_PASTE64, \ + NLOHMANN_JSON_PASTE63, \ + NLOHMANN_JSON_PASTE62, \ + NLOHMANN_JSON_PASTE61, \ + NLOHMANN_JSON_PASTE60, \ + NLOHMANN_JSON_PASTE59, \ + NLOHMANN_JSON_PASTE58, \ + NLOHMANN_JSON_PASTE57, \ + NLOHMANN_JSON_PASTE56, \ + NLOHMANN_JSON_PASTE55, \ + NLOHMANN_JSON_PASTE54, \ + NLOHMANN_JSON_PASTE53, \ + NLOHMANN_JSON_PASTE52, \ + NLOHMANN_JSON_PASTE51, \ + NLOHMANN_JSON_PASTE50, \ + NLOHMANN_JSON_PASTE49, \ + NLOHMANN_JSON_PASTE48, \ + NLOHMANN_JSON_PASTE47, \ + NLOHMANN_JSON_PASTE46, \ + NLOHMANN_JSON_PASTE45, \ + NLOHMANN_JSON_PASTE44, \ + NLOHMANN_JSON_PASTE43, \ + NLOHMANN_JSON_PASTE42, \ + NLOHMANN_JSON_PASTE41, \ + NLOHMANN_JSON_PASTE40, \ + NLOHMANN_JSON_PASTE39, \ + NLOHMANN_JSON_PASTE38, \ + NLOHMANN_JSON_PASTE37, \ + NLOHMANN_JSON_PASTE36, \ + NLOHMANN_JSON_PASTE35, \ + NLOHMANN_JSON_PASTE34, \ + NLOHMANN_JSON_PASTE33, \ + NLOHMANN_JSON_PASTE32, \ + NLOHMANN_JSON_PASTE31, \ + NLOHMANN_JSON_PASTE30, \ + NLOHMANN_JSON_PASTE29, \ + NLOHMANN_JSON_PASTE28, \ + NLOHMANN_JSON_PASTE27, \ + NLOHMANN_JSON_PASTE26, \ + NLOHMANN_JSON_PASTE25, \ + NLOHMANN_JSON_PASTE24, \ + NLOHMANN_JSON_PASTE23, \ + NLOHMANN_JSON_PASTE22, \ + NLOHMANN_JSON_PASTE21, \ + NLOHMANN_JSON_PASTE20, \ + NLOHMANN_JSON_PASTE19, \ + NLOHMANN_JSON_PASTE18, \ + NLOHMANN_JSON_PASTE17, \ + NLOHMANN_JSON_PASTE16, \ + NLOHMANN_JSON_PASTE15, \ + NLOHMANN_JSON_PASTE14, \ + NLOHMANN_JSON_PASTE13, \ + NLOHMANN_JSON_PASTE12, \ + NLOHMANN_JSON_PASTE11, \ + NLOHMANN_JSON_PASTE10, \ + NLOHMANN_JSON_PASTE9, \ + NLOHMANN_JSON_PASTE8, \ + NLOHMANN_JSON_PASTE7, \ + NLOHMANN_JSON_PASTE6, \ + NLOHMANN_JSON_PASTE5, \ + NLOHMANN_JSON_PASTE4, \ + NLOHMANN_JSON_PASTE3, \ + NLOHMANN_JSON_PASTE2, \ + NLOHMANN_JSON_PASTE1)(__VA_ARGS__)) +#define NLOHMANN_JSON_PASTE2(func, v1) func(v1) +#define NLOHMANN_JSON_PASTE3(func, v1, v2) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE2(func, v2) +#define NLOHMANN_JSON_PASTE4(func, v1, v2, v3) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE3(func, v2, v3) +#define NLOHMANN_JSON_PASTE5(func, v1, v2, v3, v4) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE4(func, v2, v3, v4) +#define NLOHMANN_JSON_PASTE6(func, v1, v2, v3, v4, v5) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE5(func, v2, v3, v4, v5) +#define NLOHMANN_JSON_PASTE7(func, v1, v2, v3, v4, v5, v6) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE6(func, v2, v3, v4, v5, v6) +#define NLOHMANN_JSON_PASTE8(func, v1, v2, v3, v4, v5, v6, v7) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE7(func, v2, v3, v4, v5, v6, v7) +#define NLOHMANN_JSON_PASTE9(func, v1, v2, v3, v4, v5, v6, v7, v8) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE8(func, v2, v3, v4, v5, v6, v7, v8) +#define NLOHMANN_JSON_PASTE10(func, v1, v2, v3, v4, v5, v6, v7, v8, v9) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE9(func, v2, v3, v4, v5, v6, v7, v8, v9) +#define NLOHMANN_JSON_PASTE11(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE10(func, v2, v3, v4, v5, v6, v7, v8, v9, v10) +#define NLOHMANN_JSON_PASTE12(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE11(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) +#define NLOHMANN_JSON_PASTE13(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE12(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) +#define NLOHMANN_JSON_PASTE14(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE13(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) +#define NLOHMANN_JSON_PASTE15(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE14(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) +#define NLOHMANN_JSON_PASTE16(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE15(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) +#define NLOHMANN_JSON_PASTE17(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE16(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) +#define NLOHMANN_JSON_PASTE18(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE17(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) +#define NLOHMANN_JSON_PASTE19(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE18(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) +#define NLOHMANN_JSON_PASTE20(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE19(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) +#define NLOHMANN_JSON_PASTE21(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE20(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) +#define NLOHMANN_JSON_PASTE22(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE21(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) +#define NLOHMANN_JSON_PASTE23(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE22(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) +#define NLOHMANN_JSON_PASTE24(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE23(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) +#define NLOHMANN_JSON_PASTE25(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE24(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) +#define NLOHMANN_JSON_PASTE26(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE25(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) +#define NLOHMANN_JSON_PASTE27(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE26(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) +#define NLOHMANN_JSON_PASTE28(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE27(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) +#define NLOHMANN_JSON_PASTE29(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE28(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) +#define NLOHMANN_JSON_PASTE30(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE29(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) +#define NLOHMANN_JSON_PASTE31(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE30(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) +#define NLOHMANN_JSON_PASTE32(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE31(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) +#define NLOHMANN_JSON_PASTE33(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE32(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) +#define NLOHMANN_JSON_PASTE34(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE33(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) +#define NLOHMANN_JSON_PASTE35(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE34(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) +#define NLOHMANN_JSON_PASTE36(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE35(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) +#define NLOHMANN_JSON_PASTE37(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE36(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) +#define NLOHMANN_JSON_PASTE38(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE37(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) +#define NLOHMANN_JSON_PASTE39(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE38(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) +#define NLOHMANN_JSON_PASTE40(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE39(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) +#define NLOHMANN_JSON_PASTE41(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE40(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) +#define NLOHMANN_JSON_PASTE42(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE41(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) +#define NLOHMANN_JSON_PASTE43(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE42(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) +#define NLOHMANN_JSON_PASTE44(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE43(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) +#define NLOHMANN_JSON_PASTE45(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE44(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) +#define NLOHMANN_JSON_PASTE46(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE45(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) +#define NLOHMANN_JSON_PASTE47(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE46(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) +#define NLOHMANN_JSON_PASTE48(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE47(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) +#define NLOHMANN_JSON_PASTE49(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE48(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) +#define NLOHMANN_JSON_PASTE50(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE49(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) +#define NLOHMANN_JSON_PASTE51(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE50(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) +#define NLOHMANN_JSON_PASTE52(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE51(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) +#define NLOHMANN_JSON_PASTE53(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE52(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) +#define NLOHMANN_JSON_PASTE54(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE53(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) +#define NLOHMANN_JSON_PASTE55(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE54(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) +#define NLOHMANN_JSON_PASTE56(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE55(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) +#define NLOHMANN_JSON_PASTE57(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE56(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) +#define NLOHMANN_JSON_PASTE58(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE57(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) +#define NLOHMANN_JSON_PASTE59(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE58(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) +#define NLOHMANN_JSON_PASTE60(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE59(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) +#define NLOHMANN_JSON_PASTE61(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE60(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) +#define NLOHMANN_JSON_PASTE62(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE61(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) +#define NLOHMANN_JSON_PASTE63(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE62(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) +#define NLOHMANN_JSON_PASTE64(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE63(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) + +#define NLOHMANN_JSON_TO(v1) nlohmann_json_j[#v1] = nlohmann_json_t.v1; +#define NLOHMANN_JSON_FROM(v1) nlohmann_json_j.at(#v1).get_to(nlohmann_json_t.v1); + +/*! +@brief macro +@def NLOHMANN_DEFINE_TYPE_INTRUSIVE +@since version 3.9.0 +*/ +#define NLOHMANN_DEFINE_TYPE_INTRUSIVE(Type, ...) \ + friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + friend void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } + +/*! +@brief macro +@def NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE +@since version 3.9.0 +*/ +#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Type, ...) \ + inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + inline void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } + +#ifndef JSON_USE_IMPLICIT_CONVERSIONS + #define JSON_USE_IMPLICIT_CONVERSIONS 1 +#endif + +#if JSON_USE_IMPLICIT_CONVERSIONS + #define JSON_EXPLICIT +#else + #define JSON_EXPLICIT explicit +#endif + + +namespace nlohmann +{ +namespace detail +{ +//////////////// +// exceptions // +//////////////// + +/*! +@brief general exception of the @ref basic_json class + +This class is an extension of `std::exception` objects with a member @a id for +exception ids. It is used as the base class for all exceptions thrown by the +@ref basic_json class. This class can hence be used as "wildcard" to catch +exceptions. + +Subclasses: +- @ref parse_error for exceptions indicating a parse error +- @ref invalid_iterator for exceptions indicating errors with iterators +- @ref type_error for exceptions indicating executing a member function with + a wrong type +- @ref out_of_range for exceptions indicating access out of the defined range +- @ref other_error for exceptions indicating other library errors + +@internal +@note To have nothrow-copy-constructible exceptions, we internally use + `std::runtime_error` which can cope with arbitrary-length error messages. + Intermediate strings are built with static functions and then passed to + the actual constructor. +@endinternal + +@liveexample{The following code shows how arbitrary library exceptions can be +caught.,exception} + +@since version 3.0.0 +*/ +class exception : public std::exception +{ + public: + /// returns the explanatory string + JSON_HEDLEY_RETURNS_NON_NULL + const char* what() const noexcept override + { + return m.what(); + } + + /// the id of the exception + const int id; + + protected: + JSON_HEDLEY_NON_NULL(3) + exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} + + static std::string name(const std::string& ename, int id_) + { + return "[json.exception." + ename + "." + std::to_string(id_) + "] "; + } + + private: + /// an exception object as storage for error messages + std::runtime_error m; +}; + +/*! +@brief exception indicating a parse error + +This exception is thrown by the library when a parse error occurs. Parse errors +can occur during the deserialization of JSON text, CBOR, MessagePack, as well +as when using JSON Patch. + +Member @a byte holds the byte index of the last read character in the input +file. + +Exceptions have ids 1xx. + +name / id | example message | description +------------------------------ | --------------- | ------------------------- +json.exception.parse_error.101 | parse error at 2: unexpected end of input; expected string literal | This error indicates a syntax error while deserializing a JSON text. The error message describes that an unexpected token (character) was encountered, and the member @a byte indicates the error position. +json.exception.parse_error.102 | parse error at 14: missing or wrong low surrogate | JSON uses the `\uxxxx` format to describe Unicode characters. Code points above above 0xFFFF are split into two `\uxxxx` entries ("surrogate pairs"). This error indicates that the surrogate pair is incomplete or contains an invalid code point. +json.exception.parse_error.103 | parse error: code points above 0x10FFFF are invalid | Unicode supports code points up to 0x10FFFF. Code points above 0x10FFFF are invalid. +json.exception.parse_error.104 | parse error: JSON patch must be an array of objects | [RFC 6902](https://tools.ietf.org/html/rfc6902) requires a JSON Patch document to be a JSON document that represents an array of objects. +json.exception.parse_error.105 | parse error: operation must have string member 'op' | An operation of a JSON Patch document must contain exactly one "op" member, whose value indicates the operation to perform. Its value must be one of "add", "remove", "replace", "move", "copy", or "test"; other values are errors. +json.exception.parse_error.106 | parse error: array index '01' must not begin with '0' | An array index in a JSON Pointer ([RFC 6901](https://tools.ietf.org/html/rfc6901)) may be `0` or any number without a leading `0`. +json.exception.parse_error.107 | parse error: JSON pointer must be empty or begin with '/' - was: 'foo' | A JSON Pointer must be a Unicode string containing a sequence of zero or more reference tokens, each prefixed by a `/` character. +json.exception.parse_error.108 | parse error: escape character '~' must be followed with '0' or '1' | In a JSON Pointer, only `~0` and `~1` are valid escape sequences. +json.exception.parse_error.109 | parse error: array index 'one' is not a number | A JSON Pointer array index must be a number. +json.exception.parse_error.110 | parse error at 1: cannot read 2 bytes from vector | When parsing CBOR or MessagePack, the byte vector ends before the complete value has been read. +json.exception.parse_error.112 | parse error at 1: error reading CBOR; last byte: 0xF8 | Not all types of CBOR or MessagePack are supported. This exception occurs if an unsupported byte was read. +json.exception.parse_error.113 | parse error at 2: expected a CBOR string; last byte: 0x98 | While parsing a map key, a value that is not a string has been read. +json.exception.parse_error.114 | parse error: Unsupported BSON record type 0x0F | The parsing of the corresponding BSON record type is not implemented (yet). +json.exception.parse_error.115 | parse error at byte 5: syntax error while parsing UBJSON high-precision number: invalid number text: 1A | A UBJSON high-precision number could not be parsed. + +@note For an input with n bytes, 1 is the index of the first character and n+1 + is the index of the terminating null byte or the end of file. This also + holds true when reading a byte vector (CBOR or MessagePack). + +@liveexample{The following code shows how a `parse_error` exception can be +caught.,parse_error} + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref invalid_iterator for exceptions indicating errors with iterators +@sa - @ref type_error for exceptions indicating executing a member function with + a wrong type +@sa - @ref out_of_range for exceptions indicating access out of the defined range +@sa - @ref other_error for exceptions indicating other library errors + +@since version 3.0.0 +*/ +class parse_error : public exception +{ + public: + /*! + @brief create a parse error exception + @param[in] id_ the id of the exception + @param[in] pos the position where the error occurred (or with + chars_read_total=0 if the position cannot be + determined) + @param[in] what_arg the explanatory string + @return parse_error object + */ + static parse_error create(int id_, const position_t& pos, const std::string& what_arg) + { + std::string w = exception::name("parse_error", id_) + "parse error" + + position_string(pos) + ": " + what_arg; + return parse_error(id_, pos.chars_read_total, w.c_str()); + } + + static parse_error create(int id_, std::size_t byte_, const std::string& what_arg) + { + std::string w = exception::name("parse_error", id_) + "parse error" + + (byte_ != 0 ? (" at byte " + std::to_string(byte_)) : "") + + ": " + what_arg; + return parse_error(id_, byte_, w.c_str()); + } + + /*! + @brief byte index of the parse error + + The byte index of the last read character in the input file. + + @note For an input with n bytes, 1 is the index of the first character and + n+1 is the index of the terminating null byte or the end of file. + This also holds true when reading a byte vector (CBOR or MessagePack). + */ + const std::size_t byte; + + private: + parse_error(int id_, std::size_t byte_, const char* what_arg) + : exception(id_, what_arg), byte(byte_) {} + + static std::string position_string(const position_t& pos) + { + return " at line " + std::to_string(pos.lines_read + 1) + + ", column " + std::to_string(pos.chars_read_current_line); + } +}; + +/*! +@brief exception indicating errors with iterators + +This exception is thrown if iterators passed to a library function do not match +the expected semantics. + +Exceptions have ids 2xx. + +name / id | example message | description +----------------------------------- | --------------- | ------------------------- +json.exception.invalid_iterator.201 | iterators are not compatible | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid. +json.exception.invalid_iterator.202 | iterator does not fit current value | In an erase or insert function, the passed iterator @a pos does not belong to the JSON value for which the function was called. It hence does not define a valid position for the deletion/insertion. +json.exception.invalid_iterator.203 | iterators do not fit current value | Either iterator passed to function @ref erase(IteratorType first, IteratorType last) does not belong to the JSON value from which values shall be erased. It hence does not define a valid range to delete values from. +json.exception.invalid_iterator.204 | iterators out of range | When an iterator range for a primitive type (number, boolean, or string) is passed to a constructor or an erase function, this range has to be exactly (@ref begin(), @ref end()), because this is the only way the single stored value is expressed. All other ranges are invalid. +json.exception.invalid_iterator.205 | iterator out of range | When an iterator for a primitive type (number, boolean, or string) is passed to an erase function, the iterator has to be the @ref begin() iterator, because it is the only way to address the stored value. All other iterators are invalid. +json.exception.invalid_iterator.206 | cannot construct with iterators from null | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) belong to a JSON null value and hence to not define a valid range. +json.exception.invalid_iterator.207 | cannot use key() for non-object iterators | The key() member function can only be used on iterators belonging to a JSON object, because other types do not have a concept of a key. +json.exception.invalid_iterator.208 | cannot use operator[] for object iterators | The operator[] to specify a concrete offset cannot be used on iterators belonging to a JSON object, because JSON objects are unordered. +json.exception.invalid_iterator.209 | cannot use offsets with object iterators | The offset operators (+, -, +=, -=) cannot be used on iterators belonging to a JSON object, because JSON objects are unordered. +json.exception.invalid_iterator.210 | iterators do not fit | The iterator range passed to the insert function are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid. +json.exception.invalid_iterator.211 | passed iterators may not belong to container | The iterator range passed to the insert function must not be a subrange of the container to insert to. +json.exception.invalid_iterator.212 | cannot compare iterators of different containers | When two iterators are compared, they must belong to the same container. +json.exception.invalid_iterator.213 | cannot compare order of object iterators | The order of object iterators cannot be compared, because JSON objects are unordered. +json.exception.invalid_iterator.214 | cannot get value | Cannot get value for iterator: Either the iterator belongs to a null value or it is an iterator to a primitive type (number, boolean, or string), but the iterator is different to @ref begin(). + +@liveexample{The following code shows how an `invalid_iterator` exception can be +caught.,invalid_iterator} + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref parse_error for exceptions indicating a parse error +@sa - @ref type_error for exceptions indicating executing a member function with + a wrong type +@sa - @ref out_of_range for exceptions indicating access out of the defined range +@sa - @ref other_error for exceptions indicating other library errors + +@since version 3.0.0 +*/ +class invalid_iterator : public exception +{ + public: + static invalid_iterator create(int id_, const std::string& what_arg) + { + std::string w = exception::name("invalid_iterator", id_) + what_arg; + return invalid_iterator(id_, w.c_str()); + } + + private: + JSON_HEDLEY_NON_NULL(3) + invalid_iterator(int id_, const char* what_arg) + : exception(id_, what_arg) {} +}; + +/*! +@brief exception indicating executing a member function with a wrong type + +This exception is thrown in case of a type error; that is, a library function is +executed on a JSON value whose type does not match the expected semantics. + +Exceptions have ids 3xx. + +name / id | example message | description +----------------------------- | --------------- | ------------------------- +json.exception.type_error.301 | cannot create object from initializer list | To create an object from an initializer list, the initializer list must consist only of a list of pairs whose first element is a string. When this constraint is violated, an array is created instead. +json.exception.type_error.302 | type must be object, but is array | During implicit or explicit value conversion, the JSON type must be compatible to the target type. For instance, a JSON string can only be converted into string types, but not into numbers or boolean types. +json.exception.type_error.303 | incompatible ReferenceType for get_ref, actual type is object | To retrieve a reference to a value stored in a @ref basic_json object with @ref get_ref, the type of the reference must match the value type. For instance, for a JSON array, the @a ReferenceType must be @ref array_t &. +json.exception.type_error.304 | cannot use at() with string | The @ref at() member functions can only be executed for certain JSON types. +json.exception.type_error.305 | cannot use operator[] with string | The @ref operator[] member functions can only be executed for certain JSON types. +json.exception.type_error.306 | cannot use value() with string | The @ref value() member functions can only be executed for certain JSON types. +json.exception.type_error.307 | cannot use erase() with string | The @ref erase() member functions can only be executed for certain JSON types. +json.exception.type_error.308 | cannot use push_back() with string | The @ref push_back() and @ref operator+= member functions can only be executed for certain JSON types. +json.exception.type_error.309 | cannot use insert() with | The @ref insert() member functions can only be executed for certain JSON types. +json.exception.type_error.310 | cannot use swap() with number | The @ref swap() member functions can only be executed for certain JSON types. +json.exception.type_error.311 | cannot use emplace_back() with string | The @ref emplace_back() member function can only be executed for certain JSON types. +json.exception.type_error.312 | cannot use update() with string | The @ref update() member functions can only be executed for certain JSON types. +json.exception.type_error.313 | invalid value to unflatten | The @ref unflatten function converts an object whose keys are JSON Pointers back into an arbitrary nested JSON value. The JSON Pointers must not overlap, because then the resulting value would not be well defined. +json.exception.type_error.314 | only objects can be unflattened | The @ref unflatten function only works for an object whose keys are JSON Pointers. +json.exception.type_error.315 | values in object must be primitive | The @ref unflatten function only works for an object whose keys are JSON Pointers and whose values are primitive. +json.exception.type_error.316 | invalid UTF-8 byte at index 10: 0x7E | The @ref dump function only works with UTF-8 encoded strings; that is, if you assign a `std::string` to a JSON value, make sure it is UTF-8 encoded. | +json.exception.type_error.317 | JSON value cannot be serialized to requested format | The dynamic type of the object cannot be represented in the requested serialization format (e.g. a raw `true` or `null` JSON object cannot be serialized to BSON) | + +@liveexample{The following code shows how a `type_error` exception can be +caught.,type_error} + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref parse_error for exceptions indicating a parse error +@sa - @ref invalid_iterator for exceptions indicating errors with iterators +@sa - @ref out_of_range for exceptions indicating access out of the defined range +@sa - @ref other_error for exceptions indicating other library errors + +@since version 3.0.0 +*/ +class type_error : public exception +{ + public: + static type_error create(int id_, const std::string& what_arg) + { + std::string w = exception::name("type_error", id_) + what_arg; + return type_error(id_, w.c_str()); + } + + private: + JSON_HEDLEY_NON_NULL(3) + type_error(int id_, const char* what_arg) : exception(id_, what_arg) {} +}; + +/*! +@brief exception indicating access out of the defined range + +This exception is thrown in case a library function is called on an input +parameter that exceeds the expected range, for instance in case of array +indices or nonexisting object keys. + +Exceptions have ids 4xx. + +name / id | example message | description +------------------------------- | --------------- | ------------------------- +json.exception.out_of_range.401 | array index 3 is out of range | The provided array index @a i is larger than @a size-1. +json.exception.out_of_range.402 | array index '-' (3) is out of range | The special array index `-` in a JSON Pointer never describes a valid element of the array, but the index past the end. That is, it can only be used to add elements at this position, but not to read it. +json.exception.out_of_range.403 | key 'foo' not found | The provided key was not found in the JSON object. +json.exception.out_of_range.404 | unresolved reference token 'foo' | A reference token in a JSON Pointer could not be resolved. +json.exception.out_of_range.405 | JSON pointer has no parent | The JSON Patch operations 'remove' and 'add' can not be applied to the root element of the JSON value. +json.exception.out_of_range.406 | number overflow parsing '10E1000' | A parsed number could not be stored as without changing it to NaN or INF. +json.exception.out_of_range.407 | number overflow serializing '9223372036854775808' | UBJSON and BSON only support integer numbers up to 9223372036854775807. (until version 3.8.0) | +json.exception.out_of_range.408 | excessive array size: 8658170730974374167 | The size (following `#`) of an UBJSON array or object exceeds the maximal capacity. | +json.exception.out_of_range.409 | BSON key cannot contain code point U+0000 (at byte 2) | Key identifiers to be serialized to BSON cannot contain code point U+0000, since the key is stored as zero-terminated c-string | + +@liveexample{The following code shows how an `out_of_range` exception can be +caught.,out_of_range} + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref parse_error for exceptions indicating a parse error +@sa - @ref invalid_iterator for exceptions indicating errors with iterators +@sa - @ref type_error for exceptions indicating executing a member function with + a wrong type +@sa - @ref other_error for exceptions indicating other library errors + +@since version 3.0.0 +*/ +class out_of_range : public exception +{ + public: + static out_of_range create(int id_, const std::string& what_arg) + { + std::string w = exception::name("out_of_range", id_) + what_arg; + return out_of_range(id_, w.c_str()); + } + + private: + JSON_HEDLEY_NON_NULL(3) + out_of_range(int id_, const char* what_arg) : exception(id_, what_arg) {} +}; + +/*! +@brief exception indicating other library errors + +This exception is thrown in case of errors that cannot be classified with the +other exception types. + +Exceptions have ids 5xx. + +name / id | example message | description +------------------------------ | --------------- | ------------------------- +json.exception.other_error.501 | unsuccessful: {"op":"test","path":"/baz", "value":"bar"} | A JSON Patch operation 'test' failed. The unsuccessful operation is also printed. + +@sa - @ref exception for the base class of the library exceptions +@sa - @ref parse_error for exceptions indicating a parse error +@sa - @ref invalid_iterator for exceptions indicating errors with iterators +@sa - @ref type_error for exceptions indicating executing a member function with + a wrong type +@sa - @ref out_of_range for exceptions indicating access out of the defined range + +@liveexample{The following code shows how an `other_error` exception can be +caught.,other_error} + +@since version 3.0.0 +*/ +class other_error : public exception +{ + public: + static other_error create(int id_, const std::string& what_arg) + { + std::string w = exception::name("other_error", id_) + what_arg; + return other_error(id_, w.c_str()); + } + + private: + JSON_HEDLEY_NON_NULL(3) + other_error(int id_, const char* what_arg) : exception(id_, what_arg) {} +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + + +#include // size_t +#include // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type + +namespace nlohmann +{ +namespace detail +{ +// alias templates to reduce boilerplate +template +using enable_if_t = typename std::enable_if::type; + +template +using uncvref_t = typename std::remove_cv::type>::type; + +// implementation of C++14 index_sequence and affiliates +// source: https://stackoverflow.com/a/32223343 +template +struct index_sequence +{ + using type = index_sequence; + using value_type = std::size_t; + static constexpr std::size_t size() noexcept + { + return sizeof...(Ints); + } +}; + +template +struct merge_and_renumber; + +template +struct merge_and_renumber, index_sequence> + : index_sequence < I1..., (sizeof...(I1) + I2)... > {}; + +template +struct make_index_sequence + : merge_and_renumber < typename make_index_sequence < N / 2 >::type, + typename make_index_sequence < N - N / 2 >::type > {}; + +template<> struct make_index_sequence<0> : index_sequence<> {}; +template<> struct make_index_sequence<1> : index_sequence<0> {}; + +template +using index_sequence_for = make_index_sequence; + +// dispatch utility (taken from ranges-v3) +template struct priority_tag : priority_tag < N - 1 > {}; +template<> struct priority_tag<0> {}; + +// taken from ranges-v3 +template +struct static_const +{ + static constexpr T value{}; +}; + +template +constexpr T static_const::value; +} // namespace detail +} // namespace nlohmann + +// #include + + +#include // numeric_limits +#include // false_type, is_constructible, is_integral, is_same, true_type +#include // declval + +// #include + + +#include // random_access_iterator_tag + +// #include + + +namespace nlohmann +{ +namespace detail +{ +template struct make_void +{ + using type = void; +}; +template using void_t = typename make_void::type; +} // namespace detail +} // namespace nlohmann + +// #include + + +namespace nlohmann +{ +namespace detail +{ +template +struct iterator_types {}; + +template +struct iterator_types < + It, + void_t> +{ + using difference_type = typename It::difference_type; + using value_type = typename It::value_type; + using pointer = typename It::pointer; + using reference = typename It::reference; + using iterator_category = typename It::iterator_category; +}; + +// This is required as some compilers implement std::iterator_traits in a way that +// doesn't work with SFINAE. See https://github.com/nlohmann/json/issues/1341. +template +struct iterator_traits +{ +}; + +template +struct iterator_traits < T, enable_if_t < !std::is_pointer::value >> + : iterator_types +{ +}; + +template +struct iterator_traits::value>> +{ + using iterator_category = std::random_access_iterator_tag; + using value_type = T; + using difference_type = ptrdiff_t; + using pointer = T*; + using reference = T&; +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + +// #include + + +#include + +// #include + + +// https://en.cppreference.com/w/cpp/experimental/is_detected +namespace nlohmann +{ +namespace detail +{ +struct nonesuch +{ + nonesuch() = delete; + ~nonesuch() = delete; + nonesuch(nonesuch const&) = delete; + nonesuch(nonesuch const&&) = delete; + void operator=(nonesuch const&) = delete; + void operator=(nonesuch&&) = delete; +}; + +template class Op, + class... Args> +struct detector +{ + using value_t = std::false_type; + using type = Default; +}; + +template class Op, class... Args> +struct detector>, Op, Args...> +{ + using value_t = std::true_type; + using type = Op; +}; + +template class Op, class... Args> +using is_detected = typename detector::value_t; + +template class Op, class... Args> +using detected_t = typename detector::type; + +template class Op, class... Args> +using detected_or = detector; + +template class Op, class... Args> +using detected_or_t = typename detected_or::type; + +template class Op, class... Args> +using is_detected_exact = std::is_same>; + +template class Op, class... Args> +using is_detected_convertible = + std::is_convertible, To>; +} // namespace detail +} // namespace nlohmann + +// #include +#ifndef INCLUDE_NLOHMANN_JSON_FWD_HPP_ +#define INCLUDE_NLOHMANN_JSON_FWD_HPP_ + +#include // int64_t, uint64_t +#include // map +#include // allocator +#include // string +#include // vector + +/*! +@brief namespace for Niels Lohmann +@see https://github.com/nlohmann +@since version 1.0.0 +*/ +namespace nlohmann +{ +/*! +@brief default JSONSerializer template argument + +This serializer ignores the template arguments and uses ADL +([argument-dependent lookup](https://en.cppreference.com/w/cpp/language/adl)) +for serialization. +*/ +template +struct adl_serializer; + +template class ObjectType = + std::map, + template class ArrayType = std::vector, + class StringType = std::string, class BooleanType = bool, + class NumberIntegerType = std::int64_t, + class NumberUnsignedType = std::uint64_t, + class NumberFloatType = double, + template class AllocatorType = std::allocator, + template class JSONSerializer = + adl_serializer, + class BinaryType = std::vector> +class basic_json; + +/*! +@brief JSON Pointer + +A JSON pointer defines a string syntax for identifying a specific value +within a JSON document. It can be used with functions `at` and +`operator[]`. Furthermore, JSON pointers are the base for JSON patches. + +@sa [RFC 6901](https://tools.ietf.org/html/rfc6901) + +@since version 2.0.0 +*/ +template +class json_pointer; + +/*! +@brief default JSON class + +This type is the default specialization of the @ref basic_json class which +uses the standard template types. + +@since version 1.0.0 +*/ +using json = basic_json<>; + +template +struct ordered_map; + +/*! +@brief ordered JSON class + +This type preserves the insertion order of object keys. + +@since version 3.9.0 +*/ +using ordered_json = basic_json; + +} // namespace nlohmann + +#endif // INCLUDE_NLOHMANN_JSON_FWD_HPP_ + + +namespace nlohmann +{ +/*! +@brief detail namespace with internal helper functions + +This namespace collects functions that should not be exposed, +implementations of some @ref basic_json methods, and meta-programming helpers. + +@since version 2.1.0 +*/ +namespace detail +{ +///////////// +// helpers // +///////////// + +// Note to maintainers: +// +// Every trait in this file expects a non CV-qualified type. +// The only exceptions are in the 'aliases for detected' section +// (i.e. those of the form: decltype(T::member_function(std::declval()))) +// +// In this case, T has to be properly CV-qualified to constraint the function arguments +// (e.g. to_json(BasicJsonType&, const T&)) + +template struct is_basic_json : std::false_type {}; + +NLOHMANN_BASIC_JSON_TPL_DECLARATION +struct is_basic_json : std::true_type {}; + +////////////////////// +// json_ref helpers // +////////////////////// + +template +class json_ref; + +template +struct is_json_ref : std::false_type {}; + +template +struct is_json_ref> : std::true_type {}; + +////////////////////////// +// aliases for detected // +////////////////////////// + +template +using mapped_type_t = typename T::mapped_type; + +template +using key_type_t = typename T::key_type; + +template +using value_type_t = typename T::value_type; + +template +using difference_type_t = typename T::difference_type; + +template +using pointer_t = typename T::pointer; + +template +using reference_t = typename T::reference; + +template +using iterator_category_t = typename T::iterator_category; + +template +using iterator_t = typename T::iterator; + +template +using to_json_function = decltype(T::to_json(std::declval()...)); + +template +using from_json_function = decltype(T::from_json(std::declval()...)); + +template +using get_template_function = decltype(std::declval().template get()); + +// trait checking if JSONSerializer::from_json(json const&, udt&) exists +template +struct has_from_json : std::false_type {}; + +// trait checking if j.get is valid +// use this trait instead of std::is_constructible or std::is_convertible, +// both rely on, or make use of implicit conversions, and thus fail when T +// has several constructors/operator= (see https://github.com/nlohmann/json/issues/958) +template +struct is_getable +{ + static constexpr bool value = is_detected::value; +}; + +template +struct has_from_json < BasicJsonType, T, + enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +// This trait checks if JSONSerializer::from_json(json const&) exists +// this overload is used for non-default-constructible user-defined-types +template +struct has_non_default_from_json : std::false_type {}; + +template +struct has_non_default_from_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +// This trait checks if BasicJsonType::json_serializer::to_json exists +// Do not evaluate the trait when T is a basic_json type, to avoid template instantiation infinite recursion. +template +struct has_to_json : std::false_type {}; + +template +struct has_to_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + + +/////////////////// +// is_ functions // +/////////////////// + +template +struct is_iterator_traits : std::false_type {}; + +template +struct is_iterator_traits> +{ + private: + using traits = iterator_traits; + + public: + static constexpr auto value = + is_detected::value && + is_detected::value && + is_detected::value && + is_detected::value && + is_detected::value; +}; + +// source: https://stackoverflow.com/a/37193089/4116453 + +template +struct is_complete_type : std::false_type {}; + +template +struct is_complete_type : std::true_type {}; + +template +struct is_compatible_object_type_impl : std::false_type {}; + +template +struct is_compatible_object_type_impl < + BasicJsonType, CompatibleObjectType, + enable_if_t < is_detected::value&& + is_detected::value >> +{ + + using object_t = typename BasicJsonType::object_t; + + // macOS's is_constructible does not play well with nonesuch... + static constexpr bool value = + std::is_constructible::value && + std::is_constructible::value; +}; + +template +struct is_compatible_object_type + : is_compatible_object_type_impl {}; + +template +struct is_constructible_object_type_impl : std::false_type {}; + +template +struct is_constructible_object_type_impl < + BasicJsonType, ConstructibleObjectType, + enable_if_t < is_detected::value&& + is_detected::value >> +{ + using object_t = typename BasicJsonType::object_t; + + static constexpr bool value = + (std::is_default_constructible::value && + (std::is_move_assignable::value || + std::is_copy_assignable::value) && + (std::is_constructible::value && + std::is_same < + typename object_t::mapped_type, + typename ConstructibleObjectType::mapped_type >::value)) || + (has_from_json::value || + has_non_default_from_json < + BasicJsonType, + typename ConstructibleObjectType::mapped_type >::value); +}; + +template +struct is_constructible_object_type + : is_constructible_object_type_impl {}; + +template +struct is_compatible_string_type_impl : std::false_type {}; + +template +struct is_compatible_string_type_impl < + BasicJsonType, CompatibleStringType, + enable_if_t::value >> +{ + static constexpr auto value = + std::is_constructible::value; +}; + +template +struct is_compatible_string_type + : is_compatible_string_type_impl {}; + +template +struct is_constructible_string_type_impl : std::false_type {}; + +template +struct is_constructible_string_type_impl < + BasicJsonType, ConstructibleStringType, + enable_if_t::value >> +{ + static constexpr auto value = + std::is_constructible::value; +}; + +template +struct is_constructible_string_type + : is_constructible_string_type_impl {}; + +template +struct is_compatible_array_type_impl : std::false_type {}; + +template +struct is_compatible_array_type_impl < + BasicJsonType, CompatibleArrayType, + enable_if_t < is_detected::value&& + is_detected::value&& +// This is needed because json_reverse_iterator has a ::iterator type... +// Therefore it is detected as a CompatibleArrayType. +// The real fix would be to have an Iterable concept. + !is_iterator_traits < + iterator_traits>::value >> +{ + static constexpr bool value = + std::is_constructible::value; +}; + +template +struct is_compatible_array_type + : is_compatible_array_type_impl {}; + +template +struct is_constructible_array_type_impl : std::false_type {}; + +template +struct is_constructible_array_type_impl < + BasicJsonType, ConstructibleArrayType, + enable_if_t::value >> + : std::true_type {}; + +template +struct is_constructible_array_type_impl < + BasicJsonType, ConstructibleArrayType, + enable_if_t < !std::is_same::value&& + std::is_default_constructible::value&& +(std::is_move_assignable::value || + std::is_copy_assignable::value)&& +is_detected::value&& +is_detected::value&& +is_complete_type < +detected_t>::value >> +{ + static constexpr bool value = + // This is needed because json_reverse_iterator has a ::iterator type, + // furthermore, std::back_insert_iterator (and other iterators) have a + // base class `iterator`... Therefore it is detected as a + // ConstructibleArrayType. The real fix would be to have an Iterable + // concept. + !is_iterator_traits>::value && + + (std::is_same::value || + has_from_json::value || + has_non_default_from_json < + BasicJsonType, typename ConstructibleArrayType::value_type >::value); +}; + +template +struct is_constructible_array_type + : is_constructible_array_type_impl {}; + +template +struct is_compatible_integer_type_impl : std::false_type {}; + +template +struct is_compatible_integer_type_impl < + RealIntegerType, CompatibleNumberIntegerType, + enable_if_t < std::is_integral::value&& + std::is_integral::value&& + !std::is_same::value >> +{ + // is there an assert somewhere on overflows? + using RealLimits = std::numeric_limits; + using CompatibleLimits = std::numeric_limits; + + static constexpr auto value = + std::is_constructible::value && + CompatibleLimits::is_integer && + RealLimits::is_signed == CompatibleLimits::is_signed; +}; + +template +struct is_compatible_integer_type + : is_compatible_integer_type_impl {}; + +template +struct is_compatible_type_impl: std::false_type {}; + +template +struct is_compatible_type_impl < + BasicJsonType, CompatibleType, + enable_if_t::value >> +{ + static constexpr bool value = + has_to_json::value; +}; + +template +struct is_compatible_type + : is_compatible_type_impl {}; + +// https://en.cppreference.com/w/cpp/types/conjunction +template struct conjunction : std::true_type { }; +template struct conjunction : B1 { }; +template +struct conjunction +: std::conditional, B1>::type {}; + +template +struct is_constructible_tuple : std::false_type {}; + +template +struct is_constructible_tuple> : conjunction...> {}; +} // namespace detail +} // namespace nlohmann + +// #include + + +#include // array +#include // size_t +#include // uint8_t +#include // string + +namespace nlohmann +{ +namespace detail +{ +/////////////////////////// +// JSON type enumeration // +/////////////////////////// + +/*! +@brief the JSON type enumeration + +This enumeration collects the different JSON types. It is internally used to +distinguish the stored values, and the functions @ref basic_json::is_null(), +@ref basic_json::is_object(), @ref basic_json::is_array(), +@ref basic_json::is_string(), @ref basic_json::is_boolean(), +@ref basic_json::is_number() (with @ref basic_json::is_number_integer(), +@ref basic_json::is_number_unsigned(), and @ref basic_json::is_number_float()), +@ref basic_json::is_discarded(), @ref basic_json::is_primitive(), and +@ref basic_json::is_structured() rely on it. + +@note There are three enumeration entries (number_integer, number_unsigned, and +number_float), because the library distinguishes these three types for numbers: +@ref basic_json::number_unsigned_t is used for unsigned integers, +@ref basic_json::number_integer_t is used for signed integers, and +@ref basic_json::number_float_t is used for floating-point numbers or to +approximate integers which do not fit in the limits of their respective type. + +@sa @ref basic_json::basic_json(const value_t value_type) -- create a JSON +value with the default value for a given type + +@since version 1.0.0 +*/ +enum class value_t : std::uint8_t +{ + null, ///< null value + object, ///< object (unordered set of name/value pairs) + array, ///< array (ordered collection of values) + string, ///< string value + boolean, ///< boolean value + number_integer, ///< number value (signed integer) + number_unsigned, ///< number value (unsigned integer) + number_float, ///< number value (floating-point) + binary, ///< binary array (ordered collection of bytes) + discarded ///< discarded by the parser callback function +}; + +/*! +@brief comparison operator for JSON types + +Returns an ordering that is similar to Python: +- order: null < boolean < number < object < array < string < binary +- furthermore, each type is not smaller than itself +- discarded values are not comparable +- binary is represented as a b"" string in python and directly comparable to a + string; however, making a binary array directly comparable with a string would + be surprising behavior in a JSON file. + +@since version 1.0.0 +*/ +inline bool operator<(const value_t lhs, const value_t rhs) noexcept +{ + static constexpr std::array order = {{ + 0 /* null */, 3 /* object */, 4 /* array */, 5 /* string */, + 1 /* boolean */, 2 /* integer */, 2 /* unsigned */, 2 /* float */, + 6 /* binary */ + } + }; + + const auto l_index = static_cast(lhs); + const auto r_index = static_cast(rhs); + return l_index < order.size() && r_index < order.size() && order[l_index] < order[r_index]; +} +} // namespace detail +} // namespace nlohmann + + +namespace nlohmann +{ +namespace detail +{ +template +void from_json(const BasicJsonType& j, typename std::nullptr_t& n) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_null())) + { + JSON_THROW(type_error::create(302, "type must be null, but is " + std::string(j.type_name()))); + } + n = nullptr; +} + +// overloads for basic_json template parameters +template < typename BasicJsonType, typename ArithmeticType, + enable_if_t < std::is_arithmetic::value&& + !std::is_same::value, + int > = 0 > +void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) +{ + switch (static_cast(j)) + { + case value_t::number_unsigned: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::number_integer: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::number_float: + { + val = static_cast(*j.template get_ptr()); + break; + } + + default: + JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name()))); + } +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::boolean_t& b) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_boolean())) + { + JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(j.type_name()))); + } + b = *j.template get_ptr(); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::string_t& s) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_string())) + { + JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name()))); + } + s = *j.template get_ptr(); +} + +template < + typename BasicJsonType, typename ConstructibleStringType, + enable_if_t < + is_constructible_string_type::value&& + !std::is_same::value, + int > = 0 > +void from_json(const BasicJsonType& j, ConstructibleStringType& s) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_string())) + { + JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name()))); + } + + s = *j.template get_ptr(); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::number_float_t& val) +{ + get_arithmetic_value(j, val); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val) +{ + get_arithmetic_value(j, val); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t& val) +{ + get_arithmetic_value(j, val); +} + +template::value, int> = 0> +void from_json(const BasicJsonType& j, EnumType& e) +{ + typename std::underlying_type::type val; + get_arithmetic_value(j, val); + e = static_cast(val); +} + +// forward_list doesn't have an insert method +template::value, int> = 0> +void from_json(const BasicJsonType& j, std::forward_list& l) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); + } + l.clear(); + std::transform(j.rbegin(), j.rend(), + std::front_inserter(l), [](const BasicJsonType & i) + { + return i.template get(); + }); +} + +// valarray doesn't have an insert method +template::value, int> = 0> +void from_json(const BasicJsonType& j, std::valarray& l) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); + } + l.resize(j.size()); + std::transform(j.begin(), j.end(), std::begin(l), + [](const BasicJsonType & elem) + { + return elem.template get(); + }); +} + +template +auto from_json(const BasicJsonType& j, T (&arr)[N]) +-> decltype(j.template get(), void()) +{ + for (std::size_t i = 0; i < N; ++i) + { + arr[i] = j.at(i).template get(); + } +} + +template +void from_json_array_impl(const BasicJsonType& j, typename BasicJsonType::array_t& arr, priority_tag<3> /*unused*/) +{ + arr = *j.template get_ptr(); +} + +template +auto from_json_array_impl(const BasicJsonType& j, std::array& arr, + priority_tag<2> /*unused*/) +-> decltype(j.template get(), void()) +{ + for (std::size_t i = 0; i < N; ++i) + { + arr[i] = j.at(i).template get(); + } +} + +template +auto from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, priority_tag<1> /*unused*/) +-> decltype( + arr.reserve(std::declval()), + j.template get(), + void()) +{ + using std::end; + + ConstructibleArrayType ret; + ret.reserve(j.size()); + std::transform(j.begin(), j.end(), + std::inserter(ret, end(ret)), [](const BasicJsonType & i) + { + // get() returns *this, this won't call a from_json + // method when value_type is BasicJsonType + return i.template get(); + }); + arr = std::move(ret); +} + +template +void from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, + priority_tag<0> /*unused*/) +{ + using std::end; + + ConstructibleArrayType ret; + std::transform( + j.begin(), j.end(), std::inserter(ret, end(ret)), + [](const BasicJsonType & i) + { + // get() returns *this, this won't call a from_json + // method when value_type is BasicJsonType + return i.template get(); + }); + arr = std::move(ret); +} + +template < typename BasicJsonType, typename ConstructibleArrayType, + enable_if_t < + is_constructible_array_type::value&& + !is_constructible_object_type::value&& + !is_constructible_string_type::value&& + !std::is_same::value&& + !is_basic_json::value, + int > = 0 > +auto from_json(const BasicJsonType& j, ConstructibleArrayType& arr) +-> decltype(from_json_array_impl(j, arr, priority_tag<3> {}), +j.template get(), +void()) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + + std::string(j.type_name()))); + } + + from_json_array_impl(j, arr, priority_tag<3> {}); +} + +template +void from_json(const BasicJsonType& j, typename BasicJsonType::binary_t& bin) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_binary())) + { + JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(j.type_name()))); + } + + bin = *j.template get_ptr(); +} + +template::value, int> = 0> +void from_json(const BasicJsonType& j, ConstructibleObjectType& obj) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_object())) + { + JSON_THROW(type_error::create(302, "type must be object, but is " + std::string(j.type_name()))); + } + + ConstructibleObjectType ret; + auto inner_object = j.template get_ptr(); + using value_type = typename ConstructibleObjectType::value_type; + std::transform( + inner_object->begin(), inner_object->end(), + std::inserter(ret, ret.begin()), + [](typename BasicJsonType::object_t::value_type const & p) + { + return value_type(p.first, p.second.template get()); + }); + obj = std::move(ret); +} + +// overload for arithmetic types, not chosen for basic_json template arguments +// (BooleanType, etc..); note: Is it really necessary to provide explicit +// overloads for boolean_t etc. in case of a custom BooleanType which is not +// an arithmetic type? +template < typename BasicJsonType, typename ArithmeticType, + enable_if_t < + std::is_arithmetic::value&& + !std::is_same::value&& + !std::is_same::value&& + !std::is_same::value&& + !std::is_same::value, + int > = 0 > +void from_json(const BasicJsonType& j, ArithmeticType& val) +{ + switch (static_cast(j)) + { + case value_t::number_unsigned: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::number_integer: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::number_float: + { + val = static_cast(*j.template get_ptr()); + break; + } + case value_t::boolean: + { + val = static_cast(*j.template get_ptr()); + break; + } + + default: + JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name()))); + } +} + +template +void from_json(const BasicJsonType& j, std::pair& p) +{ + p = {j.at(0).template get(), j.at(1).template get()}; +} + +template +void from_json_tuple_impl(const BasicJsonType& j, Tuple& t, index_sequence /*unused*/) +{ + t = std::make_tuple(j.at(Idx).template get::type>()...); +} + +template +void from_json(const BasicJsonType& j, std::tuple& t) +{ + from_json_tuple_impl(j, t, index_sequence_for {}); +} + +template < typename BasicJsonType, typename Key, typename Value, typename Compare, typename Allocator, + typename = enable_if_t < !std::is_constructible < + typename BasicJsonType::string_t, Key >::value >> +void from_json(const BasicJsonType& j, std::map& m) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); + } + m.clear(); + for (const auto& p : j) + { + if (JSON_HEDLEY_UNLIKELY(!p.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name()))); + } + m.emplace(p.at(0).template get(), p.at(1).template get()); + } +} + +template < typename BasicJsonType, typename Key, typename Value, typename Hash, typename KeyEqual, typename Allocator, + typename = enable_if_t < !std::is_constructible < + typename BasicJsonType::string_t, Key >::value >> +void from_json(const BasicJsonType& j, std::unordered_map& m) +{ + if (JSON_HEDLEY_UNLIKELY(!j.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); + } + m.clear(); + for (const auto& p : j) + { + if (JSON_HEDLEY_UNLIKELY(!p.is_array())) + { + JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name()))); + } + m.emplace(p.at(0).template get(), p.at(1).template get()); + } +} + +struct from_json_fn +{ + template + auto operator()(const BasicJsonType& j, T& val) const + noexcept(noexcept(from_json(j, val))) + -> decltype(from_json(j, val), void()) + { + return from_json(j, val); + } +}; +} // namespace detail + +/// namespace to hold default `from_json` function +/// to see why this is required: +/// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4381.html +namespace +{ +constexpr const auto& from_json = detail::static_const::value; +} // namespace +} // namespace nlohmann + +// #include + + +#include // copy +#include // begin, end +#include // string +#include // tuple, get +#include // is_same, is_constructible, is_floating_point, is_enum, underlying_type +#include // move, forward, declval, pair +#include // valarray +#include // vector + +// #include + + +#include // size_t +#include // input_iterator_tag +#include // string, to_string +#include // tuple_size, get, tuple_element + +// #include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +template +void int_to_string( string_type& target, std::size_t value ) +{ + // For ADL + using std::to_string; + target = to_string(value); +} +template class iteration_proxy_value +{ + public: + using difference_type = std::ptrdiff_t; + using value_type = iteration_proxy_value; + using pointer = value_type * ; + using reference = value_type & ; + using iterator_category = std::input_iterator_tag; + using string_type = typename std::remove_cv< typename std::remove_reference().key() ) >::type >::type; + + private: + /// the iterator + IteratorType anchor; + /// an index for arrays (used to create key names) + std::size_t array_index = 0; + /// last stringified array index + mutable std::size_t array_index_last = 0; + /// a string representation of the array index + mutable string_type array_index_str = "0"; + /// an empty string (to return a reference for primitive values) + const string_type empty_str = ""; + + public: + explicit iteration_proxy_value(IteratorType it) noexcept : anchor(it) {} + + /// dereference operator (needed for range-based for) + iteration_proxy_value& operator*() + { + return *this; + } + + /// increment operator (needed for range-based for) + iteration_proxy_value& operator++() + { + ++anchor; + ++array_index; + + return *this; + } + + /// equality operator (needed for InputIterator) + bool operator==(const iteration_proxy_value& o) const + { + return anchor == o.anchor; + } + + /// inequality operator (needed for range-based for) + bool operator!=(const iteration_proxy_value& o) const + { + return anchor != o.anchor; + } + + /// return key of the iterator + const string_type& key() const + { + JSON_ASSERT(anchor.m_object != nullptr); + + switch (anchor.m_object->type()) + { + // use integer array index as key + case value_t::array: + { + if (array_index != array_index_last) + { + int_to_string( array_index_str, array_index ); + array_index_last = array_index; + } + return array_index_str; + } + + // use key from the object + case value_t::object: + return anchor.key(); + + // use an empty key for all primitive types + default: + return empty_str; + } + } + + /// return value of the iterator + typename IteratorType::reference value() const + { + return anchor.value(); + } +}; + +/// proxy class for the items() function +template class iteration_proxy +{ + private: + /// the container to iterate + typename IteratorType::reference container; + + public: + /// construct iteration proxy from a container + explicit iteration_proxy(typename IteratorType::reference cont) noexcept + : container(cont) {} + + /// return iterator begin (needed for range-based for) + iteration_proxy_value begin() noexcept + { + return iteration_proxy_value(container.begin()); + } + + /// return iterator end (needed for range-based for) + iteration_proxy_value end() noexcept + { + return iteration_proxy_value(container.end()); + } +}; +// Structured Bindings Support +// For further reference see https://blog.tartanllama.xyz/structured-bindings/ +// And see https://github.com/nlohmann/json/pull/1391 +template = 0> +auto get(const nlohmann::detail::iteration_proxy_value& i) -> decltype(i.key()) +{ + return i.key(); +} +// Structured Bindings Support +// For further reference see https://blog.tartanllama.xyz/structured-bindings/ +// And see https://github.com/nlohmann/json/pull/1391 +template = 0> +auto get(const nlohmann::detail::iteration_proxy_value& i) -> decltype(i.value()) +{ + return i.value(); +} +} // namespace detail +} // namespace nlohmann + +// The Addition to the STD Namespace is required to add +// Structured Bindings Support to the iteration_proxy_value class +// For further reference see https://blog.tartanllama.xyz/structured-bindings/ +// And see https://github.com/nlohmann/json/pull/1391 +namespace std +{ +#if defined(__clang__) + // Fix: https://github.com/nlohmann/json/issues/1401 + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wmismatched-tags" +#endif +template +class tuple_size<::nlohmann::detail::iteration_proxy_value> + : public std::integral_constant {}; + +template +class tuple_element> +{ + public: + using type = decltype( + get(std::declval < + ::nlohmann::detail::iteration_proxy_value> ())); +}; +#if defined(__clang__) + #pragma clang diagnostic pop +#endif +} // namespace std + +// #include + +// #include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +////////////////// +// constructors // +////////////////// + +template struct external_constructor; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, typename BasicJsonType::boolean_t b) noexcept + { + j.m_type = value_t::boolean; + j.m_value = b; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, const typename BasicJsonType::string_t& s) + { + j.m_type = value_t::string; + j.m_value = s; + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, typename BasicJsonType::string_t&& s) + { + j.m_type = value_t::string; + j.m_value = std::move(s); + j.assert_invariant(); + } + + template < typename BasicJsonType, typename CompatibleStringType, + enable_if_t < !std::is_same::value, + int > = 0 > + static void construct(BasicJsonType& j, const CompatibleStringType& str) + { + j.m_type = value_t::string; + j.m_value.string = j.template create(str); + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, const typename BasicJsonType::binary_t& b) + { + j.m_type = value_t::binary; + typename BasicJsonType::binary_t value{b}; + j.m_value = value; + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, typename BasicJsonType::binary_t&& b) + { + j.m_type = value_t::binary; + typename BasicJsonType::binary_t value{std::move(b)}; + j.m_value = value; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, typename BasicJsonType::number_float_t val) noexcept + { + j.m_type = value_t::number_float; + j.m_value = val; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, typename BasicJsonType::number_unsigned_t val) noexcept + { + j.m_type = value_t::number_unsigned; + j.m_value = val; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, typename BasicJsonType::number_integer_t val) noexcept + { + j.m_type = value_t::number_integer; + j.m_value = val; + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, const typename BasicJsonType::array_t& arr) + { + j.m_type = value_t::array; + j.m_value = arr; + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, typename BasicJsonType::array_t&& arr) + { + j.m_type = value_t::array; + j.m_value = std::move(arr); + j.assert_invariant(); + } + + template < typename BasicJsonType, typename CompatibleArrayType, + enable_if_t < !std::is_same::value, + int > = 0 > + static void construct(BasicJsonType& j, const CompatibleArrayType& arr) + { + using std::begin; + using std::end; + j.m_type = value_t::array; + j.m_value.array = j.template create(begin(arr), end(arr)); + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, const std::vector& arr) + { + j.m_type = value_t::array; + j.m_value = value_t::array; + j.m_value.array->reserve(arr.size()); + for (const bool x : arr) + { + j.m_value.array->push_back(x); + } + j.assert_invariant(); + } + + template::value, int> = 0> + static void construct(BasicJsonType& j, const std::valarray& arr) + { + j.m_type = value_t::array; + j.m_value = value_t::array; + j.m_value.array->resize(arr.size()); + if (arr.size() > 0) + { + std::copy(std::begin(arr), std::end(arr), j.m_value.array->begin()); + } + j.assert_invariant(); + } +}; + +template<> +struct external_constructor +{ + template + static void construct(BasicJsonType& j, const typename BasicJsonType::object_t& obj) + { + j.m_type = value_t::object; + j.m_value = obj; + j.assert_invariant(); + } + + template + static void construct(BasicJsonType& j, typename BasicJsonType::object_t&& obj) + { + j.m_type = value_t::object; + j.m_value = std::move(obj); + j.assert_invariant(); + } + + template < typename BasicJsonType, typename CompatibleObjectType, + enable_if_t < !std::is_same::value, int > = 0 > + static void construct(BasicJsonType& j, const CompatibleObjectType& obj) + { + using std::begin; + using std::end; + + j.m_type = value_t::object; + j.m_value.object = j.template create(begin(obj), end(obj)); + j.assert_invariant(); + } +}; + +///////////// +// to_json // +///////////// + +template::value, int> = 0> +void to_json(BasicJsonType& j, T b) noexcept +{ + external_constructor::construct(j, b); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, const CompatibleString& s) +{ + external_constructor::construct(j, s); +} + +template +void to_json(BasicJsonType& j, typename BasicJsonType::string_t&& s) +{ + external_constructor::construct(j, std::move(s)); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, FloatType val) noexcept +{ + external_constructor::construct(j, static_cast(val)); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, CompatibleNumberUnsignedType val) noexcept +{ + external_constructor::construct(j, static_cast(val)); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept +{ + external_constructor::construct(j, static_cast(val)); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, EnumType e) noexcept +{ + using underlying_type = typename std::underlying_type::type; + external_constructor::construct(j, static_cast(e)); +} + +template +void to_json(BasicJsonType& j, const std::vector& e) +{ + external_constructor::construct(j, e); +} + +template < typename BasicJsonType, typename CompatibleArrayType, + enable_if_t < is_compatible_array_type::value&& + !is_compatible_object_type::value&& + !is_compatible_string_type::value&& + !std::is_same::value&& + !is_basic_json::value, + int > = 0 > +void to_json(BasicJsonType& j, const CompatibleArrayType& arr) +{ + external_constructor::construct(j, arr); +} + +template +void to_json(BasicJsonType& j, const typename BasicJsonType::binary_t& bin) +{ + external_constructor::construct(j, bin); +} + +template::value, int> = 0> +void to_json(BasicJsonType& j, const std::valarray& arr) +{ + external_constructor::construct(j, std::move(arr)); +} + +template +void to_json(BasicJsonType& j, typename BasicJsonType::array_t&& arr) +{ + external_constructor::construct(j, std::move(arr)); +} + +template < typename BasicJsonType, typename CompatibleObjectType, + enable_if_t < is_compatible_object_type::value&& !is_basic_json::value, int > = 0 > +void to_json(BasicJsonType& j, const CompatibleObjectType& obj) +{ + external_constructor::construct(j, obj); +} + +template +void to_json(BasicJsonType& j, typename BasicJsonType::object_t&& obj) +{ + external_constructor::construct(j, std::move(obj)); +} + +template < + typename BasicJsonType, typename T, std::size_t N, + enable_if_t < !std::is_constructible::value, + int > = 0 > +void to_json(BasicJsonType& j, const T(&arr)[N]) +{ + external_constructor::construct(j, arr); +} + +template < typename BasicJsonType, typename T1, typename T2, enable_if_t < std::is_constructible::value&& std::is_constructible::value, int > = 0 > +void to_json(BasicJsonType& j, const std::pair& p) +{ + j = { p.first, p.second }; +} + +// for https://github.com/nlohmann/json/pull/1134 +template>::value, int> = 0> +void to_json(BasicJsonType& j, const T& b) +{ + j = { {b.key(), b.value()} }; +} + +template +void to_json_tuple_impl(BasicJsonType& j, const Tuple& t, index_sequence /*unused*/) +{ + j = { std::get(t)... }; +} + +template::value, int > = 0> +void to_json(BasicJsonType& j, const T& t) +{ + to_json_tuple_impl(j, t, make_index_sequence::value> {}); +} + +struct to_json_fn +{ + template + auto operator()(BasicJsonType& j, T&& val) const noexcept(noexcept(to_json(j, std::forward(val)))) + -> decltype(to_json(j, std::forward(val)), void()) + { + return to_json(j, std::forward(val)); + } +}; +} // namespace detail + +/// namespace to hold default `to_json` function +namespace +{ +constexpr const auto& to_json = detail::static_const::value; +} // namespace +} // namespace nlohmann + + +namespace nlohmann +{ + +template +struct adl_serializer +{ + /*! + @brief convert a JSON value to any value type + + This function is usually called by the `get()` function of the + @ref basic_json class (either explicit or via conversion operators). + + @param[in] j JSON value to read from + @param[in,out] val value to write to + */ + template + static auto from_json(BasicJsonType&& j, ValueType& val) noexcept( + noexcept(::nlohmann::from_json(std::forward(j), val))) + -> decltype(::nlohmann::from_json(std::forward(j), val), void()) + { + ::nlohmann::from_json(std::forward(j), val); + } + + /*! + @brief convert any value type to a JSON value + + This function is usually called by the constructors of the @ref basic_json + class. + + @param[in,out] j JSON value to write to + @param[in] val value to read from + */ + template + static auto to_json(BasicJsonType& j, ValueType&& val) noexcept( + noexcept(::nlohmann::to_json(j, std::forward(val)))) + -> decltype(::nlohmann::to_json(j, std::forward(val)), void()) + { + ::nlohmann::to_json(j, std::forward(val)); + } +}; + +} // namespace nlohmann + +// #include + + +#include // uint8_t +#include // tie +#include // move + +namespace nlohmann +{ + +/*! +@brief an internal type for a backed binary type + +This type extends the template parameter @a BinaryType provided to `basic_json` +with a subtype used by BSON and MessagePack. This type exists so that the user +does not have to specify a type themselves with a specific naming scheme in +order to override the binary type. + +@tparam BinaryType container to store bytes (`std::vector` by + default) + +@since version 3.8.0 +*/ +template +class byte_container_with_subtype : public BinaryType +{ + public: + /// the type of the underlying container + using container_type = BinaryType; + + byte_container_with_subtype() noexcept(noexcept(container_type())) + : container_type() + {} + + byte_container_with_subtype(const container_type& b) noexcept(noexcept(container_type(b))) + : container_type(b) + {} + + byte_container_with_subtype(container_type&& b) noexcept(noexcept(container_type(std::move(b)))) + : container_type(std::move(b)) + {} + + byte_container_with_subtype(const container_type& b, std::uint8_t subtype) noexcept(noexcept(container_type(b))) + : container_type(b) + , m_subtype(subtype) + , m_has_subtype(true) + {} + + byte_container_with_subtype(container_type&& b, std::uint8_t subtype) noexcept(noexcept(container_type(std::move(b)))) + : container_type(std::move(b)) + , m_subtype(subtype) + , m_has_subtype(true) + {} + + bool operator==(const byte_container_with_subtype& rhs) const + { + return std::tie(static_cast(*this), m_subtype, m_has_subtype) == + std::tie(static_cast(rhs), rhs.m_subtype, rhs.m_has_subtype); + } + + bool operator!=(const byte_container_with_subtype& rhs) const + { + return !(rhs == *this); + } + + /*! + @brief sets the binary subtype + + Sets the binary subtype of the value, also flags a binary JSON value as + having a subtype, which has implications for serialization. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @sa @ref subtype() -- return the binary subtype + @sa @ref clear_subtype() -- clears the binary subtype + @sa @ref has_subtype() -- returns whether or not the binary value has a + subtype + + @since version 3.8.0 + */ + void set_subtype(std::uint8_t subtype) noexcept + { + m_subtype = subtype; + m_has_subtype = true; + } + + /*! + @brief return the binary subtype + + Returns the numerical subtype of the value if it has a subtype. If it does + not have a subtype, this function will return size_t(-1) as a sentinel + value. + + @return the numerical subtype of the binary value + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @sa @ref set_subtype() -- sets the binary subtype + @sa @ref clear_subtype() -- clears the binary subtype + @sa @ref has_subtype() -- returns whether or not the binary value has a + subtype + + @since version 3.8.0 + */ + constexpr std::uint8_t subtype() const noexcept + { + return m_subtype; + } + + /*! + @brief return whether the value has a subtype + + @return whether the value has a subtype + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @sa @ref subtype() -- return the binary subtype + @sa @ref set_subtype() -- sets the binary subtype + @sa @ref clear_subtype() -- clears the binary subtype + + @since version 3.8.0 + */ + constexpr bool has_subtype() const noexcept + { + return m_has_subtype; + } + + /*! + @brief clears the binary subtype + + Clears the binary subtype and flags the value as not having a subtype, which + has implications for serialization; for instance MessagePack will prefer the + bin family over the ext family. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @sa @ref subtype() -- return the binary subtype + @sa @ref set_subtype() -- sets the binary subtype + @sa @ref has_subtype() -- returns whether or not the binary value has a + subtype + + @since version 3.8.0 + */ + void clear_subtype() noexcept + { + m_subtype = 0; + m_has_subtype = false; + } + + private: + std::uint8_t m_subtype = 0; + bool m_has_subtype = false; +}; + +} // namespace nlohmann + +// #include + +// #include + +// #include + +// #include + + +#include // size_t, uint8_t +#include // hash + +namespace nlohmann +{ +namespace detail +{ + +// boost::hash_combine +inline std::size_t combine(std::size_t seed, std::size_t h) noexcept +{ + seed ^= h + 0x9e3779b9 + (seed << 6U) + (seed >> 2U); + return seed; +} + +/*! +@brief hash a JSON value + +The hash function tries to rely on std::hash where possible. Furthermore, the +type of the JSON value is taken into account to have different hash values for +null, 0, 0U, and false, etc. + +@tparam BasicJsonType basic_json specialization +@param j JSON value to hash +@return hash value of j +*/ +template +std::size_t hash(const BasicJsonType& j) +{ + using string_t = typename BasicJsonType::string_t; + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + + const auto type = static_cast(j.type()); + switch (j.type()) + { + case BasicJsonType::value_t::null: + case BasicJsonType::value_t::discarded: + { + return combine(type, 0); + } + + case BasicJsonType::value_t::object: + { + auto seed = combine(type, j.size()); + for (const auto& element : j.items()) + { + const auto h = std::hash {}(element.key()); + seed = combine(seed, h); + seed = combine(seed, hash(element.value())); + } + return seed; + } + + case BasicJsonType::value_t::array: + { + auto seed = combine(type, j.size()); + for (const auto& element : j) + { + seed = combine(seed, hash(element)); + } + return seed; + } + + case BasicJsonType::value_t::string: + { + const auto h = std::hash {}(j.template get_ref()); + return combine(type, h); + } + + case BasicJsonType::value_t::boolean: + { + const auto h = std::hash {}(j.template get()); + return combine(type, h); + } + + case BasicJsonType::value_t::number_integer: + { + const auto h = std::hash {}(j.template get()); + return combine(type, h); + } + + case nlohmann::detail::value_t::number_unsigned: + { + const auto h = std::hash {}(j.template get()); + return combine(type, h); + } + + case nlohmann::detail::value_t::number_float: + { + const auto h = std::hash {}(j.template get()); + return combine(type, h); + } + + case nlohmann::detail::value_t::binary: + { + auto seed = combine(type, j.get_binary().size()); + const auto h = std::hash {}(j.get_binary().has_subtype()); + seed = combine(seed, h); + seed = combine(seed, j.get_binary().subtype()); + for (const auto byte : j.get_binary()) + { + seed = combine(seed, std::hash {}(byte)); + } + return seed; + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } +} + +} // namespace detail +} // namespace nlohmann + +// #include + + +#include // generate_n +#include // array +#include // ldexp +#include // size_t +#include // uint8_t, uint16_t, uint32_t, uint64_t +#include // snprintf +#include // memcpy +#include // back_inserter +#include // numeric_limits +#include // char_traits, string +#include // make_pair, move + +// #include + +// #include + + +#include // array +#include // size_t +#include //FILE * +#include // strlen +#include // istream +#include // begin, end, iterator_traits, random_access_iterator_tag, distance, next +#include // shared_ptr, make_shared, addressof +#include // accumulate +#include // string, char_traits +#include // enable_if, is_base_of, is_pointer, is_integral, remove_pointer +#include // pair, declval + +// #include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +/// the supported input formats +enum class input_format_t { json, cbor, msgpack, ubjson, bson }; + +//////////////////// +// input adapters // +//////////////////// + +/*! +Input adapter for stdio file access. This adapter read only 1 byte and do not use any + buffer. This adapter is a very low level adapter. +*/ +class file_input_adapter +{ + public: + using char_type = char; + + JSON_HEDLEY_NON_NULL(2) + explicit file_input_adapter(std::FILE* f) noexcept + : m_file(f) + {} + + // make class move-only + file_input_adapter(const file_input_adapter&) = delete; + file_input_adapter(file_input_adapter&&) = default; + file_input_adapter& operator=(const file_input_adapter&) = delete; + file_input_adapter& operator=(file_input_adapter&&) = delete; + + std::char_traits::int_type get_character() noexcept + { + return std::fgetc(m_file); + } + + private: + /// the file pointer to read from + std::FILE* m_file; +}; + + +/*! +Input adapter for a (caching) istream. Ignores a UFT Byte Order Mark at +beginning of input. Does not support changing the underlying std::streambuf +in mid-input. Maintains underlying std::istream and std::streambuf to support +subsequent use of standard std::istream operations to process any input +characters following those used in parsing the JSON input. Clears the +std::istream flags; any input errors (e.g., EOF) will be detected by the first +subsequent call for input from the std::istream. +*/ +class input_stream_adapter +{ + public: + using char_type = char; + + ~input_stream_adapter() + { + // clear stream flags; we use underlying streambuf I/O, do not + // maintain ifstream flags, except eof + if (is != nullptr) + { + is->clear(is->rdstate() & std::ios::eofbit); + } + } + + explicit input_stream_adapter(std::istream& i) + : is(&i), sb(i.rdbuf()) + {} + + // delete because of pointer members + input_stream_adapter(const input_stream_adapter&) = delete; + input_stream_adapter& operator=(input_stream_adapter&) = delete; + input_stream_adapter& operator=(input_stream_adapter&& rhs) = delete; + + input_stream_adapter(input_stream_adapter&& rhs) noexcept : is(rhs.is), sb(rhs.sb) + { + rhs.is = nullptr; + rhs.sb = nullptr; + } + + // std::istream/std::streambuf use std::char_traits::to_int_type, to + // ensure that std::char_traits::eof() and the character 0xFF do not + // end up as the same value, eg. 0xFFFFFFFF. + std::char_traits::int_type get_character() + { + auto res = sb->sbumpc(); + // set eof manually, as we don't use the istream interface. + if (JSON_HEDLEY_UNLIKELY(res == EOF)) + { + is->clear(is->rdstate() | std::ios::eofbit); + } + return res; + } + + private: + /// the associated input stream + std::istream* is = nullptr; + std::streambuf* sb = nullptr; +}; + +// General-purpose iterator-based adapter. It might not be as fast as +// theoretically possible for some containers, but it is extremely versatile. +template +class iterator_input_adapter +{ + public: + using char_type = typename std::iterator_traits::value_type; + + iterator_input_adapter(IteratorType first, IteratorType last) + : current(std::move(first)), end(std::move(last)) {} + + typename std::char_traits::int_type get_character() + { + if (JSON_HEDLEY_LIKELY(current != end)) + { + auto result = std::char_traits::to_int_type(*current); + std::advance(current, 1); + return result; + } + else + { + return std::char_traits::eof(); + } + } + + private: + IteratorType current; + IteratorType end; + + template + friend struct wide_string_input_helper; + + bool empty() const + { + return current == end; + } + +}; + + +template +struct wide_string_input_helper; + +template +struct wide_string_input_helper +{ + // UTF-32 + static void fill_buffer(BaseInputAdapter& input, + std::array::int_type, 4>& utf8_bytes, + size_t& utf8_bytes_index, + size_t& utf8_bytes_filled) + { + utf8_bytes_index = 0; + + if (JSON_HEDLEY_UNLIKELY(input.empty())) + { + utf8_bytes[0] = std::char_traits::eof(); + utf8_bytes_filled = 1; + } + else + { + // get the current character + const auto wc = input.get_character(); + + // UTF-32 to UTF-8 encoding + if (wc < 0x80) + { + utf8_bytes[0] = static_cast::int_type>(wc); + utf8_bytes_filled = 1; + } + else if (wc <= 0x7FF) + { + utf8_bytes[0] = static_cast::int_type>(0xC0u | ((static_cast(wc) >> 6u) & 0x1Fu)); + utf8_bytes[1] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 2; + } + else if (wc <= 0xFFFF) + { + utf8_bytes[0] = static_cast::int_type>(0xE0u | ((static_cast(wc) >> 12u) & 0x0Fu)); + utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); + utf8_bytes[2] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 3; + } + else if (wc <= 0x10FFFF) + { + utf8_bytes[0] = static_cast::int_type>(0xF0u | ((static_cast(wc) >> 18u) & 0x07u)); + utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 12u) & 0x3Fu)); + utf8_bytes[2] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); + utf8_bytes[3] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 4; + } + else + { + // unknown character + utf8_bytes[0] = static_cast::int_type>(wc); + utf8_bytes_filled = 1; + } + } + } +}; + +template +struct wide_string_input_helper +{ + // UTF-16 + static void fill_buffer(BaseInputAdapter& input, + std::array::int_type, 4>& utf8_bytes, + size_t& utf8_bytes_index, + size_t& utf8_bytes_filled) + { + utf8_bytes_index = 0; + + if (JSON_HEDLEY_UNLIKELY(input.empty())) + { + utf8_bytes[0] = std::char_traits::eof(); + utf8_bytes_filled = 1; + } + else + { + // get the current character + const auto wc = input.get_character(); + + // UTF-16 to UTF-8 encoding + if (wc < 0x80) + { + utf8_bytes[0] = static_cast::int_type>(wc); + utf8_bytes_filled = 1; + } + else if (wc <= 0x7FF) + { + utf8_bytes[0] = static_cast::int_type>(0xC0u | ((static_cast(wc) >> 6u))); + utf8_bytes[1] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 2; + } + else if (0xD800 > wc || wc >= 0xE000) + { + utf8_bytes[0] = static_cast::int_type>(0xE0u | ((static_cast(wc) >> 12u))); + utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); + utf8_bytes[2] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); + utf8_bytes_filled = 3; + } + else + { + if (JSON_HEDLEY_UNLIKELY(!input.empty())) + { + const auto wc2 = static_cast(input.get_character()); + const auto charcode = 0x10000u + (((static_cast(wc) & 0x3FFu) << 10u) | (wc2 & 0x3FFu)); + utf8_bytes[0] = static_cast::int_type>(0xF0u | (charcode >> 18u)); + utf8_bytes[1] = static_cast::int_type>(0x80u | ((charcode >> 12u) & 0x3Fu)); + utf8_bytes[2] = static_cast::int_type>(0x80u | ((charcode >> 6u) & 0x3Fu)); + utf8_bytes[3] = static_cast::int_type>(0x80u | (charcode & 0x3Fu)); + utf8_bytes_filled = 4; + } + else + { + utf8_bytes[0] = static_cast::int_type>(wc); + utf8_bytes_filled = 1; + } + } + } + } +}; + +// Wraps another input apdater to convert wide character types into individual bytes. +template +class wide_string_input_adapter +{ + public: + using char_type = char; + + wide_string_input_adapter(BaseInputAdapter base) + : base_adapter(base) {} + + typename std::char_traits::int_type get_character() noexcept + { + // check if buffer needs to be filled + if (utf8_bytes_index == utf8_bytes_filled) + { + fill_buffer(); + + JSON_ASSERT(utf8_bytes_filled > 0); + JSON_ASSERT(utf8_bytes_index == 0); + } + + // use buffer + JSON_ASSERT(utf8_bytes_filled > 0); + JSON_ASSERT(utf8_bytes_index < utf8_bytes_filled); + return utf8_bytes[utf8_bytes_index++]; + } + + private: + BaseInputAdapter base_adapter; + + template + void fill_buffer() + { + wide_string_input_helper::fill_buffer(base_adapter, utf8_bytes, utf8_bytes_index, utf8_bytes_filled); + } + + /// a buffer for UTF-8 bytes + std::array::int_type, 4> utf8_bytes = {{0, 0, 0, 0}}; + + /// index to the utf8_codes array for the next valid byte + std::size_t utf8_bytes_index = 0; + /// number of valid bytes in the utf8_codes array + std::size_t utf8_bytes_filled = 0; +}; + + +template +struct iterator_input_adapter_factory +{ + using iterator_type = IteratorType; + using char_type = typename std::iterator_traits::value_type; + using adapter_type = iterator_input_adapter; + + static adapter_type create(IteratorType first, IteratorType last) + { + return adapter_type(std::move(first), std::move(last)); + } +}; + +template +struct is_iterator_of_multibyte +{ + using value_type = typename std::iterator_traits::value_type; + enum + { + value = sizeof(value_type) > 1 + }; +}; + +template +struct iterator_input_adapter_factory::value>> +{ + using iterator_type = IteratorType; + using char_type = typename std::iterator_traits::value_type; + using base_adapter_type = iterator_input_adapter; + using adapter_type = wide_string_input_adapter; + + static adapter_type create(IteratorType first, IteratorType last) + { + return adapter_type(base_adapter_type(std::move(first), std::move(last))); + } +}; + +// General purpose iterator-based input +template +typename iterator_input_adapter_factory::adapter_type input_adapter(IteratorType first, IteratorType last) +{ + using factory_type = iterator_input_adapter_factory; + return factory_type::create(first, last); +} + +// Convenience shorthand from container to iterator +template +auto input_adapter(const ContainerType& container) -> decltype(input_adapter(begin(container), end(container))) +{ + // Enable ADL + using std::begin; + using std::end; + + return input_adapter(begin(container), end(container)); +} + +// Special cases with fast paths +inline file_input_adapter input_adapter(std::FILE* file) +{ + return file_input_adapter(file); +} + +inline input_stream_adapter input_adapter(std::istream& stream) +{ + return input_stream_adapter(stream); +} + +inline input_stream_adapter input_adapter(std::istream&& stream) +{ + return input_stream_adapter(stream); +} + +using contiguous_bytes_input_adapter = decltype(input_adapter(std::declval(), std::declval())); + +// Null-delimited strings, and the like. +template < typename CharT, + typename std::enable_if < + std::is_pointer::value&& + !std::is_array::value&& + std::is_integral::type>::value&& + sizeof(typename std::remove_pointer::type) == 1, + int >::type = 0 > +contiguous_bytes_input_adapter input_adapter(CharT b) +{ + auto length = std::strlen(reinterpret_cast(b)); + const auto* ptr = reinterpret_cast(b); + return input_adapter(ptr, ptr + length); +} + +template +auto input_adapter(T (&array)[N]) -> decltype(input_adapter(array, array + N)) +{ + return input_adapter(array, array + N); +} + +// This class only handles inputs of input_buffer_adapter type. +// It's required so that expressions like {ptr, len} can be implicitely casted +// to the correct adapter. +class span_input_adapter +{ + public: + template < typename CharT, + typename std::enable_if < + std::is_pointer::value&& + std::is_integral::type>::value&& + sizeof(typename std::remove_pointer::type) == 1, + int >::type = 0 > + span_input_adapter(CharT b, std::size_t l) + : ia(reinterpret_cast(b), reinterpret_cast(b) + l) {} + + template::iterator_category, std::random_access_iterator_tag>::value, + int>::type = 0> + span_input_adapter(IteratorType first, IteratorType last) + : ia(input_adapter(first, last)) {} + + contiguous_bytes_input_adapter&& get() + { + return std::move(ia); + } + + private: + contiguous_bytes_input_adapter ia; +}; +} // namespace detail +} // namespace nlohmann + +// #include + + +#include +#include // string +#include // move +#include // vector + +// #include + +// #include + + +namespace nlohmann +{ + +/*! +@brief SAX interface + +This class describes the SAX interface used by @ref nlohmann::json::sax_parse. +Each function is called in different situations while the input is parsed. The +boolean return value informs the parser whether to continue processing the +input. +*/ +template +struct json_sax +{ + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + + /*! + @brief a null value was read + @return whether parsing should proceed + */ + virtual bool null() = 0; + + /*! + @brief a boolean value was read + @param[in] val boolean value + @return whether parsing should proceed + */ + virtual bool boolean(bool val) = 0; + + /*! + @brief an integer number was read + @param[in] val integer value + @return whether parsing should proceed + */ + virtual bool number_integer(number_integer_t val) = 0; + + /*! + @brief an unsigned integer number was read + @param[in] val unsigned integer value + @return whether parsing should proceed + */ + virtual bool number_unsigned(number_unsigned_t val) = 0; + + /*! + @brief an floating-point number was read + @param[in] val floating-point value + @param[in] s raw token value + @return whether parsing should proceed + */ + virtual bool number_float(number_float_t val, const string_t& s) = 0; + + /*! + @brief a string was read + @param[in] val string value + @return whether parsing should proceed + @note It is safe to move the passed string. + */ + virtual bool string(string_t& val) = 0; + + /*! + @brief a binary string was read + @param[in] val binary value + @return whether parsing should proceed + @note It is safe to move the passed binary. + */ + virtual bool binary(binary_t& val) = 0; + + /*! + @brief the beginning of an object was read + @param[in] elements number of object elements or -1 if unknown + @return whether parsing should proceed + @note binary formats may report the number of elements + */ + virtual bool start_object(std::size_t elements) = 0; + + /*! + @brief an object key was read + @param[in] val object key + @return whether parsing should proceed + @note It is safe to move the passed string. + */ + virtual bool key(string_t& val) = 0; + + /*! + @brief the end of an object was read + @return whether parsing should proceed + */ + virtual bool end_object() = 0; + + /*! + @brief the beginning of an array was read + @param[in] elements number of array elements or -1 if unknown + @return whether parsing should proceed + @note binary formats may report the number of elements + */ + virtual bool start_array(std::size_t elements) = 0; + + /*! + @brief the end of an array was read + @return whether parsing should proceed + */ + virtual bool end_array() = 0; + + /*! + @brief a parse error occurred + @param[in] position the position in the input where the error occurs + @param[in] last_token the last read token + @param[in] ex an exception object describing the error + @return whether parsing should proceed (must return false) + */ + virtual bool parse_error(std::size_t position, + const std::string& last_token, + const detail::exception& ex) = 0; + + virtual ~json_sax() = default; +}; + + +namespace detail +{ +/*! +@brief SAX implementation to create a JSON value from SAX events + +This class implements the @ref json_sax interface and processes the SAX events +to create a JSON value which makes it basically a DOM parser. The structure or +hierarchy of the JSON value is managed by the stack `ref_stack` which contains +a pointer to the respective array or object for each recursion depth. + +After successful parsing, the value that is passed by reference to the +constructor contains the parsed value. + +@tparam BasicJsonType the JSON type +*/ +template +class json_sax_dom_parser +{ + public: + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + + /*! + @param[in, out] r reference to a JSON value that is manipulated while + parsing + @param[in] allow_exceptions_ whether parse errors yield exceptions + */ + explicit json_sax_dom_parser(BasicJsonType& r, const bool allow_exceptions_ = true) + : root(r), allow_exceptions(allow_exceptions_) + {} + + // make class move-only + json_sax_dom_parser(const json_sax_dom_parser&) = delete; + json_sax_dom_parser(json_sax_dom_parser&&) = default; + json_sax_dom_parser& operator=(const json_sax_dom_parser&) = delete; + json_sax_dom_parser& operator=(json_sax_dom_parser&&) = default; + ~json_sax_dom_parser() = default; + + bool null() + { + handle_value(nullptr); + return true; + } + + bool boolean(bool val) + { + handle_value(val); + return true; + } + + bool number_integer(number_integer_t val) + { + handle_value(val); + return true; + } + + bool number_unsigned(number_unsigned_t val) + { + handle_value(val); + return true; + } + + bool number_float(number_float_t val, const string_t& /*unused*/) + { + handle_value(val); + return true; + } + + bool string(string_t& val) + { + handle_value(val); + return true; + } + + bool binary(binary_t& val) + { + handle_value(std::move(val)); + return true; + } + + bool start_object(std::size_t len) + { + ref_stack.push_back(handle_value(BasicJsonType::value_t::object)); + + if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) + { + JSON_THROW(out_of_range::create(408, + "excessive object size: " + std::to_string(len))); + } + + return true; + } + + bool key(string_t& val) + { + // add null at given key and store the reference for later + object_element = &(ref_stack.back()->m_value.object->operator[](val)); + return true; + } + + bool end_object() + { + ref_stack.pop_back(); + return true; + } + + bool start_array(std::size_t len) + { + ref_stack.push_back(handle_value(BasicJsonType::value_t::array)); + + if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) + { + JSON_THROW(out_of_range::create(408, + "excessive array size: " + std::to_string(len))); + } + + return true; + } + + bool end_array() + { + ref_stack.pop_back(); + return true; + } + + template + bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, + const Exception& ex) + { + errored = true; + static_cast(ex); + if (allow_exceptions) + { + JSON_THROW(ex); + } + return false; + } + + constexpr bool is_errored() const + { + return errored; + } + + private: + /*! + @invariant If the ref stack is empty, then the passed value will be the new + root. + @invariant If the ref stack contains a value, then it is an array or an + object to which we can add elements + */ + template + JSON_HEDLEY_RETURNS_NON_NULL + BasicJsonType* handle_value(Value&& v) + { + if (ref_stack.empty()) + { + root = BasicJsonType(std::forward(v)); + return &root; + } + + JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); + + if (ref_stack.back()->is_array()) + { + ref_stack.back()->m_value.array->emplace_back(std::forward(v)); + return &(ref_stack.back()->m_value.array->back()); + } + + JSON_ASSERT(ref_stack.back()->is_object()); + JSON_ASSERT(object_element); + *object_element = BasicJsonType(std::forward(v)); + return object_element; + } + + /// the parsed JSON value + BasicJsonType& root; + /// stack to model hierarchy of values + std::vector ref_stack {}; + /// helper to hold the reference for the next object element + BasicJsonType* object_element = nullptr; + /// whether a syntax error occurred + bool errored = false; + /// whether to throw exceptions in case of errors + const bool allow_exceptions = true; +}; + +template +class json_sax_dom_callback_parser +{ + public: + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using parser_callback_t = typename BasicJsonType::parser_callback_t; + using parse_event_t = typename BasicJsonType::parse_event_t; + + json_sax_dom_callback_parser(BasicJsonType& r, + const parser_callback_t cb, + const bool allow_exceptions_ = true) + : root(r), callback(cb), allow_exceptions(allow_exceptions_) + { + keep_stack.push_back(true); + } + + // make class move-only + json_sax_dom_callback_parser(const json_sax_dom_callback_parser&) = delete; + json_sax_dom_callback_parser(json_sax_dom_callback_parser&&) = default; + json_sax_dom_callback_parser& operator=(const json_sax_dom_callback_parser&) = delete; + json_sax_dom_callback_parser& operator=(json_sax_dom_callback_parser&&) = default; + ~json_sax_dom_callback_parser() = default; + + bool null() + { + handle_value(nullptr); + return true; + } + + bool boolean(bool val) + { + handle_value(val); + return true; + } + + bool number_integer(number_integer_t val) + { + handle_value(val); + return true; + } + + bool number_unsigned(number_unsigned_t val) + { + handle_value(val); + return true; + } + + bool number_float(number_float_t val, const string_t& /*unused*/) + { + handle_value(val); + return true; + } + + bool string(string_t& val) + { + handle_value(val); + return true; + } + + bool binary(binary_t& val) + { + handle_value(std::move(val)); + return true; + } + + bool start_object(std::size_t len) + { + // check callback for object start + const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::object_start, discarded); + keep_stack.push_back(keep); + + auto val = handle_value(BasicJsonType::value_t::object, true); + ref_stack.push_back(val.second); + + // check object limit + if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) + { + JSON_THROW(out_of_range::create(408, "excessive object size: " + std::to_string(len))); + } + + return true; + } + + bool key(string_t& val) + { + BasicJsonType k = BasicJsonType(val); + + // check callback for key + const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::key, k); + key_keep_stack.push_back(keep); + + // add discarded value at given key and store the reference for later + if (keep && ref_stack.back()) + { + object_element = &(ref_stack.back()->m_value.object->operator[](val) = discarded); + } + + return true; + } + + bool end_object() + { + if (ref_stack.back() && !callback(static_cast(ref_stack.size()) - 1, parse_event_t::object_end, *ref_stack.back())) + { + // discard object + *ref_stack.back() = discarded; + } + + JSON_ASSERT(!ref_stack.empty()); + JSON_ASSERT(!keep_stack.empty()); + ref_stack.pop_back(); + keep_stack.pop_back(); + + if (!ref_stack.empty() && ref_stack.back() && ref_stack.back()->is_structured()) + { + // remove discarded value + for (auto it = ref_stack.back()->begin(); it != ref_stack.back()->end(); ++it) + { + if (it->is_discarded()) + { + ref_stack.back()->erase(it); + break; + } + } + } + + return true; + } + + bool start_array(std::size_t len) + { + const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::array_start, discarded); + keep_stack.push_back(keep); + + auto val = handle_value(BasicJsonType::value_t::array, true); + ref_stack.push_back(val.second); + + // check array limit + if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) + { + JSON_THROW(out_of_range::create(408, "excessive array size: " + std::to_string(len))); + } + + return true; + } + + bool end_array() + { + bool keep = true; + + if (ref_stack.back()) + { + keep = callback(static_cast(ref_stack.size()) - 1, parse_event_t::array_end, *ref_stack.back()); + if (!keep) + { + // discard array + *ref_stack.back() = discarded; + } + } + + JSON_ASSERT(!ref_stack.empty()); + JSON_ASSERT(!keep_stack.empty()); + ref_stack.pop_back(); + keep_stack.pop_back(); + + // remove discarded value + if (!keep && !ref_stack.empty() && ref_stack.back()->is_array()) + { + ref_stack.back()->m_value.array->pop_back(); + } + + return true; + } + + template + bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, + const Exception& ex) + { + errored = true; + static_cast(ex); + if (allow_exceptions) + { + JSON_THROW(ex); + } + return false; + } + + constexpr bool is_errored() const + { + return errored; + } + + private: + /*! + @param[in] v value to add to the JSON value we build during parsing + @param[in] skip_callback whether we should skip calling the callback + function; this is required after start_array() and + start_object() SAX events, because otherwise we would call the + callback function with an empty array or object, respectively. + + @invariant If the ref stack is empty, then the passed value will be the new + root. + @invariant If the ref stack contains a value, then it is an array or an + object to which we can add elements + + @return pair of boolean (whether value should be kept) and pointer (to the + passed value in the ref_stack hierarchy; nullptr if not kept) + */ + template + std::pair handle_value(Value&& v, const bool skip_callback = false) + { + JSON_ASSERT(!keep_stack.empty()); + + // do not handle this value if we know it would be added to a discarded + // container + if (!keep_stack.back()) + { + return {false, nullptr}; + } + + // create value + auto value = BasicJsonType(std::forward(v)); + + // check callback + const bool keep = skip_callback || callback(static_cast(ref_stack.size()), parse_event_t::value, value); + + // do not handle this value if we just learnt it shall be discarded + if (!keep) + { + return {false, nullptr}; + } + + if (ref_stack.empty()) + { + root = std::move(value); + return {true, &root}; + } + + // skip this value if we already decided to skip the parent + // (https://github.com/nlohmann/json/issues/971#issuecomment-413678360) + if (!ref_stack.back()) + { + return {false, nullptr}; + } + + // we now only expect arrays and objects + JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); + + // array + if (ref_stack.back()->is_array()) + { + ref_stack.back()->m_value.array->push_back(std::move(value)); + return {true, &(ref_stack.back()->m_value.array->back())}; + } + + // object + JSON_ASSERT(ref_stack.back()->is_object()); + // check if we should store an element for the current key + JSON_ASSERT(!key_keep_stack.empty()); + const bool store_element = key_keep_stack.back(); + key_keep_stack.pop_back(); + + if (!store_element) + { + return {false, nullptr}; + } + + JSON_ASSERT(object_element); + *object_element = std::move(value); + return {true, object_element}; + } + + /// the parsed JSON value + BasicJsonType& root; + /// stack to model hierarchy of values + std::vector ref_stack {}; + /// stack to manage which values to keep + std::vector keep_stack {}; + /// stack to manage which object keys to keep + std::vector key_keep_stack {}; + /// helper to hold the reference for the next object element + BasicJsonType* object_element = nullptr; + /// whether a syntax error occurred + bool errored = false; + /// callback function + const parser_callback_t callback = nullptr; + /// whether to throw exceptions in case of errors + const bool allow_exceptions = true; + /// a discarded value for the callback + BasicJsonType discarded = BasicJsonType::value_t::discarded; +}; + +template +class json_sax_acceptor +{ + public: + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + + bool null() + { + return true; + } + + bool boolean(bool /*unused*/) + { + return true; + } + + bool number_integer(number_integer_t /*unused*/) + { + return true; + } + + bool number_unsigned(number_unsigned_t /*unused*/) + { + return true; + } + + bool number_float(number_float_t /*unused*/, const string_t& /*unused*/) + { + return true; + } + + bool string(string_t& /*unused*/) + { + return true; + } + + bool binary(binary_t& /*unused*/) + { + return true; + } + + bool start_object(std::size_t /*unused*/ = std::size_t(-1)) + { + return true; + } + + bool key(string_t& /*unused*/) + { + return true; + } + + bool end_object() + { + return true; + } + + bool start_array(std::size_t /*unused*/ = std::size_t(-1)) + { + return true; + } + + bool end_array() + { + return true; + } + + bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const detail::exception& /*unused*/) + { + return false; + } +}; +} // namespace detail + +} // namespace nlohmann + +// #include + + +#include // array +#include // localeconv +#include // size_t +#include // snprintf +#include // strtof, strtod, strtold, strtoll, strtoull +#include // initializer_list +#include // char_traits, string +#include // move +#include // vector + +// #include + +// #include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +/////////// +// lexer // +/////////// + +template +class lexer_base +{ + public: + /// token types for the parser + enum class token_type + { + uninitialized, ///< indicating the scanner is uninitialized + literal_true, ///< the `true` literal + literal_false, ///< the `false` literal + literal_null, ///< the `null` literal + value_string, ///< a string -- use get_string() for actual value + value_unsigned, ///< an unsigned integer -- use get_number_unsigned() for actual value + value_integer, ///< a signed integer -- use get_number_integer() for actual value + value_float, ///< an floating point number -- use get_number_float() for actual value + begin_array, ///< the character for array begin `[` + begin_object, ///< the character for object begin `{` + end_array, ///< the character for array end `]` + end_object, ///< the character for object end `}` + name_separator, ///< the name separator `:` + value_separator, ///< the value separator `,` + parse_error, ///< indicating a parse error + end_of_input, ///< indicating the end of the input buffer + literal_or_value ///< a literal or the begin of a value (only for diagnostics) + }; + + /// return name of values of type token_type (only used for errors) + JSON_HEDLEY_RETURNS_NON_NULL + JSON_HEDLEY_CONST + static const char* token_type_name(const token_type t) noexcept + { + switch (t) + { + case token_type::uninitialized: + return ""; + case token_type::literal_true: + return "true literal"; + case token_type::literal_false: + return "false literal"; + case token_type::literal_null: + return "null literal"; + case token_type::value_string: + return "string literal"; + case token_type::value_unsigned: + case token_type::value_integer: + case token_type::value_float: + return "number literal"; + case token_type::begin_array: + return "'['"; + case token_type::begin_object: + return "'{'"; + case token_type::end_array: + return "']'"; + case token_type::end_object: + return "'}'"; + case token_type::name_separator: + return "':'"; + case token_type::value_separator: + return "','"; + case token_type::parse_error: + return ""; + case token_type::end_of_input: + return "end of input"; + case token_type::literal_or_value: + return "'[', '{', or a literal"; + // LCOV_EXCL_START + default: // catch non-enum values + return "unknown token"; + // LCOV_EXCL_STOP + } + } +}; +/*! +@brief lexical analysis + +This class organizes the lexical analysis during JSON deserialization. +*/ +template +class lexer : public lexer_base +{ + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using char_type = typename InputAdapterType::char_type; + using char_int_type = typename std::char_traits::int_type; + + public: + using token_type = typename lexer_base::token_type; + + explicit lexer(InputAdapterType&& adapter, bool ignore_comments_ = false) + : ia(std::move(adapter)) + , ignore_comments(ignore_comments_) + , decimal_point_char(static_cast(get_decimal_point())) + {} + + // delete because of pointer members + lexer(const lexer&) = delete; + lexer(lexer&&) = default; + lexer& operator=(lexer&) = delete; + lexer& operator=(lexer&&) = default; + ~lexer() = default; + + private: + ///////////////////// + // locales + ///////////////////// + + /// return the locale-dependent decimal point + JSON_HEDLEY_PURE + static char get_decimal_point() noexcept + { + const auto* loc = localeconv(); + JSON_ASSERT(loc != nullptr); + return (loc->decimal_point == nullptr) ? '.' : *(loc->decimal_point); + } + + ///////////////////// + // scan functions + ///////////////////// + + /*! + @brief get codepoint from 4 hex characters following `\u` + + For input "\u c1 c2 c3 c4" the codepoint is: + (c1 * 0x1000) + (c2 * 0x0100) + (c3 * 0x0010) + c4 + = (c1 << 12) + (c2 << 8) + (c3 << 4) + (c4 << 0) + + Furthermore, the possible characters '0'..'9', 'A'..'F', and 'a'..'f' + must be converted to the integers 0x0..0x9, 0xA..0xF, 0xA..0xF, resp. The + conversion is done by subtracting the offset (0x30, 0x37, and 0x57) + between the ASCII value of the character and the desired integer value. + + @return codepoint (0x0000..0xFFFF) or -1 in case of an error (e.g. EOF or + non-hex character) + */ + int get_codepoint() + { + // this function only makes sense after reading `\u` + JSON_ASSERT(current == 'u'); + int codepoint = 0; + + const auto factors = { 12u, 8u, 4u, 0u }; + for (const auto factor : factors) + { + get(); + + if (current >= '0' && current <= '9') + { + codepoint += static_cast((static_cast(current) - 0x30u) << factor); + } + else if (current >= 'A' && current <= 'F') + { + codepoint += static_cast((static_cast(current) - 0x37u) << factor); + } + else if (current >= 'a' && current <= 'f') + { + codepoint += static_cast((static_cast(current) - 0x57u) << factor); + } + else + { + return -1; + } + } + + JSON_ASSERT(0x0000 <= codepoint && codepoint <= 0xFFFF); + return codepoint; + } + + /*! + @brief check if the next byte(s) are inside a given range + + Adds the current byte and, for each passed range, reads a new byte and + checks if it is inside the range. If a violation was detected, set up an + error message and return false. Otherwise, return true. + + @param[in] ranges list of integers; interpreted as list of pairs of + inclusive lower and upper bound, respectively + + @pre The passed list @a ranges must have 2, 4, or 6 elements; that is, + 1, 2, or 3 pairs. This precondition is enforced by an assertion. + + @return true if and only if no range violation was detected + */ + bool next_byte_in_range(std::initializer_list ranges) + { + JSON_ASSERT(ranges.size() == 2 || ranges.size() == 4 || ranges.size() == 6); + add(current); + + for (auto range = ranges.begin(); range != ranges.end(); ++range) + { + get(); + if (JSON_HEDLEY_LIKELY(*range <= current && current <= *(++range))) + { + add(current); + } + else + { + error_message = "invalid string: ill-formed UTF-8 byte"; + return false; + } + } + + return true; + } + + /*! + @brief scan a string literal + + This function scans a string according to Sect. 7 of RFC 7159. While + scanning, bytes are escaped and copied into buffer token_buffer. Then the + function returns successfully, token_buffer is *not* null-terminated (as it + may contain \0 bytes), and token_buffer.size() is the number of bytes in the + string. + + @return token_type::value_string if string could be successfully scanned, + token_type::parse_error otherwise + + @note In case of errors, variable error_message contains a textual + description. + */ + token_type scan_string() + { + // reset token_buffer (ignore opening quote) + reset(); + + // we entered the function by reading an open quote + JSON_ASSERT(current == '\"'); + + while (true) + { + // get next character + switch (get()) + { + // end of file while parsing string + case std::char_traits::eof(): + { + error_message = "invalid string: missing closing quote"; + return token_type::parse_error; + } + + // closing quote + case '\"': + { + return token_type::value_string; + } + + // escapes + case '\\': + { + switch (get()) + { + // quotation mark + case '\"': + add('\"'); + break; + // reverse solidus + case '\\': + add('\\'); + break; + // solidus + case '/': + add('/'); + break; + // backspace + case 'b': + add('\b'); + break; + // form feed + case 'f': + add('\f'); + break; + // line feed + case 'n': + add('\n'); + break; + // carriage return + case 'r': + add('\r'); + break; + // tab + case 't': + add('\t'); + break; + + // unicode escapes + case 'u': + { + const int codepoint1 = get_codepoint(); + int codepoint = codepoint1; // start with codepoint1 + + if (JSON_HEDLEY_UNLIKELY(codepoint1 == -1)) + { + error_message = "invalid string: '\\u' must be followed by 4 hex digits"; + return token_type::parse_error; + } + + // check if code point is a high surrogate + if (0xD800 <= codepoint1 && codepoint1 <= 0xDBFF) + { + // expect next \uxxxx entry + if (JSON_HEDLEY_LIKELY(get() == '\\' && get() == 'u')) + { + const int codepoint2 = get_codepoint(); + + if (JSON_HEDLEY_UNLIKELY(codepoint2 == -1)) + { + error_message = "invalid string: '\\u' must be followed by 4 hex digits"; + return token_type::parse_error; + } + + // check if codepoint2 is a low surrogate + if (JSON_HEDLEY_LIKELY(0xDC00 <= codepoint2 && codepoint2 <= 0xDFFF)) + { + // overwrite codepoint + codepoint = static_cast( + // high surrogate occupies the most significant 22 bits + (static_cast(codepoint1) << 10u) + // low surrogate occupies the least significant 15 bits + + static_cast(codepoint2) + // there is still the 0xD800, 0xDC00 and 0x10000 noise + // in the result so we have to subtract with: + // (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00 + - 0x35FDC00u); + } + else + { + error_message = "invalid string: surrogate U+D800..U+DBFF must be followed by U+DC00..U+DFFF"; + return token_type::parse_error; + } + } + else + { + error_message = "invalid string: surrogate U+D800..U+DBFF must be followed by U+DC00..U+DFFF"; + return token_type::parse_error; + } + } + else + { + if (JSON_HEDLEY_UNLIKELY(0xDC00 <= codepoint1 && codepoint1 <= 0xDFFF)) + { + error_message = "invalid string: surrogate U+DC00..U+DFFF must follow U+D800..U+DBFF"; + return token_type::parse_error; + } + } + + // result of the above calculation yields a proper codepoint + JSON_ASSERT(0x00 <= codepoint && codepoint <= 0x10FFFF); + + // translate codepoint into bytes + if (codepoint < 0x80) + { + // 1-byte characters: 0xxxxxxx (ASCII) + add(static_cast(codepoint)); + } + else if (codepoint <= 0x7FF) + { + // 2-byte characters: 110xxxxx 10xxxxxx + add(static_cast(0xC0u | (static_cast(codepoint) >> 6u))); + add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); + } + else if (codepoint <= 0xFFFF) + { + // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx + add(static_cast(0xE0u | (static_cast(codepoint) >> 12u))); + add(static_cast(0x80u | ((static_cast(codepoint) >> 6u) & 0x3Fu))); + add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); + } + else + { + // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx + add(static_cast(0xF0u | (static_cast(codepoint) >> 18u))); + add(static_cast(0x80u | ((static_cast(codepoint) >> 12u) & 0x3Fu))); + add(static_cast(0x80u | ((static_cast(codepoint) >> 6u) & 0x3Fu))); + add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); + } + + break; + } + + // other characters after escape + default: + error_message = "invalid string: forbidden character after backslash"; + return token_type::parse_error; + } + + break; + } + + // invalid control characters + case 0x00: + { + error_message = "invalid string: control character U+0000 (NUL) must be escaped to \\u0000"; + return token_type::parse_error; + } + + case 0x01: + { + error_message = "invalid string: control character U+0001 (SOH) must be escaped to \\u0001"; + return token_type::parse_error; + } + + case 0x02: + { + error_message = "invalid string: control character U+0002 (STX) must be escaped to \\u0002"; + return token_type::parse_error; + } + + case 0x03: + { + error_message = "invalid string: control character U+0003 (ETX) must be escaped to \\u0003"; + return token_type::parse_error; + } + + case 0x04: + { + error_message = "invalid string: control character U+0004 (EOT) must be escaped to \\u0004"; + return token_type::parse_error; + } + + case 0x05: + { + error_message = "invalid string: control character U+0005 (ENQ) must be escaped to \\u0005"; + return token_type::parse_error; + } + + case 0x06: + { + error_message = "invalid string: control character U+0006 (ACK) must be escaped to \\u0006"; + return token_type::parse_error; + } + + case 0x07: + { + error_message = "invalid string: control character U+0007 (BEL) must be escaped to \\u0007"; + return token_type::parse_error; + } + + case 0x08: + { + error_message = "invalid string: control character U+0008 (BS) must be escaped to \\u0008 or \\b"; + return token_type::parse_error; + } + + case 0x09: + { + error_message = "invalid string: control character U+0009 (HT) must be escaped to \\u0009 or \\t"; + return token_type::parse_error; + } + + case 0x0A: + { + error_message = "invalid string: control character U+000A (LF) must be escaped to \\u000A or \\n"; + return token_type::parse_error; + } + + case 0x0B: + { + error_message = "invalid string: control character U+000B (VT) must be escaped to \\u000B"; + return token_type::parse_error; + } + + case 0x0C: + { + error_message = "invalid string: control character U+000C (FF) must be escaped to \\u000C or \\f"; + return token_type::parse_error; + } + + case 0x0D: + { + error_message = "invalid string: control character U+000D (CR) must be escaped to \\u000D or \\r"; + return token_type::parse_error; + } + + case 0x0E: + { + error_message = "invalid string: control character U+000E (SO) must be escaped to \\u000E"; + return token_type::parse_error; + } + + case 0x0F: + { + error_message = "invalid string: control character U+000F (SI) must be escaped to \\u000F"; + return token_type::parse_error; + } + + case 0x10: + { + error_message = "invalid string: control character U+0010 (DLE) must be escaped to \\u0010"; + return token_type::parse_error; + } + + case 0x11: + { + error_message = "invalid string: control character U+0011 (DC1) must be escaped to \\u0011"; + return token_type::parse_error; + } + + case 0x12: + { + error_message = "invalid string: control character U+0012 (DC2) must be escaped to \\u0012"; + return token_type::parse_error; + } + + case 0x13: + { + error_message = "invalid string: control character U+0013 (DC3) must be escaped to \\u0013"; + return token_type::parse_error; + } + + case 0x14: + { + error_message = "invalid string: control character U+0014 (DC4) must be escaped to \\u0014"; + return token_type::parse_error; + } + + case 0x15: + { + error_message = "invalid string: control character U+0015 (NAK) must be escaped to \\u0015"; + return token_type::parse_error; + } + + case 0x16: + { + error_message = "invalid string: control character U+0016 (SYN) must be escaped to \\u0016"; + return token_type::parse_error; + } + + case 0x17: + { + error_message = "invalid string: control character U+0017 (ETB) must be escaped to \\u0017"; + return token_type::parse_error; + } + + case 0x18: + { + error_message = "invalid string: control character U+0018 (CAN) must be escaped to \\u0018"; + return token_type::parse_error; + } + + case 0x19: + { + error_message = "invalid string: control character U+0019 (EM) must be escaped to \\u0019"; + return token_type::parse_error; + } + + case 0x1A: + { + error_message = "invalid string: control character U+001A (SUB) must be escaped to \\u001A"; + return token_type::parse_error; + } + + case 0x1B: + { + error_message = "invalid string: control character U+001B (ESC) must be escaped to \\u001B"; + return token_type::parse_error; + } + + case 0x1C: + { + error_message = "invalid string: control character U+001C (FS) must be escaped to \\u001C"; + return token_type::parse_error; + } + + case 0x1D: + { + error_message = "invalid string: control character U+001D (GS) must be escaped to \\u001D"; + return token_type::parse_error; + } + + case 0x1E: + { + error_message = "invalid string: control character U+001E (RS) must be escaped to \\u001E"; + return token_type::parse_error; + } + + case 0x1F: + { + error_message = "invalid string: control character U+001F (US) must be escaped to \\u001F"; + return token_type::parse_error; + } + + // U+0020..U+007F (except U+0022 (quote) and U+005C (backspace)) + case 0x20: + case 0x21: + case 0x23: + case 0x24: + case 0x25: + case 0x26: + case 0x27: + case 0x28: + case 0x29: + case 0x2A: + case 0x2B: + case 0x2C: + case 0x2D: + case 0x2E: + case 0x2F: + case 0x30: + case 0x31: + case 0x32: + case 0x33: + case 0x34: + case 0x35: + case 0x36: + case 0x37: + case 0x38: + case 0x39: + case 0x3A: + case 0x3B: + case 0x3C: + case 0x3D: + case 0x3E: + case 0x3F: + case 0x40: + case 0x41: + case 0x42: + case 0x43: + case 0x44: + case 0x45: + case 0x46: + case 0x47: + case 0x48: + case 0x49: + case 0x4A: + case 0x4B: + case 0x4C: + case 0x4D: + case 0x4E: + case 0x4F: + case 0x50: + case 0x51: + case 0x52: + case 0x53: + case 0x54: + case 0x55: + case 0x56: + case 0x57: + case 0x58: + case 0x59: + case 0x5A: + case 0x5B: + case 0x5D: + case 0x5E: + case 0x5F: + case 0x60: + case 0x61: + case 0x62: + case 0x63: + case 0x64: + case 0x65: + case 0x66: + case 0x67: + case 0x68: + case 0x69: + case 0x6A: + case 0x6B: + case 0x6C: + case 0x6D: + case 0x6E: + case 0x6F: + case 0x70: + case 0x71: + case 0x72: + case 0x73: + case 0x74: + case 0x75: + case 0x76: + case 0x77: + case 0x78: + case 0x79: + case 0x7A: + case 0x7B: + case 0x7C: + case 0x7D: + case 0x7E: + case 0x7F: + { + add(current); + break; + } + + // U+0080..U+07FF: bytes C2..DF 80..BF + case 0xC2: + case 0xC3: + case 0xC4: + case 0xC5: + case 0xC6: + case 0xC7: + case 0xC8: + case 0xC9: + case 0xCA: + case 0xCB: + case 0xCC: + case 0xCD: + case 0xCE: + case 0xCF: + case 0xD0: + case 0xD1: + case 0xD2: + case 0xD3: + case 0xD4: + case 0xD5: + case 0xD6: + case 0xD7: + case 0xD8: + case 0xD9: + case 0xDA: + case 0xDB: + case 0xDC: + case 0xDD: + case 0xDE: + case 0xDF: + { + if (JSON_HEDLEY_UNLIKELY(!next_byte_in_range({0x80, 0xBF}))) + { + return token_type::parse_error; + } + break; + } + + // U+0800..U+0FFF: bytes E0 A0..BF 80..BF + case 0xE0: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0xA0, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+1000..U+CFFF: bytes E1..EC 80..BF 80..BF + // U+E000..U+FFFF: bytes EE..EF 80..BF 80..BF + case 0xE1: + case 0xE2: + case 0xE3: + case 0xE4: + case 0xE5: + case 0xE6: + case 0xE7: + case 0xE8: + case 0xE9: + case 0xEA: + case 0xEB: + case 0xEC: + case 0xEE: + case 0xEF: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+D000..U+D7FF: bytes ED 80..9F 80..BF + case 0xED: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0x9F, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+10000..U+3FFFF F0 90..BF 80..BF 80..BF + case 0xF0: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x90, 0xBF, 0x80, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+40000..U+FFFFF F1..F3 80..BF 80..BF 80..BF + case 0xF1: + case 0xF2: + case 0xF3: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // U+100000..U+10FFFF F4 80..8F 80..BF 80..BF + case 0xF4: + { + if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0x8F, 0x80, 0xBF, 0x80, 0xBF})))) + { + return token_type::parse_error; + } + break; + } + + // remaining bytes (80..C1 and F5..FF) are ill-formed + default: + { + error_message = "invalid string: ill-formed UTF-8 byte"; + return token_type::parse_error; + } + } + } + } + + /*! + * @brief scan a comment + * @return whether comment could be scanned successfully + */ + bool scan_comment() + { + switch (get()) + { + // single-line comments skip input until a newline or EOF is read + case '/': + { + while (true) + { + switch (get()) + { + case '\n': + case '\r': + case std::char_traits::eof(): + case '\0': + return true; + + default: + break; + } + } + } + + // multi-line comments skip input until */ is read + case '*': + { + while (true) + { + switch (get()) + { + case std::char_traits::eof(): + case '\0': + { + error_message = "invalid comment; missing closing '*/'"; + return false; + } + + case '*': + { + switch (get()) + { + case '/': + return true; + + default: + { + unget(); + continue; + } + } + } + + default: + continue; + } + } + } + + // unexpected character after reading '/' + default: + { + error_message = "invalid comment; expecting '/' or '*' after '/'"; + return false; + } + } + } + + JSON_HEDLEY_NON_NULL(2) + static void strtof(float& f, const char* str, char** endptr) noexcept + { + f = std::strtof(str, endptr); + } + + JSON_HEDLEY_NON_NULL(2) + static void strtof(double& f, const char* str, char** endptr) noexcept + { + f = std::strtod(str, endptr); + } + + JSON_HEDLEY_NON_NULL(2) + static void strtof(long double& f, const char* str, char** endptr) noexcept + { + f = std::strtold(str, endptr); + } + + /*! + @brief scan a number literal + + This function scans a string according to Sect. 6 of RFC 7159. + + The function is realized with a deterministic finite state machine derived + from the grammar described in RFC 7159. Starting in state "init", the + input is read and used to determined the next state. Only state "done" + accepts the number. State "error" is a trap state to model errors. In the + table below, "anything" means any character but the ones listed before. + + state | 0 | 1-9 | e E | + | - | . | anything + ---------|----------|----------|----------|---------|---------|----------|----------- + init | zero | any1 | [error] | [error] | minus | [error] | [error] + minus | zero | any1 | [error] | [error] | [error] | [error] | [error] + zero | done | done | exponent | done | done | decimal1 | done + any1 | any1 | any1 | exponent | done | done | decimal1 | done + decimal1 | decimal2 | decimal2 | [error] | [error] | [error] | [error] | [error] + decimal2 | decimal2 | decimal2 | exponent | done | done | done | done + exponent | any2 | any2 | [error] | sign | sign | [error] | [error] + sign | any2 | any2 | [error] | [error] | [error] | [error] | [error] + any2 | any2 | any2 | done | done | done | done | done + + The state machine is realized with one label per state (prefixed with + "scan_number_") and `goto` statements between them. The state machine + contains cycles, but any cycle can be left when EOF is read. Therefore, + the function is guaranteed to terminate. + + During scanning, the read bytes are stored in token_buffer. This string is + then converted to a signed integer, an unsigned integer, or a + floating-point number. + + @return token_type::value_unsigned, token_type::value_integer, or + token_type::value_float if number could be successfully scanned, + token_type::parse_error otherwise + + @note The scanner is independent of the current locale. Internally, the + locale's decimal point is used instead of `.` to work with the + locale-dependent converters. + */ + token_type scan_number() // lgtm [cpp/use-of-goto] + { + // reset token_buffer to store the number's bytes + reset(); + + // the type of the parsed number; initially set to unsigned; will be + // changed if minus sign, decimal point or exponent is read + token_type number_type = token_type::value_unsigned; + + // state (init): we just found out we need to scan a number + switch (current) + { + case '-': + { + add(current); + goto scan_number_minus; + } + + case '0': + { + add(current); + goto scan_number_zero; + } + + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any1; + } + + // all other characters are rejected outside scan_number() + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + +scan_number_minus: + // state: we just parsed a leading minus sign + number_type = token_type::value_integer; + switch (get()) + { + case '0': + { + add(current); + goto scan_number_zero; + } + + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any1; + } + + default: + { + error_message = "invalid number; expected digit after '-'"; + return token_type::parse_error; + } + } + +scan_number_zero: + // state: we just parse a zero (maybe with a leading minus sign) + switch (get()) + { + case '.': + { + add(decimal_point_char); + goto scan_number_decimal1; + } + + case 'e': + case 'E': + { + add(current); + goto scan_number_exponent; + } + + default: + goto scan_number_done; + } + +scan_number_any1: + // state: we just parsed a number 0-9 (maybe with a leading minus sign) + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any1; + } + + case '.': + { + add(decimal_point_char); + goto scan_number_decimal1; + } + + case 'e': + case 'E': + { + add(current); + goto scan_number_exponent; + } + + default: + goto scan_number_done; + } + +scan_number_decimal1: + // state: we just parsed a decimal point + number_type = token_type::value_float; + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_decimal2; + } + + default: + { + error_message = "invalid number; expected digit after '.'"; + return token_type::parse_error; + } + } + +scan_number_decimal2: + // we just parsed at least one number after a decimal point + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_decimal2; + } + + case 'e': + case 'E': + { + add(current); + goto scan_number_exponent; + } + + default: + goto scan_number_done; + } + +scan_number_exponent: + // we just parsed an exponent + number_type = token_type::value_float; + switch (get()) + { + case '+': + case '-': + { + add(current); + goto scan_number_sign; + } + + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any2; + } + + default: + { + error_message = + "invalid number; expected '+', '-', or digit after exponent"; + return token_type::parse_error; + } + } + +scan_number_sign: + // we just parsed an exponent sign + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any2; + } + + default: + { + error_message = "invalid number; expected digit after exponent sign"; + return token_type::parse_error; + } + } + +scan_number_any2: + // we just parsed a number after the exponent or exponent sign + switch (get()) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + { + add(current); + goto scan_number_any2; + } + + default: + goto scan_number_done; + } + +scan_number_done: + // unget the character after the number (we only read it to know that + // we are done scanning a number) + unget(); + + char* endptr = nullptr; + errno = 0; + + // try to parse integers first and fall back to floats + if (number_type == token_type::value_unsigned) + { + const auto x = std::strtoull(token_buffer.data(), &endptr, 10); + + // we checked the number format before + JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); + + if (errno == 0) + { + value_unsigned = static_cast(x); + if (value_unsigned == x) + { + return token_type::value_unsigned; + } + } + } + else if (number_type == token_type::value_integer) + { + const auto x = std::strtoll(token_buffer.data(), &endptr, 10); + + // we checked the number format before + JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); + + if (errno == 0) + { + value_integer = static_cast(x); + if (value_integer == x) + { + return token_type::value_integer; + } + } + } + + // this code is reached if we parse a floating-point number or if an + // integer conversion above failed + strtof(value_float, token_buffer.data(), &endptr); + + // we checked the number format before + JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); + + return token_type::value_float; + } + + /*! + @param[in] literal_text the literal text to expect + @param[in] length the length of the passed literal text + @param[in] return_type the token type to return on success + */ + JSON_HEDLEY_NON_NULL(2) + token_type scan_literal(const char_type* literal_text, const std::size_t length, + token_type return_type) + { + JSON_ASSERT(std::char_traits::to_char_type(current) == literal_text[0]); + for (std::size_t i = 1; i < length; ++i) + { + if (JSON_HEDLEY_UNLIKELY(std::char_traits::to_char_type(get()) != literal_text[i])) + { + error_message = "invalid literal"; + return token_type::parse_error; + } + } + return return_type; + } + + ///////////////////// + // input management + ///////////////////// + + /// reset token_buffer; current character is beginning of token + void reset() noexcept + { + token_buffer.clear(); + token_string.clear(); + token_string.push_back(std::char_traits::to_char_type(current)); + } + + /* + @brief get next character from the input + + This function provides the interface to the used input adapter. It does + not throw in case the input reached EOF, but returns a + `std::char_traits::eof()` in that case. Stores the scanned characters + for use in error messages. + + @return character read from the input + */ + char_int_type get() + { + ++position.chars_read_total; + ++position.chars_read_current_line; + + if (next_unget) + { + // just reset the next_unget variable and work with current + next_unget = false; + } + else + { + current = ia.get_character(); + } + + if (JSON_HEDLEY_LIKELY(current != std::char_traits::eof())) + { + token_string.push_back(std::char_traits::to_char_type(current)); + } + + if (current == '\n') + { + ++position.lines_read; + position.chars_read_current_line = 0; + } + + return current; + } + + /*! + @brief unget current character (read it again on next get) + + We implement unget by setting variable next_unget to true. The input is not + changed - we just simulate ungetting by modifying chars_read_total, + chars_read_current_line, and token_string. The next call to get() will + behave as if the unget character is read again. + */ + void unget() + { + next_unget = true; + + --position.chars_read_total; + + // in case we "unget" a newline, we have to also decrement the lines_read + if (position.chars_read_current_line == 0) + { + if (position.lines_read > 0) + { + --position.lines_read; + } + } + else + { + --position.chars_read_current_line; + } + + if (JSON_HEDLEY_LIKELY(current != std::char_traits::eof())) + { + JSON_ASSERT(!token_string.empty()); + token_string.pop_back(); + } + } + + /// add a character to token_buffer + void add(char_int_type c) + { + token_buffer.push_back(static_cast(c)); + } + + public: + ///////////////////// + // value getters + ///////////////////// + + /// return integer value + constexpr number_integer_t get_number_integer() const noexcept + { + return value_integer; + } + + /// return unsigned integer value + constexpr number_unsigned_t get_number_unsigned() const noexcept + { + return value_unsigned; + } + + /// return floating-point value + constexpr number_float_t get_number_float() const noexcept + { + return value_float; + } + + /// return current string value (implicitly resets the token; useful only once) + string_t& get_string() + { + return token_buffer; + } + + ///////////////////// + // diagnostics + ///////////////////// + + /// return position of last read token + constexpr position_t get_position() const noexcept + { + return position; + } + + /// return the last read token (for errors only). Will never contain EOF + /// (an arbitrary value that is not a valid char value, often -1), because + /// 255 may legitimately occur. May contain NUL, which should be escaped. + std::string get_token_string() const + { + // escape control characters + std::string result; + for (const auto c : token_string) + { + if (static_cast(c) <= '\x1F') + { + // escape control characters + std::array cs{{}}; + (std::snprintf)(cs.data(), cs.size(), "", static_cast(c)); + result += cs.data(); + } + else + { + // add character as is + result.push_back(static_cast(c)); + } + } + + return result; + } + + /// return syntax error message + JSON_HEDLEY_RETURNS_NON_NULL + constexpr const char* get_error_message() const noexcept + { + return error_message; + } + + ///////////////////// + // actual scanner + ///////////////////// + + /*! + @brief skip the UTF-8 byte order mark + @return true iff there is no BOM or the correct BOM has been skipped + */ + bool skip_bom() + { + if (get() == 0xEF) + { + // check if we completely parse the BOM + return get() == 0xBB && get() == 0xBF; + } + + // the first character is not the beginning of the BOM; unget it to + // process is later + unget(); + return true; + } + + void skip_whitespace() + { + do + { + get(); + } + while (current == ' ' || current == '\t' || current == '\n' || current == '\r'); + } + + token_type scan() + { + // initially, skip the BOM + if (position.chars_read_total == 0 && !skip_bom()) + { + error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; + return token_type::parse_error; + } + + // read next character and ignore whitespace + skip_whitespace(); + + // ignore comments + while (ignore_comments && current == '/') + { + if (!scan_comment()) + { + return token_type::parse_error; + } + + // skip following whitespace + skip_whitespace(); + } + + switch (current) + { + // structural characters + case '[': + return token_type::begin_array; + case ']': + return token_type::end_array; + case '{': + return token_type::begin_object; + case '}': + return token_type::end_object; + case ':': + return token_type::name_separator; + case ',': + return token_type::value_separator; + + // literals + case 't': + { + std::array true_literal = {{'t', 'r', 'u', 'e'}}; + return scan_literal(true_literal.data(), true_literal.size(), token_type::literal_true); + } + case 'f': + { + std::array false_literal = {{'f', 'a', 'l', 's', 'e'}}; + return scan_literal(false_literal.data(), false_literal.size(), token_type::literal_false); + } + case 'n': + { + std::array null_literal = {{'n', 'u', 'l', 'l'}}; + return scan_literal(null_literal.data(), null_literal.size(), token_type::literal_null); + } + + // string + case '\"': + return scan_string(); + + // number + case '-': + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + return scan_number(); + + // end of input (the null byte is needed when parsing from + // string literals) + case '\0': + case std::char_traits::eof(): + return token_type::end_of_input; + + // error + default: + error_message = "invalid literal"; + return token_type::parse_error; + } + } + + private: + /// input adapter + InputAdapterType ia; + + /// whether comments should be ignored (true) or signaled as errors (false) + const bool ignore_comments = false; + + /// the current character + char_int_type current = std::char_traits::eof(); + + /// whether the next get() call should just return current + bool next_unget = false; + + /// the start position of the current token + position_t position {}; + + /// raw input token string (for error messages) + std::vector token_string {}; + + /// buffer for variable-length tokens (numbers, strings) + string_t token_buffer {}; + + /// a description of occurred lexer errors + const char* error_message = ""; + + // number values + number_integer_t value_integer = 0; + number_unsigned_t value_unsigned = 0; + number_float_t value_float = 0; + + /// the decimal point + const char_int_type decimal_point_char = '.'; +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + + +#include // size_t +#include // declval +#include // string + +// #include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +template +using null_function_t = decltype(std::declval().null()); + +template +using boolean_function_t = + decltype(std::declval().boolean(std::declval())); + +template +using number_integer_function_t = + decltype(std::declval().number_integer(std::declval())); + +template +using number_unsigned_function_t = + decltype(std::declval().number_unsigned(std::declval())); + +template +using number_float_function_t = decltype(std::declval().number_float( + std::declval(), std::declval())); + +template +using string_function_t = + decltype(std::declval().string(std::declval())); + +template +using binary_function_t = + decltype(std::declval().binary(std::declval())); + +template +using start_object_function_t = + decltype(std::declval().start_object(std::declval())); + +template +using key_function_t = + decltype(std::declval().key(std::declval())); + +template +using end_object_function_t = decltype(std::declval().end_object()); + +template +using start_array_function_t = + decltype(std::declval().start_array(std::declval())); + +template +using end_array_function_t = decltype(std::declval().end_array()); + +template +using parse_error_function_t = decltype(std::declval().parse_error( + std::declval(), std::declval(), + std::declval())); + +template +struct is_sax +{ + private: + static_assert(is_basic_json::value, + "BasicJsonType must be of type basic_json<...>"); + + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using exception_t = typename BasicJsonType::exception; + + public: + static constexpr bool value = + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value && + is_detected_exact::value; +}; + +template +struct is_sax_static_asserts +{ + private: + static_assert(is_basic_json::value, + "BasicJsonType must be of type basic_json<...>"); + + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using exception_t = typename BasicJsonType::exception; + + public: + static_assert(is_detected_exact::value, + "Missing/invalid function: bool null()"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool boolean(bool)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool boolean(bool)"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool number_integer(number_integer_t)"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool number_unsigned(number_unsigned_t)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool number_float(number_float_t, const string_t&)"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool string(string_t&)"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool binary(binary_t&)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool start_object(std::size_t)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool key(string_t&)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool end_object()"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool start_array(std::size_t)"); + static_assert(is_detected_exact::value, + "Missing/invalid function: bool end_array()"); + static_assert( + is_detected_exact::value, + "Missing/invalid function: bool parse_error(std::size_t, const " + "std::string&, const exception&)"); +}; +} // namespace detail +} // namespace nlohmann + +// #include + + +namespace nlohmann +{ +namespace detail +{ + +/// how to treat CBOR tags +enum class cbor_tag_handler_t +{ + error, ///< throw a parse_error exception in case of a tag + ignore ///< ignore tags +}; + +/*! +@brief determine system byte order + +@return true if and only if system's byte order is little endian + +@note from https://stackoverflow.com/a/1001328/266378 +*/ +static inline bool little_endianess(int num = 1) noexcept +{ + return *reinterpret_cast(&num) == 1; +} + + +/////////////////// +// binary reader // +/////////////////// + +/*! +@brief deserialization of CBOR, MessagePack, and UBJSON values +*/ +template> +class binary_reader +{ + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using json_sax_t = SAX; + using char_type = typename InputAdapterType::char_type; + using char_int_type = typename std::char_traits::int_type; + + public: + /*! + @brief create a binary reader + + @param[in] adapter input adapter to read from + */ + explicit binary_reader(InputAdapterType&& adapter) : ia(std::move(adapter)) + { + (void)detail::is_sax_static_asserts {}; + } + + // make class move-only + binary_reader(const binary_reader&) = delete; + binary_reader(binary_reader&&) = default; + binary_reader& operator=(const binary_reader&) = delete; + binary_reader& operator=(binary_reader&&) = default; + ~binary_reader() = default; + + /*! + @param[in] format the binary format to parse + @param[in] sax_ a SAX event processor + @param[in] strict whether to expect the input to be consumed completed + @param[in] tag_handler how to treat CBOR tags + + @return + */ + JSON_HEDLEY_NON_NULL(3) + bool sax_parse(const input_format_t format, + json_sax_t* sax_, + const bool strict = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + sax = sax_; + bool result = false; + + switch (format) + { + case input_format_t::bson: + result = parse_bson_internal(); + break; + + case input_format_t::cbor: + result = parse_cbor_internal(true, tag_handler); + break; + + case input_format_t::msgpack: + result = parse_msgpack_internal(); + break; + + case input_format_t::ubjson: + result = parse_ubjson_internal(); + break; + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + + // strict mode: next byte must be EOF + if (result && strict) + { + if (format == input_format_t::ubjson) + { + get_ignore_noop(); + } + else + { + get(); + } + + if (JSON_HEDLEY_UNLIKELY(current != std::char_traits::eof())) + { + return sax->parse_error(chars_read, get_token_string(), + parse_error::create(110, chars_read, exception_message(format, "expected end of input; last byte: 0x" + get_token_string(), "value"))); + } + } + + return result; + } + + private: + ////////// + // BSON // + ////////// + + /*! + @brief Reads in a BSON-object and passes it to the SAX-parser. + @return whether a valid BSON-value was passed to the SAX parser + */ + bool parse_bson_internal() + { + std::int32_t document_size{}; + get_number(input_format_t::bson, document_size); + + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_list(/*is_array*/false))) + { + return false; + } + + return sax->end_object(); + } + + /*! + @brief Parses a C-style string from the BSON input. + @param[in, out] result A reference to the string variable where the read + string is to be stored. + @return `true` if the \x00-byte indicating the end of the string was + encountered before the EOF; false` indicates an unexpected EOF. + */ + bool get_bson_cstr(string_t& result) + { + auto out = std::back_inserter(result); + while (true) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::bson, "cstring"))) + { + return false; + } + if (current == 0x00) + { + return true; + } + *out++ = static_cast(current); + } + } + + /*! + @brief Parses a zero-terminated string of length @a len from the BSON + input. + @param[in] len The length (including the zero-byte at the end) of the + string to be read. + @param[in, out] result A reference to the string variable where the read + string is to be stored. + @tparam NumberType The type of the length @a len + @pre len >= 1 + @return `true` if the string was successfully parsed + */ + template + bool get_bson_string(const NumberType len, string_t& result) + { + if (JSON_HEDLEY_UNLIKELY(len < 1)) + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "string length must be at least 1, is " + std::to_string(len), "string"))); + } + + return get_string(input_format_t::bson, len - static_cast(1), result) && get() != std::char_traits::eof(); + } + + /*! + @brief Parses a byte array input of length @a len from the BSON input. + @param[in] len The length of the byte array to be read. + @param[in, out] result A reference to the binary variable where the read + array is to be stored. + @tparam NumberType The type of the length @a len + @pre len >= 0 + @return `true` if the byte array was successfully parsed + */ + template + bool get_bson_binary(const NumberType len, binary_t& result) + { + if (JSON_HEDLEY_UNLIKELY(len < 0)) + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "byte array length cannot be negative, is " + std::to_string(len), "binary"))); + } + + // All BSON binary values have a subtype + std::uint8_t subtype{}; + get_number(input_format_t::bson, subtype); + result.set_subtype(subtype); + + return get_binary(input_format_t::bson, len, result); + } + + /*! + @brief Read a BSON document element of the given @a element_type. + @param[in] element_type The BSON element type, c.f. http://bsonspec.org/spec.html + @param[in] element_type_parse_position The position in the input stream, + where the `element_type` was read. + @warning Not all BSON element types are supported yet. An unsupported + @a element_type will give rise to a parse_error.114: + Unsupported BSON record type 0x... + @return whether a valid BSON-object/array was passed to the SAX parser + */ + bool parse_bson_element_internal(const char_int_type element_type, + const std::size_t element_type_parse_position) + { + switch (element_type) + { + case 0x01: // double + { + double number{}; + return get_number(input_format_t::bson, number) && sax->number_float(static_cast(number), ""); + } + + case 0x02: // string + { + std::int32_t len{}; + string_t value; + return get_number(input_format_t::bson, len) && get_bson_string(len, value) && sax->string(value); + } + + case 0x03: // object + { + return parse_bson_internal(); + } + + case 0x04: // array + { + return parse_bson_array(); + } + + case 0x05: // binary + { + std::int32_t len{}; + binary_t value; + return get_number(input_format_t::bson, len) && get_bson_binary(len, value) && sax->binary(value); + } + + case 0x08: // boolean + { + return sax->boolean(get() != 0); + } + + case 0x0A: // null + { + return sax->null(); + } + + case 0x10: // int32 + { + std::int32_t value{}; + return get_number(input_format_t::bson, value) && sax->number_integer(value); + } + + case 0x12: // int64 + { + std::int64_t value{}; + return get_number(input_format_t::bson, value) && sax->number_integer(value); + } + + default: // anything else not supported (yet) + { + std::array cr{{}}; + (std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast(element_type)); + return sax->parse_error(element_type_parse_position, std::string(cr.data()), parse_error::create(114, element_type_parse_position, "Unsupported BSON record type 0x" + std::string(cr.data()))); + } + } + } + + /*! + @brief Read a BSON element list (as specified in the BSON-spec) + + The same binary layout is used for objects and arrays, hence it must be + indicated with the argument @a is_array which one is expected + (true --> array, false --> object). + + @param[in] is_array Determines if the element list being read is to be + treated as an object (@a is_array == false), or as an + array (@a is_array == true). + @return whether a valid BSON-object/array was passed to the SAX parser + */ + bool parse_bson_element_list(const bool is_array) + { + string_t key; + + while (auto element_type = get()) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::bson, "element list"))) + { + return false; + } + + const std::size_t element_type_parse_position = chars_read; + if (JSON_HEDLEY_UNLIKELY(!get_bson_cstr(key))) + { + return false; + } + + if (!is_array && !sax->key(key)) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_internal(element_type, element_type_parse_position))) + { + return false; + } + + // get_bson_cstr only appends + key.clear(); + } + + return true; + } + + /*! + @brief Reads an array from the BSON input and passes it to the SAX-parser. + @return whether a valid BSON-array was passed to the SAX parser + */ + bool parse_bson_array() + { + std::int32_t document_size{}; + get_number(input_format_t::bson, document_size); + + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_list(/*is_array*/true))) + { + return false; + } + + return sax->end_array(); + } + + ////////// + // CBOR // + ////////// + + /*! + @param[in] get_char whether a new character should be retrieved from the + input (true) or whether the last read character should + be considered instead (false) + @param[in] tag_handler how CBOR tags should be treated + + @return whether a valid CBOR value was passed to the SAX parser + */ + bool parse_cbor_internal(const bool get_char, + const cbor_tag_handler_t tag_handler) + { + switch (get_char ? get() : current) + { + // EOF + case std::char_traits::eof(): + return unexpect_eof(input_format_t::cbor, "value"); + + // Integer 0x00..0x17 (0..23) + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case 0x09: + case 0x0A: + case 0x0B: + case 0x0C: + case 0x0D: + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + return sax->number_unsigned(static_cast(current)); + + case 0x18: // Unsigned integer (one-byte uint8_t follows) + { + std::uint8_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); + } + + case 0x19: // Unsigned integer (two-byte uint16_t follows) + { + std::uint16_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); + } + + case 0x1A: // Unsigned integer (four-byte uint32_t follows) + { + std::uint32_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); + } + + case 0x1B: // Unsigned integer (eight-byte uint64_t follows) + { + std::uint64_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); + } + + // Negative integer -1-0x00..-1-0x17 (-1..-24) + case 0x20: + case 0x21: + case 0x22: + case 0x23: + case 0x24: + case 0x25: + case 0x26: + case 0x27: + case 0x28: + case 0x29: + case 0x2A: + case 0x2B: + case 0x2C: + case 0x2D: + case 0x2E: + case 0x2F: + case 0x30: + case 0x31: + case 0x32: + case 0x33: + case 0x34: + case 0x35: + case 0x36: + case 0x37: + return sax->number_integer(static_cast(0x20 - 1 - current)); + + case 0x38: // Negative integer (one-byte uint8_t follows) + { + std::uint8_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); + } + + case 0x39: // Negative integer -1-n (two-byte uint16_t follows) + { + std::uint16_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); + } + + case 0x3A: // Negative integer -1-n (four-byte uint32_t follows) + { + std::uint32_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); + } + + case 0x3B: // Negative integer -1-n (eight-byte uint64_t follows) + { + std::uint64_t number{}; + return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) + - static_cast(number)); + } + + // Binary data (0x00..0x17 bytes follow) + case 0x40: + case 0x41: + case 0x42: + case 0x43: + case 0x44: + case 0x45: + case 0x46: + case 0x47: + case 0x48: + case 0x49: + case 0x4A: + case 0x4B: + case 0x4C: + case 0x4D: + case 0x4E: + case 0x4F: + case 0x50: + case 0x51: + case 0x52: + case 0x53: + case 0x54: + case 0x55: + case 0x56: + case 0x57: + case 0x58: // Binary data (one-byte uint8_t for n follows) + case 0x59: // Binary data (two-byte uint16_t for n follow) + case 0x5A: // Binary data (four-byte uint32_t for n follow) + case 0x5B: // Binary data (eight-byte uint64_t for n follow) + case 0x5F: // Binary data (indefinite length) + { + binary_t b; + return get_cbor_binary(b) && sax->binary(b); + } + + // UTF-8 string (0x00..0x17 bytes follow) + case 0x60: + case 0x61: + case 0x62: + case 0x63: + case 0x64: + case 0x65: + case 0x66: + case 0x67: + case 0x68: + case 0x69: + case 0x6A: + case 0x6B: + case 0x6C: + case 0x6D: + case 0x6E: + case 0x6F: + case 0x70: + case 0x71: + case 0x72: + case 0x73: + case 0x74: + case 0x75: + case 0x76: + case 0x77: + case 0x78: // UTF-8 string (one-byte uint8_t for n follows) + case 0x79: // UTF-8 string (two-byte uint16_t for n follow) + case 0x7A: // UTF-8 string (four-byte uint32_t for n follow) + case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow) + case 0x7F: // UTF-8 string (indefinite length) + { + string_t s; + return get_cbor_string(s) && sax->string(s); + } + + // array (0x00..0x17 data items follow) + case 0x80: + case 0x81: + case 0x82: + case 0x83: + case 0x84: + case 0x85: + case 0x86: + case 0x87: + case 0x88: + case 0x89: + case 0x8A: + case 0x8B: + case 0x8C: + case 0x8D: + case 0x8E: + case 0x8F: + case 0x90: + case 0x91: + case 0x92: + case 0x93: + case 0x94: + case 0x95: + case 0x96: + case 0x97: + return get_cbor_array(static_cast(static_cast(current) & 0x1Fu), tag_handler); + + case 0x98: // array (one-byte uint8_t for n follows) + { + std::uint8_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); + } + + case 0x99: // array (two-byte uint16_t for n follow) + { + std::uint16_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); + } + + case 0x9A: // array (four-byte uint32_t for n follow) + { + std::uint32_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); + } + + case 0x9B: // array (eight-byte uint64_t for n follow) + { + std::uint64_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); + } + + case 0x9F: // array (indefinite length) + return get_cbor_array(std::size_t(-1), tag_handler); + + // map (0x00..0x17 pairs of data items follow) + case 0xA0: + case 0xA1: + case 0xA2: + case 0xA3: + case 0xA4: + case 0xA5: + case 0xA6: + case 0xA7: + case 0xA8: + case 0xA9: + case 0xAA: + case 0xAB: + case 0xAC: + case 0xAD: + case 0xAE: + case 0xAF: + case 0xB0: + case 0xB1: + case 0xB2: + case 0xB3: + case 0xB4: + case 0xB5: + case 0xB6: + case 0xB7: + return get_cbor_object(static_cast(static_cast(current) & 0x1Fu), tag_handler); + + case 0xB8: // map (one-byte uint8_t for n follows) + { + std::uint8_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); + } + + case 0xB9: // map (two-byte uint16_t for n follow) + { + std::uint16_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); + } + + case 0xBA: // map (four-byte uint32_t for n follow) + { + std::uint32_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); + } + + case 0xBB: // map (eight-byte uint64_t for n follow) + { + std::uint64_t len{}; + return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); + } + + case 0xBF: // map (indefinite length) + return get_cbor_object(std::size_t(-1), tag_handler); + + case 0xC6: // tagged item + case 0xC7: + case 0xC8: + case 0xC9: + case 0xCA: + case 0xCB: + case 0xCC: + case 0xCD: + case 0xCE: + case 0xCF: + case 0xD0: + case 0xD1: + case 0xD2: + case 0xD3: + case 0xD4: + case 0xD8: // tagged item (1 bytes follow) + case 0xD9: // tagged item (2 bytes follow) + case 0xDA: // tagged item (4 bytes follow) + case 0xDB: // tagged item (8 bytes follow) + { + switch (tag_handler) + { + case cbor_tag_handler_t::error: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value"))); + } + + case cbor_tag_handler_t::ignore: + { + switch (current) + { + case 0xD8: + { + std::uint8_t len{}; + get_number(input_format_t::cbor, len); + break; + } + case 0xD9: + { + std::uint16_t len{}; + get_number(input_format_t::cbor, len); + break; + } + case 0xDA: + { + std::uint32_t len{}; + get_number(input_format_t::cbor, len); + break; + } + case 0xDB: + { + std::uint64_t len{}; + get_number(input_format_t::cbor, len); + break; + } + default: + break; + } + return parse_cbor_internal(true, tag_handler); + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + } + + case 0xF4: // false + return sax->boolean(false); + + case 0xF5: // true + return sax->boolean(true); + + case 0xF6: // null + return sax->null(); + + case 0xF9: // Half-Precision Float (two-byte IEEE 754) + { + const auto byte1_raw = get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "number"))) + { + return false; + } + const auto byte2_raw = get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "number"))) + { + return false; + } + + const auto byte1 = static_cast(byte1_raw); + const auto byte2 = static_cast(byte2_raw); + + // code from RFC 7049, Appendix D, Figure 3: + // As half-precision floating-point numbers were only added + // to IEEE 754 in 2008, today's programming platforms often + // still only have limited support for them. It is very + // easy to include at least decoding support for them even + // without such support. An example of a small decoder for + // half-precision floating-point numbers in the C language + // is shown in Fig. 3. + const auto half = static_cast((byte1 << 8u) + byte2); + const double val = [&half] + { + const int exp = (half >> 10u) & 0x1Fu; + const unsigned int mant = half & 0x3FFu; + JSON_ASSERT(0 <= exp&& exp <= 32); + JSON_ASSERT(mant <= 1024); + switch (exp) + { + case 0: + return std::ldexp(mant, -24); + case 31: + return (mant == 0) + ? std::numeric_limits::infinity() + : std::numeric_limits::quiet_NaN(); + default: + return std::ldexp(mant + 1024, exp - 25); + } + }(); + return sax->number_float((half & 0x8000u) != 0 + ? static_cast(-val) + : static_cast(val), ""); + } + + case 0xFA: // Single-Precision Float (four-byte IEEE 754) + { + float number{}; + return get_number(input_format_t::cbor, number) && sax->number_float(static_cast(number), ""); + } + + case 0xFB: // Double-Precision Float (eight-byte IEEE 754) + { + double number{}; + return get_number(input_format_t::cbor, number) && sax->number_float(static_cast(number), ""); + } + + default: // anything else (0xFF is handled inside the other types) + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value"))); + } + } + } + + /*! + @brief reads a CBOR string + + This function first reads starting bytes to determine the expected + string length and then copies this number of bytes into a string. + Additionally, CBOR's strings with indefinite lengths are supported. + + @param[out] result created string + + @return whether string creation completed + */ + bool get_cbor_string(string_t& result) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "string"))) + { + return false; + } + + switch (current) + { + // UTF-8 string (0x00..0x17 bytes follow) + case 0x60: + case 0x61: + case 0x62: + case 0x63: + case 0x64: + case 0x65: + case 0x66: + case 0x67: + case 0x68: + case 0x69: + case 0x6A: + case 0x6B: + case 0x6C: + case 0x6D: + case 0x6E: + case 0x6F: + case 0x70: + case 0x71: + case 0x72: + case 0x73: + case 0x74: + case 0x75: + case 0x76: + case 0x77: + { + return get_string(input_format_t::cbor, static_cast(current) & 0x1Fu, result); + } + + case 0x78: // UTF-8 string (one-byte uint8_t for n follows) + { + std::uint8_t len{}; + return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); + } + + case 0x79: // UTF-8 string (two-byte uint16_t for n follow) + { + std::uint16_t len{}; + return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); + } + + case 0x7A: // UTF-8 string (four-byte uint32_t for n follow) + { + std::uint32_t len{}; + return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); + } + + case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow) + { + std::uint64_t len{}; + return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); + } + + case 0x7F: // UTF-8 string (indefinite length) + { + while (get() != 0xFF) + { + string_t chunk; + if (!get_cbor_string(chunk)) + { + return false; + } + result.append(chunk); + } + return true; + } + + default: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x60-0x7B) or indefinite string type (0x7F); last byte: 0x" + last_token, "string"))); + } + } + } + + /*! + @brief reads a CBOR byte array + + This function first reads starting bytes to determine the expected + byte array length and then copies this number of bytes into the byte array. + Additionally, CBOR's byte arrays with indefinite lengths are supported. + + @param[out] result created byte array + + @return whether byte array creation completed + */ + bool get_cbor_binary(binary_t& result) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "binary"))) + { + return false; + } + + switch (current) + { + // Binary data (0x00..0x17 bytes follow) + case 0x40: + case 0x41: + case 0x42: + case 0x43: + case 0x44: + case 0x45: + case 0x46: + case 0x47: + case 0x48: + case 0x49: + case 0x4A: + case 0x4B: + case 0x4C: + case 0x4D: + case 0x4E: + case 0x4F: + case 0x50: + case 0x51: + case 0x52: + case 0x53: + case 0x54: + case 0x55: + case 0x56: + case 0x57: + { + return get_binary(input_format_t::cbor, static_cast(current) & 0x1Fu, result); + } + + case 0x58: // Binary data (one-byte uint8_t for n follows) + { + std::uint8_t len{}; + return get_number(input_format_t::cbor, len) && + get_binary(input_format_t::cbor, len, result); + } + + case 0x59: // Binary data (two-byte uint16_t for n follow) + { + std::uint16_t len{}; + return get_number(input_format_t::cbor, len) && + get_binary(input_format_t::cbor, len, result); + } + + case 0x5A: // Binary data (four-byte uint32_t for n follow) + { + std::uint32_t len{}; + return get_number(input_format_t::cbor, len) && + get_binary(input_format_t::cbor, len, result); + } + + case 0x5B: // Binary data (eight-byte uint64_t for n follow) + { + std::uint64_t len{}; + return get_number(input_format_t::cbor, len) && + get_binary(input_format_t::cbor, len, result); + } + + case 0x5F: // Binary data (indefinite length) + { + while (get() != 0xFF) + { + binary_t chunk; + if (!get_cbor_binary(chunk)) + { + return false; + } + result.insert(result.end(), chunk.begin(), chunk.end()); + } + return true; + } + + default: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x40-0x5B) or indefinite binary array type (0x5F); last byte: 0x" + last_token, "binary"))); + } + } + } + + /*! + @param[in] len the length of the array or std::size_t(-1) for an + array of indefinite size + @param[in] tag_handler how CBOR tags should be treated + @return whether array creation completed + */ + bool get_cbor_array(const std::size_t len, + const cbor_tag_handler_t tag_handler) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(len))) + { + return false; + } + + if (len != std::size_t(-1)) + { + for (std::size_t i = 0; i < len; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) + { + return false; + } + } + } + else + { + while (get() != 0xFF) + { + if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(false, tag_handler))) + { + return false; + } + } + } + + return sax->end_array(); + } + + /*! + @param[in] len the length of the object or std::size_t(-1) for an + object of indefinite size + @param[in] tag_handler how CBOR tags should be treated + @return whether object creation completed + */ + bool get_cbor_object(const std::size_t len, + const cbor_tag_handler_t tag_handler) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(len))) + { + return false; + } + + string_t key; + if (len != std::size_t(-1)) + { + for (std::size_t i = 0; i < len; ++i) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!get_cbor_string(key) || !sax->key(key))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) + { + return false; + } + key.clear(); + } + } + else + { + while (get() != 0xFF) + { + if (JSON_HEDLEY_UNLIKELY(!get_cbor_string(key) || !sax->key(key))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) + { + return false; + } + key.clear(); + } + } + + return sax->end_object(); + } + + ///////////// + // MsgPack // + ///////////// + + /*! + @return whether a valid MessagePack value was passed to the SAX parser + */ + bool parse_msgpack_internal() + { + switch (get()) + { + // EOF + case std::char_traits::eof(): + return unexpect_eof(input_format_t::msgpack, "value"); + + // positive fixint + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case 0x09: + case 0x0A: + case 0x0B: + case 0x0C: + case 0x0D: + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case 0x20: + case 0x21: + case 0x22: + case 0x23: + case 0x24: + case 0x25: + case 0x26: + case 0x27: + case 0x28: + case 0x29: + case 0x2A: + case 0x2B: + case 0x2C: + case 0x2D: + case 0x2E: + case 0x2F: + case 0x30: + case 0x31: + case 0x32: + case 0x33: + case 0x34: + case 0x35: + case 0x36: + case 0x37: + case 0x38: + case 0x39: + case 0x3A: + case 0x3B: + case 0x3C: + case 0x3D: + case 0x3E: + case 0x3F: + case 0x40: + case 0x41: + case 0x42: + case 0x43: + case 0x44: + case 0x45: + case 0x46: + case 0x47: + case 0x48: + case 0x49: + case 0x4A: + case 0x4B: + case 0x4C: + case 0x4D: + case 0x4E: + case 0x4F: + case 0x50: + case 0x51: + case 0x52: + case 0x53: + case 0x54: + case 0x55: + case 0x56: + case 0x57: + case 0x58: + case 0x59: + case 0x5A: + case 0x5B: + case 0x5C: + case 0x5D: + case 0x5E: + case 0x5F: + case 0x60: + case 0x61: + case 0x62: + case 0x63: + case 0x64: + case 0x65: + case 0x66: + case 0x67: + case 0x68: + case 0x69: + case 0x6A: + case 0x6B: + case 0x6C: + case 0x6D: + case 0x6E: + case 0x6F: + case 0x70: + case 0x71: + case 0x72: + case 0x73: + case 0x74: + case 0x75: + case 0x76: + case 0x77: + case 0x78: + case 0x79: + case 0x7A: + case 0x7B: + case 0x7C: + case 0x7D: + case 0x7E: + case 0x7F: + return sax->number_unsigned(static_cast(current)); + + // fixmap + case 0x80: + case 0x81: + case 0x82: + case 0x83: + case 0x84: + case 0x85: + case 0x86: + case 0x87: + case 0x88: + case 0x89: + case 0x8A: + case 0x8B: + case 0x8C: + case 0x8D: + case 0x8E: + case 0x8F: + return get_msgpack_object(static_cast(static_cast(current) & 0x0Fu)); + + // fixarray + case 0x90: + case 0x91: + case 0x92: + case 0x93: + case 0x94: + case 0x95: + case 0x96: + case 0x97: + case 0x98: + case 0x99: + case 0x9A: + case 0x9B: + case 0x9C: + case 0x9D: + case 0x9E: + case 0x9F: + return get_msgpack_array(static_cast(static_cast(current) & 0x0Fu)); + + // fixstr + case 0xA0: + case 0xA1: + case 0xA2: + case 0xA3: + case 0xA4: + case 0xA5: + case 0xA6: + case 0xA7: + case 0xA8: + case 0xA9: + case 0xAA: + case 0xAB: + case 0xAC: + case 0xAD: + case 0xAE: + case 0xAF: + case 0xB0: + case 0xB1: + case 0xB2: + case 0xB3: + case 0xB4: + case 0xB5: + case 0xB6: + case 0xB7: + case 0xB8: + case 0xB9: + case 0xBA: + case 0xBB: + case 0xBC: + case 0xBD: + case 0xBE: + case 0xBF: + case 0xD9: // str 8 + case 0xDA: // str 16 + case 0xDB: // str 32 + { + string_t s; + return get_msgpack_string(s) && sax->string(s); + } + + case 0xC0: // nil + return sax->null(); + + case 0xC2: // false + return sax->boolean(false); + + case 0xC3: // true + return sax->boolean(true); + + case 0xC4: // bin 8 + case 0xC5: // bin 16 + case 0xC6: // bin 32 + case 0xC7: // ext 8 + case 0xC8: // ext 16 + case 0xC9: // ext 32 + case 0xD4: // fixext 1 + case 0xD5: // fixext 2 + case 0xD6: // fixext 4 + case 0xD7: // fixext 8 + case 0xD8: // fixext 16 + { + binary_t b; + return get_msgpack_binary(b) && sax->binary(b); + } + + case 0xCA: // float 32 + { + float number{}; + return get_number(input_format_t::msgpack, number) && sax->number_float(static_cast(number), ""); + } + + case 0xCB: // float 64 + { + double number{}; + return get_number(input_format_t::msgpack, number) && sax->number_float(static_cast(number), ""); + } + + case 0xCC: // uint 8 + { + std::uint8_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); + } + + case 0xCD: // uint 16 + { + std::uint16_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); + } + + case 0xCE: // uint 32 + { + std::uint32_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); + } + + case 0xCF: // uint 64 + { + std::uint64_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); + } + + case 0xD0: // int 8 + { + std::int8_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_integer(number); + } + + case 0xD1: // int 16 + { + std::int16_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_integer(number); + } + + case 0xD2: // int 32 + { + std::int32_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_integer(number); + } + + case 0xD3: // int 64 + { + std::int64_t number{}; + return get_number(input_format_t::msgpack, number) && sax->number_integer(number); + } + + case 0xDC: // array 16 + { + std::uint16_t len{}; + return get_number(input_format_t::msgpack, len) && get_msgpack_array(static_cast(len)); + } + + case 0xDD: // array 32 + { + std::uint32_t len{}; + return get_number(input_format_t::msgpack, len) && get_msgpack_array(static_cast(len)); + } + + case 0xDE: // map 16 + { + std::uint16_t len{}; + return get_number(input_format_t::msgpack, len) && get_msgpack_object(static_cast(len)); + } + + case 0xDF: // map 32 + { + std::uint32_t len{}; + return get_number(input_format_t::msgpack, len) && get_msgpack_object(static_cast(len)); + } + + // negative fixint + case 0xE0: + case 0xE1: + case 0xE2: + case 0xE3: + case 0xE4: + case 0xE5: + case 0xE6: + case 0xE7: + case 0xE8: + case 0xE9: + case 0xEA: + case 0xEB: + case 0xEC: + case 0xED: + case 0xEE: + case 0xEF: + case 0xF0: + case 0xF1: + case 0xF2: + case 0xF3: + case 0xF4: + case 0xF5: + case 0xF6: + case 0xF7: + case 0xF8: + case 0xF9: + case 0xFA: + case 0xFB: + case 0xFC: + case 0xFD: + case 0xFE: + case 0xFF: + return sax->number_integer(static_cast(current)); + + default: // anything else + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::msgpack, "invalid byte: 0x" + last_token, "value"))); + } + } + } + + /*! + @brief reads a MessagePack string + + This function first reads starting bytes to determine the expected + string length and then copies this number of bytes into a string. + + @param[out] result created string + + @return whether string creation completed + */ + bool get_msgpack_string(string_t& result) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::msgpack, "string"))) + { + return false; + } + + switch (current) + { + // fixstr + case 0xA0: + case 0xA1: + case 0xA2: + case 0xA3: + case 0xA4: + case 0xA5: + case 0xA6: + case 0xA7: + case 0xA8: + case 0xA9: + case 0xAA: + case 0xAB: + case 0xAC: + case 0xAD: + case 0xAE: + case 0xAF: + case 0xB0: + case 0xB1: + case 0xB2: + case 0xB3: + case 0xB4: + case 0xB5: + case 0xB6: + case 0xB7: + case 0xB8: + case 0xB9: + case 0xBA: + case 0xBB: + case 0xBC: + case 0xBD: + case 0xBE: + case 0xBF: + { + return get_string(input_format_t::msgpack, static_cast(current) & 0x1Fu, result); + } + + case 0xD9: // str 8 + { + std::uint8_t len{}; + return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); + } + + case 0xDA: // str 16 + { + std::uint16_t len{}; + return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); + } + + case 0xDB: // str 32 + { + std::uint32_t len{}; + return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); + } + + default: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::msgpack, "expected length specification (0xA0-0xBF, 0xD9-0xDB); last byte: 0x" + last_token, "string"))); + } + } + } + + /*! + @brief reads a MessagePack byte array + + This function first reads starting bytes to determine the expected + byte array length and then copies this number of bytes into a byte array. + + @param[out] result created byte array + + @return whether byte array creation completed + */ + bool get_msgpack_binary(binary_t& result) + { + // helper function to set the subtype + auto assign_and_return_true = [&result](std::int8_t subtype) + { + result.set_subtype(static_cast(subtype)); + return true; + }; + + switch (current) + { + case 0xC4: // bin 8 + { + std::uint8_t len{}; + return get_number(input_format_t::msgpack, len) && + get_binary(input_format_t::msgpack, len, result); + } + + case 0xC5: // bin 16 + { + std::uint16_t len{}; + return get_number(input_format_t::msgpack, len) && + get_binary(input_format_t::msgpack, len, result); + } + + case 0xC6: // bin 32 + { + std::uint32_t len{}; + return get_number(input_format_t::msgpack, len) && + get_binary(input_format_t::msgpack, len, result); + } + + case 0xC7: // ext 8 + { + std::uint8_t len{}; + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, len) && + get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, len, result) && + assign_and_return_true(subtype); + } + + case 0xC8: // ext 16 + { + std::uint16_t len{}; + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, len) && + get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, len, result) && + assign_and_return_true(subtype); + } + + case 0xC9: // ext 32 + { + std::uint32_t len{}; + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, len) && + get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, len, result) && + assign_and_return_true(subtype); + } + + case 0xD4: // fixext 1 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 1, result) && + assign_and_return_true(subtype); + } + + case 0xD5: // fixext 2 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 2, result) && + assign_and_return_true(subtype); + } + + case 0xD6: // fixext 4 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 4, result) && + assign_and_return_true(subtype); + } + + case 0xD7: // fixext 8 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 8, result) && + assign_and_return_true(subtype); + } + + case 0xD8: // fixext 16 + { + std::int8_t subtype{}; + return get_number(input_format_t::msgpack, subtype) && + get_binary(input_format_t::msgpack, 16, result) && + assign_and_return_true(subtype); + } + + default: // LCOV_EXCL_LINE + return false; // LCOV_EXCL_LINE + } + } + + /*! + @param[in] len the length of the array + @return whether array creation completed + */ + bool get_msgpack_array(const std::size_t len) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(len))) + { + return false; + } + + for (std::size_t i = 0; i < len; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!parse_msgpack_internal())) + { + return false; + } + } + + return sax->end_array(); + } + + /*! + @param[in] len the length of the object + @return whether object creation completed + */ + bool get_msgpack_object(const std::size_t len) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(len))) + { + return false; + } + + string_t key; + for (std::size_t i = 0; i < len; ++i) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!get_msgpack_string(key) || !sax->key(key))) + { + return false; + } + + if (JSON_HEDLEY_UNLIKELY(!parse_msgpack_internal())) + { + return false; + } + key.clear(); + } + + return sax->end_object(); + } + + //////////// + // UBJSON // + //////////// + + /*! + @param[in] get_char whether a new character should be retrieved from the + input (true, default) or whether the last read + character should be considered instead + + @return whether a valid UBJSON value was passed to the SAX parser + */ + bool parse_ubjson_internal(const bool get_char = true) + { + return get_ubjson_value(get_char ? get_ignore_noop() : current); + } + + /*! + @brief reads a UBJSON string + + This function is either called after reading the 'S' byte explicitly + indicating a string, or in case of an object key where the 'S' byte can be + left out. + + @param[out] result created string + @param[in] get_char whether a new character should be retrieved from the + input (true, default) or whether the last read + character should be considered instead + + @return whether string creation completed + */ + bool get_ubjson_string(string_t& result, const bool get_char = true) + { + if (get_char) + { + get(); // TODO(niels): may we ignore N here? + } + + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "value"))) + { + return false; + } + + switch (current) + { + case 'U': + { + std::uint8_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + case 'i': + { + std::int8_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + case 'I': + { + std::int16_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + case 'l': + { + std::int32_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + case 'L': + { + std::int64_t len{}; + return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); + } + + default: + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L); last byte: 0x" + last_token, "string"))); + } + } + + /*! + @param[out] result determined size + @return whether size determination completed + */ + bool get_ubjson_size_value(std::size_t& result) + { + switch (get_ignore_noop()) + { + case 'U': + { + std::uint8_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + case 'i': + { + std::int8_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + case 'I': + { + std::int16_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + case 'l': + { + std::int32_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + case 'L': + { + std::int64_t number{}; + if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) + { + return false; + } + result = static_cast(number); + return true; + } + + default: + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L) after '#'; last byte: 0x" + last_token, "size"))); + } + } + } + + /*! + @brief determine the type and size for a container + + In the optimized UBJSON format, a type and a size can be provided to allow + for a more compact representation. + + @param[out] result pair of the size and the type + + @return whether pair creation completed + */ + bool get_ubjson_size_type(std::pair& result) + { + result.first = string_t::npos; // size + result.second = 0; // type + + get_ignore_noop(); + + if (current == '$') + { + result.second = get(); // must not ignore 'N', because 'N' maybe the type + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "type"))) + { + return false; + } + + get_ignore_noop(); + if (JSON_HEDLEY_UNLIKELY(current != '#')) + { + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "value"))) + { + return false; + } + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "expected '#' after type information; last byte: 0x" + last_token, "size"))); + } + + return get_ubjson_size_value(result.first); + } + + if (current == '#') + { + return get_ubjson_size_value(result.first); + } + + return true; + } + + /*! + @param prefix the previously read or set type prefix + @return whether value creation completed + */ + bool get_ubjson_value(const char_int_type prefix) + { + switch (prefix) + { + case std::char_traits::eof(): // EOF + return unexpect_eof(input_format_t::ubjson, "value"); + + case 'T': // true + return sax->boolean(true); + case 'F': // false + return sax->boolean(false); + + case 'Z': // null + return sax->null(); + + case 'U': + { + std::uint8_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_unsigned(number); + } + + case 'i': + { + std::int8_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_integer(number); + } + + case 'I': + { + std::int16_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_integer(number); + } + + case 'l': + { + std::int32_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_integer(number); + } + + case 'L': + { + std::int64_t number{}; + return get_number(input_format_t::ubjson, number) && sax->number_integer(number); + } + + case 'd': + { + float number{}; + return get_number(input_format_t::ubjson, number) && sax->number_float(static_cast(number), ""); + } + + case 'D': + { + double number{}; + return get_number(input_format_t::ubjson, number) && sax->number_float(static_cast(number), ""); + } + + case 'H': + { + return get_ubjson_high_precision_number(); + } + + case 'C': // char + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "char"))) + { + return false; + } + if (JSON_HEDLEY_UNLIKELY(current > 127)) + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "byte after 'C' must be in range 0x00..0x7F; last byte: 0x" + last_token, "char"))); + } + string_t s(1, static_cast(current)); + return sax->string(s); + } + + case 'S': // string + { + string_t s; + return get_ubjson_string(s) && sax->string(s); + } + + case '[': // array + return get_ubjson_array(); + + case '{': // object + return get_ubjson_object(); + + default: // anything else + { + auto last_token = get_token_string(); + return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "invalid byte: 0x" + last_token, "value"))); + } + } + } + + /*! + @return whether array creation completed + */ + bool get_ubjson_array() + { + std::pair size_and_type; + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_size_type(size_and_type))) + { + return false; + } + + if (size_and_type.first != string_t::npos) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(size_and_type.first))) + { + return false; + } + + if (size_and_type.second != 0) + { + if (size_and_type.second != 'N') + { + for (std::size_t i = 0; i < size_and_type.first; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_value(size_and_type.second))) + { + return false; + } + } + } + } + else + { + for (std::size_t i = 0; i < size_and_type.first; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) + { + return false; + } + } + } + } + else + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) + { + return false; + } + + while (current != ']') + { + if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal(false))) + { + return false; + } + get_ignore_noop(); + } + } + + return sax->end_array(); + } + + /*! + @return whether object creation completed + */ + bool get_ubjson_object() + { + std::pair size_and_type; + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_size_type(size_and_type))) + { + return false; + } + + string_t key; + if (size_and_type.first != string_t::npos) + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(size_and_type.first))) + { + return false; + } + + if (size_and_type.second != 0) + { + for (std::size_t i = 0; i < size_and_type.first; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key) || !sax->key(key))) + { + return false; + } + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_value(size_and_type.second))) + { + return false; + } + key.clear(); + } + } + else + { + for (std::size_t i = 0; i < size_and_type.first; ++i) + { + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key) || !sax->key(key))) + { + return false; + } + if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) + { + return false; + } + key.clear(); + } + } + } + else + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) + { + return false; + } + + while (current != '}') + { + if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key, false) || !sax->key(key))) + { + return false; + } + if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) + { + return false; + } + get_ignore_noop(); + key.clear(); + } + } + + return sax->end_object(); + } + + // Note, no reader for UBJSON binary types is implemented because they do + // not exist + + bool get_ubjson_high_precision_number() + { + // get size of following number string + std::size_t size{}; + auto res = get_ubjson_size_value(size); + if (JSON_HEDLEY_UNLIKELY(!res)) + { + return res; + } + + // get number string + std::vector number_vector; + for (std::size_t i = 0; i < size; ++i) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "number"))) + { + return false; + } + number_vector.push_back(static_cast(current)); + } + + // parse number string + auto number_ia = detail::input_adapter(std::forward(number_vector)); + auto number_lexer = detail::lexer(std::move(number_ia), false); + const auto result_number = number_lexer.scan(); + const auto number_string = number_lexer.get_token_string(); + const auto result_remainder = number_lexer.scan(); + + using token_type = typename detail::lexer_base::token_type; + + if (JSON_HEDLEY_UNLIKELY(result_remainder != token_type::end_of_input)) + { + return sax->parse_error(chars_read, number_string, parse_error::create(115, chars_read, exception_message(input_format_t::ubjson, "invalid number text: " + number_lexer.get_token_string(), "high-precision number"))); + } + + switch (result_number) + { + case token_type::value_integer: + return sax->number_integer(number_lexer.get_number_integer()); + case token_type::value_unsigned: + return sax->number_unsigned(number_lexer.get_number_unsigned()); + case token_type::value_float: + return sax->number_float(number_lexer.get_number_float(), std::move(number_string)); + default: + return sax->parse_error(chars_read, number_string, parse_error::create(115, chars_read, exception_message(input_format_t::ubjson, "invalid number text: " + number_lexer.get_token_string(), "high-precision number"))); + } + } + + /////////////////////// + // Utility functions // + /////////////////////// + + /*! + @brief get next character from the input + + This function provides the interface to the used input adapter. It does + not throw in case the input reached EOF, but returns a -'ve valued + `std::char_traits::eof()` in that case. + + @return character read from the input + */ + char_int_type get() + { + ++chars_read; + return current = ia.get_character(); + } + + /*! + @return character read from the input after ignoring all 'N' entries + */ + char_int_type get_ignore_noop() + { + do + { + get(); + } + while (current == 'N'); + + return current; + } + + /* + @brief read a number from the input + + @tparam NumberType the type of the number + @param[in] format the current format (for diagnostics) + @param[out] result number of type @a NumberType + + @return whether conversion completed + + @note This function needs to respect the system's endianess, because + bytes in CBOR, MessagePack, and UBJSON are stored in network order + (big endian) and therefore need reordering on little endian systems. + */ + template + bool get_number(const input_format_t format, NumberType& result) + { + // step 1: read input into array with system's byte order + std::array vec; + for (std::size_t i = 0; i < sizeof(NumberType); ++i) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "number"))) + { + return false; + } + + // reverse byte order prior to conversion if necessary + if (is_little_endian != InputIsLittleEndian) + { + vec[sizeof(NumberType) - i - 1] = static_cast(current); + } + else + { + vec[i] = static_cast(current); // LCOV_EXCL_LINE + } + } + + // step 2: convert array into number of type T and return + std::memcpy(&result, vec.data(), sizeof(NumberType)); + return true; + } + + /*! + @brief create a string by reading characters from the input + + @tparam NumberType the type of the number + @param[in] format the current format (for diagnostics) + @param[in] len number of characters to read + @param[out] result string created by reading @a len bytes + + @return whether string creation completed + + @note We can not reserve @a len bytes for the result, because @a len + may be too large. Usually, @ref unexpect_eof() detects the end of + the input before we run out of string memory. + */ + template + bool get_string(const input_format_t format, + const NumberType len, + string_t& result) + { + bool success = true; + for (NumberType i = 0; i < len; i++) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "string"))) + { + success = false; + break; + } + result.push_back(static_cast(current)); + }; + return success; + } + + /*! + @brief create a byte array by reading bytes from the input + + @tparam NumberType the type of the number + @param[in] format the current format (for diagnostics) + @param[in] len number of bytes to read + @param[out] result byte array created by reading @a len bytes + + @return whether byte array creation completed + + @note We can not reserve @a len bytes for the result, because @a len + may be too large. Usually, @ref unexpect_eof() detects the end of + the input before we run out of memory. + */ + template + bool get_binary(const input_format_t format, + const NumberType len, + binary_t& result) + { + bool success = true; + for (NumberType i = 0; i < len; i++) + { + get(); + if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "binary"))) + { + success = false; + break; + } + result.push_back(static_cast(current)); + } + return success; + } + + /*! + @param[in] format the current format (for diagnostics) + @param[in] context further context information (for diagnostics) + @return whether the last read character is not EOF + */ + JSON_HEDLEY_NON_NULL(3) + bool unexpect_eof(const input_format_t format, const char* context) const + { + if (JSON_HEDLEY_UNLIKELY(current == std::char_traits::eof())) + { + return sax->parse_error(chars_read, "", + parse_error::create(110, chars_read, exception_message(format, "unexpected end of input", context))); + } + return true; + } + + /*! + @return a string representation of the last read byte + */ + std::string get_token_string() const + { + std::array cr{{}}; + (std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast(current)); + return std::string{cr.data()}; + } + + /*! + @param[in] format the current format + @param[in] detail a detailed error message + @param[in] context further context information + @return a message string to use in the parse_error exceptions + */ + std::string exception_message(const input_format_t format, + const std::string& detail, + const std::string& context) const + { + std::string error_msg = "syntax error while parsing "; + + switch (format) + { + case input_format_t::cbor: + error_msg += "CBOR"; + break; + + case input_format_t::msgpack: + error_msg += "MessagePack"; + break; + + case input_format_t::ubjson: + error_msg += "UBJSON"; + break; + + case input_format_t::bson: + error_msg += "BSON"; + break; + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + + return error_msg + " " + context + ": " + detail; + } + + private: + /// input adapter + InputAdapterType ia; + + /// the current character + char_int_type current = std::char_traits::eof(); + + /// the number of characters read + std::size_t chars_read = 0; + + /// whether we can assume little endianess + const bool is_little_endian = little_endianess(); + + /// the SAX parser + json_sax_t* sax = nullptr; +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + +// #include + + +#include // isfinite +#include // uint8_t +#include // function +#include // string +#include // move +#include // vector + +// #include + +// #include + +// #include + +// #include + +// #include + +// #include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +//////////// +// parser // +//////////// + +enum class parse_event_t : uint8_t +{ + /// the parser read `{` and started to process a JSON object + object_start, + /// the parser read `}` and finished processing a JSON object + object_end, + /// the parser read `[` and started to process a JSON array + array_start, + /// the parser read `]` and finished processing a JSON array + array_end, + /// the parser read a key of a value in an object + key, + /// the parser finished reading a JSON value + value +}; + +template +using parser_callback_t = + std::function; + +/*! +@brief syntax analysis + +This class implements a recursive descent parser. +*/ +template +class parser +{ + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using number_float_t = typename BasicJsonType::number_float_t; + using string_t = typename BasicJsonType::string_t; + using lexer_t = lexer; + using token_type = typename lexer_t::token_type; + + public: + /// a parser reading from an input adapter + explicit parser(InputAdapterType&& adapter, + const parser_callback_t cb = nullptr, + const bool allow_exceptions_ = true, + const bool skip_comments = false) + : callback(cb) + , m_lexer(std::move(adapter), skip_comments) + , allow_exceptions(allow_exceptions_) + { + // read first token + get_token(); + } + + /*! + @brief public parser interface + + @param[in] strict whether to expect the last token to be EOF + @param[in,out] result parsed JSON value + + @throw parse_error.101 in case of an unexpected token + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + */ + void parse(const bool strict, BasicJsonType& result) + { + if (callback) + { + json_sax_dom_callback_parser sdp(result, callback, allow_exceptions); + sax_parse_internal(&sdp); + result.assert_invariant(); + + // in strict mode, input must be completely read + if (strict && (get_token() != token_type::end_of_input)) + { + sdp.parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_of_input, "value"))); + } + + // in case of an error, return discarded value + if (sdp.is_errored()) + { + result = value_t::discarded; + return; + } + + // set top-level value to null if it was discarded by the callback + // function + if (result.is_discarded()) + { + result = nullptr; + } + } + else + { + json_sax_dom_parser sdp(result, allow_exceptions); + sax_parse_internal(&sdp); + result.assert_invariant(); + + // in strict mode, input must be completely read + if (strict && (get_token() != token_type::end_of_input)) + { + sdp.parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_of_input, "value"))); + } + + // in case of an error, return discarded value + if (sdp.is_errored()) + { + result = value_t::discarded; + return; + } + } + } + + /*! + @brief public accept interface + + @param[in] strict whether to expect the last token to be EOF + @return whether the input is a proper JSON text + */ + bool accept(const bool strict = true) + { + json_sax_acceptor sax_acceptor; + return sax_parse(&sax_acceptor, strict); + } + + template + JSON_HEDLEY_NON_NULL(2) + bool sax_parse(SAX* sax, const bool strict = true) + { + (void)detail::is_sax_static_asserts {}; + const bool result = sax_parse_internal(sax); + + // strict mode: next byte must be EOF + if (result && strict && (get_token() != token_type::end_of_input)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_of_input, "value"))); + } + + return result; + } + + private: + template + JSON_HEDLEY_NON_NULL(2) + bool sax_parse_internal(SAX* sax) + { + // stack to remember the hierarchy of structured values we are parsing + // true = array; false = object + std::vector states; + // value to avoid a goto (see comment where set to true) + bool skip_to_state_evaluation = false; + + while (true) + { + if (!skip_to_state_evaluation) + { + // invariant: get_token() was called before each iteration + switch (last_token) + { + case token_type::begin_object: + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) + { + return false; + } + + // closing } -> we are done + if (get_token() == token_type::end_object) + { + if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) + { + return false; + } + break; + } + + // parse key + if (JSON_HEDLEY_UNLIKELY(last_token != token_type::value_string)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::value_string, "object key"))); + } + if (JSON_HEDLEY_UNLIKELY(!sax->key(m_lexer.get_string()))) + { + return false; + } + + // parse separator (:) + if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::name_separator, "object separator"))); + } + + // remember we are now inside an object + states.push_back(false); + + // parse values + get_token(); + continue; + } + + case token_type::begin_array: + { + if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) + { + return false; + } + + // closing ] -> we are done + if (get_token() == token_type::end_array) + { + if (JSON_HEDLEY_UNLIKELY(!sax->end_array())) + { + return false; + } + break; + } + + // remember we are now inside an array + states.push_back(true); + + // parse values (no need to call get_token) + continue; + } + + case token_type::value_float: + { + const auto res = m_lexer.get_number_float(); + + if (JSON_HEDLEY_UNLIKELY(!std::isfinite(res))) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + out_of_range::create(406, "number overflow parsing '" + m_lexer.get_token_string() + "'")); + } + + if (JSON_HEDLEY_UNLIKELY(!sax->number_float(res, m_lexer.get_string()))) + { + return false; + } + + break; + } + + case token_type::literal_false: + { + if (JSON_HEDLEY_UNLIKELY(!sax->boolean(false))) + { + return false; + } + break; + } + + case token_type::literal_null: + { + if (JSON_HEDLEY_UNLIKELY(!sax->null())) + { + return false; + } + break; + } + + case token_type::literal_true: + { + if (JSON_HEDLEY_UNLIKELY(!sax->boolean(true))) + { + return false; + } + break; + } + + case token_type::value_integer: + { + if (JSON_HEDLEY_UNLIKELY(!sax->number_integer(m_lexer.get_number_integer()))) + { + return false; + } + break; + } + + case token_type::value_string: + { + if (JSON_HEDLEY_UNLIKELY(!sax->string(m_lexer.get_string()))) + { + return false; + } + break; + } + + case token_type::value_unsigned: + { + if (JSON_HEDLEY_UNLIKELY(!sax->number_unsigned(m_lexer.get_number_unsigned()))) + { + return false; + } + break; + } + + case token_type::parse_error: + { + // using "uninitialized" to avoid "expected" message + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::uninitialized, "value"))); + } + + default: // the last token was unexpected + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::literal_or_value, "value"))); + } + } + } + else + { + skip_to_state_evaluation = false; + } + + // we reached this line after we successfully parsed a value + if (states.empty()) + { + // empty stack: we reached the end of the hierarchy: done + return true; + } + + if (states.back()) // array + { + // comma -> next value + if (get_token() == token_type::value_separator) + { + // parse a new value + get_token(); + continue; + } + + // closing ] + if (JSON_HEDLEY_LIKELY(last_token == token_type::end_array)) + { + if (JSON_HEDLEY_UNLIKELY(!sax->end_array())) + { + return false; + } + + // We are done with this array. Before we can parse a + // new value, we need to evaluate the new state first. + // By setting skip_to_state_evaluation to false, we + // are effectively jumping to the beginning of this if. + JSON_ASSERT(!states.empty()); + states.pop_back(); + skip_to_state_evaluation = true; + continue; + } + + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_array, "array"))); + } + else // object + { + // comma -> next value + if (get_token() == token_type::value_separator) + { + // parse key + if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::value_string)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::value_string, "object key"))); + } + + if (JSON_HEDLEY_UNLIKELY(!sax->key(m_lexer.get_string()))) + { + return false; + } + + // parse separator (:) + if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator)) + { + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::name_separator, "object separator"))); + } + + // parse values + get_token(); + continue; + } + + // closing } + if (JSON_HEDLEY_LIKELY(last_token == token_type::end_object)) + { + if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) + { + return false; + } + + // We are done with this object. Before we can parse a + // new value, we need to evaluate the new state first. + // By setting skip_to_state_evaluation to false, we + // are effectively jumping to the beginning of this if. + JSON_ASSERT(!states.empty()); + states.pop_back(); + skip_to_state_evaluation = true; + continue; + } + + return sax->parse_error(m_lexer.get_position(), + m_lexer.get_token_string(), + parse_error::create(101, m_lexer.get_position(), + exception_message(token_type::end_object, "object"))); + } + } + } + + /// get next token from lexer + token_type get_token() + { + return last_token = m_lexer.scan(); + } + + std::string exception_message(const token_type expected, const std::string& context) + { + std::string error_msg = "syntax error "; + + if (!context.empty()) + { + error_msg += "while parsing " + context + " "; + } + + error_msg += "- "; + + if (last_token == token_type::parse_error) + { + error_msg += std::string(m_lexer.get_error_message()) + "; last read: '" + + m_lexer.get_token_string() + "'"; + } + else + { + error_msg += "unexpected " + std::string(lexer_t::token_type_name(last_token)); + } + + if (expected != token_type::uninitialized) + { + error_msg += "; expected " + std::string(lexer_t::token_type_name(expected)); + } + + return error_msg; + } + + private: + /// callback function + const parser_callback_t callback = nullptr; + /// the type of the last read token + token_type last_token = token_type::uninitialized; + /// the lexer + lexer_t m_lexer; + /// whether to throw exceptions in case of errors + const bool allow_exceptions = true; +}; +} // namespace detail +} // namespace nlohmann + +// #include + + +// #include + + +#include // ptrdiff_t +#include // numeric_limits + +namespace nlohmann +{ +namespace detail +{ +/* +@brief an iterator for primitive JSON types + +This class models an iterator for primitive JSON types (boolean, number, +string). It's only purpose is to allow the iterator/const_iterator classes +to "iterate" over primitive values. Internally, the iterator is modeled by +a `difference_type` variable. Value begin_value (`0`) models the begin, +end_value (`1`) models past the end. +*/ +class primitive_iterator_t +{ + private: + using difference_type = std::ptrdiff_t; + static constexpr difference_type begin_value = 0; + static constexpr difference_type end_value = begin_value + 1; + + /// iterator as signed integer type + difference_type m_it = (std::numeric_limits::min)(); + + public: + constexpr difference_type get_value() const noexcept + { + return m_it; + } + + /// set iterator to a defined beginning + void set_begin() noexcept + { + m_it = begin_value; + } + + /// set iterator to a defined past the end + void set_end() noexcept + { + m_it = end_value; + } + + /// return whether the iterator can be dereferenced + constexpr bool is_begin() const noexcept + { + return m_it == begin_value; + } + + /// return whether the iterator is at end + constexpr bool is_end() const noexcept + { + return m_it == end_value; + } + + friend constexpr bool operator==(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept + { + return lhs.m_it == rhs.m_it; + } + + friend constexpr bool operator<(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept + { + return lhs.m_it < rhs.m_it; + } + + primitive_iterator_t operator+(difference_type n) noexcept + { + auto result = *this; + result += n; + return result; + } + + friend constexpr difference_type operator-(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept + { + return lhs.m_it - rhs.m_it; + } + + primitive_iterator_t& operator++() noexcept + { + ++m_it; + return *this; + } + + primitive_iterator_t const operator++(int) noexcept + { + auto result = *this; + ++m_it; + return result; + } + + primitive_iterator_t& operator--() noexcept + { + --m_it; + return *this; + } + + primitive_iterator_t const operator--(int) noexcept + { + auto result = *this; + --m_it; + return result; + } + + primitive_iterator_t& operator+=(difference_type n) noexcept + { + m_it += n; + return *this; + } + + primitive_iterator_t& operator-=(difference_type n) noexcept + { + m_it -= n; + return *this; + } +}; +} // namespace detail +} // namespace nlohmann + + +namespace nlohmann +{ +namespace detail +{ +/*! +@brief an iterator value + +@note This structure could easily be a union, but MSVC currently does not allow +unions members with complex constructors, see https://github.com/nlohmann/json/pull/105. +*/ +template struct internal_iterator +{ + /// iterator for JSON objects + typename BasicJsonType::object_t::iterator object_iterator {}; + /// iterator for JSON arrays + typename BasicJsonType::array_t::iterator array_iterator {}; + /// generic iterator for all other types + primitive_iterator_t primitive_iterator {}; +}; +} // namespace detail +} // namespace nlohmann + +// #include + + +#include // iterator, random_access_iterator_tag, bidirectional_iterator_tag, advance, next +#include // conditional, is_const, remove_const + +// #include + +// #include + +// #include + +// #include + +// #include + +// #include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +// forward declare, to be able to friend it later on +template class iteration_proxy; +template class iteration_proxy_value; + +/*! +@brief a template for a bidirectional iterator for the @ref basic_json class +This class implements a both iterators (iterator and const_iterator) for the +@ref basic_json class. +@note An iterator is called *initialized* when a pointer to a JSON value has + been set (e.g., by a constructor or a copy assignment). If the iterator is + default-constructed, it is *uninitialized* and most methods are undefined. + **The library uses assertions to detect calls on uninitialized iterators.** +@requirement The class satisfies the following concept requirements: +- +[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator): + The iterator that can be moved can be moved in both directions (i.e. + incremented and decremented). +@since version 1.0.0, simplified in version 2.0.9, change to bidirectional + iterators in version 3.0.0 (see https://github.com/nlohmann/json/issues/593) +*/ +template +class iter_impl +{ + /// allow basic_json to access private members + friend iter_impl::value, typename std::remove_const::type, const BasicJsonType>::type>; + friend BasicJsonType; + friend iteration_proxy; + friend iteration_proxy_value; + + using object_t = typename BasicJsonType::object_t; + using array_t = typename BasicJsonType::array_t; + // make sure BasicJsonType is basic_json or const basic_json + static_assert(is_basic_json::type>::value, + "iter_impl only accepts (const) basic_json"); + + public: + + /// The std::iterator class template (used as a base class to provide typedefs) is deprecated in C++17. + /// The C++ Standard has never required user-defined iterators to derive from std::iterator. + /// A user-defined iterator should provide publicly accessible typedefs named + /// iterator_category, value_type, difference_type, pointer, and reference. + /// Note that value_type is required to be non-const, even for constant iterators. + using iterator_category = std::bidirectional_iterator_tag; + + /// the type of the values when the iterator is dereferenced + using value_type = typename BasicJsonType::value_type; + /// a type to represent differences between iterators + using difference_type = typename BasicJsonType::difference_type; + /// defines a pointer to the type iterated over (value_type) + using pointer = typename std::conditional::value, + typename BasicJsonType::const_pointer, + typename BasicJsonType::pointer>::type; + /// defines a reference to the type iterated over (value_type) + using reference = + typename std::conditional::value, + typename BasicJsonType::const_reference, + typename BasicJsonType::reference>::type; + + /// default constructor + iter_impl() = default; + + /*! + @brief constructor for a given JSON instance + @param[in] object pointer to a JSON object for this iterator + @pre object != nullptr + @post The iterator is initialized; i.e. `m_object != nullptr`. + */ + explicit iter_impl(pointer object) noexcept : m_object(object) + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + m_it.object_iterator = typename object_t::iterator(); + break; + } + + case value_t::array: + { + m_it.array_iterator = typename array_t::iterator(); + break; + } + + default: + { + m_it.primitive_iterator = primitive_iterator_t(); + break; + } + } + } + + /*! + @note The conventional copy constructor and copy assignment are implicitly + defined. Combined with the following converting constructor and + assignment, they support: (1) copy from iterator to iterator, (2) + copy from const iterator to const iterator, and (3) conversion from + iterator to const iterator. However conversion from const iterator + to iterator is not defined. + */ + + /*! + @brief const copy constructor + @param[in] other const iterator to copy from + @note This copy constructor had to be defined explicitly to circumvent a bug + occurring on msvc v19.0 compiler (VS 2015) debug build. For more + information refer to: https://github.com/nlohmann/json/issues/1608 + */ + iter_impl(const iter_impl& other) noexcept + : m_object(other.m_object), m_it(other.m_it) + {} + + /*! + @brief converting assignment + @param[in] other const iterator to copy from + @return const/non-const iterator + @note It is not checked whether @a other is initialized. + */ + iter_impl& operator=(const iter_impl& other) noexcept + { + m_object = other.m_object; + m_it = other.m_it; + return *this; + } + + /*! + @brief converting constructor + @param[in] other non-const iterator to copy from + @note It is not checked whether @a other is initialized. + */ + iter_impl(const iter_impl::type>& other) noexcept + : m_object(other.m_object), m_it(other.m_it) + {} + + /*! + @brief converting assignment + @param[in] other non-const iterator to copy from + @return const/non-const iterator + @note It is not checked whether @a other is initialized. + */ + iter_impl& operator=(const iter_impl::type>& other) noexcept + { + m_object = other.m_object; + m_it = other.m_it; + return *this; + } + + private: + /*! + @brief set the iterator to the first value + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + void set_begin() noexcept + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + m_it.object_iterator = m_object->m_value.object->begin(); + break; + } + + case value_t::array: + { + m_it.array_iterator = m_object->m_value.array->begin(); + break; + } + + case value_t::null: + { + // set to end so begin()==end() is true: null is empty + m_it.primitive_iterator.set_end(); + break; + } + + default: + { + m_it.primitive_iterator.set_begin(); + break; + } + } + } + + /*! + @brief set the iterator past the last value + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + void set_end() noexcept + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + m_it.object_iterator = m_object->m_value.object->end(); + break; + } + + case value_t::array: + { + m_it.array_iterator = m_object->m_value.array->end(); + break; + } + + default: + { + m_it.primitive_iterator.set_end(); + break; + } + } + } + + public: + /*! + @brief return a reference to the value pointed to by the iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + reference operator*() const + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + JSON_ASSERT(m_it.object_iterator != m_object->m_value.object->end()); + return m_it.object_iterator->second; + } + + case value_t::array: + { + JSON_ASSERT(m_it.array_iterator != m_object->m_value.array->end()); + return *m_it.array_iterator; + } + + case value_t::null: + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + + default: + { + if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin())) + { + return *m_object; + } + + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + } + } + } + + /*! + @brief dereference the iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + pointer operator->() const + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + JSON_ASSERT(m_it.object_iterator != m_object->m_value.object->end()); + return &(m_it.object_iterator->second); + } + + case value_t::array: + { + JSON_ASSERT(m_it.array_iterator != m_object->m_value.array->end()); + return &*m_it.array_iterator; + } + + default: + { + if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin())) + { + return m_object; + } + + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + } + } + } + + /*! + @brief post-increment (it++) + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl const operator++(int) + { + auto result = *this; + ++(*this); + return result; + } + + /*! + @brief pre-increment (++it) + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl& operator++() + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + std::advance(m_it.object_iterator, 1); + break; + } + + case value_t::array: + { + std::advance(m_it.array_iterator, 1); + break; + } + + default: + { + ++m_it.primitive_iterator; + break; + } + } + + return *this; + } + + /*! + @brief post-decrement (it--) + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl const operator--(int) + { + auto result = *this; + --(*this); + return result; + } + + /*! + @brief pre-decrement (--it) + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl& operator--() + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + { + std::advance(m_it.object_iterator, -1); + break; + } + + case value_t::array: + { + std::advance(m_it.array_iterator, -1); + break; + } + + default: + { + --m_it.primitive_iterator; + break; + } + } + + return *this; + } + + /*! + @brief comparison: equal + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator==(const iter_impl& other) const + { + // if objects are not the same, the comparison is undefined + if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) + { + JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers")); + } + + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + return (m_it.object_iterator == other.m_it.object_iterator); + + case value_t::array: + return (m_it.array_iterator == other.m_it.array_iterator); + + default: + return (m_it.primitive_iterator == other.m_it.primitive_iterator); + } + } + + /*! + @brief comparison: not equal + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator!=(const iter_impl& other) const + { + return !operator==(other); + } + + /*! + @brief comparison: smaller + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator<(const iter_impl& other) const + { + // if objects are not the same, the comparison is undefined + if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) + { + JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers")); + } + + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + JSON_THROW(invalid_iterator::create(213, "cannot compare order of object iterators")); + + case value_t::array: + return (m_it.array_iterator < other.m_it.array_iterator); + + default: + return (m_it.primitive_iterator < other.m_it.primitive_iterator); + } + } + + /*! + @brief comparison: less than or equal + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator<=(const iter_impl& other) const + { + return !other.operator < (*this); + } + + /*! + @brief comparison: greater than + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator>(const iter_impl& other) const + { + return !operator<=(other); + } + + /*! + @brief comparison: greater than or equal + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + bool operator>=(const iter_impl& other) const + { + return !operator<(other); + } + + /*! + @brief add to iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl& operator+=(difference_type i) + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators")); + + case value_t::array: + { + std::advance(m_it.array_iterator, i); + break; + } + + default: + { + m_it.primitive_iterator += i; + break; + } + } + + return *this; + } + + /*! + @brief subtract from iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl& operator-=(difference_type i) + { + return operator+=(-i); + } + + /*! + @brief add to iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl operator+(difference_type i) const + { + auto result = *this; + result += i; + return result; + } + + /*! + @brief addition of distance and iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + friend iter_impl operator+(difference_type i, const iter_impl& it) + { + auto result = it; + result += i; + return result; + } + + /*! + @brief subtract from iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + iter_impl operator-(difference_type i) const + { + auto result = *this; + result -= i; + return result; + } + + /*! + @brief return difference + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + difference_type operator-(const iter_impl& other) const + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators")); + + case value_t::array: + return m_it.array_iterator - other.m_it.array_iterator; + + default: + return m_it.primitive_iterator - other.m_it.primitive_iterator; + } + } + + /*! + @brief access to successor + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + reference operator[](difference_type n) const + { + JSON_ASSERT(m_object != nullptr); + + switch (m_object->m_type) + { + case value_t::object: + JSON_THROW(invalid_iterator::create(208, "cannot use operator[] for object iterators")); + + case value_t::array: + return *std::next(m_it.array_iterator, n); + + case value_t::null: + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + + default: + { + if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.get_value() == -n)) + { + return *m_object; + } + + JSON_THROW(invalid_iterator::create(214, "cannot get value")); + } + } + } + + /*! + @brief return the key of an object iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + const typename object_t::key_type& key() const + { + JSON_ASSERT(m_object != nullptr); + + if (JSON_HEDLEY_LIKELY(m_object->is_object())) + { + return m_it.object_iterator->first; + } + + JSON_THROW(invalid_iterator::create(207, "cannot use key() for non-object iterators")); + } + + /*! + @brief return the value of an iterator + @pre The iterator is initialized; i.e. `m_object != nullptr`. + */ + reference value() const + { + return operator*(); + } + + private: + /// associated JSON instance + pointer m_object = nullptr; + /// the actual iterator of the associated instance + internal_iterator::type> m_it {}; +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + + +#include // ptrdiff_t +#include // reverse_iterator +#include // declval + +namespace nlohmann +{ +namespace detail +{ +////////////////////// +// reverse_iterator // +////////////////////// + +/*! +@brief a template for a reverse iterator class + +@tparam Base the base iterator type to reverse. Valid types are @ref +iterator (to create @ref reverse_iterator) and @ref const_iterator (to +create @ref const_reverse_iterator). + +@requirement The class satisfies the following concept requirements: +- +[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator): + The iterator that can be moved can be moved in both directions (i.e. + incremented and decremented). +- [OutputIterator](https://en.cppreference.com/w/cpp/named_req/OutputIterator): + It is possible to write to the pointed-to element (only if @a Base is + @ref iterator). + +@since version 1.0.0 +*/ +template +class json_reverse_iterator : public std::reverse_iterator +{ + public: + using difference_type = std::ptrdiff_t; + /// shortcut to the reverse iterator adapter + using base_iterator = std::reverse_iterator; + /// the reference type for the pointed-to element + using reference = typename Base::reference; + + /// create reverse iterator from iterator + explicit json_reverse_iterator(const typename base_iterator::iterator_type& it) noexcept + : base_iterator(it) {} + + /// create reverse iterator from base class + explicit json_reverse_iterator(const base_iterator& it) noexcept : base_iterator(it) {} + + /// post-increment (it++) + json_reverse_iterator const operator++(int) + { + return static_cast(base_iterator::operator++(1)); + } + + /// pre-increment (++it) + json_reverse_iterator& operator++() + { + return static_cast(base_iterator::operator++()); + } + + /// post-decrement (it--) + json_reverse_iterator const operator--(int) + { + return static_cast(base_iterator::operator--(1)); + } + + /// pre-decrement (--it) + json_reverse_iterator& operator--() + { + return static_cast(base_iterator::operator--()); + } + + /// add to iterator + json_reverse_iterator& operator+=(difference_type i) + { + return static_cast(base_iterator::operator+=(i)); + } + + /// add to iterator + json_reverse_iterator operator+(difference_type i) const + { + return static_cast(base_iterator::operator+(i)); + } + + /// subtract from iterator + json_reverse_iterator operator-(difference_type i) const + { + return static_cast(base_iterator::operator-(i)); + } + + /// return difference + difference_type operator-(const json_reverse_iterator& other) const + { + return base_iterator(*this) - base_iterator(other); + } + + /// access to successor + reference operator[](difference_type n) const + { + return *(this->operator+(n)); + } + + /// return the key of an object iterator + auto key() const -> decltype(std::declval().key()) + { + auto it = --this->base(); + return it.key(); + } + + /// return the value of an iterator + reference value() const + { + auto it = --this->base(); + return it.operator * (); + } +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + + +#include // all_of +#include // isdigit +#include // max +#include // accumulate +#include // string +#include // move +#include // vector + +// #include + +// #include + +// #include + + +namespace nlohmann +{ +template +class json_pointer +{ + // allow basic_json to access private members + NLOHMANN_BASIC_JSON_TPL_DECLARATION + friend class basic_json; + + public: + /*! + @brief create JSON pointer + + Create a JSON pointer according to the syntax described in + [Section 3 of RFC6901](https://tools.ietf.org/html/rfc6901#section-3). + + @param[in] s string representing the JSON pointer; if omitted, the empty + string is assumed which references the whole JSON value + + @throw parse_error.107 if the given JSON pointer @a s is nonempty and does + not begin with a slash (`/`); see example below + + @throw parse_error.108 if a tilde (`~`) in the given JSON pointer @a s is + not followed by `0` (representing `~`) or `1` (representing `/`); see + example below + + @liveexample{The example shows the construction several valid JSON pointers + as well as the exceptional behavior.,json_pointer} + + @since version 2.0.0 + */ + explicit json_pointer(const std::string& s = "") + : reference_tokens(split(s)) + {} + + /*! + @brief return a string representation of the JSON pointer + + @invariant For each JSON pointer `ptr`, it holds: + @code {.cpp} + ptr == json_pointer(ptr.to_string()); + @endcode + + @return a string representation of the JSON pointer + + @liveexample{The example shows the result of `to_string`.,json_pointer__to_string} + + @since version 2.0.0 + */ + std::string to_string() const + { + return std::accumulate(reference_tokens.begin(), reference_tokens.end(), + std::string{}, + [](const std::string & a, const std::string & b) + { + return a + "/" + escape(b); + }); + } + + /// @copydoc to_string() + operator std::string() const + { + return to_string(); + } + + /*! + @brief append another JSON pointer at the end of this JSON pointer + + @param[in] ptr JSON pointer to append + @return JSON pointer with @a ptr appended + + @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} + + @complexity Linear in the length of @a ptr. + + @sa @ref operator/=(std::string) to append a reference token + @sa @ref operator/=(std::size_t) to append an array index + @sa @ref operator/(const json_pointer&, const json_pointer&) for a binary operator + + @since version 3.6.0 + */ + json_pointer& operator/=(const json_pointer& ptr) + { + reference_tokens.insert(reference_tokens.end(), + ptr.reference_tokens.begin(), + ptr.reference_tokens.end()); + return *this; + } + + /*! + @brief append an unescaped reference token at the end of this JSON pointer + + @param[in] token reference token to append + @return JSON pointer with @a token appended without escaping @a token + + @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} + + @complexity Amortized constant. + + @sa @ref operator/=(const json_pointer&) to append a JSON pointer + @sa @ref operator/=(std::size_t) to append an array index + @sa @ref operator/(const json_pointer&, std::size_t) for a binary operator + + @since version 3.6.0 + */ + json_pointer& operator/=(std::string token) + { + push_back(std::move(token)); + return *this; + } + + /*! + @brief append an array index at the end of this JSON pointer + + @param[in] array_idx array index to append + @return JSON pointer with @a array_idx appended + + @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} + + @complexity Amortized constant. + + @sa @ref operator/=(const json_pointer&) to append a JSON pointer + @sa @ref operator/=(std::string) to append a reference token + @sa @ref operator/(const json_pointer&, std::string) for a binary operator + + @since version 3.6.0 + */ + json_pointer& operator/=(std::size_t array_idx) + { + return *this /= std::to_string(array_idx); + } + + /*! + @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer + + @param[in] lhs JSON pointer + @param[in] rhs JSON pointer + @return a new JSON pointer with @a rhs appended to @a lhs + + @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} + + @complexity Linear in the length of @a lhs and @a rhs. + + @sa @ref operator/=(const json_pointer&) to append a JSON pointer + + @since version 3.6.0 + */ + friend json_pointer operator/(const json_pointer& lhs, + const json_pointer& rhs) + { + return json_pointer(lhs) /= rhs; + } + + /*! + @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer + + @param[in] ptr JSON pointer + @param[in] token reference token + @return a new JSON pointer with unescaped @a token appended to @a ptr + + @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} + + @complexity Linear in the length of @a ptr. + + @sa @ref operator/=(std::string) to append a reference token + + @since version 3.6.0 + */ + friend json_pointer operator/(const json_pointer& ptr, std::string token) + { + return json_pointer(ptr) /= std::move(token); + } + + /*! + @brief create a new JSON pointer by appending the array-index-token at the end of the JSON pointer + + @param[in] ptr JSON pointer + @param[in] array_idx array index + @return a new JSON pointer with @a array_idx appended to @a ptr + + @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} + + @complexity Linear in the length of @a ptr. + + @sa @ref operator/=(std::size_t) to append an array index + + @since version 3.6.0 + */ + friend json_pointer operator/(const json_pointer& ptr, std::size_t array_idx) + { + return json_pointer(ptr) /= array_idx; + } + + /*! + @brief returns the parent of this JSON pointer + + @return parent of this JSON pointer; in case this JSON pointer is the root, + the root itself is returned + + @complexity Linear in the length of the JSON pointer. + + @liveexample{The example shows the result of `parent_pointer` for different + JSON Pointers.,json_pointer__parent_pointer} + + @since version 3.6.0 + */ + json_pointer parent_pointer() const + { + if (empty()) + { + return *this; + } + + json_pointer res = *this; + res.pop_back(); + return res; + } + + /*! + @brief remove last reference token + + @pre not `empty()` + + @liveexample{The example shows the usage of `pop_back`.,json_pointer__pop_back} + + @complexity Constant. + + @throw out_of_range.405 if JSON pointer has no parent + + @since version 3.6.0 + */ + void pop_back() + { + if (JSON_HEDLEY_UNLIKELY(empty())) + { + JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); + } + + reference_tokens.pop_back(); + } + + /*! + @brief return last reference token + + @pre not `empty()` + @return last reference token + + @liveexample{The example shows the usage of `back`.,json_pointer__back} + + @complexity Constant. + + @throw out_of_range.405 if JSON pointer has no parent + + @since version 3.6.0 + */ + const std::string& back() const + { + if (JSON_HEDLEY_UNLIKELY(empty())) + { + JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); + } + + return reference_tokens.back(); + } + + /*! + @brief append an unescaped token at the end of the reference pointer + + @param[in] token token to add + + @complexity Amortized constant. + + @liveexample{The example shows the result of `push_back` for different + JSON Pointers.,json_pointer__push_back} + + @since version 3.6.0 + */ + void push_back(const std::string& token) + { + reference_tokens.push_back(token); + } + + /// @copydoc push_back(const std::string&) + void push_back(std::string&& token) + { + reference_tokens.push_back(std::move(token)); + } + + /*! + @brief return whether pointer points to the root document + + @return true iff the JSON pointer points to the root document + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example shows the result of `empty` for different JSON + Pointers.,json_pointer__empty} + + @since version 3.6.0 + */ + bool empty() const noexcept + { + return reference_tokens.empty(); + } + + private: + /*! + @param[in] s reference token to be converted into an array index + + @return integer representation of @a s + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index begins not with a digit + @throw out_of_range.404 if string @a s could not be converted to an integer + @throw out_of_range.410 if an array index exceeds size_type + */ + static typename BasicJsonType::size_type array_index(const std::string& s) + { + using size_type = typename BasicJsonType::size_type; + + // error condition (cf. RFC 6901, Sect. 4) + if (JSON_HEDLEY_UNLIKELY(s.size() > 1 && s[0] == '0')) + { + JSON_THROW(detail::parse_error::create(106, 0, + "array index '" + s + + "' must not begin with '0'")); + } + + // error condition (cf. RFC 6901, Sect. 4) + if (JSON_HEDLEY_UNLIKELY(s.size() > 1 && !(s[0] >= '1' && s[0] <= '9'))) + { + JSON_THROW(detail::parse_error::create(109, 0, "array index '" + s + "' is not a number")); + } + + std::size_t processed_chars = 0; + unsigned long long res = 0; + JSON_TRY + { + res = std::stoull(s, &processed_chars); + } + JSON_CATCH(std::out_of_range&) + { + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); + } + + // check if the string was completely read + if (JSON_HEDLEY_UNLIKELY(processed_chars != s.size())) + { + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); + } + + // only triggered on special platforms (like 32bit), see also + // https://github.com/nlohmann/json/pull/2203 + if (res >= static_cast((std::numeric_limits::max)())) + { + JSON_THROW(detail::out_of_range::create(410, "array index " + s + " exceeds size_type")); // LCOV_EXCL_LINE + } + + return static_cast(res); + } + + json_pointer top() const + { + if (JSON_HEDLEY_UNLIKELY(empty())) + { + JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); + } + + json_pointer result = *this; + result.reference_tokens = {reference_tokens[0]}; + return result; + } + + /*! + @brief create and return a reference to the pointed to value + + @complexity Linear in the number of reference tokens. + + @throw parse_error.109 if array index is not a number + @throw type_error.313 if value cannot be unflattened + */ + BasicJsonType& get_and_create(BasicJsonType& j) const + { + auto result = &j; + + // in case no reference tokens exist, return a reference to the JSON value + // j which will be overwritten by a primitive value + for (const auto& reference_token : reference_tokens) + { + switch (result->type()) + { + case detail::value_t::null: + { + if (reference_token == "0") + { + // start a new array if reference token is 0 + result = &result->operator[](0); + } + else + { + // start a new object otherwise + result = &result->operator[](reference_token); + } + break; + } + + case detail::value_t::object: + { + // create an entry in the object + result = &result->operator[](reference_token); + break; + } + + case detail::value_t::array: + { + // create an entry in the array + result = &result->operator[](array_index(reference_token)); + break; + } + + /* + The following code is only reached if there exists a reference + token _and_ the current value is primitive. In this case, we have + an error situation, because primitive values may only occur as + single value; that is, with an empty list of reference tokens. + */ + default: + JSON_THROW(detail::type_error::create(313, "invalid value to unflatten")); + } + } + + return *result; + } + + /*! + @brief return a reference to the pointed to value + + @note This version does not throw if a value is not present, but tries to + create nested values instead. For instance, calling this function + with pointer `"/this/that"` on a null value is equivalent to calling + `operator[]("this").operator[]("that")` on that value, effectively + changing the null value to an object. + + @param[in] ptr a JSON value + + @return reference to the JSON value pointed to by the JSON pointer + + @complexity Linear in the length of the JSON pointer. + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.404 if the JSON pointer can not be resolved + */ + BasicJsonType& get_unchecked(BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + // convert null values to arrays or objects before continuing + if (ptr->is_null()) + { + // check if reference token is a number + const bool nums = + std::all_of(reference_token.begin(), reference_token.end(), + [](const unsigned char x) + { + return std::isdigit(x); + }); + + // change value to array for numbers or "-" or to object otherwise + *ptr = (nums || reference_token == "-") + ? detail::value_t::array + : detail::value_t::object; + } + + switch (ptr->type()) + { + case detail::value_t::object: + { + // use unchecked object access + ptr = &ptr->operator[](reference_token); + break; + } + + case detail::value_t::array: + { + if (reference_token == "-") + { + // explicitly treat "-" as index beyond the end + ptr = &ptr->operator[](ptr->m_value.array->size()); + } + else + { + // convert array index to number; unchecked access + ptr = &ptr->operator[](array_index(reference_token)); + } + break; + } + + default: + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); + } + } + + return *ptr; + } + + /*! + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.402 if the array index '-' is used + @throw out_of_range.404 if the JSON pointer can not be resolved + */ + BasicJsonType& get_checked(BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + switch (ptr->type()) + { + case detail::value_t::object: + { + // note: at performs range check + ptr = &ptr->at(reference_token); + break; + } + + case detail::value_t::array: + { + if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) + { + // "-" always fails the range check + JSON_THROW(detail::out_of_range::create(402, + "array index '-' (" + std::to_string(ptr->m_value.array->size()) + + ") is out of range")); + } + + // note: at performs range check + ptr = &ptr->at(array_index(reference_token)); + break; + } + + default: + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); + } + } + + return *ptr; + } + + /*! + @brief return a const reference to the pointed to value + + @param[in] ptr a JSON value + + @return const reference to the JSON value pointed to by the JSON + pointer + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.402 if the array index '-' is used + @throw out_of_range.404 if the JSON pointer can not be resolved + */ + const BasicJsonType& get_unchecked(const BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + switch (ptr->type()) + { + case detail::value_t::object: + { + // use unchecked object access + ptr = &ptr->operator[](reference_token); + break; + } + + case detail::value_t::array: + { + if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) + { + // "-" cannot be used for const access + JSON_THROW(detail::out_of_range::create(402, + "array index '-' (" + std::to_string(ptr->m_value.array->size()) + + ") is out of range")); + } + + // use unchecked array access + ptr = &ptr->operator[](array_index(reference_token)); + break; + } + + default: + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); + } + } + + return *ptr; + } + + /*! + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.402 if the array index '-' is used + @throw out_of_range.404 if the JSON pointer can not be resolved + */ + const BasicJsonType& get_checked(const BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + switch (ptr->type()) + { + case detail::value_t::object: + { + // note: at performs range check + ptr = &ptr->at(reference_token); + break; + } + + case detail::value_t::array: + { + if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) + { + // "-" always fails the range check + JSON_THROW(detail::out_of_range::create(402, + "array index '-' (" + std::to_string(ptr->m_value.array->size()) + + ") is out of range")); + } + + // note: at performs range check + ptr = &ptr->at(array_index(reference_token)); + break; + } + + default: + JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); + } + } + + return *ptr; + } + + /*! + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + */ + bool contains(const BasicJsonType* ptr) const + { + for (const auto& reference_token : reference_tokens) + { + switch (ptr->type()) + { + case detail::value_t::object: + { + if (!ptr->contains(reference_token)) + { + // we did not find the key in the object + return false; + } + + ptr = &ptr->operator[](reference_token); + break; + } + + case detail::value_t::array: + { + if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) + { + // "-" always fails the range check + return false; + } + if (JSON_HEDLEY_UNLIKELY(reference_token.size() == 1 && !("0" <= reference_token && reference_token <= "9"))) + { + // invalid char + return false; + } + if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1)) + { + if (JSON_HEDLEY_UNLIKELY(!('1' <= reference_token[0] && reference_token[0] <= '9'))) + { + // first char should be between '1' and '9' + return false; + } + for (std::size_t i = 1; i < reference_token.size(); i++) + { + if (JSON_HEDLEY_UNLIKELY(!('0' <= reference_token[i] && reference_token[i] <= '9'))) + { + // other char should be between '0' and '9' + return false; + } + } + } + + const auto idx = array_index(reference_token); + if (idx >= ptr->size()) + { + // index out of range + return false; + } + + ptr = &ptr->operator[](idx); + break; + } + + default: + { + // we do not expect primitive values if there is still a + // reference token to process + return false; + } + } + } + + // no reference token left means we found a primitive value + return true; + } + + /*! + @brief split the string input to reference tokens + + @note This function is only called by the json_pointer constructor. + All exceptions below are documented there. + + @throw parse_error.107 if the pointer is not empty or begins with '/' + @throw parse_error.108 if character '~' is not followed by '0' or '1' + */ + static std::vector split(const std::string& reference_string) + { + std::vector result; + + // special case: empty reference string -> no reference tokens + if (reference_string.empty()) + { + return result; + } + + // check if nonempty reference string begins with slash + if (JSON_HEDLEY_UNLIKELY(reference_string[0] != '/')) + { + JSON_THROW(detail::parse_error::create(107, 1, + "JSON pointer must be empty or begin with '/' - was: '" + + reference_string + "'")); + } + + // extract the reference tokens: + // - slash: position of the last read slash (or end of string) + // - start: position after the previous slash + for ( + // search for the first slash after the first character + std::size_t slash = reference_string.find_first_of('/', 1), + // set the beginning of the first reference token + start = 1; + // we can stop if start == 0 (if slash == std::string::npos) + start != 0; + // set the beginning of the next reference token + // (will eventually be 0 if slash == std::string::npos) + start = (slash == std::string::npos) ? 0 : slash + 1, + // find next slash + slash = reference_string.find_first_of('/', start)) + { + // use the text between the beginning of the reference token + // (start) and the last slash (slash). + auto reference_token = reference_string.substr(start, slash - start); + + // check reference tokens are properly escaped + for (std::size_t pos = reference_token.find_first_of('~'); + pos != std::string::npos; + pos = reference_token.find_first_of('~', pos + 1)) + { + JSON_ASSERT(reference_token[pos] == '~'); + + // ~ must be followed by 0 or 1 + if (JSON_HEDLEY_UNLIKELY(pos == reference_token.size() - 1 || + (reference_token[pos + 1] != '0' && + reference_token[pos + 1] != '1'))) + { + JSON_THROW(detail::parse_error::create(108, 0, "escape character '~' must be followed with '0' or '1'")); + } + } + + // finally, store the reference token + unescape(reference_token); + result.push_back(reference_token); + } + + return result; + } + + /*! + @brief replace all occurrences of a substring by another string + + @param[in,out] s the string to manipulate; changed so that all + occurrences of @a f are replaced with @a t + @param[in] f the substring to replace with @a t + @param[in] t the string to replace @a f + + @pre The search string @a f must not be empty. **This precondition is + enforced with an assertion.** + + @since version 2.0.0 + */ + static void replace_substring(std::string& s, const std::string& f, + const std::string& t) + { + JSON_ASSERT(!f.empty()); + for (auto pos = s.find(f); // find first occurrence of f + pos != std::string::npos; // make sure f was found + s.replace(pos, f.size(), t), // replace with t, and + pos = s.find(f, pos + t.size())) // find next occurrence of f + {} + } + + /// escape "~" to "~0" and "/" to "~1" + static std::string escape(std::string s) + { + replace_substring(s, "~", "~0"); + replace_substring(s, "/", "~1"); + return s; + } + + /// unescape "~1" to tilde and "~0" to slash (order is important!) + static void unescape(std::string& s) + { + replace_substring(s, "~1", "/"); + replace_substring(s, "~0", "~"); + } + + /*! + @param[in] reference_string the reference string to the current value + @param[in] value the value to consider + @param[in,out] result the result object to insert values to + + @note Empty objects or arrays are flattened to `null`. + */ + static void flatten(const std::string& reference_string, + const BasicJsonType& value, + BasicJsonType& result) + { + switch (value.type()) + { + case detail::value_t::array: + { + if (value.m_value.array->empty()) + { + // flatten empty array as null + result[reference_string] = nullptr; + } + else + { + // iterate array and use index as reference string + for (std::size_t i = 0; i < value.m_value.array->size(); ++i) + { + flatten(reference_string + "/" + std::to_string(i), + value.m_value.array->operator[](i), result); + } + } + break; + } + + case detail::value_t::object: + { + if (value.m_value.object->empty()) + { + // flatten empty object as null + result[reference_string] = nullptr; + } + else + { + // iterate object and use keys as reference string + for (const auto& element : *value.m_value.object) + { + flatten(reference_string + "/" + escape(element.first), element.second, result); + } + } + break; + } + + default: + { + // add primitive value with its reference string + result[reference_string] = value; + break; + } + } + } + + /*! + @param[in] value flattened JSON + + @return unflattened JSON + + @throw parse_error.109 if array index is not a number + @throw type_error.314 if value is not an object + @throw type_error.315 if object values are not primitive + @throw type_error.313 if value cannot be unflattened + */ + static BasicJsonType + unflatten(const BasicJsonType& value) + { + if (JSON_HEDLEY_UNLIKELY(!value.is_object())) + { + JSON_THROW(detail::type_error::create(314, "only objects can be unflattened")); + } + + BasicJsonType result; + + // iterate the JSON object values + for (const auto& element : *value.m_value.object) + { + if (JSON_HEDLEY_UNLIKELY(!element.second.is_primitive())) + { + JSON_THROW(detail::type_error::create(315, "values in object must be primitive")); + } + + // assign value to reference pointed to by JSON pointer; Note that if + // the JSON pointer is "" (i.e., points to the whole value), function + // get_and_create returns a reference to result itself. An assignment + // will then create a primitive value. + json_pointer(element.first).get_and_create(result) = element.second; + } + + return result; + } + + /*! + @brief compares two JSON pointers for equality + + @param[in] lhs JSON pointer to compare + @param[in] rhs JSON pointer to compare + @return whether @a lhs is equal to @a rhs + + @complexity Linear in the length of the JSON pointer + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + */ + friend bool operator==(json_pointer const& lhs, + json_pointer const& rhs) noexcept + { + return lhs.reference_tokens == rhs.reference_tokens; + } + + /*! + @brief compares two JSON pointers for inequality + + @param[in] lhs JSON pointer to compare + @param[in] rhs JSON pointer to compare + @return whether @a lhs is not equal @a rhs + + @complexity Linear in the length of the JSON pointer + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + */ + friend bool operator!=(json_pointer const& lhs, + json_pointer const& rhs) noexcept + { + return !(lhs == rhs); + } + + /// the reference tokens + std::vector reference_tokens; +}; +} // namespace nlohmann + +// #include + + +#include +#include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +template +class json_ref +{ + public: + using value_type = BasicJsonType; + + json_ref(value_type&& value) + : owned_value(std::move(value)) + , value_ref(&owned_value) + , is_rvalue(true) + {} + + json_ref(const value_type& value) + : value_ref(const_cast(&value)) + , is_rvalue(false) + {} + + json_ref(std::initializer_list init) + : owned_value(init) + , value_ref(&owned_value) + , is_rvalue(true) + {} + + template < + class... Args, + enable_if_t::value, int> = 0 > + json_ref(Args && ... args) + : owned_value(std::forward(args)...) + , value_ref(&owned_value) + , is_rvalue(true) + {} + + // class should be movable only + json_ref(json_ref&&) = default; + json_ref(const json_ref&) = delete; + json_ref& operator=(const json_ref&) = delete; + json_ref& operator=(json_ref&&) = delete; + ~json_ref() = default; + + value_type moved_or_copied() const + { + if (is_rvalue) + { + return std::move(*value_ref); + } + return *value_ref; + } + + value_type const& operator*() const + { + return *static_cast(value_ref); + } + + value_type const* operator->() const + { + return static_cast(value_ref); + } + + private: + mutable value_type owned_value = nullptr; + value_type* value_ref = nullptr; + const bool is_rvalue = true; +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + +// #include + +// #include + + +#include // reverse +#include // array +#include // uint8_t, uint16_t, uint32_t, uint64_t +#include // memcpy +#include // numeric_limits +#include // string +#include // isnan, isinf + +// #include + +// #include + +// #include + + +#include // copy +#include // size_t +#include // streamsize +#include // back_inserter +#include // shared_ptr, make_shared +#include // basic_ostream +#include // basic_string +#include // vector +// #include + + +namespace nlohmann +{ +namespace detail +{ +/// abstract output adapter interface +template struct output_adapter_protocol +{ + virtual void write_character(CharType c) = 0; + virtual void write_characters(const CharType* s, std::size_t length) = 0; + virtual ~output_adapter_protocol() = default; +}; + +/// a type to simplify interfaces +template +using output_adapter_t = std::shared_ptr>; + +/// output adapter for byte vectors +template +class output_vector_adapter : public output_adapter_protocol +{ + public: + explicit output_vector_adapter(std::vector& vec) noexcept + : v(vec) + {} + + void write_character(CharType c) override + { + v.push_back(c); + } + + JSON_HEDLEY_NON_NULL(2) + void write_characters(const CharType* s, std::size_t length) override + { + std::copy(s, s + length, std::back_inserter(v)); + } + + private: + std::vector& v; +}; + +/// output adapter for output streams +template +class output_stream_adapter : public output_adapter_protocol +{ + public: + explicit output_stream_adapter(std::basic_ostream& s) noexcept + : stream(s) + {} + + void write_character(CharType c) override + { + stream.put(c); + } + + JSON_HEDLEY_NON_NULL(2) + void write_characters(const CharType* s, std::size_t length) override + { + stream.write(s, static_cast(length)); + } + + private: + std::basic_ostream& stream; +}; + +/// output adapter for basic_string +template> +class output_string_adapter : public output_adapter_protocol +{ + public: + explicit output_string_adapter(StringType& s) noexcept + : str(s) + {} + + void write_character(CharType c) override + { + str.push_back(c); + } + + JSON_HEDLEY_NON_NULL(2) + void write_characters(const CharType* s, std::size_t length) override + { + str.append(s, length); + } + + private: + StringType& str; +}; + +template> +class output_adapter +{ + public: + output_adapter(std::vector& vec) + : oa(std::make_shared>(vec)) {} + + output_adapter(std::basic_ostream& s) + : oa(std::make_shared>(s)) {} + + output_adapter(StringType& s) + : oa(std::make_shared>(s)) {} + + operator output_adapter_t() + { + return oa; + } + + private: + output_adapter_t oa = nullptr; +}; +} // namespace detail +} // namespace nlohmann + + +namespace nlohmann +{ +namespace detail +{ +/////////////////// +// binary writer // +/////////////////// + +/*! +@brief serialization to CBOR and MessagePack values +*/ +template +class binary_writer +{ + using string_t = typename BasicJsonType::string_t; + using binary_t = typename BasicJsonType::binary_t; + using number_float_t = typename BasicJsonType::number_float_t; + + public: + /*! + @brief create a binary writer + + @param[in] adapter output adapter to write to + */ + explicit binary_writer(output_adapter_t adapter) : oa(adapter) + { + JSON_ASSERT(oa); + } + + /*! + @param[in] j JSON value to serialize + @pre j.type() == value_t::object + */ + void write_bson(const BasicJsonType& j) + { + switch (j.type()) + { + case value_t::object: + { + write_bson_object(*j.m_value.object); + break; + } + + default: + { + JSON_THROW(type_error::create(317, "to serialize to BSON, top-level type must be object, but is " + std::string(j.type_name()))); + } + } + } + + /*! + @param[in] j JSON value to serialize + */ + void write_cbor(const BasicJsonType& j) + { + switch (j.type()) + { + case value_t::null: + { + oa->write_character(to_char_type(0xF6)); + break; + } + + case value_t::boolean: + { + oa->write_character(j.m_value.boolean + ? to_char_type(0xF5) + : to_char_type(0xF4)); + break; + } + + case value_t::number_integer: + { + if (j.m_value.number_integer >= 0) + { + // CBOR does not differentiate between positive signed + // integers and unsigned integers. Therefore, we used the + // code from the value_t::number_unsigned case here. + if (j.m_value.number_integer <= 0x17) + { + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x18)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x19)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x1A)); + write_number(static_cast(j.m_value.number_integer)); + } + else + { + oa->write_character(to_char_type(0x1B)); + write_number(static_cast(j.m_value.number_integer)); + } + } + else + { + // The conversions below encode the sign in the first + // byte, and the value is converted to a positive number. + const auto positive_number = -1 - j.m_value.number_integer; + if (j.m_value.number_integer >= -24) + { + write_number(static_cast(0x20 + positive_number)); + } + else if (positive_number <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x38)); + write_number(static_cast(positive_number)); + } + else if (positive_number <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x39)); + write_number(static_cast(positive_number)); + } + else if (positive_number <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x3A)); + write_number(static_cast(positive_number)); + } + else + { + oa->write_character(to_char_type(0x3B)); + write_number(static_cast(positive_number)); + } + } + break; + } + + case value_t::number_unsigned: + { + if (j.m_value.number_unsigned <= 0x17) + { + write_number(static_cast(j.m_value.number_unsigned)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x18)); + write_number(static_cast(j.m_value.number_unsigned)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x19)); + write_number(static_cast(j.m_value.number_unsigned)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x1A)); + write_number(static_cast(j.m_value.number_unsigned)); + } + else + { + oa->write_character(to_char_type(0x1B)); + write_number(static_cast(j.m_value.number_unsigned)); + } + break; + } + + case value_t::number_float: + { + if (std::isnan(j.m_value.number_float)) + { + // NaN is 0xf97e00 in CBOR + oa->write_character(to_char_type(0xF9)); + oa->write_character(to_char_type(0x7E)); + oa->write_character(to_char_type(0x00)); + } + else if (std::isinf(j.m_value.number_float)) + { + // Infinity is 0xf97c00, -Infinity is 0xf9fc00 + oa->write_character(to_char_type(0xf9)); + oa->write_character(j.m_value.number_float > 0 ? to_char_type(0x7C) : to_char_type(0xFC)); + oa->write_character(to_char_type(0x00)); + } + else + { + write_compact_float(j.m_value.number_float, detail::input_format_t::cbor); + } + break; + } + + case value_t::string: + { + // step 1: write control byte and the string length + const auto N = j.m_value.string->size(); + if (N <= 0x17) + { + write_number(static_cast(0x60 + N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x78)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x79)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x7A)); + write_number(static_cast(N)); + } + // LCOV_EXCL_START + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x7B)); + write_number(static_cast(N)); + } + // LCOV_EXCL_STOP + + // step 2: write the string + oa->write_characters( + reinterpret_cast(j.m_value.string->c_str()), + j.m_value.string->size()); + break; + } + + case value_t::array: + { + // step 1: write control byte and the array size + const auto N = j.m_value.array->size(); + if (N <= 0x17) + { + write_number(static_cast(0x80 + N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x98)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x99)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x9A)); + write_number(static_cast(N)); + } + // LCOV_EXCL_START + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x9B)); + write_number(static_cast(N)); + } + // LCOV_EXCL_STOP + + // step 2: write each element + for (const auto& el : *j.m_value.array) + { + write_cbor(el); + } + break; + } + + case value_t::binary: + { + if (j.m_value.binary->has_subtype()) + { + write_number(static_cast(0xd8)); + write_number(j.m_value.binary->subtype()); + } + + // step 1: write control byte and the binary array size + const auto N = j.m_value.binary->size(); + if (N <= 0x17) + { + write_number(static_cast(0x40 + N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x58)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x59)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x5A)); + write_number(static_cast(N)); + } + // LCOV_EXCL_START + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0x5B)); + write_number(static_cast(N)); + } + // LCOV_EXCL_STOP + + // step 2: write each element + oa->write_characters( + reinterpret_cast(j.m_value.binary->data()), + N); + + break; + } + + case value_t::object: + { + // step 1: write control byte and the object size + const auto N = j.m_value.object->size(); + if (N <= 0x17) + { + write_number(static_cast(0xA0 + N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0xB8)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0xB9)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0xBA)); + write_number(static_cast(N)); + } + // LCOV_EXCL_START + else if (N <= (std::numeric_limits::max)()) + { + oa->write_character(to_char_type(0xBB)); + write_number(static_cast(N)); + } + // LCOV_EXCL_STOP + + // step 2: write each element + for (const auto& el : *j.m_value.object) + { + write_cbor(el.first); + write_cbor(el.second); + } + break; + } + + default: + break; + } + } + + /*! + @param[in] j JSON value to serialize + */ + void write_msgpack(const BasicJsonType& j) + { + switch (j.type()) + { + case value_t::null: // nil + { + oa->write_character(to_char_type(0xC0)); + break; + } + + case value_t::boolean: // true and false + { + oa->write_character(j.m_value.boolean + ? to_char_type(0xC3) + : to_char_type(0xC2)); + break; + } + + case value_t::number_integer: + { + if (j.m_value.number_integer >= 0) + { + // MessagePack does not differentiate between positive + // signed integers and unsigned integers. Therefore, we used + // the code from the value_t::number_unsigned case here. + if (j.m_value.number_unsigned < 128) + { + // positive fixnum + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 8 + oa->write_character(to_char_type(0xCC)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 16 + oa->write_character(to_char_type(0xCD)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 32 + oa->write_character(to_char_type(0xCE)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 64 + oa->write_character(to_char_type(0xCF)); + write_number(static_cast(j.m_value.number_integer)); + } + } + else + { + if (j.m_value.number_integer >= -32) + { + // negative fixnum + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer >= (std::numeric_limits::min)() && + j.m_value.number_integer <= (std::numeric_limits::max)()) + { + // int 8 + oa->write_character(to_char_type(0xD0)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer >= (std::numeric_limits::min)() && + j.m_value.number_integer <= (std::numeric_limits::max)()) + { + // int 16 + oa->write_character(to_char_type(0xD1)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer >= (std::numeric_limits::min)() && + j.m_value.number_integer <= (std::numeric_limits::max)()) + { + // int 32 + oa->write_character(to_char_type(0xD2)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_integer >= (std::numeric_limits::min)() && + j.m_value.number_integer <= (std::numeric_limits::max)()) + { + // int 64 + oa->write_character(to_char_type(0xD3)); + write_number(static_cast(j.m_value.number_integer)); + } + } + break; + } + + case value_t::number_unsigned: + { + if (j.m_value.number_unsigned < 128) + { + // positive fixnum + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 8 + oa->write_character(to_char_type(0xCC)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 16 + oa->write_character(to_char_type(0xCD)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 32 + oa->write_character(to_char_type(0xCE)); + write_number(static_cast(j.m_value.number_integer)); + } + else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) + { + // uint 64 + oa->write_character(to_char_type(0xCF)); + write_number(static_cast(j.m_value.number_integer)); + } + break; + } + + case value_t::number_float: + { + write_compact_float(j.m_value.number_float, detail::input_format_t::msgpack); + break; + } + + case value_t::string: + { + // step 1: write control byte and the string length + const auto N = j.m_value.string->size(); + if (N <= 31) + { + // fixstr + write_number(static_cast(0xA0 | N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // str 8 + oa->write_character(to_char_type(0xD9)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // str 16 + oa->write_character(to_char_type(0xDA)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // str 32 + oa->write_character(to_char_type(0xDB)); + write_number(static_cast(N)); + } + + // step 2: write the string + oa->write_characters( + reinterpret_cast(j.m_value.string->c_str()), + j.m_value.string->size()); + break; + } + + case value_t::array: + { + // step 1: write control byte and the array size + const auto N = j.m_value.array->size(); + if (N <= 15) + { + // fixarray + write_number(static_cast(0x90 | N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // array 16 + oa->write_character(to_char_type(0xDC)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // array 32 + oa->write_character(to_char_type(0xDD)); + write_number(static_cast(N)); + } + + // step 2: write each element + for (const auto& el : *j.m_value.array) + { + write_msgpack(el); + } + break; + } + + case value_t::binary: + { + // step 0: determine if the binary type has a set subtype to + // determine whether or not to use the ext or fixext types + const bool use_ext = j.m_value.binary->has_subtype(); + + // step 1: write control byte and the byte string length + const auto N = j.m_value.binary->size(); + if (N <= (std::numeric_limits::max)()) + { + std::uint8_t output_type{}; + bool fixed = true; + if (use_ext) + { + switch (N) + { + case 1: + output_type = 0xD4; // fixext 1 + break; + case 2: + output_type = 0xD5; // fixext 2 + break; + case 4: + output_type = 0xD6; // fixext 4 + break; + case 8: + output_type = 0xD7; // fixext 8 + break; + case 16: + output_type = 0xD8; // fixext 16 + break; + default: + output_type = 0xC7; // ext 8 + fixed = false; + break; + } + + } + else + { + output_type = 0xC4; // bin 8 + fixed = false; + } + + oa->write_character(to_char_type(output_type)); + if (!fixed) + { + write_number(static_cast(N)); + } + } + else if (N <= (std::numeric_limits::max)()) + { + std::uint8_t output_type = use_ext + ? 0xC8 // ext 16 + : 0xC5; // bin 16 + + oa->write_character(to_char_type(output_type)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + std::uint8_t output_type = use_ext + ? 0xC9 // ext 32 + : 0xC6; // bin 32 + + oa->write_character(to_char_type(output_type)); + write_number(static_cast(N)); + } + + // step 1.5: if this is an ext type, write the subtype + if (use_ext) + { + write_number(static_cast(j.m_value.binary->subtype())); + } + + // step 2: write the byte string + oa->write_characters( + reinterpret_cast(j.m_value.binary->data()), + N); + + break; + } + + case value_t::object: + { + // step 1: write control byte and the object size + const auto N = j.m_value.object->size(); + if (N <= 15) + { + // fixmap + write_number(static_cast(0x80 | (N & 0xF))); + } + else if (N <= (std::numeric_limits::max)()) + { + // map 16 + oa->write_character(to_char_type(0xDE)); + write_number(static_cast(N)); + } + else if (N <= (std::numeric_limits::max)()) + { + // map 32 + oa->write_character(to_char_type(0xDF)); + write_number(static_cast(N)); + } + + // step 2: write each element + for (const auto& el : *j.m_value.object) + { + write_msgpack(el.first); + write_msgpack(el.second); + } + break; + } + + default: + break; + } + } + + /*! + @param[in] j JSON value to serialize + @param[in] use_count whether to use '#' prefixes (optimized format) + @param[in] use_type whether to use '$' prefixes (optimized format) + @param[in] add_prefix whether prefixes need to be used for this value + */ + void write_ubjson(const BasicJsonType& j, const bool use_count, + const bool use_type, const bool add_prefix = true) + { + switch (j.type()) + { + case value_t::null: + { + if (add_prefix) + { + oa->write_character(to_char_type('Z')); + } + break; + } + + case value_t::boolean: + { + if (add_prefix) + { + oa->write_character(j.m_value.boolean + ? to_char_type('T') + : to_char_type('F')); + } + break; + } + + case value_t::number_integer: + { + write_number_with_ubjson_prefix(j.m_value.number_integer, add_prefix); + break; + } + + case value_t::number_unsigned: + { + write_number_with_ubjson_prefix(j.m_value.number_unsigned, add_prefix); + break; + } + + case value_t::number_float: + { + write_number_with_ubjson_prefix(j.m_value.number_float, add_prefix); + break; + } + + case value_t::string: + { + if (add_prefix) + { + oa->write_character(to_char_type('S')); + } + write_number_with_ubjson_prefix(j.m_value.string->size(), true); + oa->write_characters( + reinterpret_cast(j.m_value.string->c_str()), + j.m_value.string->size()); + break; + } + + case value_t::array: + { + if (add_prefix) + { + oa->write_character(to_char_type('[')); + } + + bool prefix_required = true; + if (use_type && !j.m_value.array->empty()) + { + JSON_ASSERT(use_count); + const CharType first_prefix = ubjson_prefix(j.front()); + const bool same_prefix = std::all_of(j.begin() + 1, j.end(), + [this, first_prefix](const BasicJsonType & v) + { + return ubjson_prefix(v) == first_prefix; + }); + + if (same_prefix) + { + prefix_required = false; + oa->write_character(to_char_type('$')); + oa->write_character(first_prefix); + } + } + + if (use_count) + { + oa->write_character(to_char_type('#')); + write_number_with_ubjson_prefix(j.m_value.array->size(), true); + } + + for (const auto& el : *j.m_value.array) + { + write_ubjson(el, use_count, use_type, prefix_required); + } + + if (!use_count) + { + oa->write_character(to_char_type(']')); + } + + break; + } + + case value_t::binary: + { + if (add_prefix) + { + oa->write_character(to_char_type('[')); + } + + if (use_type && !j.m_value.binary->empty()) + { + JSON_ASSERT(use_count); + oa->write_character(to_char_type('$')); + oa->write_character('U'); + } + + if (use_count) + { + oa->write_character(to_char_type('#')); + write_number_with_ubjson_prefix(j.m_value.binary->size(), true); + } + + if (use_type) + { + oa->write_characters( + reinterpret_cast(j.m_value.binary->data()), + j.m_value.binary->size()); + } + else + { + for (size_t i = 0; i < j.m_value.binary->size(); ++i) + { + oa->write_character(to_char_type('U')); + oa->write_character(j.m_value.binary->data()[i]); + } + } + + if (!use_count) + { + oa->write_character(to_char_type(']')); + } + + break; + } + + case value_t::object: + { + if (add_prefix) + { + oa->write_character(to_char_type('{')); + } + + bool prefix_required = true; + if (use_type && !j.m_value.object->empty()) + { + JSON_ASSERT(use_count); + const CharType first_prefix = ubjson_prefix(j.front()); + const bool same_prefix = std::all_of(j.begin(), j.end(), + [this, first_prefix](const BasicJsonType & v) + { + return ubjson_prefix(v) == first_prefix; + }); + + if (same_prefix) + { + prefix_required = false; + oa->write_character(to_char_type('$')); + oa->write_character(first_prefix); + } + } + + if (use_count) + { + oa->write_character(to_char_type('#')); + write_number_with_ubjson_prefix(j.m_value.object->size(), true); + } + + for (const auto& el : *j.m_value.object) + { + write_number_with_ubjson_prefix(el.first.size(), true); + oa->write_characters( + reinterpret_cast(el.first.c_str()), + el.first.size()); + write_ubjson(el.second, use_count, use_type, prefix_required); + } + + if (!use_count) + { + oa->write_character(to_char_type('}')); + } + + break; + } + + default: + break; + } + } + + private: + ////////// + // BSON // + ////////// + + /*! + @return The size of a BSON document entry header, including the id marker + and the entry name size (and its null-terminator). + */ + static std::size_t calc_bson_entry_header_size(const string_t& name) + { + const auto it = name.find(static_cast(0)); + if (JSON_HEDLEY_UNLIKELY(it != BasicJsonType::string_t::npos)) + { + JSON_THROW(out_of_range::create(409, + "BSON key cannot contain code point U+0000 (at byte " + std::to_string(it) + ")")); + } + + return /*id*/ 1ul + name.size() + /*zero-terminator*/1u; + } + + /*! + @brief Writes the given @a element_type and @a name to the output adapter + */ + void write_bson_entry_header(const string_t& name, + const std::uint8_t element_type) + { + oa->write_character(to_char_type(element_type)); // boolean + oa->write_characters( + reinterpret_cast(name.c_str()), + name.size() + 1u); + } + + /*! + @brief Writes a BSON element with key @a name and boolean value @a value + */ + void write_bson_boolean(const string_t& name, + const bool value) + { + write_bson_entry_header(name, 0x08); + oa->write_character(value ? to_char_type(0x01) : to_char_type(0x00)); + } + + /*! + @brief Writes a BSON element with key @a name and double value @a value + */ + void write_bson_double(const string_t& name, + const double value) + { + write_bson_entry_header(name, 0x01); + write_number(value); + } + + /*! + @return The size of the BSON-encoded string in @a value + */ + static std::size_t calc_bson_string_size(const string_t& value) + { + return sizeof(std::int32_t) + value.size() + 1ul; + } + + /*! + @brief Writes a BSON element with key @a name and string value @a value + */ + void write_bson_string(const string_t& name, + const string_t& value) + { + write_bson_entry_header(name, 0x02); + + write_number(static_cast(value.size() + 1ul)); + oa->write_characters( + reinterpret_cast(value.c_str()), + value.size() + 1); + } + + /*! + @brief Writes a BSON element with key @a name and null value + */ + void write_bson_null(const string_t& name) + { + write_bson_entry_header(name, 0x0A); + } + + /*! + @return The size of the BSON-encoded integer @a value + */ + static std::size_t calc_bson_integer_size(const std::int64_t value) + { + return (std::numeric_limits::min)() <= value && value <= (std::numeric_limits::max)() + ? sizeof(std::int32_t) + : sizeof(std::int64_t); + } + + /*! + @brief Writes a BSON element with key @a name and integer @a value + */ + void write_bson_integer(const string_t& name, + const std::int64_t value) + { + if ((std::numeric_limits::min)() <= value && value <= (std::numeric_limits::max)()) + { + write_bson_entry_header(name, 0x10); // int32 + write_number(static_cast(value)); + } + else + { + write_bson_entry_header(name, 0x12); // int64 + write_number(static_cast(value)); + } + } + + /*! + @return The size of the BSON-encoded unsigned integer in @a j + */ + static constexpr std::size_t calc_bson_unsigned_size(const std::uint64_t value) noexcept + { + return (value <= static_cast((std::numeric_limits::max)())) + ? sizeof(std::int32_t) + : sizeof(std::int64_t); + } + + /*! + @brief Writes a BSON element with key @a name and unsigned @a value + */ + void write_bson_unsigned(const string_t& name, + const std::uint64_t value) + { + if (value <= static_cast((std::numeric_limits::max)())) + { + write_bson_entry_header(name, 0x10 /* int32 */); + write_number(static_cast(value)); + } + else if (value <= static_cast((std::numeric_limits::max)())) + { + write_bson_entry_header(name, 0x12 /* int64 */); + write_number(static_cast(value)); + } + else + { + JSON_THROW(out_of_range::create(407, "integer number " + std::to_string(value) + " cannot be represented by BSON as it does not fit int64")); + } + } + + /*! + @brief Writes a BSON element with key @a name and object @a value + */ + void write_bson_object_entry(const string_t& name, + const typename BasicJsonType::object_t& value) + { + write_bson_entry_header(name, 0x03); // object + write_bson_object(value); + } + + /*! + @return The size of the BSON-encoded array @a value + */ + static std::size_t calc_bson_array_size(const typename BasicJsonType::array_t& value) + { + std::size_t array_index = 0ul; + + const std::size_t embedded_document_size = std::accumulate(std::begin(value), std::end(value), std::size_t(0), [&array_index](std::size_t result, const typename BasicJsonType::array_t::value_type & el) + { + return result + calc_bson_element_size(std::to_string(array_index++), el); + }); + + return sizeof(std::int32_t) + embedded_document_size + 1ul; + } + + /*! + @return The size of the BSON-encoded binary array @a value + */ + static std::size_t calc_bson_binary_size(const typename BasicJsonType::binary_t& value) + { + return sizeof(std::int32_t) + value.size() + 1ul; + } + + /*! + @brief Writes a BSON element with key @a name and array @a value + */ + void write_bson_array(const string_t& name, + const typename BasicJsonType::array_t& value) + { + write_bson_entry_header(name, 0x04); // array + write_number(static_cast(calc_bson_array_size(value))); + + std::size_t array_index = 0ul; + + for (const auto& el : value) + { + write_bson_element(std::to_string(array_index++), el); + } + + oa->write_character(to_char_type(0x00)); + } + + /*! + @brief Writes a BSON element with key @a name and binary value @a value + */ + void write_bson_binary(const string_t& name, + const binary_t& value) + { + write_bson_entry_header(name, 0x05); + + write_number(static_cast(value.size())); + write_number(value.has_subtype() ? value.subtype() : std::uint8_t(0x00)); + + oa->write_characters(reinterpret_cast(value.data()), value.size()); + } + + /*! + @brief Calculates the size necessary to serialize the JSON value @a j with its @a name + @return The calculated size for the BSON document entry for @a j with the given @a name. + */ + static std::size_t calc_bson_element_size(const string_t& name, + const BasicJsonType& j) + { + const auto header_size = calc_bson_entry_header_size(name); + switch (j.type()) + { + case value_t::object: + return header_size + calc_bson_object_size(*j.m_value.object); + + case value_t::array: + return header_size + calc_bson_array_size(*j.m_value.array); + + case value_t::binary: + return header_size + calc_bson_binary_size(*j.m_value.binary); + + case value_t::boolean: + return header_size + 1ul; + + case value_t::number_float: + return header_size + 8ul; + + case value_t::number_integer: + return header_size + calc_bson_integer_size(j.m_value.number_integer); + + case value_t::number_unsigned: + return header_size + calc_bson_unsigned_size(j.m_value.number_unsigned); + + case value_t::string: + return header_size + calc_bson_string_size(*j.m_value.string); + + case value_t::null: + return header_size + 0ul; + + // LCOV_EXCL_START + default: + JSON_ASSERT(false); + return 0ul; + // LCOV_EXCL_STOP + } + } + + /*! + @brief Serializes the JSON value @a j to BSON and associates it with the + key @a name. + @param name The name to associate with the JSON entity @a j within the + current BSON document + @return The size of the BSON entry + */ + void write_bson_element(const string_t& name, + const BasicJsonType& j) + { + switch (j.type()) + { + case value_t::object: + return write_bson_object_entry(name, *j.m_value.object); + + case value_t::array: + return write_bson_array(name, *j.m_value.array); + + case value_t::binary: + return write_bson_binary(name, *j.m_value.binary); + + case value_t::boolean: + return write_bson_boolean(name, j.m_value.boolean); + + case value_t::number_float: + return write_bson_double(name, j.m_value.number_float); + + case value_t::number_integer: + return write_bson_integer(name, j.m_value.number_integer); + + case value_t::number_unsigned: + return write_bson_unsigned(name, j.m_value.number_unsigned); + + case value_t::string: + return write_bson_string(name, *j.m_value.string); + + case value_t::null: + return write_bson_null(name); + + // LCOV_EXCL_START + default: + JSON_ASSERT(false); + return; + // LCOV_EXCL_STOP + } + } + + /*! + @brief Calculates the size of the BSON serialization of the given + JSON-object @a j. + @param[in] j JSON value to serialize + @pre j.type() == value_t::object + */ + static std::size_t calc_bson_object_size(const typename BasicJsonType::object_t& value) + { + std::size_t document_size = std::accumulate(value.begin(), value.end(), std::size_t(0), + [](size_t result, const typename BasicJsonType::object_t::value_type & el) + { + return result += calc_bson_element_size(el.first, el.second); + }); + + return sizeof(std::int32_t) + document_size + 1ul; + } + + /*! + @param[in] j JSON value to serialize + @pre j.type() == value_t::object + */ + void write_bson_object(const typename BasicJsonType::object_t& value) + { + write_number(static_cast(calc_bson_object_size(value))); + + for (const auto& el : value) + { + write_bson_element(el.first, el.second); + } + + oa->write_character(to_char_type(0x00)); + } + + ////////// + // CBOR // + ////////// + + static constexpr CharType get_cbor_float_prefix(float /*unused*/) + { + return to_char_type(0xFA); // Single-Precision Float + } + + static constexpr CharType get_cbor_float_prefix(double /*unused*/) + { + return to_char_type(0xFB); // Double-Precision Float + } + + ///////////// + // MsgPack // + ///////////// + + static constexpr CharType get_msgpack_float_prefix(float /*unused*/) + { + return to_char_type(0xCA); // float 32 + } + + static constexpr CharType get_msgpack_float_prefix(double /*unused*/) + { + return to_char_type(0xCB); // float 64 + } + + //////////// + // UBJSON // + //////////// + + // UBJSON: write number (floating point) + template::value, int>::type = 0> + void write_number_with_ubjson_prefix(const NumberType n, + const bool add_prefix) + { + if (add_prefix) + { + oa->write_character(get_ubjson_float_prefix(n)); + } + write_number(n); + } + + // UBJSON: write number (unsigned integer) + template::value, int>::type = 0> + void write_number_with_ubjson_prefix(const NumberType n, + const bool add_prefix) + { + if (n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('i')); // int8 + } + write_number(static_cast(n)); + } + else if (n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('U')); // uint8 + } + write_number(static_cast(n)); + } + else if (n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('I')); // int16 + } + write_number(static_cast(n)); + } + else if (n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('l')); // int32 + } + write_number(static_cast(n)); + } + else if (n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('L')); // int64 + } + write_number(static_cast(n)); + } + else + { + if (add_prefix) + { + oa->write_character(to_char_type('H')); // high-precision number + } + + const auto number = BasicJsonType(n).dump(); + write_number_with_ubjson_prefix(number.size(), true); + for (std::size_t i = 0; i < number.size(); ++i) + { + oa->write_character(to_char_type(static_cast(number[i]))); + } + } + } + + // UBJSON: write number (signed integer) + template < typename NumberType, typename std::enable_if < + std::is_signed::value&& + !std::is_floating_point::value, int >::type = 0 > + void write_number_with_ubjson_prefix(const NumberType n, + const bool add_prefix) + { + if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('i')); // int8 + } + write_number(static_cast(n)); + } + else if (static_cast((std::numeric_limits::min)()) <= n && n <= static_cast((std::numeric_limits::max)())) + { + if (add_prefix) + { + oa->write_character(to_char_type('U')); // uint8 + } + write_number(static_cast(n)); + } + else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('I')); // int16 + } + write_number(static_cast(n)); + } + else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('l')); // int32 + } + write_number(static_cast(n)); + } + else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) + { + if (add_prefix) + { + oa->write_character(to_char_type('L')); // int64 + } + write_number(static_cast(n)); + } + // LCOV_EXCL_START + else + { + if (add_prefix) + { + oa->write_character(to_char_type('H')); // high-precision number + } + + const auto number = BasicJsonType(n).dump(); + write_number_with_ubjson_prefix(number.size(), true); + for (std::size_t i = 0; i < number.size(); ++i) + { + oa->write_character(to_char_type(static_cast(number[i]))); + } + } + // LCOV_EXCL_STOP + } + + /*! + @brief determine the type prefix of container values + */ + CharType ubjson_prefix(const BasicJsonType& j) const noexcept + { + switch (j.type()) + { + case value_t::null: + return 'Z'; + + case value_t::boolean: + return j.m_value.boolean ? 'T' : 'F'; + + case value_t::number_integer: + { + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'i'; + } + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'U'; + } + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'I'; + } + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'l'; + } + if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) + { + return 'L'; + } + // anything else is treated as high-precision number + return 'H'; // LCOV_EXCL_LINE + } + + case value_t::number_unsigned: + { + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'i'; + } + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'U'; + } + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'I'; + } + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'l'; + } + if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) + { + return 'L'; + } + // anything else is treated as high-precision number + return 'H'; // LCOV_EXCL_LINE + } + + case value_t::number_float: + return get_ubjson_float_prefix(j.m_value.number_float); + + case value_t::string: + return 'S'; + + case value_t::array: // fallthrough + case value_t::binary: + return '['; + + case value_t::object: + return '{'; + + default: // discarded values + return 'N'; + } + } + + static constexpr CharType get_ubjson_float_prefix(float /*unused*/) + { + return 'd'; // float 32 + } + + static constexpr CharType get_ubjson_float_prefix(double /*unused*/) + { + return 'D'; // float 64 + } + + /////////////////////// + // Utility functions // + /////////////////////// + + /* + @brief write a number to output input + @param[in] n number of type @a NumberType + @tparam NumberType the type of the number + @tparam OutputIsLittleEndian Set to true if output data is + required to be little endian + + @note This function needs to respect the system's endianess, because bytes + in CBOR, MessagePack, and UBJSON are stored in network order (big + endian) and therefore need reordering on little endian systems. + */ + template + void write_number(const NumberType n) + { + // step 1: write number to array of length NumberType + std::array vec; + std::memcpy(vec.data(), &n, sizeof(NumberType)); + + // step 2: write array to output (with possible reordering) + if (is_little_endian != OutputIsLittleEndian) + { + // reverse byte order prior to conversion if necessary + std::reverse(vec.begin(), vec.end()); + } + + oa->write_characters(vec.data(), sizeof(NumberType)); + } + + void write_compact_float(const number_float_t n, detail::input_format_t format) + { + if (static_cast(n) >= static_cast(std::numeric_limits::lowest()) && + static_cast(n) <= static_cast((std::numeric_limits::max)()) && + static_cast(static_cast(n)) == static_cast(n)) + { + oa->write_character(format == detail::input_format_t::cbor + ? get_cbor_float_prefix(static_cast(n)) + : get_msgpack_float_prefix(static_cast(n))); + write_number(static_cast(n)); + } + else + { + oa->write_character(format == detail::input_format_t::cbor + ? get_cbor_float_prefix(n) + : get_msgpack_float_prefix(n)); + write_number(n); + } + } + + public: + // The following to_char_type functions are implement the conversion + // between uint8_t and CharType. In case CharType is not unsigned, + // such a conversion is required to allow values greater than 128. + // See for a discussion. + template < typename C = CharType, + enable_if_t < std::is_signed::value && std::is_signed::value > * = nullptr > + static constexpr CharType to_char_type(std::uint8_t x) noexcept + { + return *reinterpret_cast(&x); + } + + template < typename C = CharType, + enable_if_t < std::is_signed::value && std::is_unsigned::value > * = nullptr > + static CharType to_char_type(std::uint8_t x) noexcept + { + static_assert(sizeof(std::uint8_t) == sizeof(CharType), "size of CharType must be equal to std::uint8_t"); + static_assert(std::is_trivial::value, "CharType must be trivial"); + CharType result; + std::memcpy(&result, &x, sizeof(x)); + return result; + } + + template::value>* = nullptr> + static constexpr CharType to_char_type(std::uint8_t x) noexcept + { + return x; + } + + template < typename InputCharType, typename C = CharType, + enable_if_t < + std::is_signed::value && + std::is_signed::value && + std::is_same::type>::value + > * = nullptr > + static constexpr CharType to_char_type(InputCharType x) noexcept + { + return x; + } + + private: + /// whether we can assume little endianess + const bool is_little_endian = little_endianess(); + + /// the output + output_adapter_t oa = nullptr; +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + + +#include // reverse, remove, fill, find, none_of +#include // array +#include // localeconv, lconv +#include // labs, isfinite, isnan, signbit +#include // size_t, ptrdiff_t +#include // uint8_t +#include // snprintf +#include // numeric_limits +#include // string, char_traits +#include // is_same +#include // move + +// #include + + +#include // array +#include // signbit, isfinite +#include // intN_t, uintN_t +#include // memcpy, memmove +#include // numeric_limits +#include // conditional + +// #include + + +namespace nlohmann +{ +namespace detail +{ + +/*! +@brief implements the Grisu2 algorithm for binary to decimal floating-point +conversion. + +This implementation is a slightly modified version of the reference +implementation which may be obtained from +http://florian.loitsch.com/publications (bench.tar.gz). + +The code is distributed under the MIT license, Copyright (c) 2009 Florian Loitsch. + +For a detailed description of the algorithm see: + +[1] Loitsch, "Printing Floating-Point Numbers Quickly and Accurately with + Integers", Proceedings of the ACM SIGPLAN 2010 Conference on Programming + Language Design and Implementation, PLDI 2010 +[2] Burger, Dybvig, "Printing Floating-Point Numbers Quickly and Accurately", + Proceedings of the ACM SIGPLAN 1996 Conference on Programming Language + Design and Implementation, PLDI 1996 +*/ +namespace dtoa_impl +{ + +template +Target reinterpret_bits(const Source source) +{ + static_assert(sizeof(Target) == sizeof(Source), "size mismatch"); + + Target target; + std::memcpy(&target, &source, sizeof(Source)); + return target; +} + +struct diyfp // f * 2^e +{ + static constexpr int kPrecision = 64; // = q + + std::uint64_t f = 0; + int e = 0; + + constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} + + /*! + @brief returns x - y + @pre x.e == y.e and x.f >= y.f + */ + static diyfp sub(const diyfp& x, const diyfp& y) noexcept + { + JSON_ASSERT(x.e == y.e); + JSON_ASSERT(x.f >= y.f); + + return {x.f - y.f, x.e}; + } + + /*! + @brief returns x * y + @note The result is rounded. (Only the upper q bits are returned.) + */ + static diyfp mul(const diyfp& x, const diyfp& y) noexcept + { + static_assert(kPrecision == 64, "internal error"); + + // Computes: + // f = round((x.f * y.f) / 2^q) + // e = x.e + y.e + q + + // Emulate the 64-bit * 64-bit multiplication: + // + // p = u * v + // = (u_lo + 2^32 u_hi) (v_lo + 2^32 v_hi) + // = (u_lo v_lo ) + 2^32 ((u_lo v_hi ) + (u_hi v_lo )) + 2^64 (u_hi v_hi ) + // = (p0 ) + 2^32 ((p1 ) + (p2 )) + 2^64 (p3 ) + // = (p0_lo + 2^32 p0_hi) + 2^32 ((p1_lo + 2^32 p1_hi) + (p2_lo + 2^32 p2_hi)) + 2^64 (p3 ) + // = (p0_lo ) + 2^32 (p0_hi + p1_lo + p2_lo ) + 2^64 (p1_hi + p2_hi + p3) + // = (p0_lo ) + 2^32 (Q ) + 2^64 (H ) + // = (p0_lo ) + 2^32 (Q_lo + 2^32 Q_hi ) + 2^64 (H ) + // + // (Since Q might be larger than 2^32 - 1) + // + // = (p0_lo + 2^32 Q_lo) + 2^64 (Q_hi + H) + // + // (Q_hi + H does not overflow a 64-bit int) + // + // = p_lo + 2^64 p_hi + + const std::uint64_t u_lo = x.f & 0xFFFFFFFFu; + const std::uint64_t u_hi = x.f >> 32u; + const std::uint64_t v_lo = y.f & 0xFFFFFFFFu; + const std::uint64_t v_hi = y.f >> 32u; + + const std::uint64_t p0 = u_lo * v_lo; + const std::uint64_t p1 = u_lo * v_hi; + const std::uint64_t p2 = u_hi * v_lo; + const std::uint64_t p3 = u_hi * v_hi; + + const std::uint64_t p0_hi = p0 >> 32u; + const std::uint64_t p1_lo = p1 & 0xFFFFFFFFu; + const std::uint64_t p1_hi = p1 >> 32u; + const std::uint64_t p2_lo = p2 & 0xFFFFFFFFu; + const std::uint64_t p2_hi = p2 >> 32u; + + std::uint64_t Q = p0_hi + p1_lo + p2_lo; + + // The full product might now be computed as + // + // p_hi = p3 + p2_hi + p1_hi + (Q >> 32) + // p_lo = p0_lo + (Q << 32) + // + // But in this particular case here, the full p_lo is not required. + // Effectively we only need to add the highest bit in p_lo to p_hi (and + // Q_hi + 1 does not overflow). + + Q += std::uint64_t{1} << (64u - 32u - 1u); // round, ties up + + const std::uint64_t h = p3 + p2_hi + p1_hi + (Q >> 32u); + + return {h, x.e + y.e + 64}; + } + + /*! + @brief normalize x such that the significand is >= 2^(q-1) + @pre x.f != 0 + */ + static diyfp normalize(diyfp x) noexcept + { + JSON_ASSERT(x.f != 0); + + while ((x.f >> 63u) == 0) + { + x.f <<= 1u; + x.e--; + } + + return x; + } + + /*! + @brief normalize x such that the result has the exponent E + @pre e >= x.e and the upper e - x.e bits of x.f must be zero. + */ + static diyfp normalize_to(const diyfp& x, const int target_exponent) noexcept + { + const int delta = x.e - target_exponent; + + JSON_ASSERT(delta >= 0); + JSON_ASSERT(((x.f << delta) >> delta) == x.f); + + return {x.f << delta, target_exponent}; + } +}; + +struct boundaries +{ + diyfp w; + diyfp minus; + diyfp plus; +}; + +/*! +Compute the (normalized) diyfp representing the input number 'value' and its +boundaries. + +@pre value must be finite and positive +*/ +template +boundaries compute_boundaries(FloatType value) +{ + JSON_ASSERT(std::isfinite(value)); + JSON_ASSERT(value > 0); + + // Convert the IEEE representation into a diyfp. + // + // If v is denormal: + // value = 0.F * 2^(1 - bias) = ( F) * 2^(1 - bias - (p-1)) + // If v is normalized: + // value = 1.F * 2^(E - bias) = (2^(p-1) + F) * 2^(E - bias - (p-1)) + + static_assert(std::numeric_limits::is_iec559, + "internal error: dtoa_short requires an IEEE-754 floating-point implementation"); + + constexpr int kPrecision = std::numeric_limits::digits; // = p (includes the hidden bit) + constexpr int kBias = std::numeric_limits::max_exponent - 1 + (kPrecision - 1); + constexpr int kMinExp = 1 - kBias; + constexpr std::uint64_t kHiddenBit = std::uint64_t{1} << (kPrecision - 1); // = 2^(p-1) + + using bits_type = typename std::conditional::type; + + const std::uint64_t bits = reinterpret_bits(value); + const std::uint64_t E = bits >> (kPrecision - 1); + const std::uint64_t F = bits & (kHiddenBit - 1); + + const bool is_denormal = E == 0; + const diyfp v = is_denormal + ? diyfp(F, kMinExp) + : diyfp(F + kHiddenBit, static_cast(E) - kBias); + + // Compute the boundaries m- and m+ of the floating-point value + // v = f * 2^e. + // + // Determine v- and v+, the floating-point predecessor and successor if v, + // respectively. + // + // v- = v - 2^e if f != 2^(p-1) or e == e_min (A) + // = v - 2^(e-1) if f == 2^(p-1) and e > e_min (B) + // + // v+ = v + 2^e + // + // Let m- = (v- + v) / 2 and m+ = (v + v+) / 2. All real numbers _strictly_ + // between m- and m+ round to v, regardless of how the input rounding + // algorithm breaks ties. + // + // ---+-------------+-------------+-------------+-------------+--- (A) + // v- m- v m+ v+ + // + // -----------------+------+------+-------------+-------------+--- (B) + // v- m- v m+ v+ + + const bool lower_boundary_is_closer = F == 0 && E > 1; + const diyfp m_plus = diyfp(2 * v.f + 1, v.e - 1); + const diyfp m_minus = lower_boundary_is_closer + ? diyfp(4 * v.f - 1, v.e - 2) // (B) + : diyfp(2 * v.f - 1, v.e - 1); // (A) + + // Determine the normalized w+ = m+. + const diyfp w_plus = diyfp::normalize(m_plus); + + // Determine w- = m- such that e_(w-) = e_(w+). + const diyfp w_minus = diyfp::normalize_to(m_minus, w_plus.e); + + return {diyfp::normalize(v), w_minus, w_plus}; +} + +// Given normalized diyfp w, Grisu needs to find a (normalized) cached +// power-of-ten c, such that the exponent of the product c * w = f * 2^e lies +// within a certain range [alpha, gamma] (Definition 3.2 from [1]) +// +// alpha <= e = e_c + e_w + q <= gamma +// +// or +// +// f_c * f_w * 2^alpha <= f_c 2^(e_c) * f_w 2^(e_w) * 2^q +// <= f_c * f_w * 2^gamma +// +// Since c and w are normalized, i.e. 2^(q-1) <= f < 2^q, this implies +// +// 2^(q-1) * 2^(q-1) * 2^alpha <= c * w * 2^q < 2^q * 2^q * 2^gamma +// +// or +// +// 2^(q - 2 + alpha) <= c * w < 2^(q + gamma) +// +// The choice of (alpha,gamma) determines the size of the table and the form of +// the digit generation procedure. Using (alpha,gamma)=(-60,-32) works out well +// in practice: +// +// The idea is to cut the number c * w = f * 2^e into two parts, which can be +// processed independently: An integral part p1, and a fractional part p2: +// +// f * 2^e = ( (f div 2^-e) * 2^-e + (f mod 2^-e) ) * 2^e +// = (f div 2^-e) + (f mod 2^-e) * 2^e +// = p1 + p2 * 2^e +// +// The conversion of p1 into decimal form requires a series of divisions and +// modulos by (a power of) 10. These operations are faster for 32-bit than for +// 64-bit integers, so p1 should ideally fit into a 32-bit integer. This can be +// achieved by choosing +// +// -e >= 32 or e <= -32 := gamma +// +// In order to convert the fractional part +// +// p2 * 2^e = p2 / 2^-e = d[-1] / 10^1 + d[-2] / 10^2 + ... +// +// into decimal form, the fraction is repeatedly multiplied by 10 and the digits +// d[-i] are extracted in order: +// +// (10 * p2) div 2^-e = d[-1] +// (10 * p2) mod 2^-e = d[-2] / 10^1 + ... +// +// The multiplication by 10 must not overflow. It is sufficient to choose +// +// 10 * p2 < 16 * p2 = 2^4 * p2 <= 2^64. +// +// Since p2 = f mod 2^-e < 2^-e, +// +// -e <= 60 or e >= -60 := alpha + +constexpr int kAlpha = -60; +constexpr int kGamma = -32; + +struct cached_power // c = f * 2^e ~= 10^k +{ + std::uint64_t f; + int e; + int k; +}; + +/*! +For a normalized diyfp w = f * 2^e, this function returns a (normalized) cached +power-of-ten c = f_c * 2^e_c, such that the exponent of the product w * c +satisfies (Definition 3.2 from [1]) + + alpha <= e_c + e + q <= gamma. +*/ +inline cached_power get_cached_power_for_binary_exponent(int e) +{ + // Now + // + // alpha <= e_c + e + q <= gamma (1) + // ==> f_c * 2^alpha <= c * 2^e * 2^q + // + // and since the c's are normalized, 2^(q-1) <= f_c, + // + // ==> 2^(q - 1 + alpha) <= c * 2^(e + q) + // ==> 2^(alpha - e - 1) <= c + // + // If c were an exact power of ten, i.e. c = 10^k, one may determine k as + // + // k = ceil( log_10( 2^(alpha - e - 1) ) ) + // = ceil( (alpha - e - 1) * log_10(2) ) + // + // From the paper: + // "In theory the result of the procedure could be wrong since c is rounded, + // and the computation itself is approximated [...]. In practice, however, + // this simple function is sufficient." + // + // For IEEE double precision floating-point numbers converted into + // normalized diyfp's w = f * 2^e, with q = 64, + // + // e >= -1022 (min IEEE exponent) + // -52 (p - 1) + // -52 (p - 1, possibly normalize denormal IEEE numbers) + // -11 (normalize the diyfp) + // = -1137 + // + // and + // + // e <= +1023 (max IEEE exponent) + // -52 (p - 1) + // -11 (normalize the diyfp) + // = 960 + // + // This binary exponent range [-1137,960] results in a decimal exponent + // range [-307,324]. One does not need to store a cached power for each + // k in this range. For each such k it suffices to find a cached power + // such that the exponent of the product lies in [alpha,gamma]. + // This implies that the difference of the decimal exponents of adjacent + // table entries must be less than or equal to + // + // floor( (gamma - alpha) * log_10(2) ) = 8. + // + // (A smaller distance gamma-alpha would require a larger table.) + + // NB: + // Actually this function returns c, such that -60 <= e_c + e + 64 <= -34. + + constexpr int kCachedPowersMinDecExp = -300; + constexpr int kCachedPowersDecStep = 8; + + static constexpr std::array kCachedPowers = + { + { + { 0xAB70FE17C79AC6CA, -1060, -300 }, + { 0xFF77B1FCBEBCDC4F, -1034, -292 }, + { 0xBE5691EF416BD60C, -1007, -284 }, + { 0x8DD01FAD907FFC3C, -980, -276 }, + { 0xD3515C2831559A83, -954, -268 }, + { 0x9D71AC8FADA6C9B5, -927, -260 }, + { 0xEA9C227723EE8BCB, -901, -252 }, + { 0xAECC49914078536D, -874, -244 }, + { 0x823C12795DB6CE57, -847, -236 }, + { 0xC21094364DFB5637, -821, -228 }, + { 0x9096EA6F3848984F, -794, -220 }, + { 0xD77485CB25823AC7, -768, -212 }, + { 0xA086CFCD97BF97F4, -741, -204 }, + { 0xEF340A98172AACE5, -715, -196 }, + { 0xB23867FB2A35B28E, -688, -188 }, + { 0x84C8D4DFD2C63F3B, -661, -180 }, + { 0xC5DD44271AD3CDBA, -635, -172 }, + { 0x936B9FCEBB25C996, -608, -164 }, + { 0xDBAC6C247D62A584, -582, -156 }, + { 0xA3AB66580D5FDAF6, -555, -148 }, + { 0xF3E2F893DEC3F126, -529, -140 }, + { 0xB5B5ADA8AAFF80B8, -502, -132 }, + { 0x87625F056C7C4A8B, -475, -124 }, + { 0xC9BCFF6034C13053, -449, -116 }, + { 0x964E858C91BA2655, -422, -108 }, + { 0xDFF9772470297EBD, -396, -100 }, + { 0xA6DFBD9FB8E5B88F, -369, -92 }, + { 0xF8A95FCF88747D94, -343, -84 }, + { 0xB94470938FA89BCF, -316, -76 }, + { 0x8A08F0F8BF0F156B, -289, -68 }, + { 0xCDB02555653131B6, -263, -60 }, + { 0x993FE2C6D07B7FAC, -236, -52 }, + { 0xE45C10C42A2B3B06, -210, -44 }, + { 0xAA242499697392D3, -183, -36 }, + { 0xFD87B5F28300CA0E, -157, -28 }, + { 0xBCE5086492111AEB, -130, -20 }, + { 0x8CBCCC096F5088CC, -103, -12 }, + { 0xD1B71758E219652C, -77, -4 }, + { 0x9C40000000000000, -50, 4 }, + { 0xE8D4A51000000000, -24, 12 }, + { 0xAD78EBC5AC620000, 3, 20 }, + { 0x813F3978F8940984, 30, 28 }, + { 0xC097CE7BC90715B3, 56, 36 }, + { 0x8F7E32CE7BEA5C70, 83, 44 }, + { 0xD5D238A4ABE98068, 109, 52 }, + { 0x9F4F2726179A2245, 136, 60 }, + { 0xED63A231D4C4FB27, 162, 68 }, + { 0xB0DE65388CC8ADA8, 189, 76 }, + { 0x83C7088E1AAB65DB, 216, 84 }, + { 0xC45D1DF942711D9A, 242, 92 }, + { 0x924D692CA61BE758, 269, 100 }, + { 0xDA01EE641A708DEA, 295, 108 }, + { 0xA26DA3999AEF774A, 322, 116 }, + { 0xF209787BB47D6B85, 348, 124 }, + { 0xB454E4A179DD1877, 375, 132 }, + { 0x865B86925B9BC5C2, 402, 140 }, + { 0xC83553C5C8965D3D, 428, 148 }, + { 0x952AB45CFA97A0B3, 455, 156 }, + { 0xDE469FBD99A05FE3, 481, 164 }, + { 0xA59BC234DB398C25, 508, 172 }, + { 0xF6C69A72A3989F5C, 534, 180 }, + { 0xB7DCBF5354E9BECE, 561, 188 }, + { 0x88FCF317F22241E2, 588, 196 }, + { 0xCC20CE9BD35C78A5, 614, 204 }, + { 0x98165AF37B2153DF, 641, 212 }, + { 0xE2A0B5DC971F303A, 667, 220 }, + { 0xA8D9D1535CE3B396, 694, 228 }, + { 0xFB9B7CD9A4A7443C, 720, 236 }, + { 0xBB764C4CA7A44410, 747, 244 }, + { 0x8BAB8EEFB6409C1A, 774, 252 }, + { 0xD01FEF10A657842C, 800, 260 }, + { 0x9B10A4E5E9913129, 827, 268 }, + { 0xE7109BFBA19C0C9D, 853, 276 }, + { 0xAC2820D9623BF429, 880, 284 }, + { 0x80444B5E7AA7CF85, 907, 292 }, + { 0xBF21E44003ACDD2D, 933, 300 }, + { 0x8E679C2F5E44FF8F, 960, 308 }, + { 0xD433179D9C8CB841, 986, 316 }, + { 0x9E19DB92B4E31BA9, 1013, 324 }, + } + }; + + // This computation gives exactly the same results for k as + // k = ceil((kAlpha - e - 1) * 0.30102999566398114) + // for |e| <= 1500, but doesn't require floating-point operations. + // NB: log_10(2) ~= 78913 / 2^18 + JSON_ASSERT(e >= -1500); + JSON_ASSERT(e <= 1500); + const int f = kAlpha - e - 1; + const int k = (f * 78913) / (1 << 18) + static_cast(f > 0); + + const int index = (-kCachedPowersMinDecExp + k + (kCachedPowersDecStep - 1)) / kCachedPowersDecStep; + JSON_ASSERT(index >= 0); + JSON_ASSERT(static_cast(index) < kCachedPowers.size()); + + const cached_power cached = kCachedPowers[static_cast(index)]; + JSON_ASSERT(kAlpha <= cached.e + e + 64); + JSON_ASSERT(kGamma >= cached.e + e + 64); + + return cached; +} + +/*! +For n != 0, returns k, such that pow10 := 10^(k-1) <= n < 10^k. +For n == 0, returns 1 and sets pow10 := 1. +*/ +inline int find_largest_pow10(const std::uint32_t n, std::uint32_t& pow10) +{ + // LCOV_EXCL_START + if (n >= 1000000000) + { + pow10 = 1000000000; + return 10; + } + // LCOV_EXCL_STOP + else if (n >= 100000000) + { + pow10 = 100000000; + return 9; + } + else if (n >= 10000000) + { + pow10 = 10000000; + return 8; + } + else if (n >= 1000000) + { + pow10 = 1000000; + return 7; + } + else if (n >= 100000) + { + pow10 = 100000; + return 6; + } + else if (n >= 10000) + { + pow10 = 10000; + return 5; + } + else if (n >= 1000) + { + pow10 = 1000; + return 4; + } + else if (n >= 100) + { + pow10 = 100; + return 3; + } + else if (n >= 10) + { + pow10 = 10; + return 2; + } + else + { + pow10 = 1; + return 1; + } +} + +inline void grisu2_round(char* buf, int len, std::uint64_t dist, std::uint64_t delta, + std::uint64_t rest, std::uint64_t ten_k) +{ + JSON_ASSERT(len >= 1); + JSON_ASSERT(dist <= delta); + JSON_ASSERT(rest <= delta); + JSON_ASSERT(ten_k > 0); + + // <--------------------------- delta ----> + // <---- dist ---------> + // --------------[------------------+-------------------]-------------- + // M- w M+ + // + // ten_k + // <------> + // <---- rest ----> + // --------------[------------------+----+--------------]-------------- + // w V + // = buf * 10^k + // + // ten_k represents a unit-in-the-last-place in the decimal representation + // stored in buf. + // Decrement buf by ten_k while this takes buf closer to w. + + // The tests are written in this order to avoid overflow in unsigned + // integer arithmetic. + + while (rest < dist + && delta - rest >= ten_k + && (rest + ten_k < dist || dist - rest > rest + ten_k - dist)) + { + JSON_ASSERT(buf[len - 1] != '0'); + buf[len - 1]--; + rest += ten_k; + } +} + +/*! +Generates V = buffer * 10^decimal_exponent, such that M- <= V <= M+. +M- and M+ must be normalized and share the same exponent -60 <= e <= -32. +*/ +inline void grisu2_digit_gen(char* buffer, int& length, int& decimal_exponent, + diyfp M_minus, diyfp w, diyfp M_plus) +{ + static_assert(kAlpha >= -60, "internal error"); + static_assert(kGamma <= -32, "internal error"); + + // Generates the digits (and the exponent) of a decimal floating-point + // number V = buffer * 10^decimal_exponent in the range [M-, M+]. The diyfp's + // w, M- and M+ share the same exponent e, which satisfies alpha <= e <= gamma. + // + // <--------------------------- delta ----> + // <---- dist ---------> + // --------------[------------------+-------------------]-------------- + // M- w M+ + // + // Grisu2 generates the digits of M+ from left to right and stops as soon as + // V is in [M-,M+]. + + JSON_ASSERT(M_plus.e >= kAlpha); + JSON_ASSERT(M_plus.e <= kGamma); + + std::uint64_t delta = diyfp::sub(M_plus, M_minus).f; // (significand of (M+ - M-), implicit exponent is e) + std::uint64_t dist = diyfp::sub(M_plus, w ).f; // (significand of (M+ - w ), implicit exponent is e) + + // Split M+ = f * 2^e into two parts p1 and p2 (note: e < 0): + // + // M+ = f * 2^e + // = ((f div 2^-e) * 2^-e + (f mod 2^-e)) * 2^e + // = ((p1 ) * 2^-e + (p2 )) * 2^e + // = p1 + p2 * 2^e + + const diyfp one(std::uint64_t{1} << -M_plus.e, M_plus.e); + + auto p1 = static_cast(M_plus.f >> -one.e); // p1 = f div 2^-e (Since -e >= 32, p1 fits into a 32-bit int.) + std::uint64_t p2 = M_plus.f & (one.f - 1); // p2 = f mod 2^-e + + // 1) + // + // Generate the digits of the integral part p1 = d[n-1]...d[1]d[0] + + JSON_ASSERT(p1 > 0); + + std::uint32_t pow10; + const int k = find_largest_pow10(p1, pow10); + + // 10^(k-1) <= p1 < 10^k, pow10 = 10^(k-1) + // + // p1 = (p1 div 10^(k-1)) * 10^(k-1) + (p1 mod 10^(k-1)) + // = (d[k-1] ) * 10^(k-1) + (p1 mod 10^(k-1)) + // + // M+ = p1 + p2 * 2^e + // = d[k-1] * 10^(k-1) + (p1 mod 10^(k-1)) + p2 * 2^e + // = d[k-1] * 10^(k-1) + ((p1 mod 10^(k-1)) * 2^-e + p2) * 2^e + // = d[k-1] * 10^(k-1) + ( rest) * 2^e + // + // Now generate the digits d[n] of p1 from left to right (n = k-1,...,0) + // + // p1 = d[k-1]...d[n] * 10^n + d[n-1]...d[0] + // + // but stop as soon as + // + // rest * 2^e = (d[n-1]...d[0] * 2^-e + p2) * 2^e <= delta * 2^e + + int n = k; + while (n > 0) + { + // Invariants: + // M+ = buffer * 10^n + (p1 + p2 * 2^e) (buffer = 0 for n = k) + // pow10 = 10^(n-1) <= p1 < 10^n + // + const std::uint32_t d = p1 / pow10; // d = p1 div 10^(n-1) + const std::uint32_t r = p1 % pow10; // r = p1 mod 10^(n-1) + // + // M+ = buffer * 10^n + (d * 10^(n-1) + r) + p2 * 2^e + // = (buffer * 10 + d) * 10^(n-1) + (r + p2 * 2^e) + // + JSON_ASSERT(d <= 9); + buffer[length++] = static_cast('0' + d); // buffer := buffer * 10 + d + // + // M+ = buffer * 10^(n-1) + (r + p2 * 2^e) + // + p1 = r; + n--; + // + // M+ = buffer * 10^n + (p1 + p2 * 2^e) + // pow10 = 10^n + // + + // Now check if enough digits have been generated. + // Compute + // + // p1 + p2 * 2^e = (p1 * 2^-e + p2) * 2^e = rest * 2^e + // + // Note: + // Since rest and delta share the same exponent e, it suffices to + // compare the significands. + const std::uint64_t rest = (std::uint64_t{p1} << -one.e) + p2; + if (rest <= delta) + { + // V = buffer * 10^n, with M- <= V <= M+. + + decimal_exponent += n; + + // We may now just stop. But instead look if the buffer could be + // decremented to bring V closer to w. + // + // pow10 = 10^n is now 1 ulp in the decimal representation V. + // The rounding procedure works with diyfp's with an implicit + // exponent of e. + // + // 10^n = (10^n * 2^-e) * 2^e = ulp * 2^e + // + const std::uint64_t ten_n = std::uint64_t{pow10} << -one.e; + grisu2_round(buffer, length, dist, delta, rest, ten_n); + + return; + } + + pow10 /= 10; + // + // pow10 = 10^(n-1) <= p1 < 10^n + // Invariants restored. + } + + // 2) + // + // The digits of the integral part have been generated: + // + // M+ = d[k-1]...d[1]d[0] + p2 * 2^e + // = buffer + p2 * 2^e + // + // Now generate the digits of the fractional part p2 * 2^e. + // + // Note: + // No decimal point is generated: the exponent is adjusted instead. + // + // p2 actually represents the fraction + // + // p2 * 2^e + // = p2 / 2^-e + // = d[-1] / 10^1 + d[-2] / 10^2 + ... + // + // Now generate the digits d[-m] of p1 from left to right (m = 1,2,...) + // + // p2 * 2^e = d[-1]d[-2]...d[-m] * 10^-m + // + 10^-m * (d[-m-1] / 10^1 + d[-m-2] / 10^2 + ...) + // + // using + // + // 10^m * p2 = ((10^m * p2) div 2^-e) * 2^-e + ((10^m * p2) mod 2^-e) + // = ( d) * 2^-e + ( r) + // + // or + // 10^m * p2 * 2^e = d + r * 2^e + // + // i.e. + // + // M+ = buffer + p2 * 2^e + // = buffer + 10^-m * (d + r * 2^e) + // = (buffer * 10^m + d) * 10^-m + 10^-m * r * 2^e + // + // and stop as soon as 10^-m * r * 2^e <= delta * 2^e + + JSON_ASSERT(p2 > delta); + + int m = 0; + for (;;) + { + // Invariant: + // M+ = buffer * 10^-m + 10^-m * (d[-m-1] / 10 + d[-m-2] / 10^2 + ...) * 2^e + // = buffer * 10^-m + 10^-m * (p2 ) * 2^e + // = buffer * 10^-m + 10^-m * (1/10 * (10 * p2) ) * 2^e + // = buffer * 10^-m + 10^-m * (1/10 * ((10*p2 div 2^-e) * 2^-e + (10*p2 mod 2^-e)) * 2^e + // + JSON_ASSERT(p2 <= (std::numeric_limits::max)() / 10); + p2 *= 10; + const std::uint64_t d = p2 >> -one.e; // d = (10 * p2) div 2^-e + const std::uint64_t r = p2 & (one.f - 1); // r = (10 * p2) mod 2^-e + // + // M+ = buffer * 10^-m + 10^-m * (1/10 * (d * 2^-e + r) * 2^e + // = buffer * 10^-m + 10^-m * (1/10 * (d + r * 2^e)) + // = (buffer * 10 + d) * 10^(-m-1) + 10^(-m-1) * r * 2^e + // + JSON_ASSERT(d <= 9); + buffer[length++] = static_cast('0' + d); // buffer := buffer * 10 + d + // + // M+ = buffer * 10^(-m-1) + 10^(-m-1) * r * 2^e + // + p2 = r; + m++; + // + // M+ = buffer * 10^-m + 10^-m * p2 * 2^e + // Invariant restored. + + // Check if enough digits have been generated. + // + // 10^-m * p2 * 2^e <= delta * 2^e + // p2 * 2^e <= 10^m * delta * 2^e + // p2 <= 10^m * delta + delta *= 10; + dist *= 10; + if (p2 <= delta) + { + break; + } + } + + // V = buffer * 10^-m, with M- <= V <= M+. + + decimal_exponent -= m; + + // 1 ulp in the decimal representation is now 10^-m. + // Since delta and dist are now scaled by 10^m, we need to do the + // same with ulp in order to keep the units in sync. + // + // 10^m * 10^-m = 1 = 2^-e * 2^e = ten_m * 2^e + // + const std::uint64_t ten_m = one.f; + grisu2_round(buffer, length, dist, delta, p2, ten_m); + + // By construction this algorithm generates the shortest possible decimal + // number (Loitsch, Theorem 6.2) which rounds back to w. + // For an input number of precision p, at least + // + // N = 1 + ceil(p * log_10(2)) + // + // decimal digits are sufficient to identify all binary floating-point + // numbers (Matula, "In-and-Out conversions"). + // This implies that the algorithm does not produce more than N decimal + // digits. + // + // N = 17 for p = 53 (IEEE double precision) + // N = 9 for p = 24 (IEEE single precision) +} + +/*! +v = buf * 10^decimal_exponent +len is the length of the buffer (number of decimal digits) +The buffer must be large enough, i.e. >= max_digits10. +*/ +JSON_HEDLEY_NON_NULL(1) +inline void grisu2(char* buf, int& len, int& decimal_exponent, + diyfp m_minus, diyfp v, diyfp m_plus) +{ + JSON_ASSERT(m_plus.e == m_minus.e); + JSON_ASSERT(m_plus.e == v.e); + + // --------(-----------------------+-----------------------)-------- (A) + // m- v m+ + // + // --------------------(-----------+-----------------------)-------- (B) + // m- v m+ + // + // First scale v (and m- and m+) such that the exponent is in the range + // [alpha, gamma]. + + const cached_power cached = get_cached_power_for_binary_exponent(m_plus.e); + + const diyfp c_minus_k(cached.f, cached.e); // = c ~= 10^-k + + // The exponent of the products is = v.e + c_minus_k.e + q and is in the range [alpha,gamma] + const diyfp w = diyfp::mul(v, c_minus_k); + const diyfp w_minus = diyfp::mul(m_minus, c_minus_k); + const diyfp w_plus = diyfp::mul(m_plus, c_minus_k); + + // ----(---+---)---------------(---+---)---------------(---+---)---- + // w- w w+ + // = c*m- = c*v = c*m+ + // + // diyfp::mul rounds its result and c_minus_k is approximated too. w, w- and + // w+ are now off by a small amount. + // In fact: + // + // w - v * 10^k < 1 ulp + // + // To account for this inaccuracy, add resp. subtract 1 ulp. + // + // --------+---[---------------(---+---)---------------]---+-------- + // w- M- w M+ w+ + // + // Now any number in [M-, M+] (bounds included) will round to w when input, + // regardless of how the input rounding algorithm breaks ties. + // + // And digit_gen generates the shortest possible such number in [M-, M+]. + // Note that this does not mean that Grisu2 always generates the shortest + // possible number in the interval (m-, m+). + const diyfp M_minus(w_minus.f + 1, w_minus.e); + const diyfp M_plus (w_plus.f - 1, w_plus.e ); + + decimal_exponent = -cached.k; // = -(-k) = k + + grisu2_digit_gen(buf, len, decimal_exponent, M_minus, w, M_plus); +} + +/*! +v = buf * 10^decimal_exponent +len is the length of the buffer (number of decimal digits) +The buffer must be large enough, i.e. >= max_digits10. +*/ +template +JSON_HEDLEY_NON_NULL(1) +void grisu2(char* buf, int& len, int& decimal_exponent, FloatType value) +{ + static_assert(diyfp::kPrecision >= std::numeric_limits::digits + 3, + "internal error: not enough precision"); + + JSON_ASSERT(std::isfinite(value)); + JSON_ASSERT(value > 0); + + // If the neighbors (and boundaries) of 'value' are always computed for double-precision + // numbers, all float's can be recovered using strtod (and strtof). However, the resulting + // decimal representations are not exactly "short". + // + // The documentation for 'std::to_chars' (https://en.cppreference.com/w/cpp/utility/to_chars) + // says "value is converted to a string as if by std::sprintf in the default ("C") locale" + // and since sprintf promotes float's to double's, I think this is exactly what 'std::to_chars' + // does. + // On the other hand, the documentation for 'std::to_chars' requires that "parsing the + // representation using the corresponding std::from_chars function recovers value exactly". That + // indicates that single precision floating-point numbers should be recovered using + // 'std::strtof'. + // + // NB: If the neighbors are computed for single-precision numbers, there is a single float + // (7.0385307e-26f) which can't be recovered using strtod. The resulting double precision + // value is off by 1 ulp. +#if 0 + const boundaries w = compute_boundaries(static_cast(value)); +#else + const boundaries w = compute_boundaries(value); +#endif + + grisu2(buf, len, decimal_exponent, w.minus, w.w, w.plus); +} + +/*! +@brief appends a decimal representation of e to buf +@return a pointer to the element following the exponent. +@pre -1000 < e < 1000 +*/ +JSON_HEDLEY_NON_NULL(1) +JSON_HEDLEY_RETURNS_NON_NULL +inline char* append_exponent(char* buf, int e) +{ + JSON_ASSERT(e > -1000); + JSON_ASSERT(e < 1000); + + if (e < 0) + { + e = -e; + *buf++ = '-'; + } + else + { + *buf++ = '+'; + } + + auto k = static_cast(e); + if (k < 10) + { + // Always print at least two digits in the exponent. + // This is for compatibility with printf("%g"). + *buf++ = '0'; + *buf++ = static_cast('0' + k); + } + else if (k < 100) + { + *buf++ = static_cast('0' + k / 10); + k %= 10; + *buf++ = static_cast('0' + k); + } + else + { + *buf++ = static_cast('0' + k / 100); + k %= 100; + *buf++ = static_cast('0' + k / 10); + k %= 10; + *buf++ = static_cast('0' + k); + } + + return buf; +} + +/*! +@brief prettify v = buf * 10^decimal_exponent + +If v is in the range [10^min_exp, 10^max_exp) it will be printed in fixed-point +notation. Otherwise it will be printed in exponential notation. + +@pre min_exp < 0 +@pre max_exp > 0 +*/ +JSON_HEDLEY_NON_NULL(1) +JSON_HEDLEY_RETURNS_NON_NULL +inline char* format_buffer(char* buf, int len, int decimal_exponent, + int min_exp, int max_exp) +{ + JSON_ASSERT(min_exp < 0); + JSON_ASSERT(max_exp > 0); + + const int k = len; + const int n = len + decimal_exponent; + + // v = buf * 10^(n-k) + // k is the length of the buffer (number of decimal digits) + // n is the position of the decimal point relative to the start of the buffer. + + if (k <= n && n <= max_exp) + { + // digits[000] + // len <= max_exp + 2 + + std::memset(buf + k, '0', static_cast(n) - static_cast(k)); + // Make it look like a floating-point number (#362, #378) + buf[n + 0] = '.'; + buf[n + 1] = '0'; + return buf + (static_cast(n) + 2); + } + + if (0 < n && n <= max_exp) + { + // dig.its + // len <= max_digits10 + 1 + + JSON_ASSERT(k > n); + + std::memmove(buf + (static_cast(n) + 1), buf + n, static_cast(k) - static_cast(n)); + buf[n] = '.'; + return buf + (static_cast(k) + 1U); + } + + if (min_exp < n && n <= 0) + { + // 0.[000]digits + // len <= 2 + (-min_exp - 1) + max_digits10 + + std::memmove(buf + (2 + static_cast(-n)), buf, static_cast(k)); + buf[0] = '0'; + buf[1] = '.'; + std::memset(buf + 2, '0', static_cast(-n)); + return buf + (2U + static_cast(-n) + static_cast(k)); + } + + if (k == 1) + { + // dE+123 + // len <= 1 + 5 + + buf += 1; + } + else + { + // d.igitsE+123 + // len <= max_digits10 + 1 + 5 + + std::memmove(buf + 2, buf + 1, static_cast(k) - 1); + buf[1] = '.'; + buf += 1 + static_cast(k); + } + + *buf++ = 'e'; + return append_exponent(buf, n - 1); +} + +} // namespace dtoa_impl + +/*! +@brief generates a decimal representation of the floating-point number value in [first, last). + +The format of the resulting decimal representation is similar to printf's %g +format. Returns an iterator pointing past-the-end of the decimal representation. + +@note The input number must be finite, i.e. NaN's and Inf's are not supported. +@note The buffer must be large enough. +@note The result is NOT null-terminated. +*/ +template +JSON_HEDLEY_NON_NULL(1, 2) +JSON_HEDLEY_RETURNS_NON_NULL +char* to_chars(char* first, const char* last, FloatType value) +{ + static_cast(last); // maybe unused - fix warning + JSON_ASSERT(std::isfinite(value)); + + // Use signbit(value) instead of (value < 0) since signbit works for -0. + if (std::signbit(value)) + { + value = -value; + *first++ = '-'; + } + + if (value == 0) // +-0 + { + *first++ = '0'; + // Make it look like a floating-point number (#362, #378) + *first++ = '.'; + *first++ = '0'; + return first; + } + + JSON_ASSERT(last - first >= std::numeric_limits::max_digits10); + + // Compute v = buffer * 10^decimal_exponent. + // The decimal digits are stored in the buffer, which needs to be interpreted + // as an unsigned decimal integer. + // len is the length of the buffer, i.e. the number of decimal digits. + int len = 0; + int decimal_exponent = 0; + dtoa_impl::grisu2(first, len, decimal_exponent, value); + + JSON_ASSERT(len <= std::numeric_limits::max_digits10); + + // Format the buffer like printf("%.*g", prec, value) + constexpr int kMinExp = -4; + // Use digits10 here to increase compatibility with version 2. + constexpr int kMaxExp = std::numeric_limits::digits10; + + JSON_ASSERT(last - first >= kMaxExp + 2); + JSON_ASSERT(last - first >= 2 + (-kMinExp - 1) + std::numeric_limits::max_digits10); + JSON_ASSERT(last - first >= std::numeric_limits::max_digits10 + 6); + + return dtoa_impl::format_buffer(first, len, decimal_exponent, kMinExp, kMaxExp); +} + +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + +// #include + +// #include + +// #include + +// #include + + +namespace nlohmann +{ +namespace detail +{ +/////////////////// +// serialization // +/////////////////// + +/// how to treat decoding errors +enum class error_handler_t +{ + strict, ///< throw a type_error exception in case of invalid UTF-8 + replace, ///< replace invalid UTF-8 sequences with U+FFFD + ignore ///< ignore invalid UTF-8 sequences +}; + +template +class serializer +{ + using string_t = typename BasicJsonType::string_t; + using number_float_t = typename BasicJsonType::number_float_t; + using number_integer_t = typename BasicJsonType::number_integer_t; + using number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using binary_char_t = typename BasicJsonType::binary_t::value_type; + static constexpr std::uint8_t UTF8_ACCEPT = 0; + static constexpr std::uint8_t UTF8_REJECT = 1; + + public: + /*! + @param[in] s output stream to serialize to + @param[in] ichar indentation character to use + @param[in] error_handler_ how to react on decoding errors + */ + serializer(output_adapter_t s, const char ichar, + error_handler_t error_handler_ = error_handler_t::strict) + : o(std::move(s)) + , loc(std::localeconv()) + , thousands_sep(loc->thousands_sep == nullptr ? '\0' : std::char_traits::to_char_type(* (loc->thousands_sep))) + , decimal_point(loc->decimal_point == nullptr ? '\0' : std::char_traits::to_char_type(* (loc->decimal_point))) + , indent_char(ichar) + , indent_string(512, indent_char) + , error_handler(error_handler_) + {} + + // delete because of pointer members + serializer(const serializer&) = delete; + serializer& operator=(const serializer&) = delete; + serializer(serializer&&) = delete; + serializer& operator=(serializer&&) = delete; + ~serializer() = default; + + /*! + @brief internal implementation of the serialization function + + This function is called by the public member function dump and organizes + the serialization internally. The indentation level is propagated as + additional parameter. In case of arrays and objects, the function is + called recursively. + + - strings and object keys are escaped using `escape_string()` + - integer numbers are converted implicitly via `operator<<` + - floating-point numbers are converted to a string using `"%g"` format + - binary values are serialized as objects containing the subtype and the + byte array + + @param[in] val value to serialize + @param[in] pretty_print whether the output shall be pretty-printed + @param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters + in the output are escaped with `\uXXXX` sequences, and the result consists + of ASCII characters only. + @param[in] indent_step the indent level + @param[in] current_indent the current indent level (only used internally) + */ + void dump(const BasicJsonType& val, + const bool pretty_print, + const bool ensure_ascii, + const unsigned int indent_step, + const unsigned int current_indent = 0) + { + switch (val.m_type) + { + case value_t::object: + { + if (val.m_value.object->empty()) + { + o->write_characters("{}", 2); + return; + } + + if (pretty_print) + { + o->write_characters("{\n", 2); + + // variable to hold indentation for recursive calls + const auto new_indent = current_indent + indent_step; + if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) + { + indent_string.resize(indent_string.size() * 2, ' '); + } + + // first n-1 elements + auto i = val.m_value.object->cbegin(); + for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i) + { + o->write_characters(indent_string.c_str(), new_indent); + o->write_character('\"'); + dump_escaped(i->first, ensure_ascii); + o->write_characters("\": ", 3); + dump(i->second, true, ensure_ascii, indent_step, new_indent); + o->write_characters(",\n", 2); + } + + // last element + JSON_ASSERT(i != val.m_value.object->cend()); + JSON_ASSERT(std::next(i) == val.m_value.object->cend()); + o->write_characters(indent_string.c_str(), new_indent); + o->write_character('\"'); + dump_escaped(i->first, ensure_ascii); + o->write_characters("\": ", 3); + dump(i->second, true, ensure_ascii, indent_step, new_indent); + + o->write_character('\n'); + o->write_characters(indent_string.c_str(), current_indent); + o->write_character('}'); + } + else + { + o->write_character('{'); + + // first n-1 elements + auto i = val.m_value.object->cbegin(); + for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i) + { + o->write_character('\"'); + dump_escaped(i->first, ensure_ascii); + o->write_characters("\":", 2); + dump(i->second, false, ensure_ascii, indent_step, current_indent); + o->write_character(','); + } + + // last element + JSON_ASSERT(i != val.m_value.object->cend()); + JSON_ASSERT(std::next(i) == val.m_value.object->cend()); + o->write_character('\"'); + dump_escaped(i->first, ensure_ascii); + o->write_characters("\":", 2); + dump(i->second, false, ensure_ascii, indent_step, current_indent); + + o->write_character('}'); + } + + return; + } + + case value_t::array: + { + if (val.m_value.array->empty()) + { + o->write_characters("[]", 2); + return; + } + + if (pretty_print) + { + o->write_characters("[\n", 2); + + // variable to hold indentation for recursive calls + const auto new_indent = current_indent + indent_step; + if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) + { + indent_string.resize(indent_string.size() * 2, ' '); + } + + // first n-1 elements + for (auto i = val.m_value.array->cbegin(); + i != val.m_value.array->cend() - 1; ++i) + { + o->write_characters(indent_string.c_str(), new_indent); + dump(*i, true, ensure_ascii, indent_step, new_indent); + o->write_characters(",\n", 2); + } + + // last element + JSON_ASSERT(!val.m_value.array->empty()); + o->write_characters(indent_string.c_str(), new_indent); + dump(val.m_value.array->back(), true, ensure_ascii, indent_step, new_indent); + + o->write_character('\n'); + o->write_characters(indent_string.c_str(), current_indent); + o->write_character(']'); + } + else + { + o->write_character('['); + + // first n-1 elements + for (auto i = val.m_value.array->cbegin(); + i != val.m_value.array->cend() - 1; ++i) + { + dump(*i, false, ensure_ascii, indent_step, current_indent); + o->write_character(','); + } + + // last element + JSON_ASSERT(!val.m_value.array->empty()); + dump(val.m_value.array->back(), false, ensure_ascii, indent_step, current_indent); + + o->write_character(']'); + } + + return; + } + + case value_t::string: + { + o->write_character('\"'); + dump_escaped(*val.m_value.string, ensure_ascii); + o->write_character('\"'); + return; + } + + case value_t::binary: + { + if (pretty_print) + { + o->write_characters("{\n", 2); + + // variable to hold indentation for recursive calls + const auto new_indent = current_indent + indent_step; + if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) + { + indent_string.resize(indent_string.size() * 2, ' '); + } + + o->write_characters(indent_string.c_str(), new_indent); + + o->write_characters("\"bytes\": [", 10); + + if (!val.m_value.binary->empty()) + { + for (auto i = val.m_value.binary->cbegin(); + i != val.m_value.binary->cend() - 1; ++i) + { + dump_integer(*i); + o->write_characters(", ", 2); + } + dump_integer(val.m_value.binary->back()); + } + + o->write_characters("],\n", 3); + o->write_characters(indent_string.c_str(), new_indent); + + o->write_characters("\"subtype\": ", 11); + if (val.m_value.binary->has_subtype()) + { + dump_integer(val.m_value.binary->subtype()); + } + else + { + o->write_characters("null", 4); + } + o->write_character('\n'); + o->write_characters(indent_string.c_str(), current_indent); + o->write_character('}'); + } + else + { + o->write_characters("{\"bytes\":[", 10); + + if (!val.m_value.binary->empty()) + { + for (auto i = val.m_value.binary->cbegin(); + i != val.m_value.binary->cend() - 1; ++i) + { + dump_integer(*i); + o->write_character(','); + } + dump_integer(val.m_value.binary->back()); + } + + o->write_characters("],\"subtype\":", 12); + if (val.m_value.binary->has_subtype()) + { + dump_integer(val.m_value.binary->subtype()); + o->write_character('}'); + } + else + { + o->write_characters("null}", 5); + } + } + return; + } + + case value_t::boolean: + { + if (val.m_value.boolean) + { + o->write_characters("true", 4); + } + else + { + o->write_characters("false", 5); + } + return; + } + + case value_t::number_integer: + { + dump_integer(val.m_value.number_integer); + return; + } + + case value_t::number_unsigned: + { + dump_integer(val.m_value.number_unsigned); + return; + } + + case value_t::number_float: + { + dump_float(val.m_value.number_float); + return; + } + + case value_t::discarded: + { + o->write_characters("", 11); + return; + } + + case value_t::null: + { + o->write_characters("null", 4); + return; + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + } + + private: + /*! + @brief dump escaped string + + Escape a string by replacing certain special characters by a sequence of an + escape character (backslash) and another character and other control + characters by a sequence of "\u" followed by a four-digit hex + representation. The escaped string is written to output stream @a o. + + @param[in] s the string to escape + @param[in] ensure_ascii whether to escape non-ASCII characters with + \uXXXX sequences + + @complexity Linear in the length of string @a s. + */ + void dump_escaped(const string_t& s, const bool ensure_ascii) + { + std::uint32_t codepoint; + std::uint8_t state = UTF8_ACCEPT; + std::size_t bytes = 0; // number of bytes written to string_buffer + + // number of bytes written at the point of the last valid byte + std::size_t bytes_after_last_accept = 0; + std::size_t undumped_chars = 0; + + for (std::size_t i = 0; i < s.size(); ++i) + { + const auto byte = static_cast(s[i]); + + switch (decode(state, codepoint, byte)) + { + case UTF8_ACCEPT: // decode found a new code point + { + switch (codepoint) + { + case 0x08: // backspace + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'b'; + break; + } + + case 0x09: // horizontal tab + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 't'; + break; + } + + case 0x0A: // newline + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'n'; + break; + } + + case 0x0C: // formfeed + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'f'; + break; + } + + case 0x0D: // carriage return + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'r'; + break; + } + + case 0x22: // quotation mark + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = '\"'; + break; + } + + case 0x5C: // reverse solidus + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = '\\'; + break; + } + + default: + { + // escape control characters (0x00..0x1F) or, if + // ensure_ascii parameter is used, non-ASCII characters + if ((codepoint <= 0x1F) || (ensure_ascii && (codepoint >= 0x7F))) + { + if (codepoint <= 0xFFFF) + { + (std::snprintf)(string_buffer.data() + bytes, 7, "\\u%04x", + static_cast(codepoint)); + bytes += 6; + } + else + { + (std::snprintf)(string_buffer.data() + bytes, 13, "\\u%04x\\u%04x", + static_cast(0xD7C0u + (codepoint >> 10u)), + static_cast(0xDC00u + (codepoint & 0x3FFu))); + bytes += 12; + } + } + else + { + // copy byte to buffer (all previous bytes + // been copied have in default case above) + string_buffer[bytes++] = s[i]; + } + break; + } + } + + // write buffer and reset index; there must be 13 bytes + // left, as this is the maximal number of bytes to be + // written ("\uxxxx\uxxxx\0") for one code point + if (string_buffer.size() - bytes < 13) + { + o->write_characters(string_buffer.data(), bytes); + bytes = 0; + } + + // remember the byte position of this accept + bytes_after_last_accept = bytes; + undumped_chars = 0; + break; + } + + case UTF8_REJECT: // decode found invalid UTF-8 byte + { + switch (error_handler) + { + case error_handler_t::strict: + { + std::string sn(3, '\0'); + (std::snprintf)(&sn[0], sn.size(), "%.2X", byte); + JSON_THROW(type_error::create(316, "invalid UTF-8 byte at index " + std::to_string(i) + ": 0x" + sn)); + } + + case error_handler_t::ignore: + case error_handler_t::replace: + { + // in case we saw this character the first time, we + // would like to read it again, because the byte + // may be OK for itself, but just not OK for the + // previous sequence + if (undumped_chars > 0) + { + --i; + } + + // reset length buffer to the last accepted index; + // thus removing/ignoring the invalid characters + bytes = bytes_after_last_accept; + + if (error_handler == error_handler_t::replace) + { + // add a replacement character + if (ensure_ascii) + { + string_buffer[bytes++] = '\\'; + string_buffer[bytes++] = 'u'; + string_buffer[bytes++] = 'f'; + string_buffer[bytes++] = 'f'; + string_buffer[bytes++] = 'f'; + string_buffer[bytes++] = 'd'; + } + else + { + string_buffer[bytes++] = detail::binary_writer::to_char_type('\xEF'); + string_buffer[bytes++] = detail::binary_writer::to_char_type('\xBF'); + string_buffer[bytes++] = detail::binary_writer::to_char_type('\xBD'); + } + + // write buffer and reset index; there must be 13 bytes + // left, as this is the maximal number of bytes to be + // written ("\uxxxx\uxxxx\0") for one code point + if (string_buffer.size() - bytes < 13) + { + o->write_characters(string_buffer.data(), bytes); + bytes = 0; + } + + bytes_after_last_accept = bytes; + } + + undumped_chars = 0; + + // continue processing the string + state = UTF8_ACCEPT; + break; + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + break; + } + + default: // decode found yet incomplete multi-byte code point + { + if (!ensure_ascii) + { + // code point will not be escaped - copy byte to buffer + string_buffer[bytes++] = s[i]; + } + ++undumped_chars; + break; + } + } + } + + // we finished processing the string + if (JSON_HEDLEY_LIKELY(state == UTF8_ACCEPT)) + { + // write buffer + if (bytes > 0) + { + o->write_characters(string_buffer.data(), bytes); + } + } + else + { + // we finish reading, but do not accept: string was incomplete + switch (error_handler) + { + case error_handler_t::strict: + { + std::string sn(3, '\0'); + (std::snprintf)(&sn[0], sn.size(), "%.2X", static_cast(s.back())); + JSON_THROW(type_error::create(316, "incomplete UTF-8 string; last byte: 0x" + sn)); + } + + case error_handler_t::ignore: + { + // write all accepted bytes + o->write_characters(string_buffer.data(), bytes_after_last_accept); + break; + } + + case error_handler_t::replace: + { + // write all accepted bytes + o->write_characters(string_buffer.data(), bytes_after_last_accept); + // add a replacement character + if (ensure_ascii) + { + o->write_characters("\\ufffd", 6); + } + else + { + o->write_characters("\xEF\xBF\xBD", 3); + } + break; + } + + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + } + } + + /*! + @brief count digits + + Count the number of decimal (base 10) digits for an input unsigned integer. + + @param[in] x unsigned integer number to count its digits + @return number of decimal digits + */ + inline unsigned int count_digits(number_unsigned_t x) noexcept + { + unsigned int n_digits = 1; + for (;;) + { + if (x < 10) + { + return n_digits; + } + if (x < 100) + { + return n_digits + 1; + } + if (x < 1000) + { + return n_digits + 2; + } + if (x < 10000) + { + return n_digits + 3; + } + x = x / 10000u; + n_digits += 4; + } + } + + /*! + @brief dump an integer + + Dump a given integer to output stream @a o. Works internally with + @a number_buffer. + + @param[in] x integer number (signed or unsigned) to dump + @tparam NumberType either @a number_integer_t or @a number_unsigned_t + */ + template < typename NumberType, detail::enable_if_t < + std::is_same::value || + std::is_same::value || + std::is_same::value, + int > = 0 > + void dump_integer(NumberType x) + { + static constexpr std::array, 100> digits_to_99 + { + { + {{'0', '0'}}, {{'0', '1'}}, {{'0', '2'}}, {{'0', '3'}}, {{'0', '4'}}, {{'0', '5'}}, {{'0', '6'}}, {{'0', '7'}}, {{'0', '8'}}, {{'0', '9'}}, + {{'1', '0'}}, {{'1', '1'}}, {{'1', '2'}}, {{'1', '3'}}, {{'1', '4'}}, {{'1', '5'}}, {{'1', '6'}}, {{'1', '7'}}, {{'1', '8'}}, {{'1', '9'}}, + {{'2', '0'}}, {{'2', '1'}}, {{'2', '2'}}, {{'2', '3'}}, {{'2', '4'}}, {{'2', '5'}}, {{'2', '6'}}, {{'2', '7'}}, {{'2', '8'}}, {{'2', '9'}}, + {{'3', '0'}}, {{'3', '1'}}, {{'3', '2'}}, {{'3', '3'}}, {{'3', '4'}}, {{'3', '5'}}, {{'3', '6'}}, {{'3', '7'}}, {{'3', '8'}}, {{'3', '9'}}, + {{'4', '0'}}, {{'4', '1'}}, {{'4', '2'}}, {{'4', '3'}}, {{'4', '4'}}, {{'4', '5'}}, {{'4', '6'}}, {{'4', '7'}}, {{'4', '8'}}, {{'4', '9'}}, + {{'5', '0'}}, {{'5', '1'}}, {{'5', '2'}}, {{'5', '3'}}, {{'5', '4'}}, {{'5', '5'}}, {{'5', '6'}}, {{'5', '7'}}, {{'5', '8'}}, {{'5', '9'}}, + {{'6', '0'}}, {{'6', '1'}}, {{'6', '2'}}, {{'6', '3'}}, {{'6', '4'}}, {{'6', '5'}}, {{'6', '6'}}, {{'6', '7'}}, {{'6', '8'}}, {{'6', '9'}}, + {{'7', '0'}}, {{'7', '1'}}, {{'7', '2'}}, {{'7', '3'}}, {{'7', '4'}}, {{'7', '5'}}, {{'7', '6'}}, {{'7', '7'}}, {{'7', '8'}}, {{'7', '9'}}, + {{'8', '0'}}, {{'8', '1'}}, {{'8', '2'}}, {{'8', '3'}}, {{'8', '4'}}, {{'8', '5'}}, {{'8', '6'}}, {{'8', '7'}}, {{'8', '8'}}, {{'8', '9'}}, + {{'9', '0'}}, {{'9', '1'}}, {{'9', '2'}}, {{'9', '3'}}, {{'9', '4'}}, {{'9', '5'}}, {{'9', '6'}}, {{'9', '7'}}, {{'9', '8'}}, {{'9', '9'}}, + } + }; + + // special case for "0" + if (x == 0) + { + o->write_character('0'); + return; + } + + // use a pointer to fill the buffer + auto buffer_ptr = number_buffer.begin(); + + const bool is_negative = std::is_same::value && !(x >= 0); // see issue #755 + number_unsigned_t abs_value; + + unsigned int n_chars; + + if (is_negative) + { + *buffer_ptr = '-'; + abs_value = remove_sign(static_cast(x)); + + // account one more byte for the minus sign + n_chars = 1 + count_digits(abs_value); + } + else + { + abs_value = static_cast(x); + n_chars = count_digits(abs_value); + } + + // spare 1 byte for '\0' + JSON_ASSERT(n_chars < number_buffer.size() - 1); + + // jump to the end to generate the string from backward + // so we later avoid reversing the result + buffer_ptr += n_chars; + + // Fast int2ascii implementation inspired by "Fastware" talk by Andrei Alexandrescu + // See: https://www.youtube.com/watch?v=o4-CwDo2zpg + while (abs_value >= 100) + { + const auto digits_index = static_cast((abs_value % 100)); + abs_value /= 100; + *(--buffer_ptr) = digits_to_99[digits_index][1]; + *(--buffer_ptr) = digits_to_99[digits_index][0]; + } + + if (abs_value >= 10) + { + const auto digits_index = static_cast(abs_value); + *(--buffer_ptr) = digits_to_99[digits_index][1]; + *(--buffer_ptr) = digits_to_99[digits_index][0]; + } + else + { + *(--buffer_ptr) = static_cast('0' + abs_value); + } + + o->write_characters(number_buffer.data(), n_chars); + } + + /*! + @brief dump a floating-point number + + Dump a given floating-point number to output stream @a o. Works internally + with @a number_buffer. + + @param[in] x floating-point number to dump + */ + void dump_float(number_float_t x) + { + // NaN / inf + if (!std::isfinite(x)) + { + o->write_characters("null", 4); + return; + } + + // If number_float_t is an IEEE-754 single or double precision number, + // use the Grisu2 algorithm to produce short numbers which are + // guaranteed to round-trip, using strtof and strtod, resp. + // + // NB: The test below works if == . + static constexpr bool is_ieee_single_or_double + = (std::numeric_limits::is_iec559 && std::numeric_limits::digits == 24 && std::numeric_limits::max_exponent == 128) || + (std::numeric_limits::is_iec559 && std::numeric_limits::digits == 53 && std::numeric_limits::max_exponent == 1024); + + dump_float(x, std::integral_constant()); + } + + void dump_float(number_float_t x, std::true_type /*is_ieee_single_or_double*/) + { + char* begin = number_buffer.data(); + char* end = ::nlohmann::detail::to_chars(begin, begin + number_buffer.size(), x); + + o->write_characters(begin, static_cast(end - begin)); + } + + void dump_float(number_float_t x, std::false_type /*is_ieee_single_or_double*/) + { + // get number of digits for a float -> text -> float round-trip + static constexpr auto d = std::numeric_limits::max_digits10; + + // the actual conversion + std::ptrdiff_t len = (std::snprintf)(number_buffer.data(), number_buffer.size(), "%.*g", d, x); + + // negative value indicates an error + JSON_ASSERT(len > 0); + // check if buffer was large enough + JSON_ASSERT(static_cast(len) < number_buffer.size()); + + // erase thousands separator + if (thousands_sep != '\0') + { + const auto end = std::remove(number_buffer.begin(), + number_buffer.begin() + len, thousands_sep); + std::fill(end, number_buffer.end(), '\0'); + JSON_ASSERT((end - number_buffer.begin()) <= len); + len = (end - number_buffer.begin()); + } + + // convert decimal point to '.' + if (decimal_point != '\0' && decimal_point != '.') + { + const auto dec_pos = std::find(number_buffer.begin(), number_buffer.end(), decimal_point); + if (dec_pos != number_buffer.end()) + { + *dec_pos = '.'; + } + } + + o->write_characters(number_buffer.data(), static_cast(len)); + + // determine if need to append ".0" + const bool value_is_int_like = + std::none_of(number_buffer.begin(), number_buffer.begin() + len + 1, + [](char c) + { + return c == '.' || c == 'e'; + }); + + if (value_is_int_like) + { + o->write_characters(".0", 2); + } + } + + /*! + @brief check whether a string is UTF-8 encoded + + The function checks each byte of a string whether it is UTF-8 encoded. The + result of the check is stored in the @a state parameter. The function must + be called initially with state 0 (accept). State 1 means the string must + be rejected, because the current byte is not allowed. If the string is + completely processed, but the state is non-zero, the string ended + prematurely; that is, the last byte indicated more bytes should have + followed. + + @param[in,out] state the state of the decoding + @param[in,out] codep codepoint (valid only if resulting state is UTF8_ACCEPT) + @param[in] byte next byte to decode + @return new state + + @note The function has been edited: a std::array is used. + + @copyright Copyright (c) 2008-2009 Bjoern Hoehrmann + @sa http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ + */ + static std::uint8_t decode(std::uint8_t& state, std::uint32_t& codep, const std::uint8_t byte) noexcept + { + static const std::array utf8d = + { + { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 00..1F + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 20..3F + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 40..5F + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 60..7F + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, // 80..9F + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, // A0..BF + 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // C0..DF + 0xA, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x4, 0x3, 0x3, // E0..EF + 0xB, 0x6, 0x6, 0x6, 0x5, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, // F0..FF + 0x0, 0x1, 0x2, 0x3, 0x5, 0x8, 0x7, 0x1, 0x1, 0x1, 0x4, 0x6, 0x1, 0x1, 0x1, 0x1, // s0..s0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, // s1..s2 + 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, // s3..s4 + 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, // s5..s6 + 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // s7..s8 + } + }; + + const std::uint8_t type = utf8d[byte]; + + codep = (state != UTF8_ACCEPT) + ? (byte & 0x3fu) | (codep << 6u) + : (0xFFu >> type) & (byte); + + std::size_t index = 256u + static_cast(state) * 16u + static_cast(type); + JSON_ASSERT(index < 400); + state = utf8d[index]; + return state; + } + + /* + * Overload to make the compiler happy while it is instantiating + * dump_integer for number_unsigned_t. + * Must never be called. + */ + number_unsigned_t remove_sign(number_unsigned_t x) + { + JSON_ASSERT(false); // LCOV_EXCL_LINE + return x; // LCOV_EXCL_LINE + } + + /* + * Helper function for dump_integer + * + * This function takes a negative signed integer and returns its absolute + * value as unsigned integer. The plus/minus shuffling is necessary as we can + * not directly remove the sign of an arbitrary signed integer as the + * absolute values of INT_MIN and INT_MAX are usually not the same. See + * #1708 for details. + */ + inline number_unsigned_t remove_sign(number_integer_t x) noexcept + { + JSON_ASSERT(x < 0 && x < (std::numeric_limits::max)()); + return static_cast(-(x + 1)) + 1; + } + + private: + /// the output of the serializer + output_adapter_t o = nullptr; + + /// a (hopefully) large enough character buffer + std::array number_buffer{{}}; + + /// the locale + const std::lconv* loc = nullptr; + /// the locale's thousand separator character + const char thousands_sep = '\0'; + /// the locale's decimal point character + const char decimal_point = '\0'; + + /// string buffer + std::array string_buffer{{}}; + + /// the indentation character + const char indent_char; + /// the indentation string + string_t indent_string; + + /// error_handler how to react on decoding errors + const error_handler_t error_handler; +}; +} // namespace detail +} // namespace nlohmann + +// #include + +// #include + +// #include + + +#include // less +#include // allocator +#include // pair +#include // vector + +namespace nlohmann +{ + +/// ordered_map: a minimal map-like container that preserves insertion order +/// for use within nlohmann::basic_json +template , + class Allocator = std::allocator>> + struct ordered_map : std::vector, Allocator> +{ + using key_type = Key; + using mapped_type = T; + using Container = std::vector, Allocator>; + using typename Container::iterator; + using typename Container::const_iterator; + using typename Container::size_type; + using typename Container::value_type; + + // Explicit constructors instead of `using Container::Container` + // otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4) + ordered_map(const Allocator& alloc = Allocator()) : Container{alloc} {} + template + ordered_map(It first, It last, const Allocator& alloc = Allocator()) + : Container{first, last, alloc} {} + ordered_map(std::initializer_list init, const Allocator& alloc = Allocator() ) + : Container{init, alloc} {} + + std::pair emplace(const key_type& key, T&& t) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return {it, false}; + } + } + Container::emplace_back(key, t); + return {--this->end(), true}; + } + + T& operator[](const Key& key) + { + return emplace(key, T{}).first->second; + } + + const T& operator[](const Key& key) const + { + return at(key); + } + + T& at(const Key& key) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return it->second; + } + } + + throw std::out_of_range("key not found"); + } + + const T& at(const Key& key) const + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return it->second; + } + } + + throw std::out_of_range("key not found"); + } + + size_type erase(const Key& key) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + // Since we cannot move const Keys, re-construct them in place + for (auto next = it; ++next != this->end(); ++it) + { + it->~value_type(); // Destroy but keep allocation + new (&*it) value_type{std::move(*next)}; + } + Container::pop_back(); + return 1; + } + } + return 0; + } + + iterator erase(iterator pos) + { + auto it = pos; + + // Since we cannot move const Keys, re-construct them in place + for (auto next = it; ++next != this->end(); ++it) + { + it->~value_type(); // Destroy but keep allocation + new (&*it) value_type{std::move(*next)}; + } + Container::pop_back(); + return pos; + } + + size_type count(const Key& key) const + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return 1; + } + } + return 0; + } + + iterator find(const Key& key) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return it; + } + } + return Container::end(); + } + + const_iterator find(const Key& key) const + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == key) + { + return it; + } + } + return Container::end(); + } + + std::pair insert( value_type&& value ) + { + return emplace(value.first, std::move(value.second)); + } + + std::pair insert( const value_type& value ) + { + for (auto it = this->begin(); it != this->end(); ++it) + { + if (it->first == value.first) + { + return {it, false}; + } + } + Container::push_back(value); + return {--this->end(), true}; + } +}; + +} // namespace nlohmann + + +/*! +@brief namespace for Niels Lohmann +@see https://github.com/nlohmann +@since version 1.0.0 +*/ +namespace nlohmann +{ + +/*! +@brief a class to store JSON values + +@tparam ObjectType type for JSON objects (`std::map` by default; will be used +in @ref object_t) +@tparam ArrayType type for JSON arrays (`std::vector` by default; will be used +in @ref array_t) +@tparam StringType type for JSON strings and object keys (`std::string` by +default; will be used in @ref string_t) +@tparam BooleanType type for JSON booleans (`bool` by default; will be used +in @ref boolean_t) +@tparam NumberIntegerType type for JSON integer numbers (`int64_t` by +default; will be used in @ref number_integer_t) +@tparam NumberUnsignedType type for JSON unsigned integer numbers (@c +`uint64_t` by default; will be used in @ref number_unsigned_t) +@tparam NumberFloatType type for JSON floating-point numbers (`double` by +default; will be used in @ref number_float_t) +@tparam BinaryType type for packed binary data for compatibility with binary +serialization formats (`std::vector` by default; will be used in +@ref binary_t) +@tparam AllocatorType type of the allocator to use (`std::allocator` by +default) +@tparam JSONSerializer the serializer to resolve internal calls to `to_json()` +and `from_json()` (@ref adl_serializer by default) + +@requirement The class satisfies the following concept requirements: +- Basic + - [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible): + JSON values can be default constructed. The result will be a JSON null + value. + - [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible): + A JSON value can be constructed from an rvalue argument. + - [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible): + A JSON value can be copy-constructed from an lvalue expression. + - [MoveAssignable](https://en.cppreference.com/w/cpp/named_req/MoveAssignable): + A JSON value van be assigned from an rvalue argument. + - [CopyAssignable](https://en.cppreference.com/w/cpp/named_req/CopyAssignable): + A JSON value can be copy-assigned from an lvalue expression. + - [Destructible](https://en.cppreference.com/w/cpp/named_req/Destructible): + JSON values can be destructed. +- Layout + - [StandardLayoutType](https://en.cppreference.com/w/cpp/named_req/StandardLayoutType): + JSON values have + [standard layout](https://en.cppreference.com/w/cpp/language/data_members#Standard_layout): + All non-static data members are private and standard layout types, the + class has no virtual functions or (virtual) base classes. +- Library-wide + - [EqualityComparable](https://en.cppreference.com/w/cpp/named_req/EqualityComparable): + JSON values can be compared with `==`, see @ref + operator==(const_reference,const_reference). + - [LessThanComparable](https://en.cppreference.com/w/cpp/named_req/LessThanComparable): + JSON values can be compared with `<`, see @ref + operator<(const_reference,const_reference). + - [Swappable](https://en.cppreference.com/w/cpp/named_req/Swappable): + Any JSON lvalue or rvalue of can be swapped with any lvalue or rvalue of + other compatible types, using unqualified function call @ref swap(). + - [NullablePointer](https://en.cppreference.com/w/cpp/named_req/NullablePointer): + JSON values can be compared against `std::nullptr_t` objects which are used + to model the `null` value. +- Container + - [Container](https://en.cppreference.com/w/cpp/named_req/Container): + JSON values can be used like STL containers and provide iterator access. + - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer); + JSON values can be used like STL containers and provide reverse iterator + access. + +@invariant The member variables @a m_value and @a m_type have the following +relationship: +- If `m_type == value_t::object`, then `m_value.object != nullptr`. +- If `m_type == value_t::array`, then `m_value.array != nullptr`. +- If `m_type == value_t::string`, then `m_value.string != nullptr`. +The invariants are checked by member function assert_invariant(). + +@internal +@note ObjectType trick from https://stackoverflow.com/a/9860911 +@endinternal + +@see [RFC 7159: The JavaScript Object Notation (JSON) Data Interchange +Format](http://rfc7159.net/rfc7159) + +@since version 1.0.0 + +@nosubgrouping +*/ +NLOHMANN_BASIC_JSON_TPL_DECLARATION +class basic_json +{ + private: + template friend struct detail::external_constructor; + friend ::nlohmann::json_pointer; + + template + friend class ::nlohmann::detail::parser; + friend ::nlohmann::detail::serializer; + template + friend class ::nlohmann::detail::iter_impl; + template + friend class ::nlohmann::detail::binary_writer; + template + friend class ::nlohmann::detail::binary_reader; + template + friend class ::nlohmann::detail::json_sax_dom_parser; + template + friend class ::nlohmann::detail::json_sax_dom_callback_parser; + + /// workaround type for MSVC + using basic_json_t = NLOHMANN_BASIC_JSON_TPL; + + // convenience aliases for types residing in namespace detail; + using lexer = ::nlohmann::detail::lexer_base; + + template + static ::nlohmann::detail::parser parser( + InputAdapterType adapter, + detail::parser_callback_tcb = nullptr, + const bool allow_exceptions = true, + const bool ignore_comments = false + ) + { + return ::nlohmann::detail::parser(std::move(adapter), + std::move(cb), allow_exceptions, ignore_comments); + } + + using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; + template + using internal_iterator = ::nlohmann::detail::internal_iterator; + template + using iter_impl = ::nlohmann::detail::iter_impl; + template + using iteration_proxy = ::nlohmann::detail::iteration_proxy; + template using json_reverse_iterator = ::nlohmann::detail::json_reverse_iterator; + + template + using output_adapter_t = ::nlohmann::detail::output_adapter_t; + + template + using binary_reader = ::nlohmann::detail::binary_reader; + template using binary_writer = ::nlohmann::detail::binary_writer; + + using serializer = ::nlohmann::detail::serializer; + + public: + using value_t = detail::value_t; + /// JSON Pointer, see @ref nlohmann::json_pointer + using json_pointer = ::nlohmann::json_pointer; + template + using json_serializer = JSONSerializer; + /// how to treat decoding errors + using error_handler_t = detail::error_handler_t; + /// how to treat CBOR tags + using cbor_tag_handler_t = detail::cbor_tag_handler_t; + /// helper type for initializer lists of basic_json values + using initializer_list_t = std::initializer_list>; + + using input_format_t = detail::input_format_t; + /// SAX interface type, see @ref nlohmann::json_sax + using json_sax_t = json_sax; + + //////////////// + // exceptions // + //////////////// + + /// @name exceptions + /// Classes to implement user-defined exceptions. + /// @{ + + /// @copydoc detail::exception + using exception = detail::exception; + /// @copydoc detail::parse_error + using parse_error = detail::parse_error; + /// @copydoc detail::invalid_iterator + using invalid_iterator = detail::invalid_iterator; + /// @copydoc detail::type_error + using type_error = detail::type_error; + /// @copydoc detail::out_of_range + using out_of_range = detail::out_of_range; + /// @copydoc detail::other_error + using other_error = detail::other_error; + + /// @} + + + ///////////////////// + // container types // + ///////////////////// + + /// @name container types + /// The canonic container types to use @ref basic_json like any other STL + /// container. + /// @{ + + /// the type of elements in a basic_json container + using value_type = basic_json; + + /// the type of an element reference + using reference = value_type&; + /// the type of an element const reference + using const_reference = const value_type&; + + /// a type to represent differences between iterators + using difference_type = std::ptrdiff_t; + /// a type to represent container sizes + using size_type = std::size_t; + + /// the allocator type + using allocator_type = AllocatorType; + + /// the type of an element pointer + using pointer = typename std::allocator_traits::pointer; + /// the type of an element const pointer + using const_pointer = typename std::allocator_traits::const_pointer; + + /// an iterator for a basic_json container + using iterator = iter_impl; + /// a const iterator for a basic_json container + using const_iterator = iter_impl; + /// a reverse iterator for a basic_json container + using reverse_iterator = json_reverse_iterator; + /// a const reverse iterator for a basic_json container + using const_reverse_iterator = json_reverse_iterator; + + /// @} + + + /*! + @brief returns the allocator associated with the container + */ + static allocator_type get_allocator() + { + return allocator_type(); + } + + /*! + @brief returns version information on the library + + This function returns a JSON object with information about the library, + including the version number and information on the platform and compiler. + + @return JSON object holding version information + key | description + ----------- | --------------- + `compiler` | Information on the used compiler. It is an object with the following keys: `c++` (the used C++ standard), `family` (the compiler family; possible values are `clang`, `icc`, `gcc`, `ilecpp`, `msvc`, `pgcpp`, `sunpro`, and `unknown`), and `version` (the compiler version). + `copyright` | The copyright line for the library as string. + `name` | The name of the library as string. + `platform` | The used platform as string. Possible values are `win32`, `linux`, `apple`, `unix`, and `unknown`. + `url` | The URL of the project as string. + `version` | The version of the library. It is an object with the following keys: `major`, `minor`, and `patch` as defined by [Semantic Versioning](http://semver.org), and `string` (the version string). + + @liveexample{The following code shows an example output of the `meta()` + function.,meta} + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @complexity Constant. + + @since 2.1.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json meta() + { + basic_json result; + + result["copyright"] = "(C) 2013-2020 Niels Lohmann"; + result["name"] = "JSON for Modern C++"; + result["url"] = "https://github.com/nlohmann/json"; + result["version"]["string"] = + std::to_string(NLOHMANN_JSON_VERSION_MAJOR) + "." + + std::to_string(NLOHMANN_JSON_VERSION_MINOR) + "." + + std::to_string(NLOHMANN_JSON_VERSION_PATCH); + result["version"]["major"] = NLOHMANN_JSON_VERSION_MAJOR; + result["version"]["minor"] = NLOHMANN_JSON_VERSION_MINOR; + result["version"]["patch"] = NLOHMANN_JSON_VERSION_PATCH; + +#ifdef _WIN32 + result["platform"] = "win32"; +#elif defined __linux__ + result["platform"] = "linux"; +#elif defined __APPLE__ + result["platform"] = "apple"; +#elif defined __unix__ + result["platform"] = "unix"; +#else + result["platform"] = "unknown"; +#endif + +#if defined(__ICC) || defined(__INTEL_COMPILER) + result["compiler"] = {{"family", "icc"}, {"version", __INTEL_COMPILER}}; +#elif defined(__clang__) + result["compiler"] = {{"family", "clang"}, {"version", __clang_version__}}; +#elif defined(__GNUC__) || defined(__GNUG__) + result["compiler"] = {{"family", "gcc"}, {"version", std::to_string(__GNUC__) + "." + std::to_string(__GNUC_MINOR__) + "." + std::to_string(__GNUC_PATCHLEVEL__)}}; +#elif defined(__HP_cc) || defined(__HP_aCC) + result["compiler"] = "hp" +#elif defined(__IBMCPP__) + result["compiler"] = {{"family", "ilecpp"}, {"version", __IBMCPP__}}; +#elif defined(_MSC_VER) + result["compiler"] = {{"family", "msvc"}, {"version", _MSC_VER}}; +#elif defined(__PGI) + result["compiler"] = {{"family", "pgcpp"}, {"version", __PGI}}; +#elif defined(__SUNPRO_CC) + result["compiler"] = {{"family", "sunpro"}, {"version", __SUNPRO_CC}}; +#else + result["compiler"] = {{"family", "unknown"}, {"version", "unknown"}}; +#endif + +#ifdef __cplusplus + result["compiler"]["c++"] = std::to_string(__cplusplus); +#else + result["compiler"]["c++"] = "unknown"; +#endif + return result; + } + + + /////////////////////////// + // JSON value data types // + /////////////////////////// + + /// @name JSON value data types + /// The data types to store a JSON value. These types are derived from + /// the template arguments passed to class @ref basic_json. + /// @{ + +#if defined(JSON_HAS_CPP_14) + // Use transparent comparator if possible, combined with perfect forwarding + // on find() and count() calls prevents unnecessary string construction. + using object_comparator_t = std::less<>; +#else + using object_comparator_t = std::less; +#endif + + /*! + @brief a type for an object + + [RFC 7159](http://rfc7159.net/rfc7159) describes JSON objects as follows: + > An object is an unordered collection of zero or more name/value pairs, + > where a name is a string and a value is a string, number, boolean, null, + > object, or array. + + To store objects in C++, a type is defined by the template parameters + described below. + + @tparam ObjectType the container to store objects (e.g., `std::map` or + `std::unordered_map`) + @tparam StringType the type of the keys or names (e.g., `std::string`). + The comparison function `std::less` is used to order elements + inside the container. + @tparam AllocatorType the allocator to use for objects (e.g., + `std::allocator`) + + #### Default type + + With the default values for @a ObjectType (`std::map`), @a StringType + (`std::string`), and @a AllocatorType (`std::allocator`), the default + value for @a object_t is: + + @code {.cpp} + std::map< + std::string, // key_type + basic_json, // value_type + std::less, // key_compare + std::allocator> // allocator_type + > + @endcode + + #### Behavior + + The choice of @a object_t influences the behavior of the JSON class. With + the default type, objects have the following behavior: + + - When all names are unique, objects will be interoperable in the sense + that all software implementations receiving that object will agree on + the name-value mappings. + - When the names within an object are not unique, it is unspecified which + one of the values for a given key will be chosen. For instance, + `{"key": 2, "key": 1}` could be equal to either `{"key": 1}` or + `{"key": 2}`. + - Internally, name/value pairs are stored in lexicographical order of the + names. Objects will also be serialized (see @ref dump) in this order. + For instance, `{"b": 1, "a": 2}` and `{"a": 2, "b": 1}` will be stored + and serialized as `{"a": 2, "b": 1}`. + - When comparing objects, the order of the name/value pairs is irrelevant. + This makes objects interoperable in the sense that they will not be + affected by these differences. For instance, `{"b": 1, "a": 2}` and + `{"a": 2, "b": 1}` will be treated as equal. + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) specifies: + > An implementation may set limits on the maximum depth of nesting. + + In this class, the object's limit of nesting is not explicitly constrained. + However, a maximum depth of nesting may be introduced by the compiler or + runtime environment. A theoretical limit can be queried by calling the + @ref max_size function of a JSON object. + + #### Storage + + Objects are stored as pointers in a @ref basic_json type. That is, for any + access to object values, a pointer of type `object_t*` must be + dereferenced. + + @sa @ref array_t -- type for an array value + + @since version 1.0.0 + + @note The order name/value pairs are added to the object is *not* + preserved by the library. Therefore, iterating an object may return + name/value pairs in a different order than they were originally stored. In + fact, keys will be traversed in alphabetical order as `std::map` with + `std::less` is used by default. Please note this behavior conforms to [RFC + 7159](http://rfc7159.net/rfc7159), because any order implements the + specified "unordered" nature of JSON objects. + */ + using object_t = ObjectType>>; + + /*! + @brief a type for an array + + [RFC 7159](http://rfc7159.net/rfc7159) describes JSON arrays as follows: + > An array is an ordered sequence of zero or more values. + + To store objects in C++, a type is defined by the template parameters + explained below. + + @tparam ArrayType container type to store arrays (e.g., `std::vector` or + `std::list`) + @tparam AllocatorType allocator to use for arrays (e.g., `std::allocator`) + + #### Default type + + With the default values for @a ArrayType (`std::vector`) and @a + AllocatorType (`std::allocator`), the default value for @a array_t is: + + @code {.cpp} + std::vector< + basic_json, // value_type + std::allocator // allocator_type + > + @endcode + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) specifies: + > An implementation may set limits on the maximum depth of nesting. + + In this class, the array's limit of nesting is not explicitly constrained. + However, a maximum depth of nesting may be introduced by the compiler or + runtime environment. A theoretical limit can be queried by calling the + @ref max_size function of a JSON array. + + #### Storage + + Arrays are stored as pointers in a @ref basic_json type. That is, for any + access to array values, a pointer of type `array_t*` must be dereferenced. + + @sa @ref object_t -- type for an object value + + @since version 1.0.0 + */ + using array_t = ArrayType>; + + /*! + @brief a type for a string + + [RFC 7159](http://rfc7159.net/rfc7159) describes JSON strings as follows: + > A string is a sequence of zero or more Unicode characters. + + To store objects in C++, a type is defined by the template parameter + described below. Unicode values are split by the JSON class into + byte-sized characters during deserialization. + + @tparam StringType the container to store strings (e.g., `std::string`). + Note this container is used for keys/names in objects, see @ref object_t. + + #### Default type + + With the default values for @a StringType (`std::string`), the default + value for @a string_t is: + + @code {.cpp} + std::string + @endcode + + #### Encoding + + Strings are stored in UTF-8 encoding. Therefore, functions like + `std::string::size()` or `std::string::length()` return the number of + bytes in the string rather than the number of characters or glyphs. + + #### String comparison + + [RFC 7159](http://rfc7159.net/rfc7159) states: + > Software implementations are typically required to test names of object + > members for equality. Implementations that transform the textual + > representation into sequences of Unicode code units and then perform the + > comparison numerically, code unit by code unit, are interoperable in the + > sense that implementations will agree in all cases on equality or + > inequality of two strings. For example, implementations that compare + > strings with escaped characters unconverted may incorrectly find that + > `"a\\b"` and `"a\u005Cb"` are not equal. + + This implementation is interoperable as it does compare strings code unit + by code unit. + + #### Storage + + String values are stored as pointers in a @ref basic_json type. That is, + for any access to string values, a pointer of type `string_t*` must be + dereferenced. + + @since version 1.0.0 + */ + using string_t = StringType; + + /*! + @brief a type for a boolean + + [RFC 7159](http://rfc7159.net/rfc7159) implicitly describes a boolean as a + type which differentiates the two literals `true` and `false`. + + To store objects in C++, a type is defined by the template parameter @a + BooleanType which chooses the type to use. + + #### Default type + + With the default values for @a BooleanType (`bool`), the default value for + @a boolean_t is: + + @code {.cpp} + bool + @endcode + + #### Storage + + Boolean values are stored directly inside a @ref basic_json type. + + @since version 1.0.0 + */ + using boolean_t = BooleanType; + + /*! + @brief a type for a number (integer) + + [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: + > The representation of numbers is similar to that used in most + > programming languages. A number is represented in base 10 using decimal + > digits. It contains an integer component that may be prefixed with an + > optional minus sign, which may be followed by a fraction part and/or an + > exponent part. Leading zeros are not allowed. (...) Numeric values that + > cannot be represented in the grammar below (such as Infinity and NaN) + > are not permitted. + + This description includes both integer and floating-point numbers. + However, C++ allows more precise storage if it is known whether the number + is a signed integer, an unsigned integer or a floating-point number. + Therefore, three different types, @ref number_integer_t, @ref + number_unsigned_t and @ref number_float_t are used. + + To store integer numbers in C++, a type is defined by the template + parameter @a NumberIntegerType which chooses the type to use. + + #### Default type + + With the default values for @a NumberIntegerType (`int64_t`), the default + value for @a number_integer_t is: + + @code {.cpp} + int64_t + @endcode + + #### Default behavior + + - The restrictions about leading zeros is not enforced in C++. Instead, + leading zeros in integer literals lead to an interpretation as octal + number. Internally, the value will be stored as decimal number. For + instance, the C++ integer literal `010` will be serialized to `8`. + During deserialization, leading zeros yield an error. + - Not-a-number (NaN) values will be serialized to `null`. + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) specifies: + > An implementation may set limits on the range and precision of numbers. + + When the default type is used, the maximal integer number that can be + stored is `9223372036854775807` (INT64_MAX) and the minimal integer number + that can be stored is `-9223372036854775808` (INT64_MIN). Integer numbers + that are out of range will yield over/underflow when used in a + constructor. During deserialization, too large or small integer numbers + will be automatically be stored as @ref number_unsigned_t or @ref + number_float_t. + + [RFC 7159](http://rfc7159.net/rfc7159) further states: + > Note that when such software is used, numbers that are integers and are + > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense + > that implementations will agree exactly on their numeric values. + + As this range is a subrange of the exactly supported range [INT64_MIN, + INT64_MAX], this class's integer type is interoperable. + + #### Storage + + Integer number values are stored directly inside a @ref basic_json type. + + @sa @ref number_float_t -- type for number values (floating-point) + + @sa @ref number_unsigned_t -- type for number values (unsigned integer) + + @since version 1.0.0 + */ + using number_integer_t = NumberIntegerType; + + /*! + @brief a type for a number (unsigned) + + [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: + > The representation of numbers is similar to that used in most + > programming languages. A number is represented in base 10 using decimal + > digits. It contains an integer component that may be prefixed with an + > optional minus sign, which may be followed by a fraction part and/or an + > exponent part. Leading zeros are not allowed. (...) Numeric values that + > cannot be represented in the grammar below (such as Infinity and NaN) + > are not permitted. + + This description includes both integer and floating-point numbers. + However, C++ allows more precise storage if it is known whether the number + is a signed integer, an unsigned integer or a floating-point number. + Therefore, three different types, @ref number_integer_t, @ref + number_unsigned_t and @ref number_float_t are used. + + To store unsigned integer numbers in C++, a type is defined by the + template parameter @a NumberUnsignedType which chooses the type to use. + + #### Default type + + With the default values for @a NumberUnsignedType (`uint64_t`), the + default value for @a number_unsigned_t is: + + @code {.cpp} + uint64_t + @endcode + + #### Default behavior + + - The restrictions about leading zeros is not enforced in C++. Instead, + leading zeros in integer literals lead to an interpretation as octal + number. Internally, the value will be stored as decimal number. For + instance, the C++ integer literal `010` will be serialized to `8`. + During deserialization, leading zeros yield an error. + - Not-a-number (NaN) values will be serialized to `null`. + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) specifies: + > An implementation may set limits on the range and precision of numbers. + + When the default type is used, the maximal integer number that can be + stored is `18446744073709551615` (UINT64_MAX) and the minimal integer + number that can be stored is `0`. Integer numbers that are out of range + will yield over/underflow when used in a constructor. During + deserialization, too large or small integer numbers will be automatically + be stored as @ref number_integer_t or @ref number_float_t. + + [RFC 7159](http://rfc7159.net/rfc7159) further states: + > Note that when such software is used, numbers that are integers and are + > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense + > that implementations will agree exactly on their numeric values. + + As this range is a subrange (when considered in conjunction with the + number_integer_t type) of the exactly supported range [0, UINT64_MAX], + this class's integer type is interoperable. + + #### Storage + + Integer number values are stored directly inside a @ref basic_json type. + + @sa @ref number_float_t -- type for number values (floating-point) + @sa @ref number_integer_t -- type for number values (integer) + + @since version 2.0.0 + */ + using number_unsigned_t = NumberUnsignedType; + + /*! + @brief a type for a number (floating-point) + + [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: + > The representation of numbers is similar to that used in most + > programming languages. A number is represented in base 10 using decimal + > digits. It contains an integer component that may be prefixed with an + > optional minus sign, which may be followed by a fraction part and/or an + > exponent part. Leading zeros are not allowed. (...) Numeric values that + > cannot be represented in the grammar below (such as Infinity and NaN) + > are not permitted. + + This description includes both integer and floating-point numbers. + However, C++ allows more precise storage if it is known whether the number + is a signed integer, an unsigned integer or a floating-point number. + Therefore, three different types, @ref number_integer_t, @ref + number_unsigned_t and @ref number_float_t are used. + + To store floating-point numbers in C++, a type is defined by the template + parameter @a NumberFloatType which chooses the type to use. + + #### Default type + + With the default values for @a NumberFloatType (`double`), the default + value for @a number_float_t is: + + @code {.cpp} + double + @endcode + + #### Default behavior + + - The restrictions about leading zeros is not enforced in C++. Instead, + leading zeros in floating-point literals will be ignored. Internally, + the value will be stored as decimal number. For instance, the C++ + floating-point literal `01.2` will be serialized to `1.2`. During + deserialization, leading zeros yield an error. + - Not-a-number (NaN) values will be serialized to `null`. + + #### Limits + + [RFC 7159](http://rfc7159.net/rfc7159) states: + > This specification allows implementations to set limits on the range and + > precision of numbers accepted. Since software that implements IEEE + > 754-2008 binary64 (double precision) numbers is generally available and + > widely used, good interoperability can be achieved by implementations + > that expect no more precision or range than these provide, in the sense + > that implementations will approximate JSON numbers within the expected + > precision. + + This implementation does exactly follow this approach, as it uses double + precision floating-point numbers. Note values smaller than + `-1.79769313486232e+308` and values greater than `1.79769313486232e+308` + will be stored as NaN internally and be serialized to `null`. + + #### Storage + + Floating-point number values are stored directly inside a @ref basic_json + type. + + @sa @ref number_integer_t -- type for number values (integer) + + @sa @ref number_unsigned_t -- type for number values (unsigned integer) + + @since version 1.0.0 + */ + using number_float_t = NumberFloatType; + + /*! + @brief a type for a packed binary type + + This type is a type designed to carry binary data that appears in various + serialized formats, such as CBOR's Major Type 2, MessagePack's bin, and + BSON's generic binary subtype. This type is NOT a part of standard JSON and + exists solely for compatibility with these binary types. As such, it is + simply defined as an ordered sequence of zero or more byte values. + + Additionally, as an implementation detail, the subtype of the binary data is + carried around as a `std::uint8_t`, which is compatible with both of the + binary data formats that use binary subtyping, (though the specific + numbering is incompatible with each other, and it is up to the user to + translate between them). + + [CBOR's RFC 7049](https://tools.ietf.org/html/rfc7049) describes this type + as: + > Major type 2: a byte string. The string's length in bytes is represented + > following the rules for positive integers (major type 0). + + [MessagePack's documentation on the bin type + family](https://github.com/msgpack/msgpack/blob/master/spec.md#bin-format-family) + describes this type as: + > Bin format family stores an byte array in 2, 3, or 5 bytes of extra bytes + > in addition to the size of the byte array. + + [BSON's specifications](http://bsonspec.org/spec.html) describe several + binary types; however, this type is intended to represent the generic binary + type which has the description: + > Generic binary subtype - This is the most commonly used binary subtype and + > should be the 'default' for drivers and tools. + + None of these impose any limitations on the internal representation other + than the basic unit of storage be some type of array whose parts are + decomposable into bytes. + + The default representation of this binary format is a + `std::vector`, which is a very common way to represent a byte + array in modern C++. + + #### Default type + + The default values for @a BinaryType is `std::vector` + + #### Storage + + Binary Arrays are stored as pointers in a @ref basic_json type. That is, + for any access to array values, a pointer of the type `binary_t*` must be + dereferenced. + + #### Notes on subtypes + + - CBOR + - Binary values are represented as byte strings. No subtypes are + supported and will be ignored when CBOR is written. + - MessagePack + - If a subtype is given and the binary array contains exactly 1, 2, 4, 8, + or 16 elements, the fixext family (fixext1, fixext2, fixext4, fixext8) + is used. For other sizes, the ext family (ext8, ext16, ext32) is used. + The subtype is then added as singed 8-bit integer. + - If no subtype is given, the bin family (bin8, bin16, bin32) is used. + - BSON + - If a subtype is given, it is used and added as unsigned 8-bit integer. + - If no subtype is given, the generic binary subtype 0x00 is used. + + @sa @ref binary -- create a binary array + + @since version 3.8.0 + */ + using binary_t = nlohmann::byte_container_with_subtype; + /// @} + + private: + + /// helper for exception-safe object creation + template + JSON_HEDLEY_RETURNS_NON_NULL + static T* create(Args&& ... args) + { + AllocatorType alloc; + using AllocatorTraits = std::allocator_traits>; + + auto deleter = [&](T * object) + { + AllocatorTraits::deallocate(alloc, object, 1); + }; + std::unique_ptr object(AllocatorTraits::allocate(alloc, 1), deleter); + AllocatorTraits::construct(alloc, object.get(), std::forward(args)...); + JSON_ASSERT(object != nullptr); + return object.release(); + } + + //////////////////////// + // JSON value storage // + //////////////////////// + + /*! + @brief a JSON value + + The actual storage for a JSON value of the @ref basic_json class. This + union combines the different storage types for the JSON value types + defined in @ref value_t. + + JSON type | value_t type | used type + --------- | --------------- | ------------------------ + object | object | pointer to @ref object_t + array | array | pointer to @ref array_t + string | string | pointer to @ref string_t + boolean | boolean | @ref boolean_t + number | number_integer | @ref number_integer_t + number | number_unsigned | @ref number_unsigned_t + number | number_float | @ref number_float_t + binary | binary | pointer to @ref binary_t + null | null | *no value is stored* + + @note Variable-length types (objects, arrays, and strings) are stored as + pointers. The size of the union should not exceed 64 bits if the default + value types are used. + + @since version 1.0.0 + */ + union json_value + { + /// object (stored with pointer to save storage) + object_t* object; + /// array (stored with pointer to save storage) + array_t* array; + /// string (stored with pointer to save storage) + string_t* string; + /// binary (stored with pointer to save storage) + binary_t* binary; + /// boolean + boolean_t boolean; + /// number (integer) + number_integer_t number_integer; + /// number (unsigned integer) + number_unsigned_t number_unsigned; + /// number (floating-point) + number_float_t number_float; + + /// default constructor (for null values) + json_value() = default; + /// constructor for booleans + json_value(boolean_t v) noexcept : boolean(v) {} + /// constructor for numbers (integer) + json_value(number_integer_t v) noexcept : number_integer(v) {} + /// constructor for numbers (unsigned) + json_value(number_unsigned_t v) noexcept : number_unsigned(v) {} + /// constructor for numbers (floating-point) + json_value(number_float_t v) noexcept : number_float(v) {} + /// constructor for empty values of a given type + json_value(value_t t) + { + switch (t) + { + case value_t::object: + { + object = create(); + break; + } + + case value_t::array: + { + array = create(); + break; + } + + case value_t::string: + { + string = create(""); + break; + } + + case value_t::binary: + { + binary = create(); + break; + } + + case value_t::boolean: + { + boolean = boolean_t(false); + break; + } + + case value_t::number_integer: + { + number_integer = number_integer_t(0); + break; + } + + case value_t::number_unsigned: + { + number_unsigned = number_unsigned_t(0); + break; + } + + case value_t::number_float: + { + number_float = number_float_t(0.0); + break; + } + + case value_t::null: + { + object = nullptr; // silence warning, see #821 + break; + } + + default: + { + object = nullptr; // silence warning, see #821 + if (JSON_HEDLEY_UNLIKELY(t == value_t::null)) + { + JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.9.1")); // LCOV_EXCL_LINE + } + break; + } + } + } + + /// constructor for strings + json_value(const string_t& value) + { + string = create(value); + } + + /// constructor for rvalue strings + json_value(string_t&& value) + { + string = create(std::move(value)); + } + + /// constructor for objects + json_value(const object_t& value) + { + object = create(value); + } + + /// constructor for rvalue objects + json_value(object_t&& value) + { + object = create(std::move(value)); + } + + /// constructor for arrays + json_value(const array_t& value) + { + array = create(value); + } + + /// constructor for rvalue arrays + json_value(array_t&& value) + { + array = create(std::move(value)); + } + + /// constructor for binary arrays + json_value(const typename binary_t::container_type& value) + { + binary = create(value); + } + + /// constructor for rvalue binary arrays + json_value(typename binary_t::container_type&& value) + { + binary = create(std::move(value)); + } + + /// constructor for binary arrays (internal type) + json_value(const binary_t& value) + { + binary = create(value); + } + + /// constructor for rvalue binary arrays (internal type) + json_value(binary_t&& value) + { + binary = create(std::move(value)); + } + + void destroy(value_t t) noexcept + { + // flatten the current json_value to a heap-allocated stack + std::vector stack; + + // move the top-level items to stack + if (t == value_t::array) + { + stack.reserve(array->size()); + std::move(array->begin(), array->end(), std::back_inserter(stack)); + } + else if (t == value_t::object) + { + stack.reserve(object->size()); + for (auto&& it : *object) + { + stack.push_back(std::move(it.second)); + } + } + + while (!stack.empty()) + { + // move the last item to local variable to be processed + basic_json current_item(std::move(stack.back())); + stack.pop_back(); + + // if current_item is array/object, move + // its children to the stack to be processed later + if (current_item.is_array()) + { + std::move(current_item.m_value.array->begin(), current_item.m_value.array->end(), + std::back_inserter(stack)); + + current_item.m_value.array->clear(); + } + else if (current_item.is_object()) + { + for (auto&& it : *current_item.m_value.object) + { + stack.push_back(std::move(it.second)); + } + + current_item.m_value.object->clear(); + } + + // it's now safe that current_item get destructed + // since it doesn't have any children + } + + switch (t) + { + case value_t::object: + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, object); + std::allocator_traits::deallocate(alloc, object, 1); + break; + } + + case value_t::array: + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, array); + std::allocator_traits::deallocate(alloc, array, 1); + break; + } + + case value_t::string: + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, string); + std::allocator_traits::deallocate(alloc, string, 1); + break; + } + + case value_t::binary: + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, binary); + std::allocator_traits::deallocate(alloc, binary, 1); + break; + } + + default: + { + break; + } + } + } + }; + + /*! + @brief checks the class invariants + + This function asserts the class invariants. It needs to be called at the + end of every constructor to make sure that created objects respect the + invariant. Furthermore, it has to be called each time the type of a JSON + value is changed, because the invariant expresses a relationship between + @a m_type and @a m_value. + */ + void assert_invariant() const noexcept + { + JSON_ASSERT(m_type != value_t::object || m_value.object != nullptr); + JSON_ASSERT(m_type != value_t::array || m_value.array != nullptr); + JSON_ASSERT(m_type != value_t::string || m_value.string != nullptr); + JSON_ASSERT(m_type != value_t::binary || m_value.binary != nullptr); + } + + public: + ////////////////////////// + // JSON parser callback // + ////////////////////////// + + /*! + @brief parser event types + + The parser callback distinguishes the following events: + - `object_start`: the parser read `{` and started to process a JSON object + - `key`: the parser read a key of a value in an object + - `object_end`: the parser read `}` and finished processing a JSON object + - `array_start`: the parser read `[` and started to process a JSON array + - `array_end`: the parser read `]` and finished processing a JSON array + - `value`: the parser finished reading a JSON value + + @image html callback_events.png "Example when certain parse events are triggered" + + @sa @ref parser_callback_t for more information and examples + */ + using parse_event_t = detail::parse_event_t; + + /*! + @brief per-element parser callback type + + With a parser callback function, the result of parsing a JSON text can be + influenced. When passed to @ref parse, it is called on certain events + (passed as @ref parse_event_t via parameter @a event) with a set recursion + depth @a depth and context JSON value @a parsed. The return value of the + callback function is a boolean indicating whether the element that emitted + the callback shall be kept or not. + + We distinguish six scenarios (determined by the event type) in which the + callback function can be called. The following table describes the values + of the parameters @a depth, @a event, and @a parsed. + + parameter @a event | description | parameter @a depth | parameter @a parsed + ------------------ | ----------- | ------------------ | ------------------- + parse_event_t::object_start | the parser read `{` and started to process a JSON object | depth of the parent of the JSON object | a JSON value with type discarded + parse_event_t::key | the parser read a key of a value in an object | depth of the currently parsed JSON object | a JSON string containing the key + parse_event_t::object_end | the parser read `}` and finished processing a JSON object | depth of the parent of the JSON object | the parsed JSON object + parse_event_t::array_start | the parser read `[` and started to process a JSON array | depth of the parent of the JSON array | a JSON value with type discarded + parse_event_t::array_end | the parser read `]` and finished processing a JSON array | depth of the parent of the JSON array | the parsed JSON array + parse_event_t::value | the parser finished reading a JSON value | depth of the value | the parsed JSON value + + @image html callback_events.png "Example when certain parse events are triggered" + + Discarding a value (i.e., returning `false`) has different effects + depending on the context in which function was called: + + - Discarded values in structured types are skipped. That is, the parser + will behave as if the discarded value was never read. + - In case a value outside a structured type is skipped, it is replaced + with `null`. This case happens if the top-level element is skipped. + + @param[in] depth the depth of the recursion during parsing + + @param[in] event an event of type parse_event_t indicating the context in + the callback function has been called + + @param[in,out] parsed the current intermediate parse result; note that + writing to this value has no effect for parse_event_t::key events + + @return Whether the JSON value which called the function during parsing + should be kept (`true`) or not (`false`). In the latter case, it is either + skipped completely or replaced by an empty discarded object. + + @sa @ref parse for examples + + @since version 1.0.0 + */ + using parser_callback_t = detail::parser_callback_t; + + ////////////////// + // constructors // + ////////////////// + + /// @name constructors and destructors + /// Constructors of class @ref basic_json, copy/move constructor, copy + /// assignment, static functions creating objects, and the destructor. + /// @{ + + /*! + @brief create an empty value with a given type + + Create an empty JSON value with a given type. The value will be default + initialized with an empty value which depends on the type: + + Value type | initial value + ----------- | ------------- + null | `null` + boolean | `false` + string | `""` + number | `0` + object | `{}` + array | `[]` + binary | empty array + + @param[in] v the type of the value to create + + @complexity Constant. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The following code shows the constructor for different @ref + value_t values,basic_json__value_t} + + @sa @ref clear() -- restores the postcondition of this constructor + + @since version 1.0.0 + */ + basic_json(const value_t v) + : m_type(v), m_value(v) + { + assert_invariant(); + } + + /*! + @brief create a null object + + Create a `null` JSON value. It either takes a null pointer as parameter + (explicitly creating `null`) or no parameter (implicitly creating `null`). + The passed null pointer itself is not read -- it is only used to choose + the right constructor. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this constructor never throws + exceptions. + + @liveexample{The following code shows the constructor with and without a + null pointer parameter.,basic_json__nullptr_t} + + @since version 1.0.0 + */ + basic_json(std::nullptr_t = nullptr) noexcept + : basic_json(value_t::null) + { + assert_invariant(); + } + + /*! + @brief create a JSON value + + This is a "catch all" constructor for all compatible JSON types; that is, + types for which a `to_json()` method exists. The constructor forwards the + parameter @a val to that method (to `json_serializer::to_json` method + with `U = uncvref_t`, to be exact). + + Template type @a CompatibleType includes, but is not limited to, the + following types: + - **arrays**: @ref array_t and all kinds of compatible containers such as + `std::vector`, `std::deque`, `std::list`, `std::forward_list`, + `std::array`, `std::valarray`, `std::set`, `std::unordered_set`, + `std::multiset`, and `std::unordered_multiset` with a `value_type` from + which a @ref basic_json value can be constructed. + - **objects**: @ref object_t and all kinds of compatible associative + containers such as `std::map`, `std::unordered_map`, `std::multimap`, + and `std::unordered_multimap` with a `key_type` compatible to + @ref string_t and a `value_type` from which a @ref basic_json value can + be constructed. + - **strings**: @ref string_t, string literals, and all compatible string + containers can be used. + - **numbers**: @ref number_integer_t, @ref number_unsigned_t, + @ref number_float_t, and all convertible number types such as `int`, + `size_t`, `int64_t`, `float` or `double` can be used. + - **boolean**: @ref boolean_t / `bool` can be used. + - **binary**: @ref binary_t / `std::vector` may be used, + unfortunately because string literals cannot be distinguished from binary + character arrays by the C++ type system, all types compatible with `const + char*` will be directed to the string constructor instead. This is both + for backwards compatibility, and due to the fact that a binary type is not + a standard JSON type. + + See the examples below. + + @tparam CompatibleType a type such that: + - @a CompatibleType is not derived from `std::istream`, + - @a CompatibleType is not @ref basic_json (to avoid hijacking copy/move + constructors), + - @a CompatibleType is not a different @ref basic_json type (i.e. with different template arguments) + - @a CompatibleType is not a @ref basic_json nested type (e.g., + @ref json_pointer, @ref iterator, etc ...) + - @ref @ref json_serializer has a + `to_json(basic_json_t&, CompatibleType&&)` method + + @tparam U = `uncvref_t` + + @param[in] val the value to be forwarded to the respective constructor + + @complexity Usually linear in the size of the passed @a val, also + depending on the implementation of the called `to_json()` + method. + + @exceptionsafety Depends on the called constructor. For types directly + supported by the library (i.e., all types for which no `to_json()` function + was provided), strong guarantee holds: if an exception is thrown, there are + no changes to any JSON value. + + @liveexample{The following code shows the constructor with several + compatible types.,basic_json__CompatibleType} + + @since version 2.1.0 + */ + template < typename CompatibleType, + typename U = detail::uncvref_t, + detail::enable_if_t < + !detail::is_basic_json::value && detail::is_compatible_type::value, int > = 0 > + basic_json(CompatibleType && val) noexcept(noexcept( + JSONSerializer::to_json(std::declval(), + std::forward(val)))) + { + JSONSerializer::to_json(*this, std::forward(val)); + assert_invariant(); + } + + /*! + @brief create a JSON value from an existing one + + This is a constructor for existing @ref basic_json types. + It does not hijack copy/move constructors, since the parameter has different + template arguments than the current ones. + + The constructor tries to convert the internal @ref m_value of the parameter. + + @tparam BasicJsonType a type such that: + - @a BasicJsonType is a @ref basic_json type. + - @a BasicJsonType has different template arguments than @ref basic_json_t. + + @param[in] val the @ref basic_json value to be converted. + + @complexity Usually linear in the size of the passed @a val, also + depending on the implementation of the called `to_json()` + method. + + @exceptionsafety Depends on the called constructor. For types directly + supported by the library (i.e., all types for which no `to_json()` function + was provided), strong guarantee holds: if an exception is thrown, there are + no changes to any JSON value. + + @since version 3.2.0 + */ + template < typename BasicJsonType, + detail::enable_if_t < + detail::is_basic_json::value&& !std::is_same::value, int > = 0 > + basic_json(const BasicJsonType& val) + { + using other_boolean_t = typename BasicJsonType::boolean_t; + using other_number_float_t = typename BasicJsonType::number_float_t; + using other_number_integer_t = typename BasicJsonType::number_integer_t; + using other_number_unsigned_t = typename BasicJsonType::number_unsigned_t; + using other_string_t = typename BasicJsonType::string_t; + using other_object_t = typename BasicJsonType::object_t; + using other_array_t = typename BasicJsonType::array_t; + using other_binary_t = typename BasicJsonType::binary_t; + + switch (val.type()) + { + case value_t::boolean: + JSONSerializer::to_json(*this, val.template get()); + break; + case value_t::number_float: + JSONSerializer::to_json(*this, val.template get()); + break; + case value_t::number_integer: + JSONSerializer::to_json(*this, val.template get()); + break; + case value_t::number_unsigned: + JSONSerializer::to_json(*this, val.template get()); + break; + case value_t::string: + JSONSerializer::to_json(*this, val.template get_ref()); + break; + case value_t::object: + JSONSerializer::to_json(*this, val.template get_ref()); + break; + case value_t::array: + JSONSerializer::to_json(*this, val.template get_ref()); + break; + case value_t::binary: + JSONSerializer::to_json(*this, val.template get_ref()); + break; + case value_t::null: + *this = nullptr; + break; + case value_t::discarded: + m_type = value_t::discarded; + break; + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + assert_invariant(); + } + + /*! + @brief create a container (array or object) from an initializer list + + Creates a JSON value of type array or object from the passed initializer + list @a init. In case @a type_deduction is `true` (default), the type of + the JSON value to be created is deducted from the initializer list @a init + according to the following rules: + + 1. If the list is empty, an empty JSON object value `{}` is created. + 2. If the list consists of pairs whose first element is a string, a JSON + object value is created where the first elements of the pairs are + treated as keys and the second elements are as values. + 3. In all other cases, an array is created. + + The rules aim to create the best fit between a C++ initializer list and + JSON values. The rationale is as follows: + + 1. The empty initializer list is written as `{}` which is exactly an empty + JSON object. + 2. C++ has no way of describing mapped types other than to list a list of + pairs. As JSON requires that keys must be of type string, rule 2 is the + weakest constraint one can pose on initializer lists to interpret them + as an object. + 3. In all other cases, the initializer list could not be interpreted as + JSON object type, so interpreting it as JSON array type is safe. + + With the rules described above, the following JSON values cannot be + expressed by an initializer list: + + - the empty array (`[]`): use @ref array(initializer_list_t) + with an empty initializer list in this case + - arrays whose elements satisfy rule 2: use @ref + array(initializer_list_t) with the same initializer list + in this case + + @note When used without parentheses around an empty initializer list, @ref + basic_json() is called instead of this function, yielding the JSON null + value. + + @param[in] init initializer list with JSON values + + @param[in] type_deduction internal parameter; when set to `true`, the type + of the JSON value is deducted from the initializer list @a init; when set + to `false`, the type provided via @a manual_type is forced. This mode is + used by the functions @ref array(initializer_list_t) and + @ref object(initializer_list_t). + + @param[in] manual_type internal parameter; when @a type_deduction is set + to `false`, the created JSON value will use the provided type (only @ref + value_t::array and @ref value_t::object are valid); when @a type_deduction + is set to `true`, this parameter has no effect + + @throw type_error.301 if @a type_deduction is `false`, @a manual_type is + `value_t::object`, but @a init contains an element which is not a pair + whose first element is a string. In this case, the constructor could not + create an object. If @a type_deduction would have be `true`, an array + would have been created. See @ref object(initializer_list_t) + for an example. + + @complexity Linear in the size of the initializer list @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The example below shows how JSON values are created from + initializer lists.,basic_json__list_init_t} + + @sa @ref array(initializer_list_t) -- create a JSON array + value from an initializer list + @sa @ref object(initializer_list_t) -- create a JSON object + value from an initializer list + + @since version 1.0.0 + */ + basic_json(initializer_list_t init, + bool type_deduction = true, + value_t manual_type = value_t::array) + { + // check if each element is an array with two elements whose first + // element is a string + bool is_an_object = std::all_of(init.begin(), init.end(), + [](const detail::json_ref& element_ref) + { + return element_ref->is_array() && element_ref->size() == 2 && (*element_ref)[0].is_string(); + }); + + // adjust type if type deduction is not wanted + if (!type_deduction) + { + // if array is wanted, do not create an object though possible + if (manual_type == value_t::array) + { + is_an_object = false; + } + + // if object is wanted but impossible, throw an exception + if (JSON_HEDLEY_UNLIKELY(manual_type == value_t::object && !is_an_object)) + { + JSON_THROW(type_error::create(301, "cannot create object from initializer list")); + } + } + + if (is_an_object) + { + // the initializer list is a list of pairs -> create object + m_type = value_t::object; + m_value = value_t::object; + + std::for_each(init.begin(), init.end(), [this](const detail::json_ref& element_ref) + { + auto element = element_ref.moved_or_copied(); + m_value.object->emplace( + std::move(*((*element.m_value.array)[0].m_value.string)), + std::move((*element.m_value.array)[1])); + }); + } + else + { + // the initializer list describes an array -> create array + m_type = value_t::array; + m_value.array = create(init.begin(), init.end()); + } + + assert_invariant(); + } + + /*! + @brief explicitly create a binary array (without subtype) + + Creates a JSON binary array value from a given binary container. Binary + values are part of various binary formats, such as CBOR, MessagePack, and + BSON. This constructor is used to create a value for serialization to those + formats. + + @note Note, this function exists because of the difficulty in correctly + specifying the correct template overload in the standard value ctor, as both + JSON arrays and JSON binary arrays are backed with some form of a + `std::vector`. Because JSON binary arrays are a non-standard extension it + was decided that it would be best to prevent automatic initialization of a + binary array type, for backwards compatibility and so it does not happen on + accident. + + @param[in] init container containing bytes to use as binary type + + @return JSON binary array value + + @complexity Linear in the size of @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @since version 3.8.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json binary(const typename binary_t::container_type& init) + { + auto res = basic_json(); + res.m_type = value_t::binary; + res.m_value = init; + return res; + } + + /*! + @brief explicitly create a binary array (with subtype) + + Creates a JSON binary array value from a given binary container. Binary + values are part of various binary formats, such as CBOR, MessagePack, and + BSON. This constructor is used to create a value for serialization to those + formats. + + @note Note, this function exists because of the difficulty in correctly + specifying the correct template overload in the standard value ctor, as both + JSON arrays and JSON binary arrays are backed with some form of a + `std::vector`. Because JSON binary arrays are a non-standard extension it + was decided that it would be best to prevent automatic initialization of a + binary array type, for backwards compatibility and so it does not happen on + accident. + + @param[in] init container containing bytes to use as binary type + @param[in] subtype subtype to use in MessagePack and BSON + + @return JSON binary array value + + @complexity Linear in the size of @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @since version 3.8.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json binary(const typename binary_t::container_type& init, std::uint8_t subtype) + { + auto res = basic_json(); + res.m_type = value_t::binary; + res.m_value = binary_t(init, subtype); + return res; + } + + /// @copydoc binary(const typename binary_t::container_type&) + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json binary(typename binary_t::container_type&& init) + { + auto res = basic_json(); + res.m_type = value_t::binary; + res.m_value = std::move(init); + return res; + } + + /// @copydoc binary(const typename binary_t::container_type&, std::uint8_t) + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json binary(typename binary_t::container_type&& init, std::uint8_t subtype) + { + auto res = basic_json(); + res.m_type = value_t::binary; + res.m_value = binary_t(std::move(init), subtype); + return res; + } + + /*! + @brief explicitly create an array from an initializer list + + Creates a JSON array value from a given initializer list. That is, given a + list of values `a, b, c`, creates the JSON value `[a, b, c]`. If the + initializer list is empty, the empty array `[]` is created. + + @note This function is only needed to express two edge cases that cannot + be realized with the initializer list constructor (@ref + basic_json(initializer_list_t, bool, value_t)). These cases + are: + 1. creating an array whose elements are all pairs whose first element is a + string -- in this case, the initializer list constructor would create an + object, taking the first elements as keys + 2. creating an empty array -- passing the empty initializer list to the + initializer list constructor yields an empty object + + @param[in] init initializer list with JSON values to create an array from + (optional) + + @return JSON array value + + @complexity Linear in the size of @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The following code shows an example for the `array` + function.,array} + + @sa @ref basic_json(initializer_list_t, bool, value_t) -- + create a JSON value from an initializer list + @sa @ref object(initializer_list_t) -- create a JSON object + value from an initializer list + + @since version 1.0.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json array(initializer_list_t init = {}) + { + return basic_json(init, false, value_t::array); + } + + /*! + @brief explicitly create an object from an initializer list + + Creates a JSON object value from a given initializer list. The initializer + lists elements must be pairs, and their first elements must be strings. If + the initializer list is empty, the empty object `{}` is created. + + @note This function is only added for symmetry reasons. In contrast to the + related function @ref array(initializer_list_t), there are + no cases which can only be expressed by this function. That is, any + initializer list @a init can also be passed to the initializer list + constructor @ref basic_json(initializer_list_t, bool, value_t). + + @param[in] init initializer list to create an object from (optional) + + @return JSON object value + + @throw type_error.301 if @a init is not a list of pairs whose first + elements are strings. In this case, no object can be created. When such a + value is passed to @ref basic_json(initializer_list_t, bool, value_t), + an array would have been created from the passed initializer list @a init. + See example below. + + @complexity Linear in the size of @a init. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The following code shows an example for the `object` + function.,object} + + @sa @ref basic_json(initializer_list_t, bool, value_t) -- + create a JSON value from an initializer list + @sa @ref array(initializer_list_t) -- create a JSON array + value from an initializer list + + @since version 1.0.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json object(initializer_list_t init = {}) + { + return basic_json(init, false, value_t::object); + } + + /*! + @brief construct an array with count copies of given value + + Constructs a JSON array value by creating @a cnt copies of a passed value. + In case @a cnt is `0`, an empty array is created. + + @param[in] cnt the number of JSON copies of @a val to create + @param[in] val the JSON value to copy + + @post `std::distance(begin(),end()) == cnt` holds. + + @complexity Linear in @a cnt. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The following code shows examples for the @ref + basic_json(size_type\, const basic_json&) + constructor.,basic_json__size_type_basic_json} + + @since version 1.0.0 + */ + basic_json(size_type cnt, const basic_json& val) + : m_type(value_t::array) + { + m_value.array = create(cnt, val); + assert_invariant(); + } + + /*! + @brief construct a JSON container given an iterator range + + Constructs the JSON value with the contents of the range `[first, last)`. + The semantics depends on the different types a JSON value can have: + - In case of a null type, invalid_iterator.206 is thrown. + - In case of other primitive types (number, boolean, or string), @a first + must be `begin()` and @a last must be `end()`. In this case, the value is + copied. Otherwise, invalid_iterator.204 is thrown. + - In case of structured types (array, object), the constructor behaves as + similar versions for `std::vector` or `std::map`; that is, a JSON array + or object is constructed from the values in the range. + + @tparam InputIT an input iterator type (@ref iterator or @ref + const_iterator) + + @param[in] first begin of the range to copy from (included) + @param[in] last end of the range to copy from (excluded) + + @pre Iterators @a first and @a last must be initialized. **This + precondition is enforced with an assertion (see warning).** If + assertions are switched off, a violation of this precondition yields + undefined behavior. + + @pre Range `[first, last)` is valid. Usually, this precondition cannot be + checked efficiently. Only certain edge cases are detected; see the + description of the exceptions below. A violation of this precondition + yields undefined behavior. + + @warning A precondition is enforced with a runtime assertion that will + result in calling `std::abort` if this precondition is not met. + Assertions can be disabled by defining `NDEBUG` at compile time. + See https://en.cppreference.com/w/cpp/error/assert for more + information. + + @throw invalid_iterator.201 if iterators @a first and @a last are not + compatible (i.e., do not belong to the same JSON value). In this case, + the range `[first, last)` is undefined. + @throw invalid_iterator.204 if iterators @a first and @a last belong to a + primitive type (number, boolean, or string), but @a first does not point + to the first element any more. In this case, the range `[first, last)` is + undefined. See example code below. + @throw invalid_iterator.206 if iterators @a first and @a last belong to a + null value. In this case, the range `[first, last)` is undefined. + + @complexity Linear in distance between @a first and @a last. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @liveexample{The example below shows several ways to create JSON values by + specifying a subrange with iterators.,basic_json__InputIt_InputIt} + + @since version 1.0.0 + */ + template < class InputIT, typename std::enable_if < + std::is_same::value || + std::is_same::value, int >::type = 0 > + basic_json(InputIT first, InputIT last) + { + JSON_ASSERT(first.m_object != nullptr); + JSON_ASSERT(last.m_object != nullptr); + + // make sure iterator fits the current value + if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) + { + JSON_THROW(invalid_iterator::create(201, "iterators are not compatible")); + } + + // copy type from first iterator + m_type = first.m_object->m_type; + + // check if iterator range is complete for primitive values + switch (m_type) + { + case value_t::boolean: + case value_t::number_float: + case value_t::number_integer: + case value_t::number_unsigned: + case value_t::string: + { + if (JSON_HEDLEY_UNLIKELY(!first.m_it.primitive_iterator.is_begin() + || !last.m_it.primitive_iterator.is_end())) + { + JSON_THROW(invalid_iterator::create(204, "iterators out of range")); + } + break; + } + + default: + break; + } + + switch (m_type) + { + case value_t::number_integer: + { + m_value.number_integer = first.m_object->m_value.number_integer; + break; + } + + case value_t::number_unsigned: + { + m_value.number_unsigned = first.m_object->m_value.number_unsigned; + break; + } + + case value_t::number_float: + { + m_value.number_float = first.m_object->m_value.number_float; + break; + } + + case value_t::boolean: + { + m_value.boolean = first.m_object->m_value.boolean; + break; + } + + case value_t::string: + { + m_value = *first.m_object->m_value.string; + break; + } + + case value_t::object: + { + m_value.object = create(first.m_it.object_iterator, + last.m_it.object_iterator); + break; + } + + case value_t::array: + { + m_value.array = create(first.m_it.array_iterator, + last.m_it.array_iterator); + break; + } + + case value_t::binary: + { + m_value = *first.m_object->m_value.binary; + break; + } + + default: + JSON_THROW(invalid_iterator::create(206, "cannot construct with iterators from " + + std::string(first.m_object->type_name()))); + } + + assert_invariant(); + } + + + /////////////////////////////////////// + // other constructors and destructor // + /////////////////////////////////////// + + template, + std::is_same>::value, int> = 0 > + basic_json(const JsonRef& ref) : basic_json(ref.moved_or_copied()) {} + + /*! + @brief copy constructor + + Creates a copy of a given JSON value. + + @param[in] other the JSON value to copy + + @post `*this == other` + + @complexity Linear in the size of @a other. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes to any JSON value. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is linear. + - As postcondition, it holds: `other == basic_json(other)`. + + @liveexample{The following code shows an example for the copy + constructor.,basic_json__basic_json} + + @since version 1.0.0 + */ + basic_json(const basic_json& other) + : m_type(other.m_type) + { + // check of passed value is valid + other.assert_invariant(); + + switch (m_type) + { + case value_t::object: + { + m_value = *other.m_value.object; + break; + } + + case value_t::array: + { + m_value = *other.m_value.array; + break; + } + + case value_t::string: + { + m_value = *other.m_value.string; + break; + } + + case value_t::boolean: + { + m_value = other.m_value.boolean; + break; + } + + case value_t::number_integer: + { + m_value = other.m_value.number_integer; + break; + } + + case value_t::number_unsigned: + { + m_value = other.m_value.number_unsigned; + break; + } + + case value_t::number_float: + { + m_value = other.m_value.number_float; + break; + } + + case value_t::binary: + { + m_value = *other.m_value.binary; + break; + } + + default: + break; + } + + assert_invariant(); + } + + /*! + @brief move constructor + + Move constructor. Constructs a JSON value with the contents of the given + value @a other using move semantics. It "steals" the resources from @a + other and leaves it as JSON null value. + + @param[in,out] other value to move to this object + + @post `*this` has the same value as @a other before the call. + @post @a other is a JSON null value. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this constructor never throws + exceptions. + + @requirement This function helps `basic_json` satisfying the + [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible) + requirements. + + @liveexample{The code below shows the move constructor explicitly called + via std::move.,basic_json__moveconstructor} + + @since version 1.0.0 + */ + basic_json(basic_json&& other) noexcept + : m_type(std::move(other.m_type)), + m_value(std::move(other.m_value)) + { + // check that passed value is valid + other.assert_invariant(); + + // invalidate payload + other.m_type = value_t::null; + other.m_value = {}; + + assert_invariant(); + } + + /*! + @brief copy assignment + + Copy assignment operator. Copies a JSON value via the "copy and swap" + strategy: It is expressed in terms of the copy constructor, destructor, + and the `swap()` member function. + + @param[in] other value to copy from + + @complexity Linear. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is linear. + + @liveexample{The code below shows and example for the copy assignment. It + creates a copy of value `a` which is then swapped with `b`. Finally\, the + copy of `a` (which is the null value after the swap) is + destroyed.,basic_json__copyassignment} + + @since version 1.0.0 + */ + basic_json& operator=(basic_json other) noexcept ( + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value&& + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value + ) + { + // check that passed value is valid + other.assert_invariant(); + + using std::swap; + swap(m_type, other.m_type); + swap(m_value, other.m_value); + + assert_invariant(); + return *this; + } + + /*! + @brief destructor + + Destroys the JSON value and frees all allocated memory. + + @complexity Linear. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is linear. + - All stored elements are destroyed and all memory is freed. + + @since version 1.0.0 + */ + ~basic_json() noexcept + { + assert_invariant(); + m_value.destroy(m_type); + } + + /// @} + + public: + /////////////////////// + // object inspection // + /////////////////////// + + /// @name object inspection + /// Functions to inspect the type of a JSON value. + /// @{ + + /*! + @brief serialization + + Serialization function for JSON values. The function tries to mimic + Python's `json.dumps()` function, and currently supports its @a indent + and @a ensure_ascii parameters. + + @param[in] indent If indent is nonnegative, then array elements and object + members will be pretty-printed with that indent level. An indent level of + `0` will only insert newlines. `-1` (the default) selects the most compact + representation. + @param[in] indent_char The character to use for indentation if @a indent is + greater than `0`. The default is ` ` (space). + @param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters + in the output are escaped with `\uXXXX` sequences, and the result consists + of ASCII characters only. + @param[in] error_handler how to react on decoding errors; there are three + possible values: `strict` (throws and exception in case a decoding error + occurs; default), `replace` (replace invalid UTF-8 sequences with U+FFFD), + and `ignore` (ignore invalid UTF-8 sequences during serialization; all + bytes are copied to the output unchanged). + + @return string containing the serialization of the JSON value + + @throw type_error.316 if a string stored inside the JSON value is not + UTF-8 encoded and @a error_handler is set to strict + + @note Binary values are serialized as object containing two keys: + - "bytes": an array of bytes as integers + - "subtype": the subtype as integer or "null" if the binary has no subtype + + @complexity Linear. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @liveexample{The following example shows the effect of different @a indent\, + @a indent_char\, and @a ensure_ascii parameters to the result of the + serialization.,dump} + + @see https://docs.python.org/2/library/json.html#json.dump + + @since version 1.0.0; indentation character @a indent_char, option + @a ensure_ascii and exceptions added in version 3.0.0; error + handlers added in version 3.4.0; serialization of binary values added + in version 3.8.0. + */ + string_t dump(const int indent = -1, + const char indent_char = ' ', + const bool ensure_ascii = false, + const error_handler_t error_handler = error_handler_t::strict) const + { + string_t result; + serializer s(detail::output_adapter(result), indent_char, error_handler); + + if (indent >= 0) + { + s.dump(*this, true, ensure_ascii, static_cast(indent)); + } + else + { + s.dump(*this, false, ensure_ascii, 0); + } + + return result; + } + + /*! + @brief return the type of the JSON value (explicit) + + Return the type of the JSON value as a value from the @ref value_t + enumeration. + + @return the type of the JSON value + Value type | return value + ------------------------- | ------------------------- + null | value_t::null + boolean | value_t::boolean + string | value_t::string + number (integer) | value_t::number_integer + number (unsigned integer) | value_t::number_unsigned + number (floating-point) | value_t::number_float + object | value_t::object + array | value_t::array + binary | value_t::binary + discarded | value_t::discarded + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `type()` for all JSON + types.,type} + + @sa @ref operator value_t() -- return the type of the JSON value (implicit) + @sa @ref type_name() -- return the type as string + + @since version 1.0.0 + */ + constexpr value_t type() const noexcept + { + return m_type; + } + + /*! + @brief return whether type is primitive + + This function returns true if and only if the JSON type is primitive + (string, number, boolean, or null). + + @return `true` if type is primitive (string, number, boolean, or null), + `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_primitive()` for all JSON + types.,is_primitive} + + @sa @ref is_structured() -- returns whether JSON value is structured + @sa @ref is_null() -- returns whether JSON value is `null` + @sa @ref is_string() -- returns whether JSON value is a string + @sa @ref is_boolean() -- returns whether JSON value is a boolean + @sa @ref is_number() -- returns whether JSON value is a number + @sa @ref is_binary() -- returns whether JSON value is a binary array + + @since version 1.0.0 + */ + constexpr bool is_primitive() const noexcept + { + return is_null() || is_string() || is_boolean() || is_number() || is_binary(); + } + + /*! + @brief return whether type is structured + + This function returns true if and only if the JSON type is structured + (array or object). + + @return `true` if type is structured (array or object), `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_structured()` for all JSON + types.,is_structured} + + @sa @ref is_primitive() -- returns whether value is primitive + @sa @ref is_array() -- returns whether value is an array + @sa @ref is_object() -- returns whether value is an object + + @since version 1.0.0 + */ + constexpr bool is_structured() const noexcept + { + return is_array() || is_object(); + } + + /*! + @brief return whether value is null + + This function returns true if and only if the JSON value is null. + + @return `true` if type is null, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_null()` for all JSON + types.,is_null} + + @since version 1.0.0 + */ + constexpr bool is_null() const noexcept + { + return m_type == value_t::null; + } + + /*! + @brief return whether value is a boolean + + This function returns true if and only if the JSON value is a boolean. + + @return `true` if type is boolean, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_boolean()` for all JSON + types.,is_boolean} + + @since version 1.0.0 + */ + constexpr bool is_boolean() const noexcept + { + return m_type == value_t::boolean; + } + + /*! + @brief return whether value is a number + + This function returns true if and only if the JSON value is a number. This + includes both integer (signed and unsigned) and floating-point values. + + @return `true` if type is number (regardless whether integer, unsigned + integer or floating-type), `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_number()` for all JSON + types.,is_number} + + @sa @ref is_number_integer() -- check if value is an integer or unsigned + integer number + @sa @ref is_number_unsigned() -- check if value is an unsigned integer + number + @sa @ref is_number_float() -- check if value is a floating-point number + + @since version 1.0.0 + */ + constexpr bool is_number() const noexcept + { + return is_number_integer() || is_number_float(); + } + + /*! + @brief return whether value is an integer number + + This function returns true if and only if the JSON value is a signed or + unsigned integer number. This excludes floating-point values. + + @return `true` if type is an integer or unsigned integer number, `false` + otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_number_integer()` for all + JSON types.,is_number_integer} + + @sa @ref is_number() -- check if value is a number + @sa @ref is_number_unsigned() -- check if value is an unsigned integer + number + @sa @ref is_number_float() -- check if value is a floating-point number + + @since version 1.0.0 + */ + constexpr bool is_number_integer() const noexcept + { + return m_type == value_t::number_integer || m_type == value_t::number_unsigned; + } + + /*! + @brief return whether value is an unsigned integer number + + This function returns true if and only if the JSON value is an unsigned + integer number. This excludes floating-point and signed integer values. + + @return `true` if type is an unsigned integer number, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_number_unsigned()` for all + JSON types.,is_number_unsigned} + + @sa @ref is_number() -- check if value is a number + @sa @ref is_number_integer() -- check if value is an integer or unsigned + integer number + @sa @ref is_number_float() -- check if value is a floating-point number + + @since version 2.0.0 + */ + constexpr bool is_number_unsigned() const noexcept + { + return m_type == value_t::number_unsigned; + } + + /*! + @brief return whether value is a floating-point number + + This function returns true if and only if the JSON value is a + floating-point number. This excludes signed and unsigned integer values. + + @return `true` if type is a floating-point number, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_number_float()` for all + JSON types.,is_number_float} + + @sa @ref is_number() -- check if value is number + @sa @ref is_number_integer() -- check if value is an integer number + @sa @ref is_number_unsigned() -- check if value is an unsigned integer + number + + @since version 1.0.0 + */ + constexpr bool is_number_float() const noexcept + { + return m_type == value_t::number_float; + } + + /*! + @brief return whether value is an object + + This function returns true if and only if the JSON value is an object. + + @return `true` if type is object, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_object()` for all JSON + types.,is_object} + + @since version 1.0.0 + */ + constexpr bool is_object() const noexcept + { + return m_type == value_t::object; + } + + /*! + @brief return whether value is an array + + This function returns true if and only if the JSON value is an array. + + @return `true` if type is array, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_array()` for all JSON + types.,is_array} + + @since version 1.0.0 + */ + constexpr bool is_array() const noexcept + { + return m_type == value_t::array; + } + + /*! + @brief return whether value is a string + + This function returns true if and only if the JSON value is a string. + + @return `true` if type is string, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_string()` for all JSON + types.,is_string} + + @since version 1.0.0 + */ + constexpr bool is_string() const noexcept + { + return m_type == value_t::string; + } + + /*! + @brief return whether value is a binary array + + This function returns true if and only if the JSON value is a binary array. + + @return `true` if type is binary array, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_binary()` for all JSON + types.,is_binary} + + @since version 3.8.0 + */ + constexpr bool is_binary() const noexcept + { + return m_type == value_t::binary; + } + + /*! + @brief return whether value is discarded + + This function returns true if and only if the JSON value was discarded + during parsing with a callback function (see @ref parser_callback_t). + + @note This function will always be `false` for JSON values after parsing. + That is, discarded values can only occur during parsing, but will be + removed when inside a structured value or replaced by null in other cases. + + @return `true` if type is discarded, `false` otherwise. + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies `is_discarded()` for all JSON + types.,is_discarded} + + @since version 1.0.0 + */ + constexpr bool is_discarded() const noexcept + { + return m_type == value_t::discarded; + } + + /*! + @brief return the type of the JSON value (implicit) + + Implicitly return the type of the JSON value as a value from the @ref + value_t enumeration. + + @return the type of the JSON value + + @complexity Constant. + + @exceptionsafety No-throw guarantee: this member function never throws + exceptions. + + @liveexample{The following code exemplifies the @ref value_t operator for + all JSON types.,operator__value_t} + + @sa @ref type() -- return the type of the JSON value (explicit) + @sa @ref type_name() -- return the type as string + + @since version 1.0.0 + */ + constexpr operator value_t() const noexcept + { + return m_type; + } + + /// @} + + private: + ////////////////// + // value access // + ////////////////// + + /// get a boolean (explicit) + boolean_t get_impl(boolean_t* /*unused*/) const + { + if (JSON_HEDLEY_LIKELY(is_boolean())) + { + return m_value.boolean; + } + + JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(type_name()))); + } + + /// get a pointer to the value (object) + object_t* get_impl_ptr(object_t* /*unused*/) noexcept + { + return is_object() ? m_value.object : nullptr; + } + + /// get a pointer to the value (object) + constexpr const object_t* get_impl_ptr(const object_t* /*unused*/) const noexcept + { + return is_object() ? m_value.object : nullptr; + } + + /// get a pointer to the value (array) + array_t* get_impl_ptr(array_t* /*unused*/) noexcept + { + return is_array() ? m_value.array : nullptr; + } + + /// get a pointer to the value (array) + constexpr const array_t* get_impl_ptr(const array_t* /*unused*/) const noexcept + { + return is_array() ? m_value.array : nullptr; + } + + /// get a pointer to the value (string) + string_t* get_impl_ptr(string_t* /*unused*/) noexcept + { + return is_string() ? m_value.string : nullptr; + } + + /// get a pointer to the value (string) + constexpr const string_t* get_impl_ptr(const string_t* /*unused*/) const noexcept + { + return is_string() ? m_value.string : nullptr; + } + + /// get a pointer to the value (boolean) + boolean_t* get_impl_ptr(boolean_t* /*unused*/) noexcept + { + return is_boolean() ? &m_value.boolean : nullptr; + } + + /// get a pointer to the value (boolean) + constexpr const boolean_t* get_impl_ptr(const boolean_t* /*unused*/) const noexcept + { + return is_boolean() ? &m_value.boolean : nullptr; + } + + /// get a pointer to the value (integer number) + number_integer_t* get_impl_ptr(number_integer_t* /*unused*/) noexcept + { + return is_number_integer() ? &m_value.number_integer : nullptr; + } + + /// get a pointer to the value (integer number) + constexpr const number_integer_t* get_impl_ptr(const number_integer_t* /*unused*/) const noexcept + { + return is_number_integer() ? &m_value.number_integer : nullptr; + } + + /// get a pointer to the value (unsigned number) + number_unsigned_t* get_impl_ptr(number_unsigned_t* /*unused*/) noexcept + { + return is_number_unsigned() ? &m_value.number_unsigned : nullptr; + } + + /// get a pointer to the value (unsigned number) + constexpr const number_unsigned_t* get_impl_ptr(const number_unsigned_t* /*unused*/) const noexcept + { + return is_number_unsigned() ? &m_value.number_unsigned : nullptr; + } + + /// get a pointer to the value (floating-point number) + number_float_t* get_impl_ptr(number_float_t* /*unused*/) noexcept + { + return is_number_float() ? &m_value.number_float : nullptr; + } + + /// get a pointer to the value (floating-point number) + constexpr const number_float_t* get_impl_ptr(const number_float_t* /*unused*/) const noexcept + { + return is_number_float() ? &m_value.number_float : nullptr; + } + + /// get a pointer to the value (binary) + binary_t* get_impl_ptr(binary_t* /*unused*/) noexcept + { + return is_binary() ? m_value.binary : nullptr; + } + + /// get a pointer to the value (binary) + constexpr const binary_t* get_impl_ptr(const binary_t* /*unused*/) const noexcept + { + return is_binary() ? m_value.binary : nullptr; + } + + /*! + @brief helper function to implement get_ref() + + This function helps to implement get_ref() without code duplication for + const and non-const overloads + + @tparam ThisType will be deduced as `basic_json` or `const basic_json` + + @throw type_error.303 if ReferenceType does not match underlying value + type of the current JSON + */ + template + static ReferenceType get_ref_impl(ThisType& obj) + { + // delegate the call to get_ptr<>() + auto ptr = obj.template get_ptr::type>(); + + if (JSON_HEDLEY_LIKELY(ptr != nullptr)) + { + return *ptr; + } + + JSON_THROW(type_error::create(303, "incompatible ReferenceType for get_ref, actual type is " + std::string(obj.type_name()))); + } + + public: + /// @name value access + /// Direct access to the stored value of a JSON value. + /// @{ + + /*! + @brief get special-case overload + + This overloads avoids a lot of template boilerplate, it can be seen as the + identity method + + @tparam BasicJsonType == @ref basic_json + + @return a copy of *this + + @complexity Constant. + + @since version 2.1.0 + */ + template::type, basic_json_t>::value, + int> = 0> + basic_json get() const + { + return *this; + } + + /*! + @brief get special-case overload + + This overloads converts the current @ref basic_json in a different + @ref basic_json type + + @tparam BasicJsonType == @ref basic_json + + @return a copy of *this, converted into @tparam BasicJsonType + + @complexity Depending on the implementation of the called `from_json()` + method. + + @since version 3.2.0 + */ + template < typename BasicJsonType, detail::enable_if_t < + !std::is_same::value&& + detail::is_basic_json::value, int > = 0 > + BasicJsonType get() const + { + return *this; + } + + /*! + @brief get a value (explicit) + + Explicit type conversion between the JSON value and a compatible value + which is [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) + and [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). + The value is converted by calling the @ref json_serializer + `from_json()` method. + + The function is equivalent to executing + @code {.cpp} + ValueType ret; + JSONSerializer::from_json(*this, ret); + return ret; + @endcode + + This overloads is chosen if: + - @a ValueType is not @ref basic_json, + - @ref json_serializer has a `from_json()` method of the form + `void from_json(const basic_json&, ValueType&)`, and + - @ref json_serializer does not have a `from_json()` method of + the form `ValueType from_json(const basic_json&)` + + @tparam ValueTypeCV the provided value type + @tparam ValueType the returned value type + + @return copy of the JSON value, converted to @a ValueType + + @throw what @ref json_serializer `from_json()` method throws + + @liveexample{The example below shows several conversions from JSON values + to other types. There a few things to note: (1) Floating-point numbers can + be converted to integers\, (2) A JSON array can be converted to a standard + `std::vector`\, (3) A JSON object can be converted to C++ + associative containers such as `std::unordered_map`.,get__ValueType_const} + + @since version 2.1.0 + */ + template < typename ValueTypeCV, typename ValueType = detail::uncvref_t, + detail::enable_if_t < + !detail::is_basic_json::value && + detail::has_from_json::value && + !detail::has_non_default_from_json::value, + int > = 0 > + ValueType get() const noexcept(noexcept( + JSONSerializer::from_json(std::declval(), std::declval()))) + { + // we cannot static_assert on ValueTypeCV being non-const, because + // there is support for get(), which is why we + // still need the uncvref + static_assert(!std::is_reference::value, + "get() cannot be used with reference types, you might want to use get_ref()"); + static_assert(std::is_default_constructible::value, + "types must be DefaultConstructible when used with get()"); + + ValueType ret; + JSONSerializer::from_json(*this, ret); + return ret; + } + + /*! + @brief get a value (explicit); special case + + Explicit type conversion between the JSON value and a compatible value + which is **not** [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) + and **not** [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). + The value is converted by calling the @ref json_serializer + `from_json()` method. + + The function is equivalent to executing + @code {.cpp} + return JSONSerializer::from_json(*this); + @endcode + + This overloads is chosen if: + - @a ValueType is not @ref basic_json and + - @ref json_serializer has a `from_json()` method of the form + `ValueType from_json(const basic_json&)` + + @note If @ref json_serializer has both overloads of + `from_json()`, this one is chosen. + + @tparam ValueTypeCV the provided value type + @tparam ValueType the returned value type + + @return copy of the JSON value, converted to @a ValueType + + @throw what @ref json_serializer `from_json()` method throws + + @since version 2.1.0 + */ + template < typename ValueTypeCV, typename ValueType = detail::uncvref_t, + detail::enable_if_t < !std::is_same::value && + detail::has_non_default_from_json::value, + int > = 0 > + ValueType get() const noexcept(noexcept( + JSONSerializer::from_json(std::declval()))) + { + static_assert(!std::is_reference::value, + "get() cannot be used with reference types, you might want to use get_ref()"); + return JSONSerializer::from_json(*this); + } + + /*! + @brief get a value (explicit) + + Explicit type conversion between the JSON value and a compatible value. + The value is filled into the input parameter by calling the @ref json_serializer + `from_json()` method. + + The function is equivalent to executing + @code {.cpp} + ValueType v; + JSONSerializer::from_json(*this, v); + @endcode + + This overloads is chosen if: + - @a ValueType is not @ref basic_json, + - @ref json_serializer has a `from_json()` method of the form + `void from_json(const basic_json&, ValueType&)`, and + + @tparam ValueType the input parameter type. + + @return the input parameter, allowing chaining calls. + + @throw what @ref json_serializer `from_json()` method throws + + @liveexample{The example below shows several conversions from JSON values + to other types. There a few things to note: (1) Floating-point numbers can + be converted to integers\, (2) A JSON array can be converted to a standard + `std::vector`\, (3) A JSON object can be converted to C++ + associative containers such as `std::unordered_map`.,get_to} + + @since version 3.3.0 + */ + template < typename ValueType, + detail::enable_if_t < + !detail::is_basic_json::value&& + detail::has_from_json::value, + int > = 0 > + ValueType & get_to(ValueType& v) const noexcept(noexcept( + JSONSerializer::from_json(std::declval(), v))) + { + JSONSerializer::from_json(*this, v); + return v; + } + + // specialization to allow to call get_to with a basic_json value + // see https://github.com/nlohmann/json/issues/2175 + template::value, + int> = 0> + ValueType & get_to(ValueType& v) const + { + v = *this; + return v; + } + + template < + typename T, std::size_t N, + typename Array = T (&)[N], + detail::enable_if_t < + detail::has_from_json::value, int > = 0 > + Array get_to(T (&v)[N]) const + noexcept(noexcept(JSONSerializer::from_json( + std::declval(), v))) + { + JSONSerializer::from_json(*this, v); + return v; + } + + + /*! + @brief get a pointer value (implicit) + + Implicit pointer access to the internally stored JSON value. No copies are + made. + + @warning Writing data to the pointee of the result yields an undefined + state. + + @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref + object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, + @ref number_unsigned_t, or @ref number_float_t. Enforced by a static + assertion. + + @return pointer to the internally stored JSON value if the requested + pointer type @a PointerType fits to the JSON value; `nullptr` otherwise + + @complexity Constant. + + @liveexample{The example below shows how pointers to internal values of a + JSON value can be requested. Note that no type conversions are made and a + `nullptr` is returned if the value and the requested pointer type does not + match.,get_ptr} + + @since version 1.0.0 + */ + template::value, int>::type = 0> + auto get_ptr() noexcept -> decltype(std::declval().get_impl_ptr(std::declval())) + { + // delegate the call to get_impl_ptr<>() + return get_impl_ptr(static_cast(nullptr)); + } + + /*! + @brief get a pointer value (implicit) + @copydoc get_ptr() + */ + template < typename PointerType, typename std::enable_if < + std::is_pointer::value&& + std::is_const::type>::value, int >::type = 0 > + constexpr auto get_ptr() const noexcept -> decltype(std::declval().get_impl_ptr(std::declval())) + { + // delegate the call to get_impl_ptr<>() const + return get_impl_ptr(static_cast(nullptr)); + } + + /*! + @brief get a pointer value (explicit) + + Explicit pointer access to the internally stored JSON value. No copies are + made. + + @warning The pointer becomes invalid if the underlying JSON object + changes. + + @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref + object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, + @ref number_unsigned_t, or @ref number_float_t. + + @return pointer to the internally stored JSON value if the requested + pointer type @a PointerType fits to the JSON value; `nullptr` otherwise + + @complexity Constant. + + @liveexample{The example below shows how pointers to internal values of a + JSON value can be requested. Note that no type conversions are made and a + `nullptr` is returned if the value and the requested pointer type does not + match.,get__PointerType} + + @sa @ref get_ptr() for explicit pointer-member access + + @since version 1.0.0 + */ + template::value, int>::type = 0> + auto get() noexcept -> decltype(std::declval().template get_ptr()) + { + // delegate the call to get_ptr + return get_ptr(); + } + + /*! + @brief get a pointer value (explicit) + @copydoc get() + */ + template::value, int>::type = 0> + constexpr auto get() const noexcept -> decltype(std::declval().template get_ptr()) + { + // delegate the call to get_ptr + return get_ptr(); + } + + /*! + @brief get a reference value (implicit) + + Implicit reference access to the internally stored JSON value. No copies + are made. + + @warning Writing data to the referee of the result yields an undefined + state. + + @tparam ReferenceType reference type; must be a reference to @ref array_t, + @ref object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or + @ref number_float_t. Enforced by static assertion. + + @return reference to the internally stored JSON value if the requested + reference type @a ReferenceType fits to the JSON value; throws + type_error.303 otherwise + + @throw type_error.303 in case passed type @a ReferenceType is incompatible + with the stored JSON value; see example below + + @complexity Constant. + + @liveexample{The example shows several calls to `get_ref()`.,get_ref} + + @since version 1.1.0 + */ + template::value, int>::type = 0> + ReferenceType get_ref() + { + // delegate call to get_ref_impl + return get_ref_impl(*this); + } + + /*! + @brief get a reference value (implicit) + @copydoc get_ref() + */ + template < typename ReferenceType, typename std::enable_if < + std::is_reference::value&& + std::is_const::type>::value, int >::type = 0 > + ReferenceType get_ref() const + { + // delegate call to get_ref_impl + return get_ref_impl(*this); + } + + /*! + @brief get a value (implicit) + + Implicit type conversion between the JSON value and a compatible value. + The call is realized by calling @ref get() const. + + @tparam ValueType non-pointer type compatible to the JSON value, for + instance `int` for JSON integer numbers, `bool` for JSON booleans, or + `std::vector` types for JSON arrays. The character type of @ref string_t + as well as an initializer list of this type is excluded to avoid + ambiguities as these types implicitly convert to `std::string`. + + @return copy of the JSON value, converted to type @a ValueType + + @throw type_error.302 in case passed type @a ValueType is incompatible + to the JSON value type (e.g., the JSON value is of type boolean, but a + string is requested); see example below + + @complexity Linear in the size of the JSON value. + + @liveexample{The example below shows several conversions from JSON values + to other types. There a few things to note: (1) Floating-point numbers can + be converted to integers\, (2) A JSON array can be converted to a standard + `std::vector`\, (3) A JSON object can be converted to C++ + associative containers such as `std::unordered_map`.,operator__ValueType} + + @since version 1.0.0 + */ + template < typename ValueType, typename std::enable_if < + !std::is_pointer::value&& + !std::is_same>::value&& + !std::is_same::value&& + !detail::is_basic_json::value + && !std::is_same>::value +#if defined(JSON_HAS_CPP_17) && (defined(__GNUC__) || (defined(_MSC_VER) && _MSC_VER >= 1910 && _MSC_VER <= 1914)) + && !std::is_same::value +#endif + && detail::is_detected::value + , int >::type = 0 > + JSON_EXPLICIT operator ValueType() const + { + // delegate the call to get<>() const + return get(); + } + + /*! + @return reference to the binary value + + @throw type_error.302 if the value is not binary + + @sa @ref is_binary() to check if the value is binary + + @since version 3.8.0 + */ + binary_t& get_binary() + { + if (!is_binary()) + { + JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(type_name()))); + } + + return *get_ptr(); + } + + /// @copydoc get_binary() + const binary_t& get_binary() const + { + if (!is_binary()) + { + JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(type_name()))); + } + + return *get_ptr(); + } + + /// @} + + + //////////////////// + // element access // + //////////////////// + + /// @name element access + /// Access to the JSON value. + /// @{ + + /*! + @brief access specified array element with bounds checking + + Returns a reference to the element at specified location @a idx, with + bounds checking. + + @param[in] idx index of the element to access + + @return reference to the element at index @a idx + + @throw type_error.304 if the JSON value is not an array; in this case, + calling `at` with an index makes no sense. See example below. + @throw out_of_range.401 if the index @a idx is out of range of the array; + that is, `idx >= size()`. See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 1.0.0 + + @liveexample{The example below shows how array elements can be read and + written using `at()`. It also demonstrates the different exceptions that + can be thrown.,at__size_type} + */ + reference at(size_type idx) + { + // at only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + JSON_TRY + { + return m_value.array->at(idx); + } + JSON_CATCH (std::out_of_range&) + { + // create better exception explanation + JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); + } + } + else + { + JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); + } + } + + /*! + @brief access specified array element with bounds checking + + Returns a const reference to the element at specified location @a idx, + with bounds checking. + + @param[in] idx index of the element to access + + @return const reference to the element at index @a idx + + @throw type_error.304 if the JSON value is not an array; in this case, + calling `at` with an index makes no sense. See example below. + @throw out_of_range.401 if the index @a idx is out of range of the array; + that is, `idx >= size()`. See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 1.0.0 + + @liveexample{The example below shows how array elements can be read using + `at()`. It also demonstrates the different exceptions that can be thrown., + at__size_type_const} + */ + const_reference at(size_type idx) const + { + // at only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + JSON_TRY + { + return m_value.array->at(idx); + } + JSON_CATCH (std::out_of_range&) + { + // create better exception explanation + JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); + } + } + else + { + JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); + } + } + + /*! + @brief access specified object element with bounds checking + + Returns a reference to the element at with specified key @a key, with + bounds checking. + + @param[in] key key of the element to access + + @return reference to the element at key @a key + + @throw type_error.304 if the JSON value is not an object; in this case, + calling `at` with a key makes no sense. See example below. + @throw out_of_range.403 if the key @a key is is not stored in the object; + that is, `find(key) == end()`. See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Logarithmic in the size of the container. + + @sa @ref operator[](const typename object_t::key_type&) for unchecked + access by reference + @sa @ref value() for access by value with a default value + + @since version 1.0.0 + + @liveexample{The example below shows how object elements can be read and + written using `at()`. It also demonstrates the different exceptions that + can be thrown.,at__object_t_key_type} + */ + reference at(const typename object_t::key_type& key) + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + JSON_TRY + { + return m_value.object->at(key); + } + JSON_CATCH (std::out_of_range&) + { + // create better exception explanation + JSON_THROW(out_of_range::create(403, "key '" + key + "' not found")); + } + } + else + { + JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); + } + } + + /*! + @brief access specified object element with bounds checking + + Returns a const reference to the element at with specified key @a key, + with bounds checking. + + @param[in] key key of the element to access + + @return const reference to the element at key @a key + + @throw type_error.304 if the JSON value is not an object; in this case, + calling `at` with a key makes no sense. See example below. + @throw out_of_range.403 if the key @a key is is not stored in the object; + that is, `find(key) == end()`. See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Logarithmic in the size of the container. + + @sa @ref operator[](const typename object_t::key_type&) for unchecked + access by reference + @sa @ref value() for access by value with a default value + + @since version 1.0.0 + + @liveexample{The example below shows how object elements can be read using + `at()`. It also demonstrates the different exceptions that can be thrown., + at__object_t_key_type_const} + */ + const_reference at(const typename object_t::key_type& key) const + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + JSON_TRY + { + return m_value.object->at(key); + } + JSON_CATCH (std::out_of_range&) + { + // create better exception explanation + JSON_THROW(out_of_range::create(403, "key '" + key + "' not found")); + } + } + else + { + JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); + } + } + + /*! + @brief access specified array element + + Returns a reference to the element at specified location @a idx. + + @note If @a idx is beyond the range of the array (i.e., `idx >= size()`), + then the array is silently filled up with `null` values to make `idx` a + valid reference to the last stored element. + + @param[in] idx index of the element to access + + @return reference to the element at index @a idx + + @throw type_error.305 if the JSON value is not an array or null; in that + cases, using the [] operator with an index makes no sense. + + @complexity Constant if @a idx is in the range of the array. Otherwise + linear in `idx - size()`. + + @liveexample{The example below shows how array elements can be read and + written using `[]` operator. Note the addition of `null` + values.,operatorarray__size_type} + + @since version 1.0.0 + */ + reference operator[](size_type idx) + { + // implicitly convert null value to an empty array + if (is_null()) + { + m_type = value_t::array; + m_value.array = create(); + assert_invariant(); + } + + // operator[] only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + // fill up array with null values if given idx is outside range + if (idx >= m_value.array->size()) + { + m_value.array->insert(m_value.array->end(), + idx - m_value.array->size() + 1, + basic_json()); + } + + return m_value.array->operator[](idx); + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name()))); + } + + /*! + @brief access specified array element + + Returns a const reference to the element at specified location @a idx. + + @param[in] idx index of the element to access + + @return const reference to the element at index @a idx + + @throw type_error.305 if the JSON value is not an array; in that case, + using the [] operator with an index makes no sense. + + @complexity Constant. + + @liveexample{The example below shows how array elements can be read using + the `[]` operator.,operatorarray__size_type_const} + + @since version 1.0.0 + */ + const_reference operator[](size_type idx) const + { + // const operator[] only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + return m_value.array->operator[](idx); + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name()))); + } + + /*! + @brief access specified object element + + Returns a reference to the element at with specified key @a key. + + @note If @a key is not found in the object, then it is silently added to + the object and filled with a `null` value to make `key` a valid reference. + In case the value was `null` before, it is converted to an object. + + @param[in] key key of the element to access + + @return reference to the element at key @a key + + @throw type_error.305 if the JSON value is not an object or null; in that + cases, using the [] operator with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be read and + written using the `[]` operator.,operatorarray__key_type} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref value() for access by value with a default value + + @since version 1.0.0 + */ + reference operator[](const typename object_t::key_type& key) + { + // implicitly convert null value to an empty object + if (is_null()) + { + m_type = value_t::object; + m_value.object = create(); + assert_invariant(); + } + + // operator[] only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + return m_value.object->operator[](key); + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); + } + + /*! + @brief read-only access specified object element + + Returns a const reference to the element at with specified key @a key. No + bounds checking is performed. + + @warning If the element with key @a key does not exist, the behavior is + undefined. + + @param[in] key key of the element to access + + @return const reference to the element at key @a key + + @pre The element with key @a key must exist. **This precondition is + enforced with an assertion.** + + @throw type_error.305 if the JSON value is not an object; in that case, + using the [] operator with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be read using + the `[]` operator.,operatorarray__key_type_const} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref value() for access by value with a default value + + @since version 1.0.0 + */ + const_reference operator[](const typename object_t::key_type& key) const + { + // const operator[] only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + JSON_ASSERT(m_value.object->find(key) != m_value.object->end()); + return m_value.object->find(key)->second; + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); + } + + /*! + @brief access specified object element + + Returns a reference to the element at with specified key @a key. + + @note If @a key is not found in the object, then it is silently added to + the object and filled with a `null` value to make `key` a valid reference. + In case the value was `null` before, it is converted to an object. + + @param[in] key key of the element to access + + @return reference to the element at key @a key + + @throw type_error.305 if the JSON value is not an object or null; in that + cases, using the [] operator with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be read and + written using the `[]` operator.,operatorarray__key_type} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref value() for access by value with a default value + + @since version 1.1.0 + */ + template + JSON_HEDLEY_NON_NULL(2) + reference operator[](T* key) + { + // implicitly convert null to object + if (is_null()) + { + m_type = value_t::object; + m_value = value_t::object; + assert_invariant(); + } + + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + return m_value.object->operator[](key); + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); + } + + /*! + @brief read-only access specified object element + + Returns a const reference to the element at with specified key @a key. No + bounds checking is performed. + + @warning If the element with key @a key does not exist, the behavior is + undefined. + + @param[in] key key of the element to access + + @return const reference to the element at key @a key + + @pre The element with key @a key must exist. **This precondition is + enforced with an assertion.** + + @throw type_error.305 if the JSON value is not an object; in that case, + using the [] operator with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be read using + the `[]` operator.,operatorarray__key_type_const} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref value() for access by value with a default value + + @since version 1.1.0 + */ + template + JSON_HEDLEY_NON_NULL(2) + const_reference operator[](T* key) const + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + JSON_ASSERT(m_value.object->find(key) != m_value.object->end()); + return m_value.object->find(key)->second; + } + + JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); + } + + /*! + @brief access specified object element with default value + + Returns either a copy of an object's element at the specified key @a key + or a given default value if no element with key @a key exists. + + The function is basically equivalent to executing + @code {.cpp} + try { + return at(key); + } catch(out_of_range) { + return default_value; + } + @endcode + + @note Unlike @ref at(const typename object_t::key_type&), this function + does not throw if the given key @a key was not found. + + @note Unlike @ref operator[](const typename object_t::key_type& key), this + function does not implicitly add an element to the position defined by @a + key. This function is furthermore also applicable to const objects. + + @param[in] key key of the element to access + @param[in] default_value the value to return if @a key is not found + + @tparam ValueType type compatible to JSON values, for instance `int` for + JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for + JSON arrays. Note the type of the expected value at @a key and the default + value @a default_value must be compatible. + + @return copy of the element at key @a key or @a default_value if @a key + is not found + + @throw type_error.302 if @a default_value does not match the type of the + value at @a key + @throw type_error.306 if the JSON value is not an object; in that case, + using `value()` with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be queried + with a default value.,basic_json__value} + + @sa @ref at(const typename object_t::key_type&) for access by reference + with range checking + @sa @ref operator[](const typename object_t::key_type&) for unchecked + access by reference + + @since version 1.0.0 + */ + // using std::is_convertible in a std::enable_if will fail when using explicit conversions + template < class ValueType, typename std::enable_if < + detail::is_getable::value + && !std::is_same::value, int >::type = 0 > + ValueType value(const typename object_t::key_type& key, const ValueType& default_value) const + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + // if key is found, return value and given default value otherwise + const auto it = find(key); + if (it != end()) + { + return it->template get(); + } + + return default_value; + } + + JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name()))); + } + + /*! + @brief overload for a default value of type const char* + @copydoc basic_json::value(const typename object_t::key_type&, const ValueType&) const + */ + string_t value(const typename object_t::key_type& key, const char* default_value) const + { + return value(key, string_t(default_value)); + } + + /*! + @brief access specified object element via JSON Pointer with default value + + Returns either a copy of an object's element at the specified key @a key + or a given default value if no element with key @a key exists. + + The function is basically equivalent to executing + @code {.cpp} + try { + return at(ptr); + } catch(out_of_range) { + return default_value; + } + @endcode + + @note Unlike @ref at(const json_pointer&), this function does not throw + if the given key @a key was not found. + + @param[in] ptr a JSON pointer to the element to access + @param[in] default_value the value to return if @a ptr found no value + + @tparam ValueType type compatible to JSON values, for instance `int` for + JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for + JSON arrays. Note the type of the expected value at @a key and the default + value @a default_value must be compatible. + + @return copy of the element at key @a key or @a default_value if @a key + is not found + + @throw type_error.302 if @a default_value does not match the type of the + value at @a ptr + @throw type_error.306 if the JSON value is not an object; in that case, + using `value()` with a key makes no sense. + + @complexity Logarithmic in the size of the container. + + @liveexample{The example below shows how object elements can be queried + with a default value.,basic_json__value_ptr} + + @sa @ref operator[](const json_pointer&) for unchecked access by reference + + @since version 2.0.2 + */ + template::value, int>::type = 0> + ValueType value(const json_pointer& ptr, const ValueType& default_value) const + { + // at only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + // if pointer resolves a value, return it or use default value + JSON_TRY + { + return ptr.get_checked(this).template get(); + } + JSON_INTERNAL_CATCH (out_of_range&) + { + return default_value; + } + } + + JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name()))); + } + + /*! + @brief overload for a default value of type const char* + @copydoc basic_json::value(const json_pointer&, ValueType) const + */ + JSON_HEDLEY_NON_NULL(3) + string_t value(const json_pointer& ptr, const char* default_value) const + { + return value(ptr, string_t(default_value)); + } + + /*! + @brief access the first element + + Returns a reference to the first element in the container. For a JSON + container `c`, the expression `c.front()` is equivalent to `*c.begin()`. + + @return In case of a structured type (array or object), a reference to the + first element is returned. In case of number, string, boolean, or binary + values, a reference to the value is returned. + + @complexity Constant. + + @pre The JSON value must not be `null` (would throw `std::out_of_range`) + or an empty array or object (undefined behavior, **guarded by + assertions**). + @post The JSON value remains unchanged. + + @throw invalid_iterator.214 when called on `null` value + + @liveexample{The following code shows an example for `front()`.,front} + + @sa @ref back() -- access the last element + + @since version 1.0.0 + */ + reference front() + { + return *begin(); + } + + /*! + @copydoc basic_json::front() + */ + const_reference front() const + { + return *cbegin(); + } + + /*! + @brief access the last element + + Returns a reference to the last element in the container. For a JSON + container `c`, the expression `c.back()` is equivalent to + @code {.cpp} + auto tmp = c.end(); + --tmp; + return *tmp; + @endcode + + @return In case of a structured type (array or object), a reference to the + last element is returned. In case of number, string, boolean, or binary + values, a reference to the value is returned. + + @complexity Constant. + + @pre The JSON value must not be `null` (would throw `std::out_of_range`) + or an empty array or object (undefined behavior, **guarded by + assertions**). + @post The JSON value remains unchanged. + + @throw invalid_iterator.214 when called on a `null` value. See example + below. + + @liveexample{The following code shows an example for `back()`.,back} + + @sa @ref front() -- access the first element + + @since version 1.0.0 + */ + reference back() + { + auto tmp = end(); + --tmp; + return *tmp; + } + + /*! + @copydoc basic_json::back() + */ + const_reference back() const + { + auto tmp = cend(); + --tmp; + return *tmp; + } + + /*! + @brief remove element given an iterator + + Removes the element specified by iterator @a pos. The iterator @a pos must + be valid and dereferenceable. Thus the `end()` iterator (which is valid, + but is not dereferenceable) cannot be used as a value for @a pos. + + If called on a primitive type other than `null`, the resulting JSON value + will be `null`. + + @param[in] pos iterator to the element to remove + @return Iterator following the last removed element. If the iterator @a + pos refers to the last element, the `end()` iterator is returned. + + @tparam IteratorType an @ref iterator or @ref const_iterator + + @post Invalidates iterators and references at or after the point of the + erase, including the `end()` iterator. + + @throw type_error.307 if called on a `null` value; example: `"cannot use + erase() with null"` + @throw invalid_iterator.202 if called on an iterator which does not belong + to the current JSON value; example: `"iterator does not fit current + value"` + @throw invalid_iterator.205 if called on a primitive type with invalid + iterator (i.e., any iterator which is not `begin()`); example: `"iterator + out of range"` + + @complexity The complexity depends on the type: + - objects: amortized constant + - arrays: linear in distance between @a pos and the end of the container + - strings and binary: linear in the length of the member + - other types: constant + + @liveexample{The example shows the result of `erase()` for different JSON + types.,erase__IteratorType} + + @sa @ref erase(IteratorType, IteratorType) -- removes the elements in + the given range + @sa @ref erase(const typename object_t::key_type&) -- removes the element + from an object at the given key + @sa @ref erase(const size_type) -- removes the element from an array at + the given index + + @since version 1.0.0 + */ + template < class IteratorType, typename std::enable_if < + std::is_same::value || + std::is_same::value, int >::type + = 0 > + IteratorType erase(IteratorType pos) + { + // make sure iterator fits the current value + if (JSON_HEDLEY_UNLIKELY(this != pos.m_object)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + IteratorType result = end(); + + switch (m_type) + { + case value_t::boolean: + case value_t::number_float: + case value_t::number_integer: + case value_t::number_unsigned: + case value_t::string: + case value_t::binary: + { + if (JSON_HEDLEY_UNLIKELY(!pos.m_it.primitive_iterator.is_begin())) + { + JSON_THROW(invalid_iterator::create(205, "iterator out of range")); + } + + if (is_string()) + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, m_value.string); + std::allocator_traits::deallocate(alloc, m_value.string, 1); + m_value.string = nullptr; + } + else if (is_binary()) + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, m_value.binary); + std::allocator_traits::deallocate(alloc, m_value.binary, 1); + m_value.binary = nullptr; + } + + m_type = value_t::null; + assert_invariant(); + break; + } + + case value_t::object: + { + result.m_it.object_iterator = m_value.object->erase(pos.m_it.object_iterator); + break; + } + + case value_t::array: + { + result.m_it.array_iterator = m_value.array->erase(pos.m_it.array_iterator); + break; + } + + default: + JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); + } + + return result; + } + + /*! + @brief remove elements given an iterator range + + Removes the element specified by the range `[first; last)`. The iterator + @a first does not need to be dereferenceable if `first == last`: erasing + an empty range is a no-op. + + If called on a primitive type other than `null`, the resulting JSON value + will be `null`. + + @param[in] first iterator to the beginning of the range to remove + @param[in] last iterator past the end of the range to remove + @return Iterator following the last removed element. If the iterator @a + second refers to the last element, the `end()` iterator is returned. + + @tparam IteratorType an @ref iterator or @ref const_iterator + + @post Invalidates iterators and references at or after the point of the + erase, including the `end()` iterator. + + @throw type_error.307 if called on a `null` value; example: `"cannot use + erase() with null"` + @throw invalid_iterator.203 if called on iterators which does not belong + to the current JSON value; example: `"iterators do not fit current value"` + @throw invalid_iterator.204 if called on a primitive type with invalid + iterators (i.e., if `first != begin()` and `last != end()`); example: + `"iterators out of range"` + + @complexity The complexity depends on the type: + - objects: `log(size()) + std::distance(first, last)` + - arrays: linear in the distance between @a first and @a last, plus linear + in the distance between @a last and end of the container + - strings and binary: linear in the length of the member + - other types: constant + + @liveexample{The example shows the result of `erase()` for different JSON + types.,erase__IteratorType_IteratorType} + + @sa @ref erase(IteratorType) -- removes the element at a given position + @sa @ref erase(const typename object_t::key_type&) -- removes the element + from an object at the given key + @sa @ref erase(const size_type) -- removes the element from an array at + the given index + + @since version 1.0.0 + */ + template < class IteratorType, typename std::enable_if < + std::is_same::value || + std::is_same::value, int >::type + = 0 > + IteratorType erase(IteratorType first, IteratorType last) + { + // make sure iterator fits the current value + if (JSON_HEDLEY_UNLIKELY(this != first.m_object || this != last.m_object)) + { + JSON_THROW(invalid_iterator::create(203, "iterators do not fit current value")); + } + + IteratorType result = end(); + + switch (m_type) + { + case value_t::boolean: + case value_t::number_float: + case value_t::number_integer: + case value_t::number_unsigned: + case value_t::string: + case value_t::binary: + { + if (JSON_HEDLEY_LIKELY(!first.m_it.primitive_iterator.is_begin() + || !last.m_it.primitive_iterator.is_end())) + { + JSON_THROW(invalid_iterator::create(204, "iterators out of range")); + } + + if (is_string()) + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, m_value.string); + std::allocator_traits::deallocate(alloc, m_value.string, 1); + m_value.string = nullptr; + } + else if (is_binary()) + { + AllocatorType alloc; + std::allocator_traits::destroy(alloc, m_value.binary); + std::allocator_traits::deallocate(alloc, m_value.binary, 1); + m_value.binary = nullptr; + } + + m_type = value_t::null; + assert_invariant(); + break; + } + + case value_t::object: + { + result.m_it.object_iterator = m_value.object->erase(first.m_it.object_iterator, + last.m_it.object_iterator); + break; + } + + case value_t::array: + { + result.m_it.array_iterator = m_value.array->erase(first.m_it.array_iterator, + last.m_it.array_iterator); + break; + } + + default: + JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); + } + + return result; + } + + /*! + @brief remove element from a JSON object given a key + + Removes elements from a JSON object with the key value @a key. + + @param[in] key value of the elements to remove + + @return Number of elements removed. If @a ObjectType is the default + `std::map` type, the return value will always be `0` (@a key was not + found) or `1` (@a key was found). + + @post References and iterators to the erased elements are invalidated. + Other references and iterators are not affected. + + @throw type_error.307 when called on a type other than JSON object; + example: `"cannot use erase() with null"` + + @complexity `log(size()) + count(key)` + + @liveexample{The example shows the effect of `erase()`.,erase__key_type} + + @sa @ref erase(IteratorType) -- removes the element at a given position + @sa @ref erase(IteratorType, IteratorType) -- removes the elements in + the given range + @sa @ref erase(const size_type) -- removes the element from an array at + the given index + + @since version 1.0.0 + */ + size_type erase(const typename object_t::key_type& key) + { + // this erase only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + return m_value.object->erase(key); + } + + JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); + } + + /*! + @brief remove element from a JSON array given an index + + Removes element from a JSON array at the index @a idx. + + @param[in] idx index of the element to remove + + @throw type_error.307 when called on a type other than JSON object; + example: `"cannot use erase() with null"` + @throw out_of_range.401 when `idx >= size()`; example: `"array index 17 + is out of range"` + + @complexity Linear in distance between @a idx and the end of the container. + + @liveexample{The example shows the effect of `erase()`.,erase__size_type} + + @sa @ref erase(IteratorType) -- removes the element at a given position + @sa @ref erase(IteratorType, IteratorType) -- removes the elements in + the given range + @sa @ref erase(const typename object_t::key_type&) -- removes the element + from an object at the given key + + @since version 1.0.0 + */ + void erase(const size_type idx) + { + // this erase only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + if (JSON_HEDLEY_UNLIKELY(idx >= size())) + { + JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); + } + + m_value.array->erase(m_value.array->begin() + static_cast(idx)); + } + else + { + JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); + } + } + + /// @} + + + //////////// + // lookup // + //////////// + + /// @name lookup + /// @{ + + /*! + @brief find an element in a JSON object + + Finds an element in a JSON object with key equivalent to @a key. If the + element is not found or the JSON value is not an object, end() is + returned. + + @note This method always returns @ref end() when executed on a JSON type + that is not an object. + + @param[in] key key value of the element to search for. + + @return Iterator to an element with key equivalent to @a key. If no such + element is found or the JSON value is not an object, past-the-end (see + @ref end()) iterator is returned. + + @complexity Logarithmic in the size of the JSON object. + + @liveexample{The example shows how `find()` is used.,find__key_type} + + @sa @ref contains(KeyT&&) const -- checks whether a key exists + + @since version 1.0.0 + */ + template + iterator find(KeyT&& key) + { + auto result = end(); + + if (is_object()) + { + result.m_it.object_iterator = m_value.object->find(std::forward(key)); + } + + return result; + } + + /*! + @brief find an element in a JSON object + @copydoc find(KeyT&&) + */ + template + const_iterator find(KeyT&& key) const + { + auto result = cend(); + + if (is_object()) + { + result.m_it.object_iterator = m_value.object->find(std::forward(key)); + } + + return result; + } + + /*! + @brief returns the number of occurrences of a key in a JSON object + + Returns the number of elements with key @a key. If ObjectType is the + default `std::map` type, the return value will always be `0` (@a key was + not found) or `1` (@a key was found). + + @note This method always returns `0` when executed on a JSON type that is + not an object. + + @param[in] key key value of the element to count + + @return Number of elements with key @a key. If the JSON value is not an + object, the return value will be `0`. + + @complexity Logarithmic in the size of the JSON object. + + @liveexample{The example shows how `count()` is used.,count} + + @since version 1.0.0 + */ + template + size_type count(KeyT&& key) const + { + // return 0 for all nonobject types + return is_object() ? m_value.object->count(std::forward(key)) : 0; + } + + /*! + @brief check the existence of an element in a JSON object + + Check whether an element exists in a JSON object with key equivalent to + @a key. If the element is not found or the JSON value is not an object, + false is returned. + + @note This method always returns false when executed on a JSON type + that is not an object. + + @param[in] key key value to check its existence. + + @return true if an element with specified @a key exists. If no such + element with such key is found or the JSON value is not an object, + false is returned. + + @complexity Logarithmic in the size of the JSON object. + + @liveexample{The following code shows an example for `contains()`.,contains} + + @sa @ref find(KeyT&&) -- returns an iterator to an object element + @sa @ref contains(const json_pointer&) const -- checks the existence for a JSON pointer + + @since version 3.6.0 + */ + template < typename KeyT, typename std::enable_if < + !std::is_same::type, json_pointer>::value, int >::type = 0 > + bool contains(KeyT && key) const + { + return is_object() && m_value.object->find(std::forward(key)) != m_value.object->end(); + } + + /*! + @brief check the existence of an element in a JSON object given a JSON pointer + + Check whether the given JSON pointer @a ptr can be resolved in the current + JSON value. + + @note This method can be executed on any JSON value type. + + @param[in] ptr JSON pointer to check its existence. + + @return true if the JSON pointer can be resolved to a stored value, false + otherwise. + + @post If `j.contains(ptr)` returns true, it is safe to call `j[ptr]`. + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + + @complexity Logarithmic in the size of the JSON object. + + @liveexample{The following code shows an example for `contains()`.,contains_json_pointer} + + @sa @ref contains(KeyT &&) const -- checks the existence of a key + + @since version 3.7.0 + */ + bool contains(const json_pointer& ptr) const + { + return ptr.contains(this); + } + + /// @} + + + /////////////// + // iterators // + /////////////// + + /// @name iterators + /// @{ + + /*! + @brief returns an iterator to the first element + + Returns an iterator to the first element. + + @image html range-begin-end.svg "Illustration from cppreference.com" + + @return iterator to the first element + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + + @liveexample{The following code shows an example for `begin()`.,begin} + + @sa @ref cbegin() -- returns a const iterator to the beginning + @sa @ref end() -- returns an iterator to the end + @sa @ref cend() -- returns a const iterator to the end + + @since version 1.0.0 + */ + iterator begin() noexcept + { + iterator result(this); + result.set_begin(); + return result; + } + + /*! + @copydoc basic_json::cbegin() + */ + const_iterator begin() const noexcept + { + return cbegin(); + } + + /*! + @brief returns a const iterator to the first element + + Returns a const iterator to the first element. + + @image html range-begin-end.svg "Illustration from cppreference.com" + + @return const iterator to the first element + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of `const_cast(*this).begin()`. + + @liveexample{The following code shows an example for `cbegin()`.,cbegin} + + @sa @ref begin() -- returns an iterator to the beginning + @sa @ref end() -- returns an iterator to the end + @sa @ref cend() -- returns a const iterator to the end + + @since version 1.0.0 + */ + const_iterator cbegin() const noexcept + { + const_iterator result(this); + result.set_begin(); + return result; + } + + /*! + @brief returns an iterator to one past the last element + + Returns an iterator to one past the last element. + + @image html range-begin-end.svg "Illustration from cppreference.com" + + @return iterator one past the last element + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + + @liveexample{The following code shows an example for `end()`.,end} + + @sa @ref cend() -- returns a const iterator to the end + @sa @ref begin() -- returns an iterator to the beginning + @sa @ref cbegin() -- returns a const iterator to the beginning + + @since version 1.0.0 + */ + iterator end() noexcept + { + iterator result(this); + result.set_end(); + return result; + } + + /*! + @copydoc basic_json::cend() + */ + const_iterator end() const noexcept + { + return cend(); + } + + /*! + @brief returns a const iterator to one past the last element + + Returns a const iterator to one past the last element. + + @image html range-begin-end.svg "Illustration from cppreference.com" + + @return const iterator one past the last element + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of `const_cast(*this).end()`. + + @liveexample{The following code shows an example for `cend()`.,cend} + + @sa @ref end() -- returns an iterator to the end + @sa @ref begin() -- returns an iterator to the beginning + @sa @ref cbegin() -- returns a const iterator to the beginning + + @since version 1.0.0 + */ + const_iterator cend() const noexcept + { + const_iterator result(this); + result.set_end(); + return result; + } + + /*! + @brief returns an iterator to the reverse-beginning + + Returns an iterator to the reverse-beginning; that is, the last element. + + @image html range-rbegin-rend.svg "Illustration from cppreference.com" + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) + requirements: + - The complexity is constant. + - Has the semantics of `reverse_iterator(end())`. + + @liveexample{The following code shows an example for `rbegin()`.,rbegin} + + @sa @ref crbegin() -- returns a const reverse iterator to the beginning + @sa @ref rend() -- returns a reverse iterator to the end + @sa @ref crend() -- returns a const reverse iterator to the end + + @since version 1.0.0 + */ + reverse_iterator rbegin() noexcept + { + return reverse_iterator(end()); + } + + /*! + @copydoc basic_json::crbegin() + */ + const_reverse_iterator rbegin() const noexcept + { + return crbegin(); + } + + /*! + @brief returns an iterator to the reverse-end + + Returns an iterator to the reverse-end; that is, one before the first + element. + + @image html range-rbegin-rend.svg "Illustration from cppreference.com" + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) + requirements: + - The complexity is constant. + - Has the semantics of `reverse_iterator(begin())`. + + @liveexample{The following code shows an example for `rend()`.,rend} + + @sa @ref crend() -- returns a const reverse iterator to the end + @sa @ref rbegin() -- returns a reverse iterator to the beginning + @sa @ref crbegin() -- returns a const reverse iterator to the beginning + + @since version 1.0.0 + */ + reverse_iterator rend() noexcept + { + return reverse_iterator(begin()); + } + + /*! + @copydoc basic_json::crend() + */ + const_reverse_iterator rend() const noexcept + { + return crend(); + } + + /*! + @brief returns a const reverse iterator to the last element + + Returns a const iterator to the reverse-beginning; that is, the last + element. + + @image html range-rbegin-rend.svg "Illustration from cppreference.com" + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) + requirements: + - The complexity is constant. + - Has the semantics of `const_cast(*this).rbegin()`. + + @liveexample{The following code shows an example for `crbegin()`.,crbegin} + + @sa @ref rbegin() -- returns a reverse iterator to the beginning + @sa @ref rend() -- returns a reverse iterator to the end + @sa @ref crend() -- returns a const reverse iterator to the end + + @since version 1.0.0 + */ + const_reverse_iterator crbegin() const noexcept + { + return const_reverse_iterator(cend()); + } + + /*! + @brief returns a const reverse iterator to one before the first + + Returns a const reverse iterator to the reverse-end; that is, one before + the first element. + + @image html range-rbegin-rend.svg "Illustration from cppreference.com" + + @complexity Constant. + + @requirement This function helps `basic_json` satisfying the + [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) + requirements: + - The complexity is constant. + - Has the semantics of `const_cast(*this).rend()`. + + @liveexample{The following code shows an example for `crend()`.,crend} + + @sa @ref rend() -- returns a reverse iterator to the end + @sa @ref rbegin() -- returns a reverse iterator to the beginning + @sa @ref crbegin() -- returns a const reverse iterator to the beginning + + @since version 1.0.0 + */ + const_reverse_iterator crend() const noexcept + { + return const_reverse_iterator(cbegin()); + } + + public: + /*! + @brief wrapper to access iterator member functions in range-based for + + This function allows to access @ref iterator::key() and @ref + iterator::value() during range-based for loops. In these loops, a + reference to the JSON values is returned, so there is no access to the + underlying iterator. + + For loop without iterator_wrapper: + + @code{cpp} + for (auto it = j_object.begin(); it != j_object.end(); ++it) + { + std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; + } + @endcode + + Range-based for loop without iterator proxy: + + @code{cpp} + for (auto it : j_object) + { + // "it" is of type json::reference and has no key() member + std::cout << "value: " << it << '\n'; + } + @endcode + + Range-based for loop with iterator proxy: + + @code{cpp} + for (auto it : json::iterator_wrapper(j_object)) + { + std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; + } + @endcode + + @note When iterating over an array, `key()` will return the index of the + element as string (see example). + + @param[in] ref reference to a JSON value + @return iteration proxy object wrapping @a ref with an interface to use in + range-based for loops + + @liveexample{The following code shows how the wrapper is used,iterator_wrapper} + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @note The name of this function is not yet final and may change in the + future. + + @deprecated This stream operator is deprecated and will be removed in + future 4.0.0 of the library. Please use @ref items() instead; + that is, replace `json::iterator_wrapper(j)` with `j.items()`. + */ + JSON_HEDLEY_DEPRECATED_FOR(3.1.0, items()) + static iteration_proxy iterator_wrapper(reference ref) noexcept + { + return ref.items(); + } + + /*! + @copydoc iterator_wrapper(reference) + */ + JSON_HEDLEY_DEPRECATED_FOR(3.1.0, items()) + static iteration_proxy iterator_wrapper(const_reference ref) noexcept + { + return ref.items(); + } + + /*! + @brief helper to access iterator member functions in range-based for + + This function allows to access @ref iterator::key() and @ref + iterator::value() during range-based for loops. In these loops, a + reference to the JSON values is returned, so there is no access to the + underlying iterator. + + For loop without `items()` function: + + @code{cpp} + for (auto it = j_object.begin(); it != j_object.end(); ++it) + { + std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; + } + @endcode + + Range-based for loop without `items()` function: + + @code{cpp} + for (auto it : j_object) + { + // "it" is of type json::reference and has no key() member + std::cout << "value: " << it << '\n'; + } + @endcode + + Range-based for loop with `items()` function: + + @code{cpp} + for (auto& el : j_object.items()) + { + std::cout << "key: " << el.key() << ", value:" << el.value() << '\n'; + } + @endcode + + The `items()` function also allows to use + [structured bindings](https://en.cppreference.com/w/cpp/language/structured_binding) + (C++17): + + @code{cpp} + for (auto& [key, val] : j_object.items()) + { + std::cout << "key: " << key << ", value:" << val << '\n'; + } + @endcode + + @note When iterating over an array, `key()` will return the index of the + element as string (see example). For primitive types (e.g., numbers), + `key()` returns an empty string. + + @warning Using `items()` on temporary objects is dangerous. Make sure the + object's lifetime exeeds the iteration. See + for more + information. + + @return iteration proxy object wrapping @a ref with an interface to use in + range-based for loops + + @liveexample{The following code shows how the function is used.,items} + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 3.1.0, structured bindings support since 3.5.0. + */ + iteration_proxy items() noexcept + { + return iteration_proxy(*this); + } + + /*! + @copydoc items() + */ + iteration_proxy items() const noexcept + { + return iteration_proxy(*this); + } + + /// @} + + + ////////////// + // capacity // + ////////////// + + /// @name capacity + /// @{ + + /*! + @brief checks whether the container is empty. + + Checks if a JSON value has no elements (i.e. whether its @ref size is `0`). + + @return The return value depends on the different types and is + defined as follows: + Value type | return value + ----------- | ------------- + null | `true` + boolean | `false` + string | `false` + number | `false` + binary | `false` + object | result of function `object_t::empty()` + array | result of function `array_t::empty()` + + @liveexample{The following code uses `empty()` to check if a JSON + object contains any elements.,empty} + + @complexity Constant, as long as @ref array_t and @ref object_t satisfy + the Container concept; that is, their `empty()` functions have constant + complexity. + + @iterators No changes. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @note This function does not return whether a string stored as JSON value + is empty - it returns whether the JSON container itself is empty which is + false in the case of a string. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of `begin() == end()`. + + @sa @ref size() -- returns the number of elements + + @since version 1.0.0 + */ + bool empty() const noexcept + { + switch (m_type) + { + case value_t::null: + { + // null values are empty + return true; + } + + case value_t::array: + { + // delegate call to array_t::empty() + return m_value.array->empty(); + } + + case value_t::object: + { + // delegate call to object_t::empty() + return m_value.object->empty(); + } + + default: + { + // all other types are nonempty + return false; + } + } + } + + /*! + @brief returns the number of elements + + Returns the number of elements in a JSON value. + + @return The return value depends on the different types and is + defined as follows: + Value type | return value + ----------- | ------------- + null | `0` + boolean | `1` + string | `1` + number | `1` + binary | `1` + object | result of function object_t::size() + array | result of function array_t::size() + + @liveexample{The following code calls `size()` on the different value + types.,size} + + @complexity Constant, as long as @ref array_t and @ref object_t satisfy + the Container concept; that is, their size() functions have constant + complexity. + + @iterators No changes. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @note This function does not return the length of a string stored as JSON + value - it returns the number of elements in the JSON value which is 1 in + the case of a string. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of `std::distance(begin(), end())`. + + @sa @ref empty() -- checks whether the container is empty + @sa @ref max_size() -- returns the maximal number of elements + + @since version 1.0.0 + */ + size_type size() const noexcept + { + switch (m_type) + { + case value_t::null: + { + // null values are empty + return 0; + } + + case value_t::array: + { + // delegate call to array_t::size() + return m_value.array->size(); + } + + case value_t::object: + { + // delegate call to object_t::size() + return m_value.object->size(); + } + + default: + { + // all other types have size 1 + return 1; + } + } + } + + /*! + @brief returns the maximum possible number of elements + + Returns the maximum number of elements a JSON value is able to hold due to + system or library implementation limitations, i.e. `std::distance(begin(), + end())` for the JSON value. + + @return The return value depends on the different types and is + defined as follows: + Value type | return value + ----------- | ------------- + null | `0` (same as `size()`) + boolean | `1` (same as `size()`) + string | `1` (same as `size()`) + number | `1` (same as `size()`) + binary | `1` (same as `size()`) + object | result of function `object_t::max_size()` + array | result of function `array_t::max_size()` + + @liveexample{The following code calls `max_size()` on the different value + types. Note the output is implementation specific.,max_size} + + @complexity Constant, as long as @ref array_t and @ref object_t satisfy + the Container concept; that is, their `max_size()` functions have constant + complexity. + + @iterators No changes. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @requirement This function helps `basic_json` satisfying the + [Container](https://en.cppreference.com/w/cpp/named_req/Container) + requirements: + - The complexity is constant. + - Has the semantics of returning `b.size()` where `b` is the largest + possible JSON value. + + @sa @ref size() -- returns the number of elements + + @since version 1.0.0 + */ + size_type max_size() const noexcept + { + switch (m_type) + { + case value_t::array: + { + // delegate call to array_t::max_size() + return m_value.array->max_size(); + } + + case value_t::object: + { + // delegate call to object_t::max_size() + return m_value.object->max_size(); + } + + default: + { + // all other types have max_size() == size() + return size(); + } + } + } + + /// @} + + + /////////////// + // modifiers // + /////////////// + + /// @name modifiers + /// @{ + + /*! + @brief clears the contents + + Clears the content of a JSON value and resets it to the default value as + if @ref basic_json(value_t) would have been called with the current value + type from @ref type(): + + Value type | initial value + ----------- | ------------- + null | `null` + boolean | `false` + string | `""` + number | `0` + binary | An empty byte vector + object | `{}` + array | `[]` + + @post Has the same effect as calling + @code {.cpp} + *this = basic_json(type()); + @endcode + + @liveexample{The example below shows the effect of `clear()` to different + JSON types.,clear} + + @complexity Linear in the size of the JSON value. + + @iterators All iterators, pointers and references related to this container + are invalidated. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @sa @ref basic_json(value_t) -- constructor that creates an object with the + same value than calling `clear()` + + @since version 1.0.0 + */ + void clear() noexcept + { + switch (m_type) + { + case value_t::number_integer: + { + m_value.number_integer = 0; + break; + } + + case value_t::number_unsigned: + { + m_value.number_unsigned = 0; + break; + } + + case value_t::number_float: + { + m_value.number_float = 0.0; + break; + } + + case value_t::boolean: + { + m_value.boolean = false; + break; + } + + case value_t::string: + { + m_value.string->clear(); + break; + } + + case value_t::binary: + { + m_value.binary->clear(); + break; + } + + case value_t::array: + { + m_value.array->clear(); + break; + } + + case value_t::object: + { + m_value.object->clear(); + break; + } + + default: + break; + } + } + + /*! + @brief add an object to an array + + Appends the given element @a val to the end of the JSON value. If the + function is called on a JSON null value, an empty array is created before + appending @a val. + + @param[in] val the value to add to the JSON array + + @throw type_error.308 when called on a type other than JSON array or + null; example: `"cannot use push_back() with number"` + + @complexity Amortized constant. + + @liveexample{The example shows how `push_back()` and `+=` can be used to + add elements to a JSON array. Note how the `null` value was silently + converted to a JSON array.,push_back} + + @since version 1.0.0 + */ + void push_back(basic_json&& val) + { + // push_back only works for null objects or arrays + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) + { + JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); + } + + // transform null object into an array + if (is_null()) + { + m_type = value_t::array; + m_value = value_t::array; + assert_invariant(); + } + + // add element to array (move semantics) + m_value.array->push_back(std::move(val)); + // if val is moved from, basic_json move constructor marks it null so we do not call the destructor + } + + /*! + @brief add an object to an array + @copydoc push_back(basic_json&&) + */ + reference operator+=(basic_json&& val) + { + push_back(std::move(val)); + return *this; + } + + /*! + @brief add an object to an array + @copydoc push_back(basic_json&&) + */ + void push_back(const basic_json& val) + { + // push_back only works for null objects or arrays + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) + { + JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); + } + + // transform null object into an array + if (is_null()) + { + m_type = value_t::array; + m_value = value_t::array; + assert_invariant(); + } + + // add element to array + m_value.array->push_back(val); + } + + /*! + @brief add an object to an array + @copydoc push_back(basic_json&&) + */ + reference operator+=(const basic_json& val) + { + push_back(val); + return *this; + } + + /*! + @brief add an object to an object + + Inserts the given element @a val to the JSON object. If the function is + called on a JSON null value, an empty object is created before inserting + @a val. + + @param[in] val the value to add to the JSON object + + @throw type_error.308 when called on a type other than JSON object or + null; example: `"cannot use push_back() with number"` + + @complexity Logarithmic in the size of the container, O(log(`size()`)). + + @liveexample{The example shows how `push_back()` and `+=` can be used to + add elements to a JSON object. Note how the `null` value was silently + converted to a JSON object.,push_back__object_t__value} + + @since version 1.0.0 + */ + void push_back(const typename object_t::value_type& val) + { + // push_back only works for null objects or objects + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object()))) + { + JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); + } + + // transform null object into an object + if (is_null()) + { + m_type = value_t::object; + m_value = value_t::object; + assert_invariant(); + } + + // add element to array + m_value.object->insert(val); + } + + /*! + @brief add an object to an object + @copydoc push_back(const typename object_t::value_type&) + */ + reference operator+=(const typename object_t::value_type& val) + { + push_back(val); + return *this; + } + + /*! + @brief add an object to an object + + This function allows to use `push_back` with an initializer list. In case + + 1. the current value is an object, + 2. the initializer list @a init contains only two elements, and + 3. the first element of @a init is a string, + + @a init is converted into an object element and added using + @ref push_back(const typename object_t::value_type&). Otherwise, @a init + is converted to a JSON value and added using @ref push_back(basic_json&&). + + @param[in] init an initializer list + + @complexity Linear in the size of the initializer list @a init. + + @note This function is required to resolve an ambiguous overload error, + because pairs like `{"key", "value"}` can be both interpreted as + `object_t::value_type` or `std::initializer_list`, see + https://github.com/nlohmann/json/issues/235 for more information. + + @liveexample{The example shows how initializer lists are treated as + objects when possible.,push_back__initializer_list} + */ + void push_back(initializer_list_t init) + { + if (is_object() && init.size() == 2 && (*init.begin())->is_string()) + { + basic_json&& key = init.begin()->moved_or_copied(); + push_back(typename object_t::value_type( + std::move(key.get_ref()), (init.begin() + 1)->moved_or_copied())); + } + else + { + push_back(basic_json(init)); + } + } + + /*! + @brief add an object to an object + @copydoc push_back(initializer_list_t) + */ + reference operator+=(initializer_list_t init) + { + push_back(init); + return *this; + } + + /*! + @brief add an object to an array + + Creates a JSON value from the passed parameters @a args to the end of the + JSON value. If the function is called on a JSON null value, an empty array + is created before appending the value created from @a args. + + @param[in] args arguments to forward to a constructor of @ref basic_json + @tparam Args compatible types to create a @ref basic_json object + + @return reference to the inserted element + + @throw type_error.311 when called on a type other than JSON array or + null; example: `"cannot use emplace_back() with number"` + + @complexity Amortized constant. + + @liveexample{The example shows how `push_back()` can be used to add + elements to a JSON array. Note how the `null` value was silently converted + to a JSON array.,emplace_back} + + @since version 2.0.8, returns reference since 3.7.0 + */ + template + reference emplace_back(Args&& ... args) + { + // emplace_back only works for null objects or arrays + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) + { + JSON_THROW(type_error::create(311, "cannot use emplace_back() with " + std::string(type_name()))); + } + + // transform null object into an array + if (is_null()) + { + m_type = value_t::array; + m_value = value_t::array; + assert_invariant(); + } + + // add element to array (perfect forwarding) +#ifdef JSON_HAS_CPP_17 + return m_value.array->emplace_back(std::forward(args)...); +#else + m_value.array->emplace_back(std::forward(args)...); + return m_value.array->back(); +#endif + } + + /*! + @brief add an object to an object if key does not exist + + Inserts a new element into a JSON object constructed in-place with the + given @a args if there is no element with the key in the container. If the + function is called on a JSON null value, an empty object is created before + appending the value created from @a args. + + @param[in] args arguments to forward to a constructor of @ref basic_json + @tparam Args compatible types to create a @ref basic_json object + + @return a pair consisting of an iterator to the inserted element, or the + already-existing element if no insertion happened, and a bool + denoting whether the insertion took place. + + @throw type_error.311 when called on a type other than JSON object or + null; example: `"cannot use emplace() with number"` + + @complexity Logarithmic in the size of the container, O(log(`size()`)). + + @liveexample{The example shows how `emplace()` can be used to add elements + to a JSON object. Note how the `null` value was silently converted to a + JSON object. Further note how no value is added if there was already one + value stored with the same key.,emplace} + + @since version 2.0.8 + */ + template + std::pair emplace(Args&& ... args) + { + // emplace only works for null objects or arrays + if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object()))) + { + JSON_THROW(type_error::create(311, "cannot use emplace() with " + std::string(type_name()))); + } + + // transform null object into an object + if (is_null()) + { + m_type = value_t::object; + m_value = value_t::object; + assert_invariant(); + } + + // add element to array (perfect forwarding) + auto res = m_value.object->emplace(std::forward(args)...); + // create result iterator and set iterator to the result of emplace + auto it = begin(); + it.m_it.object_iterator = res.first; + + // return pair of iterator and boolean + return {it, res.second}; + } + + /// Helper for insertion of an iterator + /// @note: This uses std::distance to support GCC 4.8, + /// see https://github.com/nlohmann/json/pull/1257 + template + iterator insert_iterator(const_iterator pos, Args&& ... args) + { + iterator result(this); + JSON_ASSERT(m_value.array != nullptr); + + auto insert_pos = std::distance(m_value.array->begin(), pos.m_it.array_iterator); + m_value.array->insert(pos.m_it.array_iterator, std::forward(args)...); + result.m_it.array_iterator = m_value.array->begin() + insert_pos; + + // This could have been written as: + // result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, cnt, val); + // but the return value of insert is missing in GCC 4.8, so it is written this way instead. + + return result; + } + + /*! + @brief inserts element + + Inserts element @a val before iterator @a pos. + + @param[in] pos iterator before which the content will be inserted; may be + the end() iterator + @param[in] val element to insert + @return iterator pointing to the inserted @a val. + + @throw type_error.309 if called on JSON values other than arrays; + example: `"cannot use insert() with string"` + @throw invalid_iterator.202 if @a pos is not an iterator of *this; + example: `"iterator does not fit current value"` + + @complexity Constant plus linear in the distance between @a pos and end of + the container. + + @liveexample{The example shows how `insert()` is used.,insert} + + @since version 1.0.0 + */ + iterator insert(const_iterator pos, const basic_json& val) + { + // insert only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + // check if iterator pos fits to this JSON value + if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + // insert to array and return iterator + return insert_iterator(pos, val); + } + + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + /*! + @brief inserts element + @copydoc insert(const_iterator, const basic_json&) + */ + iterator insert(const_iterator pos, basic_json&& val) + { + return insert(pos, val); + } + + /*! + @brief inserts elements + + Inserts @a cnt copies of @a val before iterator @a pos. + + @param[in] pos iterator before which the content will be inserted; may be + the end() iterator + @param[in] cnt number of copies of @a val to insert + @param[in] val element to insert + @return iterator pointing to the first element inserted, or @a pos if + `cnt==0` + + @throw type_error.309 if called on JSON values other than arrays; example: + `"cannot use insert() with string"` + @throw invalid_iterator.202 if @a pos is not an iterator of *this; + example: `"iterator does not fit current value"` + + @complexity Linear in @a cnt plus linear in the distance between @a pos + and end of the container. + + @liveexample{The example shows how `insert()` is used.,insert__count} + + @since version 1.0.0 + */ + iterator insert(const_iterator pos, size_type cnt, const basic_json& val) + { + // insert only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + // check if iterator pos fits to this JSON value + if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + // insert to array and return iterator + return insert_iterator(pos, cnt, val); + } + + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + /*! + @brief inserts elements + + Inserts elements from range `[first, last)` before iterator @a pos. + + @param[in] pos iterator before which the content will be inserted; may be + the end() iterator + @param[in] first begin of the range of elements to insert + @param[in] last end of the range of elements to insert + + @throw type_error.309 if called on JSON values other than arrays; example: + `"cannot use insert() with string"` + @throw invalid_iterator.202 if @a pos is not an iterator of *this; + example: `"iterator does not fit current value"` + @throw invalid_iterator.210 if @a first and @a last do not belong to the + same JSON value; example: `"iterators do not fit"` + @throw invalid_iterator.211 if @a first or @a last are iterators into + container for which insert is called; example: `"passed iterators may not + belong to container"` + + @return iterator pointing to the first element inserted, or @a pos if + `first==last` + + @complexity Linear in `std::distance(first, last)` plus linear in the + distance between @a pos and end of the container. + + @liveexample{The example shows how `insert()` is used.,insert__range} + + @since version 1.0.0 + */ + iterator insert(const_iterator pos, const_iterator first, const_iterator last) + { + // insert only works for arrays + if (JSON_HEDLEY_UNLIKELY(!is_array())) + { + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + // check if iterator pos fits to this JSON value + if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + // check if range iterators belong to the same JSON object + if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) + { + JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); + } + + if (JSON_HEDLEY_UNLIKELY(first.m_object == this)) + { + JSON_THROW(invalid_iterator::create(211, "passed iterators may not belong to container")); + } + + // insert to array and return iterator + return insert_iterator(pos, first.m_it.array_iterator, last.m_it.array_iterator); + } + + /*! + @brief inserts elements + + Inserts elements from initializer list @a ilist before iterator @a pos. + + @param[in] pos iterator before which the content will be inserted; may be + the end() iterator + @param[in] ilist initializer list to insert the values from + + @throw type_error.309 if called on JSON values other than arrays; example: + `"cannot use insert() with string"` + @throw invalid_iterator.202 if @a pos is not an iterator of *this; + example: `"iterator does not fit current value"` + + @return iterator pointing to the first element inserted, or @a pos if + `ilist` is empty + + @complexity Linear in `ilist.size()` plus linear in the distance between + @a pos and end of the container. + + @liveexample{The example shows how `insert()` is used.,insert__ilist} + + @since version 1.0.0 + */ + iterator insert(const_iterator pos, initializer_list_t ilist) + { + // insert only works for arrays + if (JSON_HEDLEY_UNLIKELY(!is_array())) + { + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + // check if iterator pos fits to this JSON value + if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) + { + JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); + } + + // insert to array and return iterator + return insert_iterator(pos, ilist.begin(), ilist.end()); + } + + /*! + @brief inserts elements + + Inserts elements from range `[first, last)`. + + @param[in] first begin of the range of elements to insert + @param[in] last end of the range of elements to insert + + @throw type_error.309 if called on JSON values other than objects; example: + `"cannot use insert() with string"` + @throw invalid_iterator.202 if iterator @a first or @a last does does not + point to an object; example: `"iterators first and last must point to + objects"` + @throw invalid_iterator.210 if @a first and @a last do not belong to the + same JSON value; example: `"iterators do not fit"` + + @complexity Logarithmic: `O(N*log(size() + N))`, where `N` is the number + of elements to insert. + + @liveexample{The example shows how `insert()` is used.,insert__range_object} + + @since version 3.0.0 + */ + void insert(const_iterator first, const_iterator last) + { + // insert only works for objects + if (JSON_HEDLEY_UNLIKELY(!is_object())) + { + JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); + } + + // check if range iterators belong to the same JSON object + if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) + { + JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); + } + + // passed iterators must belong to objects + if (JSON_HEDLEY_UNLIKELY(!first.m_object->is_object())) + { + JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects")); + } + + m_value.object->insert(first.m_it.object_iterator, last.m_it.object_iterator); + } + + /*! + @brief updates a JSON object from another object, overwriting existing keys + + Inserts all values from JSON object @a j and overwrites existing keys. + + @param[in] j JSON object to read values from + + @throw type_error.312 if called on JSON values other than objects; example: + `"cannot use update() with string"` + + @complexity O(N*log(size() + N)), where N is the number of elements to + insert. + + @liveexample{The example shows how `update()` is used.,update} + + @sa https://docs.python.org/3.6/library/stdtypes.html#dict.update + + @since version 3.0.0 + */ + void update(const_reference j) + { + // implicitly convert null value to an empty object + if (is_null()) + { + m_type = value_t::object; + m_value.object = create(); + assert_invariant(); + } + + if (JSON_HEDLEY_UNLIKELY(!is_object())) + { + JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name()))); + } + if (JSON_HEDLEY_UNLIKELY(!j.is_object())) + { + JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(j.type_name()))); + } + + for (auto it = j.cbegin(); it != j.cend(); ++it) + { + m_value.object->operator[](it.key()) = it.value(); + } + } + + /*! + @brief updates a JSON object from another object, overwriting existing keys + + Inserts all values from from range `[first, last)` and overwrites existing + keys. + + @param[in] first begin of the range of elements to insert + @param[in] last end of the range of elements to insert + + @throw type_error.312 if called on JSON values other than objects; example: + `"cannot use update() with string"` + @throw invalid_iterator.202 if iterator @a first or @a last does does not + point to an object; example: `"iterators first and last must point to + objects"` + @throw invalid_iterator.210 if @a first and @a last do not belong to the + same JSON value; example: `"iterators do not fit"` + + @complexity O(N*log(size() + N)), where N is the number of elements to + insert. + + @liveexample{The example shows how `update()` is used__range.,update} + + @sa https://docs.python.org/3.6/library/stdtypes.html#dict.update + + @since version 3.0.0 + */ + void update(const_iterator first, const_iterator last) + { + // implicitly convert null value to an empty object + if (is_null()) + { + m_type = value_t::object; + m_value.object = create(); + assert_invariant(); + } + + if (JSON_HEDLEY_UNLIKELY(!is_object())) + { + JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name()))); + } + + // check if range iterators belong to the same JSON object + if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) + { + JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); + } + + // passed iterators must belong to objects + if (JSON_HEDLEY_UNLIKELY(!first.m_object->is_object() + || !last.m_object->is_object())) + { + JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects")); + } + + for (auto it = first; it != last; ++it) + { + m_value.object->operator[](it.key()) = it.value(); + } + } + + /*! + @brief exchanges the values + + Exchanges the contents of the JSON value with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other JSON value to exchange the contents with + + @complexity Constant. + + @liveexample{The example below shows how JSON values can be swapped with + `swap()`.,swap__reference} + + @since version 1.0.0 + */ + void swap(reference other) noexcept ( + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value&& + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value + ) + { + std::swap(m_type, other.m_type); + std::swap(m_value, other.m_value); + assert_invariant(); + } + + /*! + @brief exchanges the values + + Exchanges the contents of the JSON value from @a left with those of @a right. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. implemented as a friend function callable via ADL. + + @param[in,out] left JSON value to exchange the contents with + @param[in,out] right JSON value to exchange the contents with + + @complexity Constant. + + @liveexample{The example below shows how JSON values can be swapped with + `swap()`.,swap__reference} + + @since version 1.0.0 + */ + friend void swap(reference left, reference right) noexcept ( + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value&& + std::is_nothrow_move_constructible::value&& + std::is_nothrow_move_assignable::value + ) + { + left.swap(right); + } + + /*! + @brief exchanges the values + + Exchanges the contents of a JSON array with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other array to exchange the contents with + + @throw type_error.310 when JSON value is not an array; example: `"cannot + use swap() with string"` + + @complexity Constant. + + @liveexample{The example below shows how arrays can be swapped with + `swap()`.,swap__array_t} + + @since version 1.0.0 + */ + void swap(array_t& other) + { + // swap only works for arrays + if (JSON_HEDLEY_LIKELY(is_array())) + { + std::swap(*(m_value.array), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /*! + @brief exchanges the values + + Exchanges the contents of a JSON object with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other object to exchange the contents with + + @throw type_error.310 when JSON value is not an object; example: + `"cannot use swap() with string"` + + @complexity Constant. + + @liveexample{The example below shows how objects can be swapped with + `swap()`.,swap__object_t} + + @since version 1.0.0 + */ + void swap(object_t& other) + { + // swap only works for objects + if (JSON_HEDLEY_LIKELY(is_object())) + { + std::swap(*(m_value.object), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /*! + @brief exchanges the values + + Exchanges the contents of a JSON string with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other string to exchange the contents with + + @throw type_error.310 when JSON value is not a string; example: `"cannot + use swap() with boolean"` + + @complexity Constant. + + @liveexample{The example below shows how strings can be swapped with + `swap()`.,swap__string_t} + + @since version 1.0.0 + */ + void swap(string_t& other) + { + // swap only works for strings + if (JSON_HEDLEY_LIKELY(is_string())) + { + std::swap(*(m_value.string), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /*! + @brief exchanges the values + + Exchanges the contents of a JSON string with those of @a other. Does not + invoke any move, copy, or swap operations on individual elements. All + iterators and references remain valid. The past-the-end iterator is + invalidated. + + @param[in,out] other binary to exchange the contents with + + @throw type_error.310 when JSON value is not a string; example: `"cannot + use swap() with boolean"` + + @complexity Constant. + + @liveexample{The example below shows how strings can be swapped with + `swap()`.,swap__binary_t} + + @since version 3.8.0 + */ + void swap(binary_t& other) + { + // swap only works for strings + if (JSON_HEDLEY_LIKELY(is_binary())) + { + std::swap(*(m_value.binary), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /// @copydoc swap(binary_t) + void swap(typename binary_t::container_type& other) + { + // swap only works for strings + if (JSON_HEDLEY_LIKELY(is_binary())) + { + std::swap(*(m_value.binary), other); + } + else + { + JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); + } + } + + /// @} + + public: + ////////////////////////////////////////// + // lexicographical comparison operators // + ////////////////////////////////////////// + + /// @name lexicographical comparison operators + /// @{ + + /*! + @brief comparison: equal + + Compares two JSON values for equality according to the following rules: + - Two JSON values are equal if (1) they are from the same type and (2) + their stored values are the same according to their respective + `operator==`. + - Integer and floating-point numbers are automatically converted before + comparison. Note that two NaN values are always treated as unequal. + - Two JSON null values are equal. + + @note Floating-point inside JSON values numbers are compared with + `json::number_float_t::operator==` which is `double::operator==` by + default. To compare floating-point while respecting an epsilon, an alternative + [comparison function](https://github.com/mariokonrad/marnav/blob/master/include/marnav/math/floatingpoint.hpp#L34-#L39) + could be used, for instance + @code {.cpp} + template::value, T>::type> + inline bool is_same(T a, T b, T epsilon = std::numeric_limits::epsilon()) noexcept + { + return std::abs(a - b) <= epsilon; + } + @endcode + Or you can self-defined operator equal function like this: + @code {.cpp} + bool my_equal(const_reference lhs, const_reference rhs) { + const auto lhs_type lhs.type(); + const auto rhs_type rhs.type(); + if (lhs_type == rhs_type) { + switch(lhs_type) + // self_defined case + case value_t::number_float: + return std::abs(lhs - rhs) <= std::numeric_limits::epsilon(); + // other cases remain the same with the original + ... + } + ... + } + @endcode + + @note NaN values never compare equal to themselves or to other NaN values. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether the values @a lhs and @a rhs are equal + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @complexity Linear. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__equal} + + @since version 1.0.0 + */ + friend bool operator==(const_reference lhs, const_reference rhs) noexcept + { + const auto lhs_type = lhs.type(); + const auto rhs_type = rhs.type(); + + if (lhs_type == rhs_type) + { + switch (lhs_type) + { + case value_t::array: + return *lhs.m_value.array == *rhs.m_value.array; + + case value_t::object: + return *lhs.m_value.object == *rhs.m_value.object; + + case value_t::null: + return true; + + case value_t::string: + return *lhs.m_value.string == *rhs.m_value.string; + + case value_t::boolean: + return lhs.m_value.boolean == rhs.m_value.boolean; + + case value_t::number_integer: + return lhs.m_value.number_integer == rhs.m_value.number_integer; + + case value_t::number_unsigned: + return lhs.m_value.number_unsigned == rhs.m_value.number_unsigned; + + case value_t::number_float: + return lhs.m_value.number_float == rhs.m_value.number_float; + + case value_t::binary: + return *lhs.m_value.binary == *rhs.m_value.binary; + + default: + return false; + } + } + else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) + { + return static_cast(lhs.m_value.number_integer) == rhs.m_value.number_float; + } + else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) + { + return lhs.m_value.number_float == static_cast(rhs.m_value.number_integer); + } + else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) + { + return static_cast(lhs.m_value.number_unsigned) == rhs.m_value.number_float; + } + else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) + { + return lhs.m_value.number_float == static_cast(rhs.m_value.number_unsigned); + } + else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) + { + return static_cast(lhs.m_value.number_unsigned) == rhs.m_value.number_integer; + } + else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) + { + return lhs.m_value.number_integer == static_cast(rhs.m_value.number_unsigned); + } + + return false; + } + + /*! + @brief comparison: equal + @copydoc operator==(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator==(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs == basic_json(rhs); + } + + /*! + @brief comparison: equal + @copydoc operator==(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator==(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) == rhs; + } + + /*! + @brief comparison: not equal + + Compares two JSON values for inequality by calculating `not (lhs == rhs)`. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether the values @a lhs and @a rhs are not equal + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__notequal} + + @since version 1.0.0 + */ + friend bool operator!=(const_reference lhs, const_reference rhs) noexcept + { + return !(lhs == rhs); + } + + /*! + @brief comparison: not equal + @copydoc operator!=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator!=(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs != basic_json(rhs); + } + + /*! + @brief comparison: not equal + @copydoc operator!=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator!=(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) != rhs; + } + + /*! + @brief comparison: less than + + Compares whether one JSON value @a lhs is less than another JSON value @a + rhs according to the following rules: + - If @a lhs and @a rhs have the same type, the values are compared using + the default `<` operator. + - Integer and floating-point numbers are automatically converted before + comparison + - In case @a lhs and @a rhs have different types, the values are ignored + and the order of the types is considered, see + @ref operator<(const value_t, const value_t). + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether @a lhs is less than @a rhs + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__less} + + @since version 1.0.0 + */ + friend bool operator<(const_reference lhs, const_reference rhs) noexcept + { + const auto lhs_type = lhs.type(); + const auto rhs_type = rhs.type(); + + if (lhs_type == rhs_type) + { + switch (lhs_type) + { + case value_t::array: + // note parentheses are necessary, see + // https://github.com/nlohmann/json/issues/1530 + return (*lhs.m_value.array) < (*rhs.m_value.array); + + case value_t::object: + return (*lhs.m_value.object) < (*rhs.m_value.object); + + case value_t::null: + return false; + + case value_t::string: + return (*lhs.m_value.string) < (*rhs.m_value.string); + + case value_t::boolean: + return (lhs.m_value.boolean) < (rhs.m_value.boolean); + + case value_t::number_integer: + return (lhs.m_value.number_integer) < (rhs.m_value.number_integer); + + case value_t::number_unsigned: + return (lhs.m_value.number_unsigned) < (rhs.m_value.number_unsigned); + + case value_t::number_float: + return (lhs.m_value.number_float) < (rhs.m_value.number_float); + + case value_t::binary: + return (*lhs.m_value.binary) < (*rhs.m_value.binary); + + default: + return false; + } + } + else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) + { + return static_cast(lhs.m_value.number_integer) < rhs.m_value.number_float; + } + else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) + { + return lhs.m_value.number_float < static_cast(rhs.m_value.number_integer); + } + else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) + { + return static_cast(lhs.m_value.number_unsigned) < rhs.m_value.number_float; + } + else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) + { + return lhs.m_value.number_float < static_cast(rhs.m_value.number_unsigned); + } + else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) + { + return lhs.m_value.number_integer < static_cast(rhs.m_value.number_unsigned); + } + else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) + { + return static_cast(lhs.m_value.number_unsigned) < rhs.m_value.number_integer; + } + + // We only reach this line if we cannot compare values. In that case, + // we compare types. Note we have to call the operator explicitly, + // because MSVC has problems otherwise. + return operator<(lhs_type, rhs_type); + } + + /*! + @brief comparison: less than + @copydoc operator<(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator<(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs < basic_json(rhs); + } + + /*! + @brief comparison: less than + @copydoc operator<(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator<(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) < rhs; + } + + /*! + @brief comparison: less than or equal + + Compares whether one JSON value @a lhs is less than or equal to another + JSON value by calculating `not (rhs < lhs)`. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether @a lhs is less than or equal to @a rhs + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__greater} + + @since version 1.0.0 + */ + friend bool operator<=(const_reference lhs, const_reference rhs) noexcept + { + return !(rhs < lhs); + } + + /*! + @brief comparison: less than or equal + @copydoc operator<=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator<=(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs <= basic_json(rhs); + } + + /*! + @brief comparison: less than or equal + @copydoc operator<=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator<=(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) <= rhs; + } + + /*! + @brief comparison: greater than + + Compares whether one JSON value @a lhs is greater than another + JSON value by calculating `not (lhs <= rhs)`. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether @a lhs is greater than to @a rhs + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__lessequal} + + @since version 1.0.0 + */ + friend bool operator>(const_reference lhs, const_reference rhs) noexcept + { + return !(lhs <= rhs); + } + + /*! + @brief comparison: greater than + @copydoc operator>(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator>(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs > basic_json(rhs); + } + + /*! + @brief comparison: greater than + @copydoc operator>(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator>(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) > rhs; + } + + /*! + @brief comparison: greater than or equal + + Compares whether one JSON value @a lhs is greater than or equal to another + JSON value by calculating `not (lhs < rhs)`. + + @param[in] lhs first JSON value to consider + @param[in] rhs second JSON value to consider + @return whether @a lhs is greater than or equal to @a rhs + + @complexity Linear. + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @liveexample{The example demonstrates comparing several JSON + types.,operator__greaterequal} + + @since version 1.0.0 + */ + friend bool operator>=(const_reference lhs, const_reference rhs) noexcept + { + return !(lhs < rhs); + } + + /*! + @brief comparison: greater than or equal + @copydoc operator>=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator>=(const_reference lhs, const ScalarType rhs) noexcept + { + return lhs >= basic_json(rhs); + } + + /*! + @brief comparison: greater than or equal + @copydoc operator>=(const_reference, const_reference) + */ + template::value, int>::type = 0> + friend bool operator>=(const ScalarType lhs, const_reference rhs) noexcept + { + return basic_json(lhs) >= rhs; + } + + /// @} + + /////////////////// + // serialization // + /////////////////// + + /// @name serialization + /// @{ + + /*! + @brief serialize to stream + + Serialize the given JSON value @a j to the output stream @a o. The JSON + value will be serialized using the @ref dump member function. + + - The indentation of the output can be controlled with the member variable + `width` of the output stream @a o. For instance, using the manipulator + `std::setw(4)` on @a o sets the indentation level to `4` and the + serialization result is the same as calling `dump(4)`. + + - The indentation character can be controlled with the member variable + `fill` of the output stream @a o. For instance, the manipulator + `std::setfill('\\t')` sets indentation to use a tab character rather than + the default space character. + + @param[in,out] o stream to serialize to + @param[in] j JSON value to serialize + + @return the stream @a o + + @throw type_error.316 if a string stored inside the JSON value is not + UTF-8 encoded + + @complexity Linear. + + @liveexample{The example below shows the serialization with different + parameters to `width` to adjust the indentation level.,operator_serialize} + + @since version 1.0.0; indentation character added in version 3.0.0 + */ + friend std::ostream& operator<<(std::ostream& o, const basic_json& j) + { + // read width member and use it as indentation parameter if nonzero + const bool pretty_print = o.width() > 0; + const auto indentation = pretty_print ? o.width() : 0; + + // reset width to 0 for subsequent calls to this stream + o.width(0); + + // do the actual serialization + serializer s(detail::output_adapter(o), o.fill()); + s.dump(j, pretty_print, false, static_cast(indentation)); + return o; + } + + /*! + @brief serialize to stream + @deprecated This stream operator is deprecated and will be removed in + future 4.0.0 of the library. Please use + @ref operator<<(std::ostream&, const basic_json&) + instead; that is, replace calls like `j >> o;` with `o << j;`. + @since version 1.0.0; deprecated since version 3.0.0 + */ + JSON_HEDLEY_DEPRECATED_FOR(3.0.0, operator<<(std::ostream&, const basic_json&)) + friend std::ostream& operator>>(const basic_json& j, std::ostream& o) + { + return o << j; + } + + /// @} + + + ///////////////////// + // deserialization // + ///////////////////// + + /// @name deserialization + /// @{ + + /*! + @brief deserialize from a compatible input + + @tparam InputType A compatible input, for instance + - an std::istream object + - a FILE pointer + - a C-style array of characters + - a pointer to a null-terminated string of single byte characters + - an object obj for which begin(obj) and end(obj) produces a valid pair of + iterators. + + @param[in] i input to read from + @param[in] cb a parser callback function of type @ref parser_callback_t + which is used to control the deserialization by filtering unwanted values + (optional) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + @param[in] ignore_comments whether comments should be ignored and treated + like whitespace (true) or yield a parse error (true); (optional, false by + default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.101 if a parse error occurs; example: `""unexpected end + of input; expected string literal""` + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + + @complexity Linear in the length of the input. The parser is a predictive + LL(1) parser. The complexity can be higher if the parser callback function + @a cb or reading from the input @a i has a super-linear complexity. + + @note A UTF-8 byte order mark is silently ignored. + + @liveexample{The example below demonstrates the `parse()` function reading + from an array.,parse__array__parser_callback_t} + + @liveexample{The example below demonstrates the `parse()` function with + and without callback function.,parse__string__parser_callback_t} + + @liveexample{The example below demonstrates the `parse()` function with + and without callback function.,parse__istream__parser_callback_t} + + @liveexample{The example below demonstrates the `parse()` function reading + from a contiguous container.,parse__contiguouscontainer__parser_callback_t} + + @since version 2.0.3 (contiguous containers); version 3.9.0 allowed to + ignore comments. + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json parse(InputType&& i, + const parser_callback_t cb = nullptr, + const bool allow_exceptions = true, + const bool ignore_comments = false) + { + basic_json result; + parser(detail::input_adapter(std::forward(i)), cb, allow_exceptions, ignore_comments).parse(true, result); + return result; + } + + /*! + @brief deserialize from a pair of character iterators + + The value_type of the iterator must be a integral type with size of 1, 2 or + 4 bytes, which will be interpreted respectively as UTF-8, UTF-16 and UTF-32. + + @param[in] first iterator to start of character range + @param[in] last iterator to end of character range + @param[in] cb a parser callback function of type @ref parser_callback_t + which is used to control the deserialization by filtering unwanted values + (optional) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + @param[in] ignore_comments whether comments should be ignored and treated + like whitespace (true) or yield a parse error (true); (optional, false by + default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.101 if a parse error occurs; example: `""unexpected end + of input; expected string literal""` + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json parse(IteratorType first, + IteratorType last, + const parser_callback_t cb = nullptr, + const bool allow_exceptions = true, + const bool ignore_comments = false) + { + basic_json result; + parser(detail::input_adapter(std::move(first), std::move(last)), cb, allow_exceptions, ignore_comments).parse(true, result); + return result; + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, parse(ptr, ptr + len)) + static basic_json parse(detail::span_input_adapter&& i, + const parser_callback_t cb = nullptr, + const bool allow_exceptions = true, + const bool ignore_comments = false) + { + basic_json result; + parser(i.get(), cb, allow_exceptions, ignore_comments).parse(true, result); + return result; + } + + /*! + @brief check if the input is valid JSON + + Unlike the @ref parse(InputType&&, const parser_callback_t,const bool) + function, this function neither throws an exception in case of invalid JSON + input (i.e., a parse error) nor creates diagnostic information. + + @tparam InputType A compatible input, for instance + - an std::istream object + - a FILE pointer + - a C-style array of characters + - a pointer to a null-terminated string of single byte characters + - an object obj for which begin(obj) and end(obj) produces a valid pair of + iterators. + + @param[in] i input to read from + @param[in] ignore_comments whether comments should be ignored and treated + like whitespace (true) or yield a parse error (true); (optional, false by + default) + + @return Whether the input read from @a i is valid JSON. + + @complexity Linear in the length of the input. The parser is a predictive + LL(1) parser. + + @note A UTF-8 byte order mark is silently ignored. + + @liveexample{The example below demonstrates the `accept()` function reading + from a string.,accept__string} + */ + template + static bool accept(InputType&& i, + const bool ignore_comments = false) + { + return parser(detail::input_adapter(std::forward(i)), nullptr, false, ignore_comments).accept(true); + } + + template + static bool accept(IteratorType first, IteratorType last, + const bool ignore_comments = false) + { + return parser(detail::input_adapter(std::move(first), std::move(last)), nullptr, false, ignore_comments).accept(true); + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, accept(ptr, ptr + len)) + static bool accept(detail::span_input_adapter&& i, + const bool ignore_comments = false) + { + return parser(i.get(), nullptr, false, ignore_comments).accept(true); + } + + /*! + @brief generate SAX events + + The SAX event lister must follow the interface of @ref json_sax. + + This function reads from a compatible input. Examples are: + - an std::istream object + - a FILE pointer + - a C-style array of characters + - a pointer to a null-terminated string of single byte characters + - an object obj for which begin(obj) and end(obj) produces a valid pair of + iterators. + + @param[in] i input to read from + @param[in,out] sax SAX event listener + @param[in] format the format to parse (JSON, CBOR, MessagePack, or UBJSON) + @param[in] strict whether the input has to be consumed completely + @param[in] ignore_comments whether comments should be ignored and treated + like whitespace (true) or yield a parse error (true); (optional, false by + default); only applies to the JSON file format. + + @return return value of the last processed SAX event + + @throw parse_error.101 if a parse error occurs; example: `""unexpected end + of input; expected string literal""` + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + + @complexity Linear in the length of the input. The parser is a predictive + LL(1) parser. The complexity can be higher if the SAX consumer @a sax has + a super-linear complexity. + + @note A UTF-8 byte order mark is silently ignored. + + @liveexample{The example below demonstrates the `sax_parse()` function + reading from string and processing the events with a user-defined SAX + event consumer.,sax_parse} + + @since version 3.2.0 + */ + template + JSON_HEDLEY_NON_NULL(2) + static bool sax_parse(InputType&& i, SAX* sax, + input_format_t format = input_format_t::json, + const bool strict = true, + const bool ignore_comments = false) + { + auto ia = detail::input_adapter(std::forward(i)); + return format == input_format_t::json + ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) + : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); + } + + template + JSON_HEDLEY_NON_NULL(3) + static bool sax_parse(IteratorType first, IteratorType last, SAX* sax, + input_format_t format = input_format_t::json, + const bool strict = true, + const bool ignore_comments = false) + { + auto ia = detail::input_adapter(std::move(first), std::move(last)); + return format == input_format_t::json + ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) + : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); + } + + template + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, sax_parse(ptr, ptr + len, ...)) + JSON_HEDLEY_NON_NULL(2) + static bool sax_parse(detail::span_input_adapter&& i, SAX* sax, + input_format_t format = input_format_t::json, + const bool strict = true, + const bool ignore_comments = false) + { + auto ia = i.get(); + return format == input_format_t::json + ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) + : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); + } + + /*! + @brief deserialize from stream + @deprecated This stream operator is deprecated and will be removed in + version 4.0.0 of the library. Please use + @ref operator>>(std::istream&, basic_json&) + instead; that is, replace calls like `j << i;` with `i >> j;`. + @since version 1.0.0; deprecated since version 3.0.0 + */ + JSON_HEDLEY_DEPRECATED_FOR(3.0.0, operator>>(std::istream&, basic_json&)) + friend std::istream& operator<<(basic_json& j, std::istream& i) + { + return operator>>(i, j); + } + + /*! + @brief deserialize from stream + + Deserializes an input stream to a JSON value. + + @param[in,out] i input stream to read a serialized JSON value from + @param[in,out] j JSON value to write the deserialized input to + + @throw parse_error.101 in case of an unexpected token + @throw parse_error.102 if to_unicode fails or surrogate error + @throw parse_error.103 if to_unicode fails + + @complexity Linear in the length of the input. The parser is a predictive + LL(1) parser. + + @note A UTF-8 byte order mark is silently ignored. + + @liveexample{The example below shows how a JSON value is constructed by + reading a serialization from a stream.,operator_deserialize} + + @sa parse(std::istream&, const parser_callback_t) for a variant with a + parser callback function to filter values while parsing + + @since version 1.0.0 + */ + friend std::istream& operator>>(std::istream& i, basic_json& j) + { + parser(detail::input_adapter(i)).parse(false, j); + return i; + } + + /// @} + + /////////////////////////// + // convenience functions // + /////////////////////////// + + /*! + @brief return the type as string + + Returns the type name as string to be used in error messages - usually to + indicate that a function was called on a wrong JSON type. + + @return a string representation of a the @a m_type member: + Value type | return value + ----------- | ------------- + null | `"null"` + boolean | `"boolean"` + string | `"string"` + number | `"number"` (for all number types) + object | `"object"` + array | `"array"` + binary | `"binary"` + discarded | `"discarded"` + + @exceptionsafety No-throw guarantee: this function never throws exceptions. + + @complexity Constant. + + @liveexample{The following code exemplifies `type_name()` for all JSON + types.,type_name} + + @sa @ref type() -- return the type of the JSON value + @sa @ref operator value_t() -- return the type of the JSON value (implicit) + + @since version 1.0.0, public since 2.1.0, `const char*` and `noexcept` + since 3.0.0 + */ + JSON_HEDLEY_RETURNS_NON_NULL + const char* type_name() const noexcept + { + { + switch (m_type) + { + case value_t::null: + return "null"; + case value_t::object: + return "object"; + case value_t::array: + return "array"; + case value_t::string: + return "string"; + case value_t::boolean: + return "boolean"; + case value_t::binary: + return "binary"; + case value_t::discarded: + return "discarded"; + default: + return "number"; + } + } + } + + + private: + ////////////////////// + // member variables // + ////////////////////// + + /// the type of the current element + value_t m_type = value_t::null; + + /// the value of the current element + json_value m_value = {}; + + ////////////////////////////////////////// + // binary serialization/deserialization // + ////////////////////////////////////////// + + /// @name binary serialization/deserialization support + /// @{ + + public: + /*! + @brief create a CBOR serialization of a given JSON value + + Serializes a given JSON value @a j to a byte vector using the CBOR (Concise + Binary Object Representation) serialization format. CBOR is a binary + serialization format which aims to be more compact than JSON itself, yet + more efficient to parse. + + The library uses the following mapping from JSON values types to + CBOR types according to the CBOR specification (RFC 7049): + + JSON value type | value/range | CBOR type | first byte + --------------- | ------------------------------------------ | ---------------------------------- | --------------- + null | `null` | Null | 0xF6 + boolean | `true` | True | 0xF5 + boolean | `false` | False | 0xF4 + number_integer | -9223372036854775808..-2147483649 | Negative integer (8 bytes follow) | 0x3B + number_integer | -2147483648..-32769 | Negative integer (4 bytes follow) | 0x3A + number_integer | -32768..-129 | Negative integer (2 bytes follow) | 0x39 + number_integer | -128..-25 | Negative integer (1 byte follow) | 0x38 + number_integer | -24..-1 | Negative integer | 0x20..0x37 + number_integer | 0..23 | Integer | 0x00..0x17 + number_integer | 24..255 | Unsigned integer (1 byte follow) | 0x18 + number_integer | 256..65535 | Unsigned integer (2 bytes follow) | 0x19 + number_integer | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A + number_integer | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B + number_unsigned | 0..23 | Integer | 0x00..0x17 + number_unsigned | 24..255 | Unsigned integer (1 byte follow) | 0x18 + number_unsigned | 256..65535 | Unsigned integer (2 bytes follow) | 0x19 + number_unsigned | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A + number_unsigned | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B + number_float | *any value representable by a float* | Single-Precision Float | 0xFA + number_float | *any value NOT representable by a float* | Double-Precision Float | 0xFB + string | *length*: 0..23 | UTF-8 string | 0x60..0x77 + string | *length*: 23..255 | UTF-8 string (1 byte follow) | 0x78 + string | *length*: 256..65535 | UTF-8 string (2 bytes follow) | 0x79 + string | *length*: 65536..4294967295 | UTF-8 string (4 bytes follow) | 0x7A + string | *length*: 4294967296..18446744073709551615 | UTF-8 string (8 bytes follow) | 0x7B + array | *size*: 0..23 | array | 0x80..0x97 + array | *size*: 23..255 | array (1 byte follow) | 0x98 + array | *size*: 256..65535 | array (2 bytes follow) | 0x99 + array | *size*: 65536..4294967295 | array (4 bytes follow) | 0x9A + array | *size*: 4294967296..18446744073709551615 | array (8 bytes follow) | 0x9B + object | *size*: 0..23 | map | 0xA0..0xB7 + object | *size*: 23..255 | map (1 byte follow) | 0xB8 + object | *size*: 256..65535 | map (2 bytes follow) | 0xB9 + object | *size*: 65536..4294967295 | map (4 bytes follow) | 0xBA + object | *size*: 4294967296..18446744073709551615 | map (8 bytes follow) | 0xBB + binary | *size*: 0..23 | byte string | 0x40..0x57 + binary | *size*: 23..255 | byte string (1 byte follow) | 0x58 + binary | *size*: 256..65535 | byte string (2 bytes follow) | 0x59 + binary | *size*: 65536..4294967295 | byte string (4 bytes follow) | 0x5A + binary | *size*: 4294967296..18446744073709551615 | byte string (8 bytes follow) | 0x5B + + @note The mapping is **complete** in the sense that any JSON value type + can be converted to a CBOR value. + + @note If NaN or Infinity are stored inside a JSON number, they are + serialized properly. This behavior differs from the @ref dump() + function which serializes NaN or Infinity to `null`. + + @note The following CBOR types are not used in the conversion: + - UTF-8 strings terminated by "break" (0x7F) + - arrays terminated by "break" (0x9F) + - maps terminated by "break" (0xBF) + - byte strings terminated by "break" (0x5F) + - date/time (0xC0..0xC1) + - bignum (0xC2..0xC3) + - decimal fraction (0xC4) + - bigfloat (0xC5) + - expected conversions (0xD5..0xD7) + - simple values (0xE0..0xF3, 0xF8) + - undefined (0xF7) + - half-precision floats (0xF9) + - break (0xFF) + + @param[in] j JSON value to serialize + @return CBOR serialization as byte vector + + @complexity Linear in the size of the JSON value @a j. + + @liveexample{The example shows the serialization of a JSON value to a byte + vector in CBOR format.,to_cbor} + + @sa http://cbor.io + @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the + analogous deserialization + @sa @ref to_msgpack(const basic_json&) for the related MessagePack format + @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the + related UBJSON format + + @since version 2.0.9; compact representation of floating-point numbers + since version 3.8.0 + */ + static std::vector to_cbor(const basic_json& j) + { + std::vector result; + to_cbor(j, result); + return result; + } + + static void to_cbor(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_cbor(j); + } + + static void to_cbor(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_cbor(j); + } + + /*! + @brief create a MessagePack serialization of a given JSON value + + Serializes a given JSON value @a j to a byte vector using the MessagePack + serialization format. MessagePack is a binary serialization format which + aims to be more compact than JSON itself, yet more efficient to parse. + + The library uses the following mapping from JSON values types to + MessagePack types according to the MessagePack specification: + + JSON value type | value/range | MessagePack type | first byte + --------------- | --------------------------------- | ---------------- | ---------- + null | `null` | nil | 0xC0 + boolean | `true` | true | 0xC3 + boolean | `false` | false | 0xC2 + number_integer | -9223372036854775808..-2147483649 | int64 | 0xD3 + number_integer | -2147483648..-32769 | int32 | 0xD2 + number_integer | -32768..-129 | int16 | 0xD1 + number_integer | -128..-33 | int8 | 0xD0 + number_integer | -32..-1 | negative fixint | 0xE0..0xFF + number_integer | 0..127 | positive fixint | 0x00..0x7F + number_integer | 128..255 | uint 8 | 0xCC + number_integer | 256..65535 | uint 16 | 0xCD + number_integer | 65536..4294967295 | uint 32 | 0xCE + number_integer | 4294967296..18446744073709551615 | uint 64 | 0xCF + number_unsigned | 0..127 | positive fixint | 0x00..0x7F + number_unsigned | 128..255 | uint 8 | 0xCC + number_unsigned | 256..65535 | uint 16 | 0xCD + number_unsigned | 65536..4294967295 | uint 32 | 0xCE + number_unsigned | 4294967296..18446744073709551615 | uint 64 | 0xCF + number_float | *any value representable by a float* | float 32 | 0xCA + number_float | *any value NOT representable by a float* | float 64 | 0xCB + string | *length*: 0..31 | fixstr | 0xA0..0xBF + string | *length*: 32..255 | str 8 | 0xD9 + string | *length*: 256..65535 | str 16 | 0xDA + string | *length*: 65536..4294967295 | str 32 | 0xDB + array | *size*: 0..15 | fixarray | 0x90..0x9F + array | *size*: 16..65535 | array 16 | 0xDC + array | *size*: 65536..4294967295 | array 32 | 0xDD + object | *size*: 0..15 | fix map | 0x80..0x8F + object | *size*: 16..65535 | map 16 | 0xDE + object | *size*: 65536..4294967295 | map 32 | 0xDF + binary | *size*: 0..255 | bin 8 | 0xC4 + binary | *size*: 256..65535 | bin 16 | 0xC5 + binary | *size*: 65536..4294967295 | bin 32 | 0xC6 + + @note The mapping is **complete** in the sense that any JSON value type + can be converted to a MessagePack value. + + @note The following values can **not** be converted to a MessagePack value: + - strings with more than 4294967295 bytes + - byte strings with more than 4294967295 bytes + - arrays with more than 4294967295 elements + - objects with more than 4294967295 elements + + @note Any MessagePack output created @ref to_msgpack can be successfully + parsed by @ref from_msgpack. + + @note If NaN or Infinity are stored inside a JSON number, they are + serialized properly. This behavior differs from the @ref dump() + function which serializes NaN or Infinity to `null`. + + @param[in] j JSON value to serialize + @return MessagePack serialization as byte vector + + @complexity Linear in the size of the JSON value @a j. + + @liveexample{The example shows the serialization of a JSON value to a byte + vector in MessagePack format.,to_msgpack} + + @sa http://msgpack.org + @sa @ref from_msgpack for the analogous deserialization + @sa @ref to_cbor(const basic_json& for the related CBOR format + @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the + related UBJSON format + + @since version 2.0.9 + */ + static std::vector to_msgpack(const basic_json& j) + { + std::vector result; + to_msgpack(j, result); + return result; + } + + static void to_msgpack(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_msgpack(j); + } + + static void to_msgpack(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_msgpack(j); + } + + /*! + @brief create a UBJSON serialization of a given JSON value + + Serializes a given JSON value @a j to a byte vector using the UBJSON + (Universal Binary JSON) serialization format. UBJSON aims to be more compact + than JSON itself, yet more efficient to parse. + + The library uses the following mapping from JSON values types to + UBJSON types according to the UBJSON specification: + + JSON value type | value/range | UBJSON type | marker + --------------- | --------------------------------- | ----------- | ------ + null | `null` | null | `Z` + boolean | `true` | true | `T` + boolean | `false` | false | `F` + number_integer | -9223372036854775808..-2147483649 | int64 | `L` + number_integer | -2147483648..-32769 | int32 | `l` + number_integer | -32768..-129 | int16 | `I` + number_integer | -128..127 | int8 | `i` + number_integer | 128..255 | uint8 | `U` + number_integer | 256..32767 | int16 | `I` + number_integer | 32768..2147483647 | int32 | `l` + number_integer | 2147483648..9223372036854775807 | int64 | `L` + number_unsigned | 0..127 | int8 | `i` + number_unsigned | 128..255 | uint8 | `U` + number_unsigned | 256..32767 | int16 | `I` + number_unsigned | 32768..2147483647 | int32 | `l` + number_unsigned | 2147483648..9223372036854775807 | int64 | `L` + number_unsigned | 2147483649..18446744073709551615 | high-precision | `H` + number_float | *any value* | float64 | `D` + string | *with shortest length indicator* | string | `S` + array | *see notes on optimized format* | array | `[` + object | *see notes on optimized format* | map | `{` + + @note The mapping is **complete** in the sense that any JSON value type + can be converted to a UBJSON value. + + @note The following values can **not** be converted to a UBJSON value: + - strings with more than 9223372036854775807 bytes (theoretical) + + @note The following markers are not used in the conversion: + - `Z`: no-op values are not created. + - `C`: single-byte strings are serialized with `S` markers. + + @note Any UBJSON output created @ref to_ubjson can be successfully parsed + by @ref from_ubjson. + + @note If NaN or Infinity are stored inside a JSON number, they are + serialized properly. This behavior differs from the @ref dump() + function which serializes NaN or Infinity to `null`. + + @note The optimized formats for containers are supported: Parameter + @a use_size adds size information to the beginning of a container and + removes the closing marker. Parameter @a use_type further checks + whether all elements of a container have the same type and adds the + type marker to the beginning of the container. The @a use_type + parameter must only be used together with @a use_size = true. Note + that @a use_size = true alone may result in larger representations - + the benefit of this parameter is that the receiving side is + immediately informed on the number of elements of the container. + + @note If the JSON data contains the binary type, the value stored is a list + of integers, as suggested by the UBJSON documentation. In particular, + this means that serialization and the deserialization of a JSON + containing binary values into UBJSON and back will result in a + different JSON object. + + @param[in] j JSON value to serialize + @param[in] use_size whether to add size annotations to container types + @param[in] use_type whether to add type annotations to container types + (must be combined with @a use_size = true) + @return UBJSON serialization as byte vector + + @complexity Linear in the size of the JSON value @a j. + + @liveexample{The example shows the serialization of a JSON value to a byte + vector in UBJSON format.,to_ubjson} + + @sa http://ubjson.org + @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the + analogous deserialization + @sa @ref to_cbor(const basic_json& for the related CBOR format + @sa @ref to_msgpack(const basic_json&) for the related MessagePack format + + @since version 3.1.0 + */ + static std::vector to_ubjson(const basic_json& j, + const bool use_size = false, + const bool use_type = false) + { + std::vector result; + to_ubjson(j, result, use_size, use_type); + return result; + } + + static void to_ubjson(const basic_json& j, detail::output_adapter o, + const bool use_size = false, const bool use_type = false) + { + binary_writer(o).write_ubjson(j, use_size, use_type); + } + + static void to_ubjson(const basic_json& j, detail::output_adapter o, + const bool use_size = false, const bool use_type = false) + { + binary_writer(o).write_ubjson(j, use_size, use_type); + } + + + /*! + @brief Serializes the given JSON object `j` to BSON and returns a vector + containing the corresponding BSON-representation. + + BSON (Binary JSON) is a binary format in which zero or more ordered key/value pairs are + stored as a single entity (a so-called document). + + The library uses the following mapping from JSON values types to BSON types: + + JSON value type | value/range | BSON type | marker + --------------- | --------------------------------- | ----------- | ------ + null | `null` | null | 0x0A + boolean | `true`, `false` | boolean | 0x08 + number_integer | -9223372036854775808..-2147483649 | int64 | 0x12 + number_integer | -2147483648..2147483647 | int32 | 0x10 + number_integer | 2147483648..9223372036854775807 | int64 | 0x12 + number_unsigned | 0..2147483647 | int32 | 0x10 + number_unsigned | 2147483648..9223372036854775807 | int64 | 0x12 + number_unsigned | 9223372036854775808..18446744073709551615| -- | -- + number_float | *any value* | double | 0x01 + string | *any value* | string | 0x02 + array | *any value* | document | 0x04 + object | *any value* | document | 0x03 + binary | *any value* | binary | 0x05 + + @warning The mapping is **incomplete**, since only JSON-objects (and things + contained therein) can be serialized to BSON. + Also, integers larger than 9223372036854775807 cannot be serialized to BSON, + and the keys may not contain U+0000, since they are serialized a + zero-terminated c-strings. + + @throw out_of_range.407 if `j.is_number_unsigned() && j.get() > 9223372036854775807` + @throw out_of_range.409 if a key in `j` contains a NULL (U+0000) + @throw type_error.317 if `!j.is_object()` + + @pre The input `j` is required to be an object: `j.is_object() == true`. + + @note Any BSON output created via @ref to_bson can be successfully parsed + by @ref from_bson. + + @param[in] j JSON value to serialize + @return BSON serialization as byte vector + + @complexity Linear in the size of the JSON value @a j. + + @liveexample{The example shows the serialization of a JSON value to a byte + vector in BSON format.,to_bson} + + @sa http://bsonspec.org/spec.html + @sa @ref from_bson(detail::input_adapter&&, const bool strict) for the + analogous deserialization + @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the + related UBJSON format + @sa @ref to_cbor(const basic_json&) for the related CBOR format + @sa @ref to_msgpack(const basic_json&) for the related MessagePack format + */ + static std::vector to_bson(const basic_json& j) + { + std::vector result; + to_bson(j, result); + return result; + } + + /*! + @brief Serializes the given JSON object `j` to BSON and forwards the + corresponding BSON-representation to the given output_adapter `o`. + @param j The JSON object to convert to BSON. + @param o The output adapter that receives the binary BSON representation. + @pre The input `j` shall be an object: `j.is_object() == true` + @sa @ref to_bson(const basic_json&) + */ + static void to_bson(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_bson(j); + } + + /*! + @copydoc to_bson(const basic_json&, detail::output_adapter) + */ + static void to_bson(const basic_json& j, detail::output_adapter o) + { + binary_writer(o).write_bson(j); + } + + + /*! + @brief create a JSON value from an input in CBOR format + + Deserializes a given input @a i to a JSON value using the CBOR (Concise + Binary Object Representation) serialization format. + + The library maps CBOR types to JSON value types as follows: + + CBOR type | JSON value type | first byte + ---------------------- | --------------- | ---------- + Integer | number_unsigned | 0x00..0x17 + Unsigned integer | number_unsigned | 0x18 + Unsigned integer | number_unsigned | 0x19 + Unsigned integer | number_unsigned | 0x1A + Unsigned integer | number_unsigned | 0x1B + Negative integer | number_integer | 0x20..0x37 + Negative integer | number_integer | 0x38 + Negative integer | number_integer | 0x39 + Negative integer | number_integer | 0x3A + Negative integer | number_integer | 0x3B + Byte string | binary | 0x40..0x57 + Byte string | binary | 0x58 + Byte string | binary | 0x59 + Byte string | binary | 0x5A + Byte string | binary | 0x5B + UTF-8 string | string | 0x60..0x77 + UTF-8 string | string | 0x78 + UTF-8 string | string | 0x79 + UTF-8 string | string | 0x7A + UTF-8 string | string | 0x7B + UTF-8 string | string | 0x7F + array | array | 0x80..0x97 + array | array | 0x98 + array | array | 0x99 + array | array | 0x9A + array | array | 0x9B + array | array | 0x9F + map | object | 0xA0..0xB7 + map | object | 0xB8 + map | object | 0xB9 + map | object | 0xBA + map | object | 0xBB + map | object | 0xBF + False | `false` | 0xF4 + True | `true` | 0xF5 + Null | `null` | 0xF6 + Half-Precision Float | number_float | 0xF9 + Single-Precision Float | number_float | 0xFA + Double-Precision Float | number_float | 0xFB + + @warning The mapping is **incomplete** in the sense that not all CBOR + types can be converted to a JSON value. The following CBOR types + are not supported and will yield parse errors (parse_error.112): + - date/time (0xC0..0xC1) + - bignum (0xC2..0xC3) + - decimal fraction (0xC4) + - bigfloat (0xC5) + - expected conversions (0xD5..0xD7) + - simple values (0xE0..0xF3, 0xF8) + - undefined (0xF7) + + @warning CBOR allows map keys of any type, whereas JSON only allows + strings as keys in object values. Therefore, CBOR maps with keys + other than UTF-8 strings are rejected (parse_error.113). + + @note Any CBOR output created @ref to_cbor can be successfully parsed by + @ref from_cbor. + + @param[in] i an input in CBOR format convertible to an input adapter + @param[in] strict whether to expect the input to be consumed until EOF + (true by default) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + @param[in] tag_handler how to treat CBOR tags (optional, error by default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.110 if the given input ends prematurely or the end of + file was not reached when @a strict was set to true + @throw parse_error.112 if unsupported features from CBOR were + used in the given input @a v or if the input is not valid CBOR + @throw parse_error.113 if a string was expected as map key, but not found + + @complexity Linear in the size of the input @a i. + + @liveexample{The example shows the deserialization of a byte vector in CBOR + format to a JSON value.,from_cbor} + + @sa http://cbor.io + @sa @ref to_cbor(const basic_json&) for the analogous serialization + @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for the + related MessagePack format + @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the + related UBJSON format + + @since version 2.0.9; parameter @a start_index since 2.1.1; changed to + consume input adapters, removed start_index parameter, and added + @a strict parameter since 3.0.0; added @a allow_exceptions parameter + since 3.2.0; added @a tag_handler parameter since 3.9.0. + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_cbor(InputType&& i, + const bool strict = true, + const bool allow_exceptions = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::forward(i)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @copydoc from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_cbor(IteratorType first, IteratorType last, + const bool strict = true, + const bool allow_exceptions = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::move(first), std::move(last)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); + return res ? result : basic_json(value_t::discarded); + } + + template + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_cbor(ptr, ptr + len)) + static basic_json from_cbor(const T* ptr, std::size_t len, + const bool strict = true, + const bool allow_exceptions = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + return from_cbor(ptr, ptr + len, strict, allow_exceptions, tag_handler); + } + + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_cbor(ptr, ptr + len)) + static basic_json from_cbor(detail::span_input_adapter&& i, + const bool strict = true, + const bool allow_exceptions = true, + const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = i.get(); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @brief create a JSON value from an input in MessagePack format + + Deserializes a given input @a i to a JSON value using the MessagePack + serialization format. + + The library maps MessagePack types to JSON value types as follows: + + MessagePack type | JSON value type | first byte + ---------------- | --------------- | ---------- + positive fixint | number_unsigned | 0x00..0x7F + fixmap | object | 0x80..0x8F + fixarray | array | 0x90..0x9F + fixstr | string | 0xA0..0xBF + nil | `null` | 0xC0 + false | `false` | 0xC2 + true | `true` | 0xC3 + float 32 | number_float | 0xCA + float 64 | number_float | 0xCB + uint 8 | number_unsigned | 0xCC + uint 16 | number_unsigned | 0xCD + uint 32 | number_unsigned | 0xCE + uint 64 | number_unsigned | 0xCF + int 8 | number_integer | 0xD0 + int 16 | number_integer | 0xD1 + int 32 | number_integer | 0xD2 + int 64 | number_integer | 0xD3 + str 8 | string | 0xD9 + str 16 | string | 0xDA + str 32 | string | 0xDB + array 16 | array | 0xDC + array 32 | array | 0xDD + map 16 | object | 0xDE + map 32 | object | 0xDF + bin 8 | binary | 0xC4 + bin 16 | binary | 0xC5 + bin 32 | binary | 0xC6 + ext 8 | binary | 0xC7 + ext 16 | binary | 0xC8 + ext 32 | binary | 0xC9 + fixext 1 | binary | 0xD4 + fixext 2 | binary | 0xD5 + fixext 4 | binary | 0xD6 + fixext 8 | binary | 0xD7 + fixext 16 | binary | 0xD8 + negative fixint | number_integer | 0xE0-0xFF + + @note Any MessagePack output created @ref to_msgpack can be successfully + parsed by @ref from_msgpack. + + @param[in] i an input in MessagePack format convertible to an input + adapter + @param[in] strict whether to expect the input to be consumed until EOF + (true by default) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.110 if the given input ends prematurely or the end of + file was not reached when @a strict was set to true + @throw parse_error.112 if unsupported features from MessagePack were + used in the given input @a i or if the input is not valid MessagePack + @throw parse_error.113 if a string was expected as map key, but not found + + @complexity Linear in the size of the input @a i. + + @liveexample{The example shows the deserialization of a byte vector in + MessagePack format to a JSON value.,from_msgpack} + + @sa http://msgpack.org + @sa @ref to_msgpack(const basic_json&) for the analogous serialization + @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the + related CBOR format + @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for + the related UBJSON format + @sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for + the related BSON format + + @since version 2.0.9; parameter @a start_index since 2.1.1; changed to + consume input adapters, removed start_index parameter, and added + @a strict parameter since 3.0.0; added @a allow_exceptions parameter + since 3.2.0 + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_msgpack(InputType&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::forward(i)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @copydoc from_msgpack(detail::input_adapter&&, const bool, const bool) + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_msgpack(IteratorType first, IteratorType last, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::move(first), std::move(last)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + + template + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_msgpack(ptr, ptr + len)) + static basic_json from_msgpack(const T* ptr, std::size_t len, + const bool strict = true, + const bool allow_exceptions = true) + { + return from_msgpack(ptr, ptr + len, strict, allow_exceptions); + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_msgpack(ptr, ptr + len)) + static basic_json from_msgpack(detail::span_input_adapter&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = i.get(); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + + /*! + @brief create a JSON value from an input in UBJSON format + + Deserializes a given input @a i to a JSON value using the UBJSON (Universal + Binary JSON) serialization format. + + The library maps UBJSON types to JSON value types as follows: + + UBJSON type | JSON value type | marker + ----------- | --------------------------------------- | ------ + no-op | *no value, next value is read* | `N` + null | `null` | `Z` + false | `false` | `F` + true | `true` | `T` + float32 | number_float | `d` + float64 | number_float | `D` + uint8 | number_unsigned | `U` + int8 | number_integer | `i` + int16 | number_integer | `I` + int32 | number_integer | `l` + int64 | number_integer | `L` + high-precision number | number_integer, number_unsigned, or number_float - depends on number string | 'H' + string | string | `S` + char | string | `C` + array | array (optimized values are supported) | `[` + object | object (optimized values are supported) | `{` + + @note The mapping is **complete** in the sense that any UBJSON value can + be converted to a JSON value. + + @param[in] i an input in UBJSON format convertible to an input adapter + @param[in] strict whether to expect the input to be consumed until EOF + (true by default) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.110 if the given input ends prematurely or the end of + file was not reached when @a strict was set to true + @throw parse_error.112 if a parse error occurs + @throw parse_error.113 if a string could not be parsed successfully + + @complexity Linear in the size of the input @a i. + + @liveexample{The example shows the deserialization of a byte vector in + UBJSON format to a JSON value.,from_ubjson} + + @sa http://ubjson.org + @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the + analogous serialization + @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the + related CBOR format + @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for + the related MessagePack format + @sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for + the related BSON format + + @since version 3.1.0; added @a allow_exceptions parameter since 3.2.0 + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_ubjson(InputType&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::forward(i)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @copydoc from_ubjson(detail::input_adapter&&, const bool, const bool) + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_ubjson(IteratorType first, IteratorType last, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::move(first), std::move(last)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + template + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_ubjson(ptr, ptr + len)) + static basic_json from_ubjson(const T* ptr, std::size_t len, + const bool strict = true, + const bool allow_exceptions = true) + { + return from_ubjson(ptr, ptr + len, strict, allow_exceptions); + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_ubjson(ptr, ptr + len)) + static basic_json from_ubjson(detail::span_input_adapter&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = i.get(); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + + /*! + @brief Create a JSON value from an input in BSON format + + Deserializes a given input @a i to a JSON value using the BSON (Binary JSON) + serialization format. + + The library maps BSON record types to JSON value types as follows: + + BSON type | BSON marker byte | JSON value type + --------------- | ---------------- | --------------------------- + double | 0x01 | number_float + string | 0x02 | string + document | 0x03 | object + array | 0x04 | array + binary | 0x05 | still unsupported + undefined | 0x06 | still unsupported + ObjectId | 0x07 | still unsupported + boolean | 0x08 | boolean + UTC Date-Time | 0x09 | still unsupported + null | 0x0A | null + Regular Expr. | 0x0B | still unsupported + DB Pointer | 0x0C | still unsupported + JavaScript Code | 0x0D | still unsupported + Symbol | 0x0E | still unsupported + JavaScript Code | 0x0F | still unsupported + int32 | 0x10 | number_integer + Timestamp | 0x11 | still unsupported + 128-bit decimal float | 0x13 | still unsupported + Max Key | 0x7F | still unsupported + Min Key | 0xFF | still unsupported + + @warning The mapping is **incomplete**. The unsupported mappings + are indicated in the table above. + + @param[in] i an input in BSON format convertible to an input adapter + @param[in] strict whether to expect the input to be consumed until EOF + (true by default) + @param[in] allow_exceptions whether to throw exceptions in case of a + parse error (optional, true by default) + + @return deserialized JSON value; in case of a parse error and + @a allow_exceptions set to `false`, the return value will be + value_t::discarded. + + @throw parse_error.114 if an unsupported BSON record type is encountered + + @complexity Linear in the size of the input @a i. + + @liveexample{The example shows the deserialization of a byte vector in + BSON format to a JSON value.,from_bson} + + @sa http://bsonspec.org/spec.html + @sa @ref to_bson(const basic_json&) for the analogous serialization + @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the + related CBOR format + @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for + the related MessagePack format + @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the + related UBJSON format + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_bson(InputType&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::forward(i)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + /*! + @copydoc from_bson(detail::input_adapter&&, const bool, const bool) + */ + template + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json from_bson(IteratorType first, IteratorType last, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = detail::input_adapter(std::move(first), std::move(last)); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + + template + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) + static basic_json from_bson(const T* ptr, std::size_t len, + const bool strict = true, + const bool allow_exceptions = true) + { + return from_bson(ptr, ptr + len, strict, allow_exceptions); + } + + JSON_HEDLEY_WARN_UNUSED_RESULT + JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) + static basic_json from_bson(detail::span_input_adapter&& i, + const bool strict = true, + const bool allow_exceptions = true) + { + basic_json result; + detail::json_sax_dom_parser sdp(result, allow_exceptions); + auto ia = i.get(); + const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); + return res ? result : basic_json(value_t::discarded); + } + /// @} + + ////////////////////////// + // JSON Pointer support // + ////////////////////////// + + /// @name JSON Pointer functions + /// @{ + + /*! + @brief access specified element via JSON Pointer + + Uses a JSON pointer to retrieve a reference to the respective JSON value. + No bound checking is performed. Similar to @ref operator[](const typename + object_t::key_type&), `null` values are created in arrays and objects if + necessary. + + In particular: + - If the JSON pointer points to an object key that does not exist, it + is created an filled with a `null` value before a reference to it + is returned. + - If the JSON pointer points to an array index that does not exist, it + is created an filled with a `null` value before a reference to it + is returned. All indices between the current maximum and the given + index are also filled with `null`. + - The special value `-` is treated as a synonym for the index past the + end. + + @param[in] ptr a JSON pointer + + @return reference to the element pointed to by @a ptr + + @complexity Constant. + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.404 if the JSON pointer can not be resolved + + @liveexample{The behavior is shown in the example.,operatorjson_pointer} + + @since version 2.0.0 + */ + reference operator[](const json_pointer& ptr) + { + return ptr.get_unchecked(this); + } + + /*! + @brief access specified element via JSON Pointer + + Uses a JSON pointer to retrieve a reference to the respective JSON value. + No bound checking is performed. The function does not change the JSON + value; no `null` values are created. In particular, the special value + `-` yields an exception. + + @param[in] ptr JSON pointer to the desired element + + @return const reference to the element pointed to by @a ptr + + @complexity Constant. + + @throw parse_error.106 if an array index begins with '0' + @throw parse_error.109 if an array index was not a number + @throw out_of_range.402 if the array index '-' is used + @throw out_of_range.404 if the JSON pointer can not be resolved + + @liveexample{The behavior is shown in the example.,operatorjson_pointer_const} + + @since version 2.0.0 + */ + const_reference operator[](const json_pointer& ptr) const + { + return ptr.get_unchecked(this); + } + + /*! + @brief access specified element via JSON Pointer + + Returns a reference to the element at with specified JSON pointer @a ptr, + with bounds checking. + + @param[in] ptr JSON pointer to the desired element + + @return reference to the element pointed to by @a ptr + + @throw parse_error.106 if an array index in the passed JSON pointer @a ptr + begins with '0'. See example below. + + @throw parse_error.109 if an array index in the passed JSON pointer @a ptr + is not a number. See example below. + + @throw out_of_range.401 if an array index in the passed JSON pointer @a ptr + is out of range. See example below. + + @throw out_of_range.402 if the array index '-' is used in the passed JSON + pointer @a ptr. As `at` provides checked access (and no elements are + implicitly inserted), the index '-' is always invalid. See example below. + + @throw out_of_range.403 if the JSON pointer describes a key of an object + which cannot be found. See example below. + + @throw out_of_range.404 if the JSON pointer @a ptr can not be resolved. + See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 2.0.0 + + @liveexample{The behavior is shown in the example.,at_json_pointer} + */ + reference at(const json_pointer& ptr) + { + return ptr.get_checked(this); + } + + /*! + @brief access specified element via JSON Pointer + + Returns a const reference to the element at with specified JSON pointer @a + ptr, with bounds checking. + + @param[in] ptr JSON pointer to the desired element + + @return reference to the element pointed to by @a ptr + + @throw parse_error.106 if an array index in the passed JSON pointer @a ptr + begins with '0'. See example below. + + @throw parse_error.109 if an array index in the passed JSON pointer @a ptr + is not a number. See example below. + + @throw out_of_range.401 if an array index in the passed JSON pointer @a ptr + is out of range. See example below. + + @throw out_of_range.402 if the array index '-' is used in the passed JSON + pointer @a ptr. As `at` provides checked access (and no elements are + implicitly inserted), the index '-' is always invalid. See example below. + + @throw out_of_range.403 if the JSON pointer describes a key of an object + which cannot be found. See example below. + + @throw out_of_range.404 if the JSON pointer @a ptr can not be resolved. + See example below. + + @exceptionsafety Strong guarantee: if an exception is thrown, there are no + changes in the JSON value. + + @complexity Constant. + + @since version 2.0.0 + + @liveexample{The behavior is shown in the example.,at_json_pointer_const} + */ + const_reference at(const json_pointer& ptr) const + { + return ptr.get_checked(this); + } + + /*! + @brief return flattened JSON value + + The function creates a JSON object whose keys are JSON pointers (see [RFC + 6901](https://tools.ietf.org/html/rfc6901)) and whose values are all + primitive. The original JSON value can be restored using the @ref + unflatten() function. + + @return an object that maps JSON pointers to primitive values + + @note Empty objects and arrays are flattened to `null` and will not be + reconstructed correctly by the @ref unflatten() function. + + @complexity Linear in the size the JSON value. + + @liveexample{The following code shows how a JSON object is flattened to an + object whose keys consist of JSON pointers.,flatten} + + @sa @ref unflatten() for the reverse function + + @since version 2.0.0 + */ + basic_json flatten() const + { + basic_json result(value_t::object); + json_pointer::flatten("", *this, result); + return result; + } + + /*! + @brief unflatten a previously flattened JSON value + + The function restores the arbitrary nesting of a JSON value that has been + flattened before using the @ref flatten() function. The JSON value must + meet certain constraints: + 1. The value must be an object. + 2. The keys must be JSON pointers (see + [RFC 6901](https://tools.ietf.org/html/rfc6901)) + 3. The mapped values must be primitive JSON types. + + @return the original JSON from a flattened version + + @note Empty objects and arrays are flattened by @ref flatten() to `null` + values and can not unflattened to their original type. Apart from + this example, for a JSON value `j`, the following is always true: + `j == j.flatten().unflatten()`. + + @complexity Linear in the size the JSON value. + + @throw type_error.314 if value is not an object + @throw type_error.315 if object values are not primitive + + @liveexample{The following code shows how a flattened JSON object is + unflattened into the original nested JSON object.,unflatten} + + @sa @ref flatten() for the reverse function + + @since version 2.0.0 + */ + basic_json unflatten() const + { + return json_pointer::unflatten(*this); + } + + /// @} + + ////////////////////////// + // JSON Patch functions // + ////////////////////////// + + /// @name JSON Patch functions + /// @{ + + /*! + @brief applies a JSON patch + + [JSON Patch](http://jsonpatch.com) defines a JSON document structure for + expressing a sequence of operations to apply to a JSON) document. With + this function, a JSON Patch is applied to the current JSON value by + executing all operations from the patch. + + @param[in] json_patch JSON patch document + @return patched document + + @note The application of a patch is atomic: Either all operations succeed + and the patched document is returned or an exception is thrown. In + any case, the original value is not changed: the patch is applied + to a copy of the value. + + @throw parse_error.104 if the JSON patch does not consist of an array of + objects + + @throw parse_error.105 if the JSON patch is malformed (e.g., mandatory + attributes are missing); example: `"operation add must have member path"` + + @throw out_of_range.401 if an array index is out of range. + + @throw out_of_range.403 if a JSON pointer inside the patch could not be + resolved successfully in the current JSON value; example: `"key baz not + found"` + + @throw out_of_range.405 if JSON pointer has no parent ("add", "remove", + "move") + + @throw other_error.501 if "test" operation was unsuccessful + + @complexity Linear in the size of the JSON value and the length of the + JSON patch. As usually only a fraction of the JSON value is affected by + the patch, the complexity can usually be neglected. + + @liveexample{The following code shows how a JSON patch is applied to a + value.,patch} + + @sa @ref diff -- create a JSON patch by comparing two JSON values + + @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902) + @sa [RFC 6901 (JSON Pointer)](https://tools.ietf.org/html/rfc6901) + + @since version 2.0.0 + */ + basic_json patch(const basic_json& json_patch) const + { + // make a working copy to apply the patch to + basic_json result = *this; + + // the valid JSON Patch operations + enum class patch_operations {add, remove, replace, move, copy, test, invalid}; + + const auto get_op = [](const std::string & op) + { + if (op == "add") + { + return patch_operations::add; + } + if (op == "remove") + { + return patch_operations::remove; + } + if (op == "replace") + { + return patch_operations::replace; + } + if (op == "move") + { + return patch_operations::move; + } + if (op == "copy") + { + return patch_operations::copy; + } + if (op == "test") + { + return patch_operations::test; + } + + return patch_operations::invalid; + }; + + // wrapper for "add" operation; add value at ptr + const auto operation_add = [&result](json_pointer & ptr, basic_json val) + { + // adding to the root of the target document means replacing it + if (ptr.empty()) + { + result = val; + return; + } + + // make sure the top element of the pointer exists + json_pointer top_pointer = ptr.top(); + if (top_pointer != ptr) + { + result.at(top_pointer); + } + + // get reference to parent of JSON pointer ptr + const auto last_path = ptr.back(); + ptr.pop_back(); + basic_json& parent = result[ptr]; + + switch (parent.m_type) + { + case value_t::null: + case value_t::object: + { + // use operator[] to add value + parent[last_path] = val; + break; + } + + case value_t::array: + { + if (last_path == "-") + { + // special case: append to back + parent.push_back(val); + } + else + { + const auto idx = json_pointer::array_index(last_path); + if (JSON_HEDLEY_UNLIKELY(idx > parent.size())) + { + // avoid undefined behavior + JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); + } + + // default case: insert add offset + parent.insert(parent.begin() + static_cast(idx), val); + } + break; + } + + // if there exists a parent it cannot be primitive + default: // LCOV_EXCL_LINE + JSON_ASSERT(false); // LCOV_EXCL_LINE + } + }; + + // wrapper for "remove" operation; remove value at ptr + const auto operation_remove = [&result](json_pointer & ptr) + { + // get reference to parent of JSON pointer ptr + const auto last_path = ptr.back(); + ptr.pop_back(); + basic_json& parent = result.at(ptr); + + // remove child + if (parent.is_object()) + { + // perform range check + auto it = parent.find(last_path); + if (JSON_HEDLEY_LIKELY(it != parent.end())) + { + parent.erase(it); + } + else + { + JSON_THROW(out_of_range::create(403, "key '" + last_path + "' not found")); + } + } + else if (parent.is_array()) + { + // note erase performs range check + parent.erase(json_pointer::array_index(last_path)); + } + }; + + // type check: top level value must be an array + if (JSON_HEDLEY_UNLIKELY(!json_patch.is_array())) + { + JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects")); + } + + // iterate and apply the operations + for (const auto& val : json_patch) + { + // wrapper to get a value for an operation + const auto get_value = [&val](const std::string & op, + const std::string & member, + bool string_type) -> basic_json & + { + // find value + auto it = val.m_value.object->find(member); + + // context-sensitive error message + const auto error_msg = (op == "op") ? "operation" : "operation '" + op + "'"; + + // check if desired value is present + if (JSON_HEDLEY_UNLIKELY(it == val.m_value.object->end())) + { + JSON_THROW(parse_error::create(105, 0, error_msg + " must have member '" + member + "'")); + } + + // check if result is of type string + if (JSON_HEDLEY_UNLIKELY(string_type && !it->second.is_string())) + { + JSON_THROW(parse_error::create(105, 0, error_msg + " must have string member '" + member + "'")); + } + + // no error: return value + return it->second; + }; + + // type check: every element of the array must be an object + if (JSON_HEDLEY_UNLIKELY(!val.is_object())) + { + JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects")); + } + + // collect mandatory members + const auto op = get_value("op", "op", true).template get(); + const auto path = get_value(op, "path", true).template get(); + json_pointer ptr(path); + + switch (get_op(op)) + { + case patch_operations::add: + { + operation_add(ptr, get_value("add", "value", false)); + break; + } + + case patch_operations::remove: + { + operation_remove(ptr); + break; + } + + case patch_operations::replace: + { + // the "path" location must exist - use at() + result.at(ptr) = get_value("replace", "value", false); + break; + } + + case patch_operations::move: + { + const auto from_path = get_value("move", "from", true).template get(); + json_pointer from_ptr(from_path); + + // the "from" location must exist - use at() + basic_json v = result.at(from_ptr); + + // The move operation is functionally identical to a + // "remove" operation on the "from" location, followed + // immediately by an "add" operation at the target + // location with the value that was just removed. + operation_remove(from_ptr); + operation_add(ptr, v); + break; + } + + case patch_operations::copy: + { + const auto from_path = get_value("copy", "from", true).template get(); + const json_pointer from_ptr(from_path); + + // the "from" location must exist - use at() + basic_json v = result.at(from_ptr); + + // The copy is functionally identical to an "add" + // operation at the target location using the value + // specified in the "from" member. + operation_add(ptr, v); + break; + } + + case patch_operations::test: + { + bool success = false; + JSON_TRY + { + // check if "value" matches the one at "path" + // the "path" location must exist - use at() + success = (result.at(ptr) == get_value("test", "value", false)); + } + JSON_INTERNAL_CATCH (out_of_range&) + { + // ignore out of range errors: success remains false + } + + // throw an exception if test fails + if (JSON_HEDLEY_UNLIKELY(!success)) + { + JSON_THROW(other_error::create(501, "unsuccessful: " + val.dump())); + } + + break; + } + + default: + { + // op must be "add", "remove", "replace", "move", "copy", or + // "test" + JSON_THROW(parse_error::create(105, 0, "operation value '" + op + "' is invalid")); + } + } + } + + return result; + } + + /*! + @brief creates a diff as a JSON patch + + Creates a [JSON Patch](http://jsonpatch.com) so that value @a source can + be changed into the value @a target by calling @ref patch function. + + @invariant For two JSON values @a source and @a target, the following code + yields always `true`: + @code {.cpp} + source.patch(diff(source, target)) == target; + @endcode + + @note Currently, only `remove`, `add`, and `replace` operations are + generated. + + @param[in] source JSON value to compare from + @param[in] target JSON value to compare against + @param[in] path helper value to create JSON pointers + + @return a JSON patch to convert the @a source to @a target + + @complexity Linear in the lengths of @a source and @a target. + + @liveexample{The following code shows how a JSON patch is created as a + diff for two JSON values.,diff} + + @sa @ref patch -- apply a JSON patch + @sa @ref merge_patch -- apply a JSON Merge Patch + + @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902) + + @since version 2.0.0 + */ + JSON_HEDLEY_WARN_UNUSED_RESULT + static basic_json diff(const basic_json& source, const basic_json& target, + const std::string& path = "") + { + // the patch + basic_json result(value_t::array); + + // if the values are the same, return empty patch + if (source == target) + { + return result; + } + + if (source.type() != target.type()) + { + // different types: replace value + result.push_back( + { + {"op", "replace"}, {"path", path}, {"value", target} + }); + return result; + } + + switch (source.type()) + { + case value_t::array: + { + // first pass: traverse common elements + std::size_t i = 0; + while (i < source.size() && i < target.size()) + { + // recursive call to compare array values at index i + auto temp_diff = diff(source[i], target[i], path + "/" + std::to_string(i)); + result.insert(result.end(), temp_diff.begin(), temp_diff.end()); + ++i; + } + + // i now reached the end of at least one array + // in a second pass, traverse the remaining elements + + // remove my remaining elements + const auto end_index = static_cast(result.size()); + while (i < source.size()) + { + // add operations in reverse order to avoid invalid + // indices + result.insert(result.begin() + end_index, object( + { + {"op", "remove"}, + {"path", path + "/" + std::to_string(i)} + })); + ++i; + } + + // add other remaining elements + while (i < target.size()) + { + result.push_back( + { + {"op", "add"}, + {"path", path + "/-"}, + {"value", target[i]} + }); + ++i; + } + + break; + } + + case value_t::object: + { + // first pass: traverse this object's elements + for (auto it = source.cbegin(); it != source.cend(); ++it) + { + // escape the key name to be used in a JSON patch + const auto key = json_pointer::escape(it.key()); + + if (target.find(it.key()) != target.end()) + { + // recursive call to compare object values at key it + auto temp_diff = diff(it.value(), target[it.key()], path + "/" + key); + result.insert(result.end(), temp_diff.begin(), temp_diff.end()); + } + else + { + // found a key that is not in o -> remove it + result.push_back(object( + { + {"op", "remove"}, {"path", path + "/" + key} + })); + } + } + + // second pass: traverse other object's elements + for (auto it = target.cbegin(); it != target.cend(); ++it) + { + if (source.find(it.key()) == source.end()) + { + // found a key that is not in this -> add it + const auto key = json_pointer::escape(it.key()); + result.push_back( + { + {"op", "add"}, {"path", path + "/" + key}, + {"value", it.value()} + }); + } + } + + break; + } + + default: + { + // both primitive type: replace value + result.push_back( + { + {"op", "replace"}, {"path", path}, {"value", target} + }); + break; + } + } + + return result; + } + + /// @} + + //////////////////////////////// + // JSON Merge Patch functions // + //////////////////////////////// + + /// @name JSON Merge Patch functions + /// @{ + + /*! + @brief applies a JSON Merge Patch + + The merge patch format is primarily intended for use with the HTTP PATCH + method as a means of describing a set of modifications to a target + resource's content. This function applies a merge patch to the current + JSON value. + + The function implements the following algorithm from Section 2 of + [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396): + + ``` + define MergePatch(Target, Patch): + if Patch is an Object: + if Target is not an Object: + Target = {} // Ignore the contents and set it to an empty Object + for each Name/Value pair in Patch: + if Value is null: + if Name exists in Target: + remove the Name/Value pair from Target + else: + Target[Name] = MergePatch(Target[Name], Value) + return Target + else: + return Patch + ``` + + Thereby, `Target` is the current object; that is, the patch is applied to + the current value. + + @param[in] apply_patch the patch to apply + + @complexity Linear in the lengths of @a patch. + + @liveexample{The following code shows how a JSON Merge Patch is applied to + a JSON document.,merge_patch} + + @sa @ref patch -- apply a JSON patch + @sa [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396) + + @since version 3.0.0 + */ + void merge_patch(const basic_json& apply_patch) + { + if (apply_patch.is_object()) + { + if (!is_object()) + { + *this = object(); + } + for (auto it = apply_patch.begin(); it != apply_patch.end(); ++it) + { + if (it.value().is_null()) + { + erase(it.key()); + } + else + { + operator[](it.key()).merge_patch(it.value()); + } + } + } + else + { + *this = apply_patch; + } + } + + /// @} +}; + +/*! +@brief user-defined to_string function for JSON values + +This function implements a user-defined to_string for JSON objects. + +@param[in] j a JSON object +@return a std::string object +*/ + +NLOHMANN_BASIC_JSON_TPL_DECLARATION +std::string to_string(const NLOHMANN_BASIC_JSON_TPL& j) +{ + return j.dump(); +} +} // namespace nlohmann + +/////////////////////// +// nonmember support // +/////////////////////// + +// specialization of std::swap, and std::hash +namespace std +{ + +/// hash value for JSON objects +template<> +struct hash +{ + /*! + @brief return a hash value for a JSON object + + @since version 1.0.0 + */ + std::size_t operator()(const nlohmann::json& j) const + { + return nlohmann::detail::hash(j); + } +}; + +/// specialization for std::less +/// @note: do not remove the space after '<', +/// see https://github.com/nlohmann/json/pull/679 +template<> +struct less<::nlohmann::detail::value_t> +{ + /*! + @brief compare two value_t enum values + @since version 3.0.0 + */ + bool operator()(nlohmann::detail::value_t lhs, + nlohmann::detail::value_t rhs) const noexcept + { + return nlohmann::detail::operator<(lhs, rhs); + } +}; + +// C++20 prohibit function specialization in the std namespace. +#ifndef JSON_HAS_CPP_20 + +/*! +@brief exchanges the values of two JSON objects + +@since version 1.0.0 +*/ +template<> +inline void swap(nlohmann::json& j1, nlohmann::json& j2) noexcept( + is_nothrow_move_constructible::value&& + is_nothrow_move_assignable::value + ) +{ + j1.swap(j2); +} + +#endif + +} // namespace std + +/*! +@brief user-defined string literal for JSON values + +This operator implements a user-defined string literal for JSON objects. It +can be used by adding `"_json"` to a string literal and returns a JSON object +if no parse error occurred. + +@param[in] s a string representation of a JSON object +@param[in] n the length of string @a s +@return a JSON object + +@since version 1.0.0 +*/ +JSON_HEDLEY_NON_NULL(1) +inline nlohmann::json operator "" _json(const char* s, std::size_t n) +{ + return nlohmann::json::parse(s, s + n); +} + +/*! +@brief user-defined string literal for JSON pointer + +This operator implements a user-defined string literal for JSON Pointers. It +can be used by adding `"_json_pointer"` to a string literal and returns a JSON pointer +object if no parse error occurred. + +@param[in] s a string representation of a JSON Pointer +@param[in] n the length of string @a s +@return a JSON pointer object + +@since version 2.0.0 +*/ +JSON_HEDLEY_NON_NULL(1) +inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t n) +{ + return nlohmann::json::json_pointer(std::string(s, n)); +} + +// #include + + +// restore GCC/clang diagnostic settings +#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__) + #pragma GCC diagnostic pop +#endif +#if defined(__clang__) + #pragma GCC diagnostic pop +#endif + +// clean up +#undef JSON_ASSERT +#undef JSON_INTERNAL_CATCH +#undef JSON_CATCH +#undef JSON_THROW +#undef JSON_TRY +#undef JSON_HAS_CPP_14 +#undef JSON_HAS_CPP_17 +#undef NLOHMANN_BASIC_JSON_TPL_DECLARATION +#undef NLOHMANN_BASIC_JSON_TPL +#undef JSON_EXPLICIT + +// #include +#undef JSON_HEDLEY_ALWAYS_INLINE +#undef JSON_HEDLEY_ARM_VERSION +#undef JSON_HEDLEY_ARM_VERSION_CHECK +#undef JSON_HEDLEY_ARRAY_PARAM +#undef JSON_HEDLEY_ASSUME +#undef JSON_HEDLEY_BEGIN_C_DECLS +#undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE +#undef JSON_HEDLEY_CLANG_HAS_BUILTIN +#undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE +#undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE +#undef JSON_HEDLEY_CLANG_HAS_EXTENSION +#undef JSON_HEDLEY_CLANG_HAS_FEATURE +#undef JSON_HEDLEY_CLANG_HAS_WARNING +#undef JSON_HEDLEY_COMPCERT_VERSION +#undef JSON_HEDLEY_COMPCERT_VERSION_CHECK +#undef JSON_HEDLEY_CONCAT +#undef JSON_HEDLEY_CONCAT3 +#undef JSON_HEDLEY_CONCAT3_EX +#undef JSON_HEDLEY_CONCAT_EX +#undef JSON_HEDLEY_CONST +#undef JSON_HEDLEY_CONSTEXPR +#undef JSON_HEDLEY_CONST_CAST +#undef JSON_HEDLEY_CPP_CAST +#undef JSON_HEDLEY_CRAY_VERSION +#undef JSON_HEDLEY_CRAY_VERSION_CHECK +#undef JSON_HEDLEY_C_DECL +#undef JSON_HEDLEY_DEPRECATED +#undef JSON_HEDLEY_DEPRECATED_FOR +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#undef JSON_HEDLEY_DIAGNOSTIC_POP +#undef JSON_HEDLEY_DIAGNOSTIC_PUSH +#undef JSON_HEDLEY_DMC_VERSION +#undef JSON_HEDLEY_DMC_VERSION_CHECK +#undef JSON_HEDLEY_EMPTY_BASES +#undef JSON_HEDLEY_EMSCRIPTEN_VERSION +#undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK +#undef JSON_HEDLEY_END_C_DECLS +#undef JSON_HEDLEY_FLAGS +#undef JSON_HEDLEY_FLAGS_CAST +#undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE +#undef JSON_HEDLEY_GCC_HAS_BUILTIN +#undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE +#undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE +#undef JSON_HEDLEY_GCC_HAS_EXTENSION +#undef JSON_HEDLEY_GCC_HAS_FEATURE +#undef JSON_HEDLEY_GCC_HAS_WARNING +#undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK +#undef JSON_HEDLEY_GCC_VERSION +#undef JSON_HEDLEY_GCC_VERSION_CHECK +#undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE +#undef JSON_HEDLEY_GNUC_HAS_BUILTIN +#undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE +#undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE +#undef JSON_HEDLEY_GNUC_HAS_EXTENSION +#undef JSON_HEDLEY_GNUC_HAS_FEATURE +#undef JSON_HEDLEY_GNUC_HAS_WARNING +#undef JSON_HEDLEY_GNUC_VERSION +#undef JSON_HEDLEY_GNUC_VERSION_CHECK +#undef JSON_HEDLEY_HAS_ATTRIBUTE +#undef JSON_HEDLEY_HAS_BUILTIN +#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE +#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS +#undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE +#undef JSON_HEDLEY_HAS_EXTENSION +#undef JSON_HEDLEY_HAS_FEATURE +#undef JSON_HEDLEY_HAS_WARNING +#undef JSON_HEDLEY_IAR_VERSION +#undef JSON_HEDLEY_IAR_VERSION_CHECK +#undef JSON_HEDLEY_IBM_VERSION +#undef JSON_HEDLEY_IBM_VERSION_CHECK +#undef JSON_HEDLEY_IMPORT +#undef JSON_HEDLEY_INLINE +#undef JSON_HEDLEY_INTEL_VERSION +#undef JSON_HEDLEY_INTEL_VERSION_CHECK +#undef JSON_HEDLEY_IS_CONSTANT +#undef JSON_HEDLEY_IS_CONSTEXPR_ +#undef JSON_HEDLEY_LIKELY +#undef JSON_HEDLEY_MALLOC +#undef JSON_HEDLEY_MESSAGE +#undef JSON_HEDLEY_MSVC_VERSION +#undef JSON_HEDLEY_MSVC_VERSION_CHECK +#undef JSON_HEDLEY_NEVER_INLINE +#undef JSON_HEDLEY_NON_NULL +#undef JSON_HEDLEY_NO_ESCAPE +#undef JSON_HEDLEY_NO_RETURN +#undef JSON_HEDLEY_NO_THROW +#undef JSON_HEDLEY_NULL +#undef JSON_HEDLEY_PELLES_VERSION +#undef JSON_HEDLEY_PELLES_VERSION_CHECK +#undef JSON_HEDLEY_PGI_VERSION +#undef JSON_HEDLEY_PGI_VERSION_CHECK +#undef JSON_HEDLEY_PREDICT +#undef JSON_HEDLEY_PRINTF_FORMAT +#undef JSON_HEDLEY_PRIVATE +#undef JSON_HEDLEY_PUBLIC +#undef JSON_HEDLEY_PURE +#undef JSON_HEDLEY_REINTERPRET_CAST +#undef JSON_HEDLEY_REQUIRE +#undef JSON_HEDLEY_REQUIRE_CONSTEXPR +#undef JSON_HEDLEY_REQUIRE_MSG +#undef JSON_HEDLEY_RESTRICT +#undef JSON_HEDLEY_RETURNS_NON_NULL +#undef JSON_HEDLEY_SENTINEL +#undef JSON_HEDLEY_STATIC_ASSERT +#undef JSON_HEDLEY_STATIC_CAST +#undef JSON_HEDLEY_STRINGIFY +#undef JSON_HEDLEY_STRINGIFY_EX +#undef JSON_HEDLEY_SUNPRO_VERSION +#undef JSON_HEDLEY_SUNPRO_VERSION_CHECK +#undef JSON_HEDLEY_TINYC_VERSION +#undef JSON_HEDLEY_TINYC_VERSION_CHECK +#undef JSON_HEDLEY_TI_ARMCL_VERSION +#undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK +#undef JSON_HEDLEY_TI_CL2000_VERSION +#undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK +#undef JSON_HEDLEY_TI_CL430_VERSION +#undef JSON_HEDLEY_TI_CL430_VERSION_CHECK +#undef JSON_HEDLEY_TI_CL6X_VERSION +#undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK +#undef JSON_HEDLEY_TI_CL7X_VERSION +#undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK +#undef JSON_HEDLEY_TI_CLPRU_VERSION +#undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK +#undef JSON_HEDLEY_TI_VERSION +#undef JSON_HEDLEY_TI_VERSION_CHECK +#undef JSON_HEDLEY_UNAVAILABLE +#undef JSON_HEDLEY_UNLIKELY +#undef JSON_HEDLEY_UNPREDICTABLE +#undef JSON_HEDLEY_UNREACHABLE +#undef JSON_HEDLEY_UNREACHABLE_RETURN +#undef JSON_HEDLEY_VERSION +#undef JSON_HEDLEY_VERSION_DECODE_MAJOR +#undef JSON_HEDLEY_VERSION_DECODE_MINOR +#undef JSON_HEDLEY_VERSION_DECODE_REVISION +#undef JSON_HEDLEY_VERSION_ENCODE +#undef JSON_HEDLEY_WARNING +#undef JSON_HEDLEY_WARN_UNUSED_RESULT +#undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG +#undef JSON_HEDLEY_FALL_THROUGH + + + +#endif // INCLUDE_NLOHMANN_JSON_HPP_ diff --git a/external/physfs b/external/physfs new file mode 160000 index 0000000..6c0ad19 --- /dev/null +++ b/external/physfs @@ -0,0 +1 @@ +Subproject commit 6c0ad192e7fff5173ef86a78bb5ed3d7e9fa507c diff --git a/external/soloud/CMakeLists.txt b/external/soloud/CMakeLists.txt new file mode 100644 index 0000000..7a958e6 --- /dev/null +++ b/external/soloud/CMakeLists.txt @@ -0,0 +1,201 @@ +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) + +project(soloud CXX) + +set(CPP_FILES + #core + soloud/src/core/soloud.cpp + soloud/src/core/soloud_audiosource.cpp + soloud/src/core/soloud_bus.cpp + soloud/src/core/soloud_core_3d.cpp + soloud/src/core/soloud_core_basicops.cpp + soloud/src/core/soloud_core_faderops.cpp + soloud/src/core/soloud_core_filterops.cpp + soloud/src/core/soloud_core_getters.cpp + soloud/src/core/soloud_core_setters.cpp + soloud/src/core/soloud_core_voicegroup.cpp + soloud/src/core/soloud_core_voiceops.cpp + soloud/src/core/soloud_fader.cpp + soloud/src/core/soloud_fft.cpp + soloud/src/core/soloud_fft_lut.cpp + soloud/src/core/soloud_file.cpp + soloud/src/core/soloud_filter.cpp + soloud/src/core/soloud_misc.cpp + soloud/src/core/soloud_queue.cpp + soloud/src/core/soloud_thread.cpp + + + #backends + soloud/src/backend/alsa/soloud_alsa.cpp + soloud/src/backend/coreaudio/soloud_coreaudio.cpp + soloud/src/backend/null/soloud_null.cpp + #soloud/src/backend/openal/soloud_openal.cpp + #soloud/src/backend/openal/soloud_openal_dll.c + soloud/src/backend/opensles/soloud_opensles.cpp + soloud/src/backend/oss/soloud_oss.cpp + soloud/src/backend/portaudio/soloud_portaudio.cpp + soloud/src/backend/portaudio/soloud_portaudio_dll.c + #soloud/src/backend/sdl/soloud_sdl1.cpp + #soloud/src/backend/sdl/soloud_sdl1_dll.c + #soloud/src/backend/sdl/soloud_sdl2.cpp + #soloud/src/backend/sdl/soloud_sdl2_dll.c + #soloud/src/backend/sdl_static/soloud_sdl_static.cpp + soloud/src/backend/sdl2_static/soloud_sdl2_static.cpp + #soloud/src/backend/vita_homebrew/soloud_vita_homebrew.cpp + soloud/src/backend/wasapi/soloud_wasapi.cpp + soloud/src/backend/winmm/soloud_winmm.cpp + soloud/src/backend/xaudio2/soloud_xaudio2.cpp + + #filter + soloud/src/filter/soloud_bassboostfilter.cpp + soloud/src/filter/soloud_biquadresonantfilter.cpp + soloud/src/filter/soloud_dcremovalfilter.cpp + soloud/src/filter/soloud_echofilter.cpp + soloud/src/filter/soloud_fftfilter.cpp + soloud/src/filter/soloud_freeverbfilter.cpp + soloud/src/filter/soloud_flangerfilter.cpp + soloud/src/filter/soloud_lofifilter.cpp + soloud/src/filter/soloud_robotizefilter.cpp + soloud/src/filter/soloud_waveshaperfilter.cpp + + + #sources + #monotone + soloud/src/audiosource/monotone/soloud_monotone.cpp + + #noise + soloud/src/audiosource/noise/soloud_noise.cpp + + #openmpt + soloud/src/audiosource/openmpt/soloud_openmpt.cpp + soloud/src/audiosource/openmpt/soloud_openmpt_dll.c + + #sfxr + soloud/src/audiosource/sfxr/soloud_sfxr.cpp + + #speech + soloud/src/audiosource/speech/darray.cpp + soloud/src/audiosource/speech/darray.h + #soloud/src/audiosource/speech/Elements.def + soloud/src/audiosource/speech/klatt.cpp + soloud/src/audiosource/speech/klatt.h + soloud/src/audiosource/speech/resonator.cpp + soloud/src/audiosource/speech/resonator.h + soloud/src/audiosource/speech/soloud_speech.cpp + soloud/src/audiosource/speech/tts.cpp + soloud/src/audiosource/speech/tts.h + + #tedsid + soloud/src/audiosource/tedsid/sid.cpp + soloud/src/audiosource/tedsid/sid.h + soloud/src/audiosource/tedsid/soloud_tedsid.cpp + soloud/src/audiosource/tedsid/ted.cpp + soloud/src/audiosource/tedsid/ted.h + + #vic + soloud/src/audiosource/vic/soloud_vic.cpp + + #vizsn + soloud/src/audiosource/vizsn/soloud_vizsn.cpp + + #wav + soloud/src/audiosource/wav/soloud_wav.cpp + soloud/src/audiosource/wav/soloud_wavstream.cpp + # TODO: move to extra lib + soloud/src/audiosource/wav/dr_flac.h + soloud/src/audiosource/wav/dr_impl.cpp + soloud/src/audiosource/wav/dr_mp3.h + soloud/src/audiosource/wav/dr_wav.h + soloud/src/audiosource/wav/stb_vorbis.c + soloud/src/audiosource/wav/stb_vorbis.h +) + +set(HPP_FILES + #c_api + #soloud/include/soloud_c.h + + #core + soloud/include/soloud.h + soloud/include/soloud_internal.h + soloud/include/soloud_audiosource.h + soloud/include/soloud_bus.h + soloud/include/soloud_error.h + soloud/include/soloud_fader.h + soloud/include/soloud_fft.h + soloud/include/soloud_file.h + soloud/include/soloud_file_hack_off.h + soloud/include/soloud_file_hack_on.h + soloud/include/soloud_filter.h + soloud/include/soloud_queue.h + soloud/include/soloud_thread.h + + #filter + soloud/include/soloud_bassboostfilter.h + soloud/include/soloud_biquadresonantfilter.h + soloud/include/soloud_dcremovalfilter.h + soloud/include/soloud_echofilter.h + soloud/include/soloud_fftfilter.h + soloud/include/soloud_flangerfilter.h + soloud/include/soloud_lofifilter.h + soloud/include/soloud_robotizefilter.h + soloud/include/soloud_waveshaperfilter.h + + + #sources + soloud/include/soloud_wav.h + soloud/include/soloud_wavstream.h + soloud/include/soloud_monotone.h + soloud/include/soloud_openmpt.h + soloud/include/soloud_sfxr.h + soloud/include/soloud_speech.h + soloud/include/soloud_tedsid.h + soloud/include/soloud_vic.h + soloud/include/soloud_vizsn.h +) + +add_library(soloud ${CPP_FILES} ${HPP_FILES}) + +target_compile_definitions(soloud PRIVATE WITH_NULL) +#target_compile_definitions(soloud PRIVATE WITH_SDL2) +target_compile_definitions(soloud PRIVATE WITH_SDL2_STATIC) + +target_include_directories(soloud PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/soloud/include") +#target_include_directories(soloud PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/imgui") + +#if not android or emscripten +target_include_directories(soloud PUBLIC "${SDL2_INCLUDE_DIR}") +target_link_libraries(soloud ${SDL2_LIBRARY}) +#endif + +#if android +#target_link_libraries(soloud SDL) +#endif + +if(EMSCRIPTEN) + set_target_properties(soloud PROPERTIES COMPILE_FLAGS "-s USE_SDL=2") + set_target_properties(soloud PROPERTIES LINK_FLAGS "-s USE_SDL=2") +endif() + + +# TODO: remove +if(UNIX) + target_link_libraries(soloud + -ldl + ) +endif() + +add_executable(soloud_demo_simplest EXCLUDE_FROM_ALL soloud/demos/simplest/main.cpp) +target_link_libraries(soloud_demo_simplest + soloud +) + +add_executable(soloud_demo_enumerate EXCLUDE_FROM_ALL ./soloud/demos/enumerate/main.cpp) +target_link_libraries(soloud_demo_enumerate + soloud +) + +add_executable(soloud_demo_welcome EXCLUDE_FROM_ALL ./soloud/demos/welcome/main.cpp) +target_link_libraries(soloud_demo_welcome + soloud +) + diff --git a/external/soloud/soloud b/external/soloud/soloud new file mode 160000 index 0000000..4d72336 --- /dev/null +++ b/external/soloud/soloud @@ -0,0 +1 @@ +Subproject commit 4d72336a8855f3f421f95ec75cda9062da3fe7eb diff --git a/external/spdlog b/external/spdlog new file mode 160000 index 0000000..22a169b --- /dev/null +++ b/external/spdlog @@ -0,0 +1 @@ +Subproject commit 22a169bc319ac06948e7ee0be6b9b0ac81386604 diff --git a/external/stb/CMakeLists.txt b/external/stb/CMakeLists.txt new file mode 100644 index 0000000..365015c --- /dev/null +++ b/external/stb/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) + +project(stb CXX) + +add_library(stb INTERFACE) +target_include_directories(stb INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}") + +add_library(stb_image "stb/stb_image.h" "stb_image.cpp") +target_link_libraries(stb_image stb) + +add_library(stb_perlin "stb/stb_perlin.h" "stb_perlin.cpp") +target_link_libraries(stb_perlin stb) + diff --git a/external/stb/stb b/external/stb/stb new file mode 160000 index 0000000..b42009b --- /dev/null +++ b/external/stb/stb @@ -0,0 +1 @@ +Subproject commit b42009b3b9d4ca35bc703f5310eedc74f584be58 diff --git a/external/stb/stb_image.cpp b/external/stb/stb_image.cpp new file mode 100644 index 0000000..f2d2039 --- /dev/null +++ b/external/stb/stb_image.cpp @@ -0,0 +1,3 @@ +#define STB_IMAGE_IMPLEMENTATION +#include "stb/stb_image.h" + diff --git a/external/stb/stb_perlin.cpp b/external/stb/stb_perlin.cpp new file mode 100644 index 0000000..908b9aa --- /dev/null +++ b/external/stb/stb_perlin.cpp @@ -0,0 +1,3 @@ +#define STB_PERLIN_IMPLEMENTATION +#include "stb/stb_perlin.h" + diff --git a/external/tracy/CMakeLists.txt b/external/tracy/CMakeLists.txt new file mode 100644 index 0000000..8d05be4 --- /dev/null +++ b/external/tracy/CMakeLists.txt @@ -0,0 +1,28 @@ +cmake_minimum_required(VERSION 3.2 FATAL_ERROR) + +add_library(tracy_client + "${CMAKE_CURRENT_LIST_DIR}/tracy/Tracy.hpp" + "${CMAKE_CURRENT_LIST_DIR}/tracy/TracyLua.hpp" + "${CMAKE_CURRENT_LIST_DIR}/tracy/TracyVulkan.hpp" + "${CMAKE_CURRENT_LIST_DIR}/tracy/TracyOpenGL.hpp" + + "${CMAKE_CURRENT_LIST_DIR}/tracy/TracyClient.cpp" +) + +target_compile_features(tracy_client PUBLIC cxx_std_17) + +if(TRACY_ENABLE) + target_compile_definitions(tracy_client PUBLIC TRACY_ENABLE) + #target_compile_definitions(tracy_client PUBLIC TRACY_NO_SYSTEM_TRACING) + message("Enabled TRACY") +endif() + +target_include_directories(tracy_client PUBLIC "${CMAKE_CURRENT_LIST_DIR}") + +#target_link_libraries(tracy_client +#) + +if(UNIX) + target_link_libraries(tracy_client dl) +endif() + diff --git a/external/tracy/tracy b/external/tracy/tracy new file mode 160000 index 0000000..5490948 --- /dev/null +++ b/external/tracy/tracy @@ -0,0 +1 @@ +Subproject commit 54909485678ed19cd67ce3644352e40e34a833e9 diff --git a/framework/CMakeLists.txt b/framework/CMakeLists.txt new file mode 100644 index 0000000..21f97cc --- /dev/null +++ b/framework/CMakeLists.txt @@ -0,0 +1,23 @@ +cmake_minimum_required(VERSION 3.2) +project(framework CXX) + +add_subdirectory(engine) +add_subdirectory(logger) +add_subdirectory(resource_manager) +add_subdirectory(common_components) +add_subdirectory(std_utils) +add_subdirectory(screen_director) +add_subdirectory(filesystem) +add_subdirectory(simple_scene) + +if(NOT MM_HEADLESS) + add_subdirectory(sdl_service) + add_subdirectory(simple_sdl_renderer) + add_subdirectory(opengl_renderer) + add_subdirectory(opengl_primitives) + add_subdirectory(input) + add_subdirectory(sound) + add_subdirectory(imgui) + add_subdirectory(tilemap) +endif() + diff --git a/framework/common_components/CMakeLists.txt b/framework/common_components/CMakeLists.txt new file mode 100644 index 0000000..ef21f4d --- /dev/null +++ b/framework/common_components/CMakeLists.txt @@ -0,0 +1,28 @@ +cmake_minimum_required(VERSION 3.2) +project(common_components CXX) + +add_library(common_components INTERFACE) + +target_include_directories(common_components INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(common_components INTERFACE + entt + glm +) + +########################## + +add_library(common_components_serialize_json INTERFACE) + +target_include_directories(common_components_serialize_json INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(common_components_serialize_json INTERFACE + common_components + nlohmann_json::nlohmann_json +) + +if(BUILD_TESTING) + add_subdirectory(test) +endif() + + diff --git a/framework/common_components/src/mm/components/color.hpp b/framework/common_components/src/mm/components/color.hpp new file mode 100644 index 0000000..9dd160c --- /dev/null +++ b/framework/common_components/src/mm/components/color.hpp @@ -0,0 +1,10 @@ +#pragma once + +#include + +namespace MM::Components { + struct Color { + glm::vec4 color {1.f, 1.f, 1.f, 1.f}; + }; +} + diff --git a/framework/common_components/src/mm/components/name.hpp b/framework/common_components/src/mm/components/name.hpp new file mode 100644 index 0000000..8df0cfb --- /dev/null +++ b/framework/common_components/src/mm/components/name.hpp @@ -0,0 +1,11 @@ +#pragma once + +#include + +namespace MM::Components { + struct Name { + static const size_t max_str_len = 64; + std::string str; + }; +} + diff --git a/framework/common_components/src/mm/components/serialize/json_color.hpp b/framework/common_components/src/mm/components/serialize/json_color.hpp new file mode 100644 index 0000000..b71ca81 --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_color.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include + +#include + +#include "./json_glm.hpp" + +namespace MM::Components { + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Color, color) +} // MM::Components + diff --git a/framework/common_components/src/mm/components/serialize/json_glm.hpp b/framework/common_components/src/mm/components/serialize/json_glm.hpp new file mode 100644 index 0000000..3216d0f --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_glm.hpp @@ -0,0 +1,16 @@ +#pragma once + +#include +#include +#include + +#include + +namespace glm { + + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(vec2, x, y) + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(vec3, x, y, z) + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(vec4, x, y, z, w) + +} + diff --git a/framework/common_components/src/mm/components/serialize/json_name.hpp b/framework/common_components/src/mm/components/serialize/json_name.hpp new file mode 100644 index 0000000..ca5c0f5 --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_name.hpp @@ -0,0 +1,10 @@ +#pragma once + +#include + +#include + +namespace MM::Components { + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Name, str) +} // MM::Components + diff --git a/framework/common_components/src/mm/components/serialize/json_transform2d.hpp b/framework/common_components/src/mm/components/serialize/json_transform2d.hpp new file mode 100644 index 0000000..d8d1a1d --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_transform2d.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include + +#include + +#include "./json_glm.hpp" + +namespace MM::Components { + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Transform2D, position, scale, rotation) +} // MM::Components + diff --git a/framework/common_components/src/mm/components/serialize/json_transform3d.hpp b/framework/common_components/src/mm/components/serialize/json_transform3d.hpp new file mode 100644 index 0000000..e5eea67 --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_transform3d.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include + +#include + +#include "./json_glm.hpp" + +namespace MM::Components { + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Transform3D, position, scale, rotation) +} // MM::Components + diff --git a/framework/common_components/src/mm/components/serialize/json_velocity2d.hpp b/framework/common_components/src/mm/components/serialize/json_velocity2d.hpp new file mode 100644 index 0000000..1bca822 --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_velocity2d.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include + +#include + +#include "./json_glm.hpp" + +namespace MM::Components { + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Velocity2D, velocity, rotation) +} // MM::Components + diff --git a/framework/common_components/src/mm/components/serialize/json_velocity3d.hpp b/framework/common_components/src/mm/components/serialize/json_velocity3d.hpp new file mode 100644 index 0000000..3f60626 --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_velocity3d.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include + +#include + +#include "./json_glm.hpp" + +namespace MM::Components { + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Velocity3D, velocity, rotation) +} // MM::Components + diff --git a/framework/common_components/src/mm/components/serialize/json_view_dir2d.hpp b/framework/common_components/src/mm/components/serialize/json_view_dir2d.hpp new file mode 100644 index 0000000..f611b9b --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_view_dir2d.hpp @@ -0,0 +1,10 @@ +#pragma once + +#include + +#include + +namespace MM::Components { + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(ViewDir2D, dir) +} // MM::Components + diff --git a/framework/common_components/src/mm/components/serialize/json_view_dir3d.hpp b/framework/common_components/src/mm/components/serialize/json_view_dir3d.hpp new file mode 100644 index 0000000..b7b86ea --- /dev/null +++ b/framework/common_components/src/mm/components/serialize/json_view_dir3d.hpp @@ -0,0 +1,10 @@ +#pragma once + +#include + +#include + +namespace MM::Components { + NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(ViewDir3D, yaw, pitch, roll) +} // MM::Components + diff --git a/framework/common_components/src/mm/components/transform2d.hpp b/framework/common_components/src/mm/components/transform2d.hpp new file mode 100644 index 0000000..4a5e2bd --- /dev/null +++ b/framework/common_components/src/mm/components/transform2d.hpp @@ -0,0 +1,55 @@ +// +// Created by FlaXxy on 29.07.2018. +// +#pragma once + +#include +#include +#include +#include + +namespace MM::Components { + + struct Transform2D { + glm::vec2 position {0.0f,0.0f}; + glm::vec2 scale {1.0f,1.0f}; + float rotation {0.0f}; + + glm::mat3x3 getTransform3(void) const { + //return transformationMatrix(scale, rotation, position); + glm::mat3x3 res(1); + res[2][0] = position.x; + res[2][1] = position.y; + float const s = sinf(rotation); + float const c = cosf(rotation); + res[0][0] = scale.x * c; + res[0][1] = scale.x * s; + res[1][0] = scale.y * -s; + res[1][1] = scale.y * c; + return res; + } + + glm::mat4x4 getTransform4(float z = 500.f) const { + //return transformationMatrix(scale, rotation, position); + glm::mat4x4 res{1}; + + //res[2][0] = position.x; + //res[2][1] = position.y; + res = glm::translate(res, glm::vec3(position, z)); + + //float const s = sinf(rotation); + //float const c = cosf(rotation); + //res[0][0] = scale.x * c; + //res[0][1] = scale.x * s; + //res[1][0] = scale.y * -s; + //res[1][1] = scale.y * c; + res = glm::rotate(res, rotation, glm::vec3(0.f, 0.f, 1.f)); + + res = glm::scale(res, glm::vec3(scale, 1.f)); + + return res; + } + }; + +} // MM::Components + diff --git a/framework/common_components/src/mm/components/transform3d.hpp b/framework/common_components/src/mm/components/transform3d.hpp new file mode 100644 index 0000000..2d7846d --- /dev/null +++ b/framework/common_components/src/mm/components/transform3d.hpp @@ -0,0 +1,37 @@ +#pragma once + +//#include +#include +#include + +//#include + +namespace MM::Components { + struct Transform3D { + glm::vec3 position {0.0f,0.0f,0.0f}; + glm::vec3 scale {1.0f,1.0f,1.0f}; + float rotation {0.0f}; + + glm::mat4x4 getTransform4(void) const { + //return transformationMatrix(scale, rotation, position); + glm::mat4x4 res{1}; + + //res[2][0] = position.x; + //res[2][1] = position.y; + res = glm::translate(res, position); + + //float const s = sinf(rotation); + //float const c = cosf(rotation); + //res[0][0] = scale.x * c; + //res[0][1] = scale.x * s; + //res[1][0] = scale.y * -s; + //res[1][1] = scale.y * c; + res = glm::rotate(res, rotation, glm::vec3(0.f, 0.f, 1.f)); + + res = glm::scale(res, scale); + + return res; + } + }; +} // MM::Components + diff --git a/framework/common_components/src/mm/components/velocity2d.hpp b/framework/common_components/src/mm/components/velocity2d.hpp new file mode 100644 index 0000000..64df1c0 --- /dev/null +++ b/framework/common_components/src/mm/components/velocity2d.hpp @@ -0,0 +1,16 @@ +// +// Created by FlaXxy on 29.07.2018. +// +#pragma once + +#include + +namespace MM::Components { + + struct Velocity2D { + glm::vec2 velocity; + float rotation {0.f}; + }; + +} // MM::Components + diff --git a/framework/common_components/src/mm/components/velocity3d.hpp b/framework/common_components/src/mm/components/velocity3d.hpp new file mode 100644 index 0000000..3253ce2 --- /dev/null +++ b/framework/common_components/src/mm/components/velocity3d.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include + +namespace MM::Components { + + struct Velocity3D { + glm::vec3 velocity {0.f, 0.f, 0.f}; + glm::vec3 rotation {0.f, 0.f, 0.f}; + }; + +} // MM::Components + diff --git a/framework/common_components/src/mm/components/view_dir2d.hpp b/framework/common_components/src/mm/components/view_dir2d.hpp new file mode 100644 index 0000000..fd7025b --- /dev/null +++ b/framework/common_components/src/mm/components/view_dir2d.hpp @@ -0,0 +1,10 @@ +#pragma once + +namespace MM::Components { + + struct ViewDir2D { + float dir = 0.f; // rad + }; + +} // MM::Components + diff --git a/framework/common_components/src/mm/components/view_dir3d.hpp b/framework/common_components/src/mm/components/view_dir3d.hpp new file mode 100644 index 0000000..4fa2ff9 --- /dev/null +++ b/framework/common_components/src/mm/components/view_dir3d.hpp @@ -0,0 +1,12 @@ +#pragma once + +namespace MM::Components { + + struct ViewDir3D { + float yaw = 0.f; // rad + float pitch = 0.f; // rad + float roll = 0.f; // rad + }; + +} // MM::Components + diff --git a/framework/common_components/test/CMakeLists.txt b/framework/common_components/test/CMakeLists.txt new file mode 100644 index 0000000..a03479b --- /dev/null +++ b/framework/common_components/test/CMakeLists.txt @@ -0,0 +1,16 @@ + +add_executable(common_component_json_serialization_test + component_json_serialization_test.cpp +) + +target_include_directories(common_component_json_serialization_test PRIVATE ".") + +target_link_libraries(common_component_json_serialization_test + common_components_serialize_json + engine + + gtest_main +) + +add_test(NAME common_component_json_serialization_test COMMAND common_component_json_serialization_test) + diff --git a/framework/common_components/test/component_json_serialization_test.cpp b/framework/common_components/test/component_json_serialization_test.cpp new file mode 100644 index 0000000..cc1e837 --- /dev/null +++ b/framework/common_components/test/component_json_serialization_test.cpp @@ -0,0 +1,270 @@ +#include + +#include +#include +#include +#include +#include +#include +#include + +/*#define PARSE_TEST_MACRO(type, json_string, comp_val) \ +TEST(common_components_json_serialization, type) { \ + MM::Components::type comp; \ + { \ + auto j = nlohmann::json::parse(json_string); \ + EXPECT_NO_THROW({ comp = j; }); \ + ASSERT_EQ(comp, (comp_val)); \ + } \ + { \ + nlohmann::json j; \ + [>EXPECT_NO_THROW({ j = comp; });<] \ + ASSERT_EQ(json_string, j.dump()); \ + } \ +} + +PARSE_TEST_MACRO( + Name, + "{\"str\":\"test_name\"}", + MM::Components::Name{"test_name"} +); */ + +TEST(common_components_json_serialization, in_out_name) { + MM::Components::Name comp; + + const char* json_test_file = "{\"str\":\"test_name\"}"; + + { // in + auto j = nlohmann::json::parse(json_test_file); + + EXPECT_NO_THROW({ + comp = j; + }); + + ASSERT_EQ(comp.str, "test_name"); + } + + { // out + nlohmann::json j; + + EXPECT_NO_THROW({ + j = comp; + }); + + ASSERT_EQ(json_test_file, j.dump()); + } +} + +TEST(common_components_json_serialization, in_out_name_fail) { + MM::Components::Name name_comp; + + // intentional malformed json string + const char* json_test_file = "{\"strasdf\":\"test_name\"}"; + + { // in + auto j = nlohmann::json::parse(json_test_file); + + ASSERT_ANY_THROW({ + name_comp = j; + }); + } +} + +// ############################################################## + +TEST(common_components_json_serialization, in_out_color) { + MM::Components::Color comp; + + const char* json_test_file = R"({"color":{"w":1337.0,"x":0.0,"y":1.0,"z":3.0}})"; + + { // in + auto j = nlohmann::json::parse(json_test_file); + + EXPECT_NO_THROW({ + comp = j; + }); + + glm::vec4 comp_val{0.f, 1.f, 3.f, 1337.f}; + ASSERT_EQ(comp.color.x, comp_val.x); + ASSERT_EQ(comp.color.y, comp_val.y); + ASSERT_EQ(comp.color.z, comp_val.z); + ASSERT_EQ(comp.color.w, comp_val.w); + } + + { // out + nlohmann::json j; + + EXPECT_NO_THROW({ + j = comp; + }); + + ASSERT_EQ(json_test_file, j.dump()); + } +} + +// ############################################################## + +TEST(common_components_json_serialization, in_out_transform2d) { + MM::Components::Transform2D comp; + + const char* json_test_file = R"({"position":{"x":42.0,"y":6.0},"rotation":99.0,"scale":{"x":1337.0,"y":68.0}})"; + + { // in + auto j = nlohmann::json::parse(json_test_file); + + EXPECT_NO_THROW({ + comp = j; + }); + + ASSERT_EQ(comp.position.x, 42.f); + ASSERT_EQ(comp.position.y, 6.f); + + ASSERT_EQ(comp.scale.x, 1337.f); + ASSERT_EQ(comp.scale.y, 68.f); + + ASSERT_EQ(comp.rotation, 99.f); + } + + { // out + nlohmann::json j; + + EXPECT_NO_THROW({ + j = comp; + }); + + ASSERT_EQ(json_test_file, j.dump()); + } +} + +// ############################################################## + +TEST(common_components_json_serialization, in_out_transform3d) { + MM::Components::Transform3D comp; + + const char* json_test_file = R"({"position":{"x":42.0,"y":6.0,"z":66.0},"rotation":99.0,"scale":{"x":1337.0,"y":68.0,"z":60.0}})"; + + { // in + auto j = nlohmann::json::parse(json_test_file); + + EXPECT_NO_THROW({ + comp = j; + }); + + ASSERT_EQ(comp.position.x, 42.f); + ASSERT_EQ(comp.position.y, 6.f); + ASSERT_EQ(comp.position.z, 66.f); + + ASSERT_EQ(comp.scale.x, 1337.f); + ASSERT_EQ(comp.scale.y, 68.f); + ASSERT_EQ(comp.scale.z, 60.f); + + // TODO: prob needs 3 rotations... + ASSERT_EQ(comp.rotation, 99.f); + } + + { // out + nlohmann::json j; + + EXPECT_NO_THROW({ + j = comp; + }); + + ASSERT_EQ(json_test_file, j.dump()); + } +} + +// ############################################################## + +TEST(common_components_json_serialization, in_out_velocity2d) { + MM::Components::Velocity2D comp; + + const char* json_test_file = R"({"rotation":99.0,"velocity":{"x":42.0,"y":6.0}})"; + + { // in + auto j = nlohmann::json::parse(json_test_file); + + EXPECT_NO_THROW({ + comp = j; + }); + + ASSERT_EQ(comp.velocity.x, 42.f); + ASSERT_EQ(comp.velocity.y, 6.f); + + ASSERT_EQ(comp.rotation, 99.f); + } + + { // out + nlohmann::json j; + + EXPECT_NO_THROW({ + j = comp; + }); + + ASSERT_EQ(json_test_file, j.dump()); + } +} + +// ############################################################## + +TEST(common_components_json_serialization, in_out_view_dir2d) { + MM::Components::ViewDir2D comp; + + const char* json_test_file = R"({"dir":6.0})"; + + { // in + auto j = nlohmann::json::parse(json_test_file); + + EXPECT_NO_THROW({ + comp = j; + }); + + ASSERT_EQ(comp.dir, 6.f); + } + + { // out + nlohmann::json j; + + EXPECT_NO_THROW({ + j = comp; + }); + + ASSERT_EQ(json_test_file, j.dump()); + } +} + +// ############################################################## + +TEST(common_components_json_serialization, in_out_view_dir3d) { + MM::Components::ViewDir3D comp; + + const char* json_test_file = R"({"pitch":6.0,"roll":99.0,"yaw":42.0})"; + + { // in + auto j = nlohmann::json::parse(json_test_file); + + EXPECT_NO_THROW({ + comp = j; + }); + + ASSERT_EQ(comp.yaw, 42.f); + ASSERT_EQ(comp.pitch, 6.f); + ASSERT_EQ(comp.roll, 99.f); + } + + { // out + nlohmann::json j; + + EXPECT_NO_THROW({ + j = comp; + }); + + ASSERT_EQ(json_test_file, j.dump()); + } +} + +int main(int argc, char** argv) { + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/engine/CMakeLists.txt b/framework/engine/CMakeLists.txt new file mode 100644 index 0000000..b2c7fdf --- /dev/null +++ b/framework/engine/CMakeLists.txt @@ -0,0 +1,34 @@ +cmake_minimum_required(VERSION 3.2) +project(engine CXX) + +add_library(engine + src/mm/engine_fwd.hpp + src/mm/engine.hpp + src/mm/engine.cpp + + src/mm/services/service.hpp + + src/mm/services/default_service.cpp + src/mm/services/default_service.hpp + + src/mm/services/scene_service_interface.hpp + src/mm/services/scene_service_interface.cpp + + src/mm/services/net_channeled_interface.hpp +) + +# find . -type f -exec sed -i 's/simple_scene\/services\/simple_scene_ss.hpp/services\/scene_service_interface.hpp/g' {} \; + +target_include_directories(engine PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(engine + tracy_client + logger + entt + glm +) + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/engine/src/mm/engine.cpp b/framework/engine/src/mm/engine.cpp new file mode 100644 index 0000000..2ea3251 --- /dev/null +++ b/framework/engine/src/mm/engine.cpp @@ -0,0 +1,263 @@ +#include "./engine.hpp" + +#include +#include + +#include +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "Engine", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("Engine", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "Engine", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "Engine", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("Engine", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("Engine", __VA_ARGS__) + +namespace MM { + +Engine::FunctionDataHandle Engine::addUpdate(std::function function) { + if (!function) { + LOG_ERROR("could not add Update, empty function!"); + return {}; + } + + FunctionDataHandle r = _update_functions.emplace_back(std::make_shared(function)); + _update_functions_modified = true; + + return r; +} + +Engine::FunctionDataHandle Engine::addFixedUpdate(std::function function) { + if (!function) { + LOG_ERROR("could not add fixedUpdate, empty function!"); + return {}; + } + + FunctionDataHandle r = _fixed_update_functions.emplace_back(std::make_shared(function)); + _fixed_update_functions_modified = true; + + return r; +} + +void Engine::removeUpdate(FunctionDataHandle handle) { + if (handle.expired()) { + LOG_ERROR("could not remove Update, invalid handle!"); + return; + } + + auto lock = handle.lock(); + auto it = std::find(_update_functions.begin(), _update_functions.end(), lock); + if (it != _update_functions.end()) { + _update_functions.erase(it); + } else { + LOG_ERROR("could not remove Update, unknown handle!"); + } +} + +void Engine::removeFixedUpdate(FunctionDataHandle handle) { + if (handle.expired()) { + LOG_ERROR("could not remove fixedUpdate, invalid handle!"); + return; + } + + auto lock = handle.lock(); + auto it = std::find(_fixed_update_functions.begin(), _fixed_update_functions.end(), lock); + if (it != _fixed_update_functions.end()) { + _fixed_update_functions.erase(it); + } else { + LOG_ERROR("could not remove fixedUpdate, unknown handle!"); + } +} + +void Engine::addFixedDefer(std::function function) { + _fixed_defered.emplace_back(function); +} + +void Engine::traverseUpdateFunctions(std::vector>& list) { + for (auto& entry : list) { + entry->f(*this); + } +} + +Engine::Engine(float f_delta_time) : _fixed_delta_time(f_delta_time) { + if (!MM::Logger::initialized) { + MM::Logger::init(); + } + + MM::Logger::initSectionLogger("Engine"); +} + +Engine::~Engine(void) { + cleanup(); +} + +void Engine::cleanup(void) { + // disable all enabled services + // in reverse order + for (auto s_it = _service_enable_order.rbegin(); s_it != _service_enable_order.rend(); s_it++) { + auto& s_e = _services[*s_it]; + if (s_e.get()->first) { + if (auto* ss = s_e.get()->second.get(); ss != nullptr) { + ss->disable(*this); + LOG_INFO("- disabled Service '{}'", ss->name()); + } + } + } + + _service_enable_order.clear(); + + _update_functions.clear(); + _fixed_update_functions.clear(); + + spdlog::get("Engine")->flush(); +} + +void Engine::update(void) { + FrameMarkStart("update") + if (_update_functions_modified) { + ZoneScopedN("MM::Engine::update::sort_update_functions") + std::sort(_update_functions.begin(), _update_functions.end(), [](const auto& a, const auto& b) { return a->priority > b->priority; }); + _update_functions_modified = false; + } + + { + ZoneScopedN("MM::Engine::update::traverseUpdateFunctions") + traverseUpdateFunctions(_update_functions); + } + + FrameMarkEnd("update") +} + +void Engine::fixedUpdate(void) { + FrameMarkStart("fixedUpdate") + if (_fixed_update_functions_modified) { + ZoneScopedN("MM::Engine::fixedUpdate::sort_update_functions") + + std::sort(_fixed_update_functions.begin(), _fixed_update_functions.end(), [](const auto& a, const auto& b) { return a->priority > b->priority; }); + _fixed_update_functions_modified = false; + } + + { + ZoneScopedN("MM::Engine::fixedUpdate::traverseUpdateFunctions") + traverseUpdateFunctions(_fixed_update_functions); + } + + if (!_fixed_defered.empty()) { + ZoneScopedN("MM::Engine::fixedUpdate::defered") + for (auto& fn : _fixed_defered) { + fn(*this); + } + + _fixed_defered.clear(); + } + + FrameMarkEnd("fixedUpdate") +} + +#ifdef __EMSCRIPTEN__ +#include + +static void emscripten_update(void* arg) { + using clock = std::chrono::high_resolution_clock; + static long long int accumulator = 0; + static auto now = clock::now(); + + auto* e = (MM::Engine*)arg; + + auto newNow = clock::now(); + auto deltaTime = std::chrono::duration_cast(newNow - now); + now = newNow; + accumulator += deltaTime.count(); + auto dt = e->getFixedDeltaTime() * 1'000'000'000.0f; + while (accumulator >= dt) { + accumulator -= dt; + e->fixedUpdate(); + } + + e->update(); +} +#endif + +void Engine::run(void) { +#ifdef __EMSCRIPTEN__ + emscripten_set_main_loop_arg(emscripten_update, this, 0, 1); +#else + using clock = std::chrono::high_resolution_clock; + + _is_running = true; + long long int accumulator = 0; + auto now = clock::now(); + while (_is_running) { + auto newNow = clock::now(); + auto deltaTime = std::chrono::duration_cast(newNow - now); + now = newNow; + accumulator += deltaTime.count(); + auto dt = _fixed_delta_time * 1'000'000'000.0f; + + + size_t continuous_counter = 0; + while (accumulator >= dt) { + continuous_counter++; + accumulator -= static_cast(dt); + fixedUpdate(); + } + + if (continuous_counter > 2) { + LOG_WARN("had {} contiguous fixedUpdates!", std::to_string(continuous_counter)); + } + + update(); + } +#endif +} + +void Engine::stop(void) { + _is_running = false; +} + +bool Engine::enableService(service_family::family_type s_t) { + if (_services.count(s_t)) { + auto* ss_entry = _services[s_t].get(); + if (ss_entry->first) { + return false; // already enabled + } + + _service_enable_order.emplace_back(s_t); // TODO: make sure + return ss_entry->first = ss_entry->second.get()->enable(*this); + } + + // not found + assert(false && "first add Service"); + return false; +} + +void Engine::disableService(service_family::family_type s_t) { + if (_services.count(s_t)) { + auto* s_entry = _services[s_t].get(); + if (s_entry->first) { + s_entry->first = false; + s_entry->second.get()->disable(*this); + //_service_enable_order.emplace_back(service_family::type); + auto it = std::find(_service_enable_order.begin(), _service_enable_order.end(), s_t); + if (it != _service_enable_order.end()) { + _service_enable_order.erase(it); + } + } + } +} + +bool Engine::provide(service_family::family_type I, service_family::family_type T) { + if (!_services.count(T)) { + // TODO: log error + return false; + } + + _services[I] = _services[T]; + + return true; +} + + +} // MM + diff --git a/framework/engine/src/mm/engine.hpp b/framework/engine/src/mm/engine.hpp new file mode 100644 index 0000000..42dbe42 --- /dev/null +++ b/framework/engine/src/mm/engine.hpp @@ -0,0 +1,182 @@ +#pragma once + +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +namespace MM { + +class Engine { + private: + using service_family = entt::family; + + public: + using service_family_type = service_family::family_type; + + // the services "internal" interface + //private: + public: + struct FunctionPriorityDataStructure { + std::function f; + int16_t priority = 0; // 0 is equal to scene update, the higher the prio the earlier + std::string name; + + explicit FunctionPriorityDataStructure(std::function fun) : f(fun) {} + FunctionPriorityDataStructure(const FunctionPriorityDataStructure& rhs) + : f(rhs.f), priority(rhs.priority), name(rhs.name) {} + }; + + using FunctionDataType = FunctionPriorityDataStructure; + //using FunctionDataHandle = FunctionDataType*; // important: its a pointer + using FunctionDataHandle = std::weak_ptr; // important: its a pointer + + // return nullptr on error + [[nodiscard]] FunctionDataHandle addUpdate(std::function function); + [[nodiscard]] FunctionDataHandle addFixedUpdate(std::function function); + + void removeUpdate(FunctionDataHandle handle); + void removeFixedUpdate(FunctionDataHandle handle); + + // dont use, if you are not using it to modify the engine. + // you usualy dont need to use this, if you think you need to use this, you probably dont. + void addFixedDefer(std::function function); + + private: + std::vector> _update_functions; + bool _update_functions_modified; + + std::vector> _fixed_update_functions; + bool _fixed_update_functions_modified; + + std::vector> _fixed_defered; + + private: + void traverseUpdateFunctions(std::vector>& list); // traverses an update list, gets called by update()/fixedUpdate() + + private: + volatile bool _is_running = false; + const float _fixed_delta_time; + + public: + explicit Engine(float f_delta_time = 1.f/60.f); + ~Engine(void); + + // called from destructor or explicitly + void cleanup(void); + + [[nodiscard]] float getFixedDeltaTime(void) const { return _fixed_delta_time; }; + + void update(void); + void fixedUpdate(void); + + void run(void); // calls update()/fixedUpdate() until stopped + void stop(void); + + private: + std::vector _service_add_order; // ? + std::vector _service_enable_order; // ? + + //std::unordered_map>> _services; + std::unordered_map< + service_family::family_type, + std::shared_ptr + >> + > _services; + + // maps I to T + //std::unordered_map _implementation_provider; + + public: + template + constexpr auto type(void) { + return service_family::type; + } + + template + T& addService(Args&& ... args) { + assert(!tryService()); + + auto& ss_entry = _services[service_family::type] = + std::make_shared>>( + std::make_pair>( + false, + std::make_unique(std::forward(args)...) + ) + ); + + _service_add_order.emplace_back(service_family::type); + + return (T&)*ss_entry.get()->second.get(); + } + + template + [[nodiscard]] T* tryService(void) const { + if (_services.count(service_family::type)) { + return static_cast(_services.at(service_family::type).get()->second.get()); + } + + return nullptr; + } + + template + [[deprecated("use tryService() instead")]] + [[nodiscard]] T* tryGetService(void) const { + return tryService(); + } + + template + [[nodiscard]] T& getService(void) const { + T* tmp = tryService(); + assert(tmp); + return *tmp; + } + + bool enableService(service_family::family_type s_t); + void disableService(service_family::family_type s_t); + + template + bool enableService(void) { + return enableService(service_family::type); + } + + template + void disableService(void) { + disableService(service_family::type); + } + + // provide T as I implementation + // T needs to be an added Service + bool provide(service_family::family_type I, service_family::family_type T); + + // provide T as I implementation + // T needs to be an added Service + template + bool provide(void) { + static_assert(std::is_base_of_v, "T is not derived from I!"); + static_assert(!std::is_same_v, "I and T are the same, makes no sense!"); + + return provide(service_family::type, service_family::type); + } + + // TODO: reimplement??? + //template + //void removeProvider(void) { + //if (auto it = _implementation_provider.find(service_family::type); it != _implementation_provider.end()) { + //_implementation_provider.erase(it); + //} + //} +}; + +} // MM + diff --git a/framework/engine/src/mm/engine_fwd.hpp b/framework/engine/src/mm/engine_fwd.hpp new file mode 100644 index 0000000..b181e2b --- /dev/null +++ b/framework/engine/src/mm/engine_fwd.hpp @@ -0,0 +1,12 @@ +#pragma once + +// this is a forwarding header + +#include + +namespace MM { + class Engine; + using Entity = entt::entity; + using Scene = entt::basic_registry; +} + diff --git a/framework/engine/src/mm/services/default_service.cpp b/framework/engine/src/mm/services/default_service.cpp new file mode 100644 index 0000000..2a0509e --- /dev/null +++ b/framework/engine/src/mm/services/default_service.cpp @@ -0,0 +1,52 @@ +#include "./default_service.hpp" + +namespace MM::Services { + +// TODO: error handling +bool DefaultService::enable(Engine& engine) { + { + _func_handles[0] = engine.addUpdate([this](Engine& e) { this->preSceneUpdate(e); }); + auto tmp_lock = _func_handles[0].lock(); + tmp_lock->priority = 1; + tmp_lock->name = "DefaultService::preSceneUpdate"; + } + + { + _func_handles[1] = engine.addUpdate([this](Engine& e) { this->postSceneUpdate(e); }); + auto tmp_lock = _func_handles[1].lock(); + tmp_lock->priority = -1; + tmp_lock->name = "DefaultService::postSceneUpdate"; + } + + { + _func_handles[2] = engine.addFixedUpdate([this](Engine& e) { this->preSceneFixedUpdate(e); }); + auto tmp_lock = _func_handles[2].lock(); + tmp_lock->priority = 1; + tmp_lock->name = "DefaultService::preSceneFixedUpdate"; + } + + { + _func_handles[3] = engine.addFixedUpdate([this](Engine& e) { this->postSceneFixedUpdate(e); }); + auto tmp_lock = _func_handles[3].lock(); + tmp_lock->priority = -1; + tmp_lock->name = "DefaultService::postSceneFixedUpdate"; + } + + return true; +} + +void DefaultService::disable(Engine& engine) { + engine.removeUpdate(_func_handles[0]); + engine.removeUpdate(_func_handles[1]); + + engine.removeFixedUpdate(_func_handles[2]); + engine.removeFixedUpdate(_func_handles[3]); + + _func_handles[0].reset(); + _func_handles[1].reset(); + _func_handles[2].reset(); + _func_handles[3].reset(); +} + +} // MM::Services + diff --git a/framework/engine/src/mm/services/default_service.hpp b/framework/engine/src/mm/services/default_service.hpp new file mode 100644 index 0000000..fd0645a --- /dev/null +++ b/framework/engine/src/mm/services/default_service.hpp @@ -0,0 +1,26 @@ +#pragma once + +#include "./service.hpp" +#include + +namespace MM::Services { + +class DefaultService : public Service { + private: + Engine::FunctionDataHandle _func_handles[4]; + + public: + virtual const char* name(void) override { return "DefaultService"; } + + virtual bool enable(Engine& engine) override; + virtual void disable(Engine& engine) override; + + virtual void preSceneUpdate(Engine&) {} + virtual void postSceneUpdate(Engine&) {} + virtual void preSceneFixedUpdate(Engine&) {} + virtual void postSceneFixedUpdate(Engine&) {} +}; + +} //MM::Services + + diff --git a/framework/engine/src/mm/services/net_channeled_interface.hpp b/framework/engine/src/mm/services/net_channeled_interface.hpp new file mode 100644 index 0000000..e0ccc20 --- /dev/null +++ b/framework/engine/src/mm/services/net_channeled_interface.hpp @@ -0,0 +1,77 @@ +#pragma once + +#include +#include +#include + +namespace MM::Services { + + class NetChanneledInterface : public Service { + public: + using channel_id = uint8_t; + enum class channel_type { + LOSSY, + LOSSLESS + }; + using peer_id = uint64_t; // might be truncated by backends + + using packet_type = uint16_t; // can be aliased to an enum by the user + + protected: + std::set _peer_list; + + public: // support querrys + + // returns the number (highest number??) maximum channels supported by backend + virtual channel_id getMaxChannels(void) = 0; + + // returns wether the channel type is supported + virtual bool getSupportedChannelType(channel_type type) = 0; + + virtual size_t getMaxPacketSize(void) = 0; + + // TODO: add set channel type utils + + public: + + // ok , we manage the peer list now + virtual bool addPeer(peer_id peer) { return _peer_list.emplace(peer).second; } + virtual bool removePeer(peer_id peer) { return _peer_list.erase(peer); } + virtual void clearPeerlist(void) { _peer_list.clear(); } + + // calls fn for each peer + virtual void forEachPeer(std::function fn) { + for (peer_id peer : _peer_list) { + fn(peer); + } + } + + public: // send/recv + + // sends a packet of max getMaxPacketSize() bytes + virtual bool sendPacket(peer_id peer, channel_id channel, uint8_t* data, size_t data_size) = 0; + + // sends a packet, automatically split if too big + // !! only on lossless channels + virtual bool sendPacketLarge(peer_id peer, channel_id channel, uint8_t* data, size_t data_size) = 0; + + // TODO: broadcast? + // has any? + + //virtual bool getPacket + + // calls fn for each packet and fills in peer, channel, data_ptr, and data_size + // returns number of fn calls + virtual size_t forEachPacket(std::function fn) = 0; + + // calls fn for each packet and fills in channel, data_ptr, and data_size + // returns number of fn calls + virtual size_t forEachPacketPeer(peer_id peer, std::function fn) = 0; + + // calls fn for each packet and fills in data_ptr, and data_size + // returns number of fn calls + virtual size_t forEachPacketPeerChannel(peer_id peer, channel_id channel, std::function fn) = 0; + }; + +} // MM::Services + diff --git a/framework/engine/src/mm/services/scene_service_interface.cpp b/framework/engine/src/mm/services/scene_service_interface.cpp new file mode 100644 index 0000000..7cc9f0a --- /dev/null +++ b/framework/engine/src/mm/services/scene_service_interface.cpp @@ -0,0 +1,27 @@ +#include "./scene_service_interface.hpp" + +#include + +namespace MM { + +struct DefaultSystemsContainer { + // list of callables, expecting a Scene (ecs) and a step size (delta) + std::vector> systems; +}; + +void AddSystemToScene(::MM::Scene& scene, ::MM::System fn) { + auto& sc = scene.ctx_or_set(); + sc.systems.emplace_back(std::move(fn)); +} + +void EachSystemInScene(::MM::Scene& scene, std::function fn) { + auto* sc = scene.try_ctx(); + if (sc != nullptr) { + for (auto& system : sc->systems) { + fn(scene, system); + } + } +} + +} // MM + diff --git a/framework/engine/src/mm/services/scene_service_interface.hpp b/framework/engine/src/mm/services/scene_service_interface.hpp new file mode 100644 index 0000000..26f09cc --- /dev/null +++ b/framework/engine/src/mm/services/scene_service_interface.hpp @@ -0,0 +1,44 @@ +#pragma once + +#include + +#include + +namespace MM { + + using Entity = entt::entity; + using Scene = entt::basic_registry<::MM::Entity>; + using System = std::function; + + // opaque way to add a System to a Scene + void AddSystemToScene(::MM::Scene& scene, ::MM::System fn); + + // opaque way to iterate over the Systems + void EachSystemInScene(::MM::Scene& scene, std::function fn); + +} // MM + +namespace MM::Services { + + class SceneServiceInterface : public Service { + public: // Scene stuff + // get current Scene + virtual ::MM::Scene& getScene(void) = 0; + + // enques a new Scene to be put in place + virtual void changeScene(std::unique_ptr<::MM::Scene> new_scene) = 0; + + // sets the new Scene to be provided. + // dont use, except for when you know what you are doing! + // be carefull of that one (lol) + virtual void changeSceneNow(std::unique_ptr<::MM::Scene> new_scene) = 0; + + // adds a System to current Scene. + // default impl. will use getScene() ! + inline virtual void addSystemToScene(::MM::System fn) { + ::MM::AddSystemToScene(getScene(), std::move(fn)); + } + }; + +} // MM::Services + diff --git a/framework/engine/src/mm/services/service.hpp b/framework/engine/src/mm/services/service.hpp new file mode 100644 index 0000000..e067c4c --- /dev/null +++ b/framework/engine/src/mm/services/service.hpp @@ -0,0 +1,24 @@ +#pragma once + +namespace MM { + + class Engine; + + namespace Services { + + class Service { + public: + virtual ~Service(void) {} + + virtual const char* name(void) { return "UnNamedService"; } + //virtual const char* name(void) = 0; // use this to find unnamed services + + // required + virtual bool enable(Engine& engine) = 0; + virtual void disable(Engine& engine) = 0; + }; + + } // Services + +} //MM + diff --git a/framework/engine/test/CMakeLists.txt b/framework/engine/test/CMakeLists.txt new file mode 100644 index 0000000..ff28b72 --- /dev/null +++ b/framework/engine/test/CMakeLists.txt @@ -0,0 +1,16 @@ +add_executable(engine_test + update_test.cpp + run_test.cpp + service_system_test.cpp + default_service_test.cpp +) + +target_include_directories(engine_test PRIVATE ".") + +target_link_libraries(engine_test + engine + gtest_main +) + +add_test(NAME engine_test COMMAND engine_test) + diff --git a/framework/engine/test/default_service_test.cpp b/framework/engine/test/default_service_test.cpp new file mode 100644 index 0000000..5ec8402 --- /dev/null +++ b/framework/engine/test/default_service_test.cpp @@ -0,0 +1,38 @@ +#include + +#include +#include + +TEST(engine_default_service_system, add_en_dis) { + + MM::Engine e; + + e.addService(); + ASSERT_TRUE(e.enableService()); + + { + auto* dss = e.tryService(); + ASSERT_NE(dss, nullptr); + } + + e.disableService(); +} + +TEST(engine_default_service_system, tick) { + + MM::Engine e; + + e.addService(); + ASSERT_TRUE(e.enableService()); + + e.update(); + e.fixedUpdate(); + + { + auto* dss = e.tryService(); + ASSERT_NE(dss, nullptr); + } + + e.disableService(); +} + diff --git a/framework/engine/test/run_test.cpp b/framework/engine/test/run_test.cpp new file mode 100644 index 0000000..ee37429 --- /dev/null +++ b/framework/engine/test/run_test.cpp @@ -0,0 +1,61 @@ +#include + +#include + +TEST(engine_run, test_run) { + MM::Engine engine; + + bool run = false; + + auto test_fun = [&run](auto& e) { + run = true; + e.stop(); + }; + + auto handle = engine.addFixedUpdate(test_fun); + ASSERT_NE(handle.lock(), nullptr); + + handle.lock()->priority = 1; + + ASSERT_FALSE(run); + engine.run(); + ASSERT_TRUE(run); + + engine.removeFixedUpdate(handle); +} + +TEST(engine_run, test_mult_run) { + MM::Engine engine; + + bool run = false; + unsigned int fu_count = 0; + unsigned int u_count = 0; + + const unsigned int f_to_do = 4; + + auto test_f_fun = [&](auto& e) { + run = true; + fu_count++; + + if (fu_count >= f_to_do) + e.stop(); + }; + + auto handle_f = engine.addFixedUpdate(test_f_fun); + ASSERT_NE(handle_f.lock(), nullptr); + handle_f.lock()->priority = 1; + + auto handle = engine.addUpdate([&u_count](auto&) { u_count++; }); + ASSERT_NE(handle_f.lock(), nullptr); + handle.lock()->priority = 1; + + ASSERT_FALSE(run); + engine.run(); + ASSERT_TRUE(run); + + EXPECT_GT(u_count, f_to_do) << "expected more update runs than fixed update runs..."; + std::cout << "while performing " << f_to_do << " fixed updates, the engine did " << u_count << " updates.\n"; + + engine.removeFixedUpdate(handle_f); +} + diff --git a/framework/engine/test/service_system_test.cpp b/framework/engine/test/service_system_test.cpp new file mode 100644 index 0000000..1ace825 --- /dev/null +++ b/framework/engine/test/service_system_test.cpp @@ -0,0 +1,228 @@ +#include + +#include + +class TestService1 : public MM::Services::Service { + public: + const char* name(void) override { return "TestService1"; } + + bool enable(MM::Engine&) override { return true; } + void disable(MM::Engine&) override {} +}; + +class TestService2 : public MM::Services::Service { + public: + const char* name(void) override { return "TestService2"; } + + bool enable(MM::Engine&) override { return true; } + void disable(MM::Engine&) override {} +}; + +class TestService2Derived : public TestService2 { + public: + const char* name(void) override { return "TestService2Derived"; } + + bool enable(MM::Engine&) override { return true; } + void disable(MM::Engine&) override {} +}; + +TEST(engine_service, add) { + MM::Engine e; + + e.addService(); + + auto* tss = e.tryService(); + ASSERT_NE(tss, nullptr); +} + +TEST(engine_service, get_fail) { + MM::Engine e; + + auto* tss = e.tryService(); + ASSERT_EQ(tss, nullptr); +} + +#ifndef NDEBUG +TEST(engine_service, _fail) { + MM::Engine e; + + e.addService(); + + ASSERT_DEATH({ + e.addService(); // adding the same + }, "failed"); + + //auto* tss = e.tryService(); + //ASSERT_EQ(tss, nullptr); +} +#endif + +TEST(engine_service, add_int_en_dis) { + MM::Engine e; + + { + auto& tss = e.addService(); + ASSERT_TRUE(tss.enable(e)); + } + + { + auto* tss = e.tryService(); + ASSERT_NE(tss, nullptr); + + tss->disable(e); + } +} + +TEST(engine_service, add_en_dis) { + MM::Engine e; + + e.addService(); + ASSERT_TRUE(e.enableService()); + + { + auto* tss = e.tryService(); + ASSERT_NE(tss, nullptr); + } + + e.disableService(); +} + +TEST(engine_service, add_en_dis_mult) { + MM::Engine e; + + e.addService(); + ASSERT_TRUE(e.enableService()); + + e.addService(); + ASSERT_TRUE(e.enableService()); + + { + auto* tss = e.tryService(); + ASSERT_NE(tss, nullptr); + } + + { + auto* tss = e.tryService(); + ASSERT_NE(tss, nullptr); + } + + e.disableService(); + e.disableService(); +} + +TEST(engine_service, provide) { + MM::Engine e; + + e.addService(); + ASSERT_TRUE(e.enableService()); + + bool r; + + // "mark" TestService2Derived as provider for TestService2 + r = e.provide(); ASSERT_TRUE(r); + + // should not compile + //r = e.provide(); + //r = e.provide(); + //r = e.provide(); + + { + auto* tdss = e.tryService(); + ASSERT_NE(tdss, nullptr); + + auto* iss = e.tryService(); + ASSERT_NE(iss, nullptr); + + // they are the same (ptr) + ASSERT_EQ(tdss, iss); + } + + e.disableService(); +} + +TEST(engine_service, type_ids) { + MM::Engine e; + + auto tss1_id = e.type(); + auto tss2_id = e.type(); + auto tss2d_id = e.type(); + + ASSERT_NE(tss1_id, tss2_id); + ASSERT_NE(tss1_id, tss2d_id); + ASSERT_NE(tss2_id, tss2d_id); +} + +TEST(engine_service, add_en_dis_mult_type_ids) { + MM::Engine e; + + auto tss1_id = e.type(); + auto tss2_id = e.type(); + ASSERT_NE(tss1_id, tss2_id); + + e.addService(); + ASSERT_TRUE(e.enableService(tss1_id)); + + e.addService(); + ASSERT_TRUE(e.enableService(tss2_id)); + + { + auto* tss1 = e.tryService(); + ASSERT_NE(tss1, nullptr); + + auto* tss2 = e.tryService(); + ASSERT_NE(tss2, nullptr); + + ASSERT_NE((void*)tss1, (void*)tss2); + } + + e.disableService(tss1_id); + e.disableService(); // mixin' +} + +TEST(engine_service, provide_type_ids) { + MM::Engine e; + + auto tss2_id = e.type(); + auto tss2d_id = e.type(); + + e.addService(); + ASSERT_TRUE(e.enableService(tss2d_id)); + + bool r; + + // "mark" TestService2Derived as provider for TestService2 + r = e.provide(tss2_id, tss2d_id); ASSERT_TRUE(r); // typeid variant + //r = e.provide(); ASSERT_TRUE(r); + + { + auto* tdss = e.tryService(); + ASSERT_NE(tdss, nullptr); + + auto* iss = e.tryService(); + ASSERT_NE(iss, nullptr); + + // they are the same (ptr) + ASSERT_EQ((void*)tdss, (void*)iss); + } + + e.disableService(tss2d_id); +} + +TEST(engine_service, run) { + MM::Engine e; + + e.addService(); + ASSERT_TRUE(e.enableService()); + + { + auto* tss = e.tryService(); + ASSERT_NE(tss, nullptr); + } + + e.addFixedUpdate([](auto& e) { e.stop(); }); + + e.run(); + + e.disableService(); +} + diff --git a/framework/engine/test/update_test.cpp b/framework/engine/test/update_test.cpp new file mode 100644 index 0000000..a5ced28 --- /dev/null +++ b/framework/engine/test/update_test.cpp @@ -0,0 +1,230 @@ +#include + +#include + +TEST(engine_fixed_update, empty_add_rm) { + MM::Engine engine; + + auto test_fun = [](auto&) {}; + + auto handle = engine.addFixedUpdate(test_fun); + ASSERT_NE(handle.lock(), nullptr); + + handle.lock()->priority = 1; + + engine.removeFixedUpdate(handle); +} + +TEST(engine_update, empty_add_rm) { + MM::Engine engine; + + auto test_fun = [](auto&) {}; + + auto handle = engine.addUpdate(test_fun); + ASSERT_NE(handle.lock(), nullptr); + + handle.lock()->priority = 1; + + engine.removeUpdate(handle); +} + +TEST(engine_fixed_update, empty_run) { + MM::Engine engine; + + auto test_fun = [](auto&) {}; + + auto handle = engine.addFixedUpdate(test_fun); + ASSERT_NE(handle.lock(), nullptr); + + handle.lock()->priority = 1; + + engine.fixedUpdate(); // single update + + engine.removeFixedUpdate(handle); +} + +TEST(engine_update, empty_run) { + MM::Engine engine; + + auto test_fun = [](auto&) {}; + + auto handle = engine.addUpdate(test_fun); + ASSERT_NE(handle.lock(), nullptr); + + handle.lock()->priority = 1; + + engine.update(); + + engine.removeUpdate(handle); +} + +TEST(engine_fixed_update, test_run) { + MM::Engine engine; + + bool run = false; + + auto test_fun = [&run](auto&) { run = true; }; + + auto handle = engine.addFixedUpdate(test_fun); + ASSERT_NE(handle.lock(), nullptr); + + handle.lock()->priority = 1; + + ASSERT_FALSE(run); + engine.fixedUpdate(); // single update + ASSERT_TRUE(run); + + engine.removeFixedUpdate(handle); +} + +TEST(engine_update, test_run) { + MM::Engine engine; + + bool run = false; + + auto test_fun = [&run](auto&) { run = true; }; + + auto handle = engine.addUpdate(test_fun); + ASSERT_NE(handle.lock(), nullptr); + + handle.lock()->priority = 1; + + ASSERT_FALSE(run); + engine.update(); + ASSERT_TRUE(run); + + engine.removeUpdate(handle); +} + +TEST(engine_fixed_update, test_order_run) { + MM::Engine engine; + + bool run1 = false; + bool run2 = false; + + auto test_fun1 = [&](auto&) { + ASSERT_FALSE(run2); + run1 = true; + }; + auto test_fun2 = [&](auto&) { + ASSERT_TRUE(run1); + run2 = true; + }; + + auto handle1 = engine.addFixedUpdate(test_fun1); + ASSERT_NE(handle1.lock(), nullptr); + handle1.lock()->priority = 1; + + auto handle2 = engine.addFixedUpdate(test_fun2); + ASSERT_NE(handle2.lock(), nullptr); + handle2.lock()->priority = 0; + + ASSERT_FALSE(run1); + ASSERT_FALSE(run2); + engine.fixedUpdate(); // single update + ASSERT_TRUE(run1); + ASSERT_TRUE(run2); + + engine.removeFixedUpdate(handle1); + engine.removeFixedUpdate(handle2); +} + +TEST(engine_fixed_update, test_order_rev_run) { + MM::Engine engine; + + bool run1 = false; + bool run2 = false; + + auto test_fun1 = [&](auto&) { + ASSERT_TRUE(run2); + run1 = true; + }; + auto test_fun2 = [&](auto&) { + ASSERT_FALSE(run1); + run2 = true; + }; + + auto handle1 = engine.addFixedUpdate(test_fun1); + ASSERT_NE(handle1.lock(), nullptr); + handle1.lock()->priority = 0; + + auto handle2 = engine.addFixedUpdate(test_fun2); + ASSERT_NE(handle2.lock(), nullptr); + handle2.lock()->priority = 1; + + ASSERT_FALSE(run1); + ASSERT_FALSE(run2); + engine.fixedUpdate(); // single update + ASSERT_TRUE(run1); + ASSERT_TRUE(run2); + + engine.removeFixedUpdate(handle1); + engine.removeFixedUpdate(handle2); +} + +TEST(engine_update, test_order_run) { + MM::Engine engine; + + bool run1 = false; + bool run2 = false; + + auto test_fun1 = [&](auto&) { + ASSERT_FALSE(run2); + run1 = true; + }; + auto test_fun2 = [&](auto&) { + ASSERT_TRUE(run1); + run2 = true; + }; + + auto handle1 = engine.addUpdate(test_fun1); + ASSERT_NE(handle1.lock(), nullptr); + handle1.lock()->priority = 1; + + auto handle2 = engine.addUpdate(test_fun2); + ASSERT_NE(handle2.lock(), nullptr); + handle2.lock()->priority = 0; + + ASSERT_FALSE(run1); + ASSERT_FALSE(run2); + engine.update(); // single update + ASSERT_TRUE(run1); + ASSERT_TRUE(run2); + + engine.removeUpdate(handle1); + engine.removeUpdate(handle2); +} + +TEST(engine_update, test_order_rev_run) { + MM::Engine engine; + + bool run1 = false; + bool run2 = false; + + auto test_fun1 = [&](auto&) { + ASSERT_TRUE(run2); + run1 = true; + }; + auto test_fun2 = [&](auto&) { + ASSERT_FALSE(run1); + run2 = true; + }; + + auto handle1 = engine.addUpdate(test_fun1); + ASSERT_NE(handle1.lock(), nullptr); + handle1.lock()->priority = 0; + + auto handle2 = engine.addUpdate(test_fun2); + ASSERT_NE(handle2.lock(), nullptr); + handle2.lock()->priority = 1; + + ASSERT_FALSE(run1); + ASSERT_FALSE(run2); + engine.update(); // single update + ASSERT_TRUE(run1); + ASSERT_TRUE(run2); + + engine.removeUpdate(handle1); + engine.removeUpdate(handle2); +} + diff --git a/framework/filesystem/CMakeLists.txt b/framework/filesystem/CMakeLists.txt new file mode 100644 index 0000000..fc145d2 --- /dev/null +++ b/framework/filesystem/CMakeLists.txt @@ -0,0 +1,45 @@ +cmake_minimum_required(VERSION 3.2) +project(filesystem_service CXX) + +add_library(filesystem_service + src/mm/path_utils.hpp + + src/mm/services/filesystem.hpp + src/mm/services/filesystem.cpp + + src/mm/fs_const_archiver.hpp + src/mm/fs_const_archiver.cpp +) + +target_include_directories(filesystem_service PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(filesystem_service + engine + logger + entt + nlohmann_json::nlohmann_json + physfs-static # TODO: fix this + std_utils +) + +if(NOT MM_HEADLESS) + + #if android + #target_link_libraries(filesystem_service SDL) + #endif + + if(EMSCRIPTEN) + set_target_properties(filesystem_service PROPERTIES COMPILE_FLAGS "-s USE_SDL=2") + set_target_properties(filesystem_service PROPERTIES LINK_FLAGS "-s USE_SDL=2") + else() + #if not android or emscripten + target_include_directories(filesystem_service PUBLIC "${SDL2_INCLUDE_DIR}") + target_link_libraries(filesystem_service ${SDL2_LIBRARY}) + #endif + endif() +endif() + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/filesystem/src/mm/fs_const_archiver.cpp b/framework/filesystem/src/mm/fs_const_archiver.cpp new file mode 100644 index 0000000..4909ad3 --- /dev/null +++ b/framework/filesystem/src/mm/fs_const_archiver.cpp @@ -0,0 +1,247 @@ +#include "./fs_const_archiver.hpp" + +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "Filesystem", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("Filesystem", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "Filesystem", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "Filesystem", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("Filesystem", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("Filesystem", __VA_ARGS__) + +namespace MM { + +std::unordered_map> FSConstArchiver::_storage {}; + +void* FSConstArchiver::PH_openArchive(PHYSFS_Io* io, const char* name, int forWrite, int* claimed) { + (void)io; + (void)name; + // TODO: test name + + if (forWrite) { + //PHYSFS_setErrorCode(PHYSFS_ERR_READ_ONLY); + *claimed = 0; + return nullptr; + } + + *claimed = 1; + + return (void*)1; // non zero +} + +PHYSFS_EnumerateCallbackResult FSConstArchiver::PH_enumerate(void* opaque, const char* dirname, PHYSFS_EnumerateCallback cb, const char* origdir, void* callbackdata) { + (void)opaque; + (void)dirname; + (void)cb; + (void)origdir; + (void)callbackdata; + + // "files" just not enumeratable + //return PHYSFS_ENUM_STOP; + return PHYSFS_ENUM_OK; +} + +PHYSFS_Io* FSConstArchiver::PH_openRead(void* opaque, const char* fnm) { + (void)opaque; + + if (!_storage.count(fnm)) { + PHYSFS_setErrorCode(PHYSFS_ERR_NOT_FOUND); + return nullptr; + } + + return createIO(fnm); +} + +PHYSFS_Io* FSConstArchiver::PH_openWrite(void* opaque, const char* filename) { + (void)opaque; + (void)filename; + return nullptr; +} + +PHYSFS_Io* FSConstArchiver::PH_openAppend(void* opaque, const char* filename) { + (void)opaque; + (void)filename; + return nullptr; +} + +int FSConstArchiver::PH_remove(void* opaque, const char* filename) { + (void)opaque; + (void)filename; + + // TODO: support this? + + PHYSFS_setErrorCode(PHYSFS_ERR_READ_ONLY); + + return 0; +} + +int FSConstArchiver::PH_mkdir(void* opaque, const char* filename) { + (void)opaque; + (void)filename; + + PHYSFS_setErrorCode(PHYSFS_ERR_READ_ONLY); + + return 0; +} + +int FSConstArchiver::PH_stat(void* opaque, const char* fn, PHYSFS_Stat* stat) { + (void)opaque; + + if (pathIsDir(fn)) { + stat->filesize = 0; + stat->filetype = PHYSFS_FILETYPE_DIRECTORY; + } else if (_storage.count(fn)) { + stat->filesize = _storage[fn].second; + stat->filetype = PHYSFS_FILETYPE_REGULAR; + } else { + return 0; + } + + stat->accesstime = -1; + stat->createtime = -1; + stat->modtime = -1; + stat->readonly = 1; + + return 1; +} + +void FSConstArchiver::PH_closeArchive(void* opaque) { + (void)opaque; +} + +PHYSFS_Io* FSConstArchiver::createIO(const char* filename, PHYSFS_uint64 pos) { + if (!_storage.count(filename)) { + //LOGCA(std::string("error: path '") + filename + "' alredy used!"); + LOG_ERROR("path '{}' already used!", filename); + return nullptr; + } + + //LOGCA(std::string("###creating io for ") + filename); + LOG_TRACE("creating io for {}", filename); + + struct io_internal { + std::string filename; + PHYSFS_uint64 pos = 0; + uint8_t* data = nullptr; + size_t data_size = 0; + }; + + auto io = new PHYSFS_Io; + + + io->version = 0; + io->write = nullptr; + io->flush = nullptr; + + io->opaque = new io_internal{ + filename, + pos, + _storage[filename].first, + _storage[filename].second + }; + io->destroy = [](PHYSFS_Io* io) { + delete (io_internal*)io->opaque; + delete io; + }; + + io->tell = [](PHYSFS_Io* io) -> PHYSFS_sint64 { return ((io_internal*)io->opaque)->pos; }; + io->seek = [](PHYSFS_Io* io, PHYSFS_uint64 offset) -> int { + auto* inter = (io_internal*)io->opaque; + if (offset > inter->data_size) + return 0; // error, past end + inter->pos = offset; + return 1; + }; + io->length = [](PHYSFS_Io* io) -> PHYSFS_sint64 { return ((io_internal*)io->opaque)->data_size; }; + io->duplicate = [](PHYSFS_Io* io) -> PHYSFS_Io* { + if (!io) + return nullptr; + + auto* inter = (io_internal*)io->opaque; + auto* dup = createIO(inter->filename.c_str(), inter->pos); + return dup; + }; + io->read = [](PHYSFS_Io* io, void* buf, PHYSFS_uint64 len) -> PHYSFS_sint64 { + if (!io) + return -1; + + auto* inter = (io_internal*)io->opaque; + if (inter->data_size == inter->pos) + return 0; // EOF + + PHYSFS_sint64 bytes_to_read = 0; + if (inter->pos + len >= inter->data_size) { + bytes_to_read = inter->data_size - inter->pos; // remaining data + } else { + bytes_to_read = len; + } + + memcpy(buf, inter->data + inter->pos, bytes_to_read); + inter->pos += bytes_to_read; + return bytes_to_read; + }; + + return io; +} + +bool FSConstArchiver::pathIsDir(const char* path) { + std::string_view pstr {path}; + //for (auto&[str, data] : _storage) { + for (auto& it : _storage) { + // stats_with c++20 <.< + + if (it.first.compare(0, pstr.size(), pstr) == 0) { + return true; + } + } + + return false; +} + +const PHYSFS_Archiver* FSConstArchiver::getArchiverStruct(void) { + static const PHYSFS_Archiver a { + 0, // version + { // info + "MEM", // ext + "in const memory 'archiver'", // desc + "Green", // author + "", // url + 0 // sym + }, + &PH_openArchive, + &PH_enumerate, + &PH_openRead, + &PH_openWrite, + &PH_openAppend, + &PH_remove, + &PH_mkdir, + &PH_stat, + &PH_closeArchive + }; + + return &a; +} + +void FSConstArchiver::addFile(const char* path, uint8_t* data, size_t data_size) { + if (!path) + return; + + // remove leading / es + while (path[0] == '/') { + path++; + + if (path[0] == '\0') + return; + } + + if (_storage.count(path)) { + //LOGCA(std::string("error: '") + path + "' already in path"); + LOG_TRACE("'{}' already in path, overriding...", path); + } + + _storage[path] = {data, data_size}; +} + +} // MM + diff --git a/framework/filesystem/src/mm/fs_const_archiver.hpp b/framework/filesystem/src/mm/fs_const_archiver.hpp new file mode 100644 index 0000000..fe73993 --- /dev/null +++ b/framework/filesystem/src/mm/fs_const_archiver.hpp @@ -0,0 +1,42 @@ +#pragma once + +#include + +#include + +#include + +namespace MM { + class FSConstArchiver { + private: + static std::unordered_map> _storage; + + private: + // archiver interface + static void* PH_openArchive(PHYSFS_Io* io, const char* name, int forWrite, int* claimed); + static PHYSFS_EnumerateCallbackResult PH_enumerate(void* opaque, const char* dirname, PHYSFS_EnumerateCallback cb, const char* origdir, void* callbackdata); + static PHYSFS_Io* PH_openRead(void* opaque, const char* fnm); + static PHYSFS_Io* PH_openWrite(void* opaque, const char* filename); + static PHYSFS_Io* PH_openAppend(void* opaque, const char* filename); + static int PH_remove(void* opaque, const char* filename); + static int PH_mkdir(void* opaque, const char* filename); + static int PH_stat(void* opaque, const char* fn, PHYSFS_Stat* stat); + static void PH_closeArchive(void* opaque); + + static PHYSFS_Io* createIO(const char* filename, PHYSFS_uint64 pos = 0); + + static bool pathIsDir(const char* path); + + public: + static const PHYSFS_Archiver* getArchiverStruct(void); + + // the archiver is not responsible for memory, you need to keep it around. + static void addFile(const char* path, uint8_t* data, size_t data_size); + }; +} // MM + +#define FS_CONST_MOUNT_FILE(path, x) MM::FSConstArchiver::addFile(path, (uint8_t*)x, sizeof x); +#define FS_CONST_MOUNT_FILE_S(path, x, size) MM::FSConstArchiver::addFile(path, x, size); + +//#define FS_CONST_MOUNT_FILE_STATIC(path, x) struct __internal_fs_const_struct_t { __internal_fs_const_struct_t(void) { FS_CONST_MOUNT_FILE(path, x) } }; static __internal_fs_const_struct_t __internal_fs_const_struct {}; + diff --git a/framework/filesystem/src/mm/path_utils.hpp b/framework/filesystem/src/mm/path_utils.hpp new file mode 100644 index 0000000..a6f2140 --- /dev/null +++ b/framework/filesystem/src/mm/path_utils.hpp @@ -0,0 +1,49 @@ +#pragma once + +// TODO: test + +#include + +// TODO: make proper namespace +namespace MM { + +// removes './'s and resolves '../' +// returns false if too many .. +inline bool path_shorten(std::string& path) { + auto splits = std_utils::split(path, "/"); + std::vector new_splits; + + for (size_t i = 0; i < splits.size(); i++) { + if (splits[i] == "..") { + if (new_splits.empty()) + return false; + + new_splits.pop_back(); + } else if (splits[i] == ".") { + // skip + } else { + new_splits.emplace_back(splits[i]); + } + } + + std::string new_path; + for (auto& s : new_splits) { + new_path += "/"; + new_path += s; + } + path = new_path; + + return true; +} + +// remove the file name from the path +inline std::string base_path(std::string_view path) { + auto pos = path.find_last_of("/"); + if (pos == path.npos) + return std::string(path); // TODO: make sure there is a '/' + + return std::string(path.substr(0, pos+1)); +} + +} // MM + diff --git a/framework/filesystem/src/mm/services/filesystem.cpp b/framework/filesystem/src/mm/services/filesystem.cpp new file mode 100644 index 0000000..968820b --- /dev/null +++ b/framework/filesystem/src/mm/services/filesystem.cpp @@ -0,0 +1,354 @@ +#include "./filesystem.hpp" + +#include "../fs_const_archiver.hpp" + +#include + +#include + +#ifndef MM_HEADLESS + #include +#endif + +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "Filesystem", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("Filesystem", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "Filesystem", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "Filesystem", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("Filesystem", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("Filesystem", __VA_ARGS__) + +namespace MM::Services { + +bool FilesystemService::enable(Engine&) { + if (PHYSFS_isInit()) { + LOG_ERROR("physfs already initialized!!"); + return false; + } + + if (!PHYSFS_init(_argv0)) { + LOG_ERROR("error initializing physfs: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + return false; + } + +#if !defined(MM_HEADLESS) && !defined(EMSCRIPTEN) + char* pref_path = SDL_GetPrefPath("made_of_jelly", _app_name); +#else + // org only respected on windows + const char* pref_path = PHYSFS_getPrefDir("made_of_jelly", _app_name); // TODO: make this point to the right dir +#endif + if (!pref_path) { + LOG_ERROR("error getting pref path"); + return false; // TODO: defaulting to base path? + } else { + if (!PHYSFS_setWriteDir(pref_path)) { + LOG_ERROR("error setting physfs write dir: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + //return false; + } + + //LOGFS(std::string("write dir set to: ") + PHYSFS_getWriteDir()); + LOG_INFO("write dir set to: {}", PHYSFS_getWriteDir()); + + if (!PHYSFS_mount(pref_path, NULL, 0)) { + LOG_ERROR("mounting physfs write dir: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + //return false; + } + +#if !defined(MM_HEADLESS) && !defined(EMSCRIPTEN) + SDL_free(pref_path); +#endif + } + + // add base path to search tree + if (_try_mount_base) { + if (!PHYSFS_mount(PHYSFS_getBaseDir(), NULL, 0)) { + LOG_ERROR("mounting physfs base dir: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } + } + + // mount self (exec) :P + if (_try_mount_self) { + if (PHYSFS_mount(_argv0, "/", 1)) { + LOG_INFO("mounted self!!"); + } + } + + // const archiver + if (!PHYSFS_registerArchiver(FSConstArchiver::getArchiverStruct())) { + LOG_ERROR("error registering const archiver: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } + + // fake mount, to add mount const archiver + if (!PHYSFS_mountMemory((void*)1, 1, nullptr, "main.mem", "/", 1)) { // should trigger + LOG_ERROR("error mounting const archiver: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } + + for (const auto&[archive, mount_point, append] : _try_mount_list) { + if (!PHYSFS_mount(archive.c_str(), mount_point.c_str(), append?1:0)) { + LOG_ERROR("mounting physfs userdefined archive: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } + } + + return true; +} + +void FilesystemService::disable(Engine&) { + if (!PHYSFS_deinit()) { + LOG_ERROR("error deinitializing physfs: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } +} + +FilesystemService::FilesystemService(void) { + MM::Logger::initSectionLogger("Filesystem"); +} + +FilesystemService::FilesystemService( + const char* argv0, + const char* app_name, + const bool try_mount_self, + const bool try_mount_base, + const std::vector>& try_mount_list +) : _argv0(argv0), _app_name(app_name), _try_mount_self(try_mount_self), _try_mount_base(try_mount_base) { + MM::Logger::initSectionLogger("Filesystem"); + + //_try_mount_list = try_mount_list; + for (const auto& it : try_mount_list) { + _try_mount_list.emplace_back(it); + } +} + +FilesystemService::~FilesystemService(void) { +} + +bool FilesystemService::exists(const char* filepath) const { + return PHYSFS_exists(filepath); +} + +bool FilesystemService::isFile(const char* filepath) const { + if (!PHYSFS_exists(filepath)) { + return false; + } + + PHYSFS_Stat stat; + + if (PHYSFS_stat(filepath, &stat) == 0) { + return false; + } + + // TODO: y other tho + return stat.filetype == PHYSFS_FileType::PHYSFS_FILETYPE_REGULAR || stat.filetype == PHYSFS_FileType::PHYSFS_FILETYPE_OTHER; +} + +bool FilesystemService::isDir(const char* filepath) const { + if (!PHYSFS_exists(filepath)) { + return false; + } + + PHYSFS_Stat stat; + + if (PHYSFS_stat(filepath, &stat) == 0) { + return false; + } + + return stat.filetype == PHYSFS_FileType::PHYSFS_FILETYPE_DIRECTORY; +} + +void FilesystemService::forEachIn(const char* filepath, std::function fn) const { + char** rc = PHYSFS_enumerateFiles(filepath); + for (char** i = rc; *i != NULL; i++) { + if (!fn(*i)) { + break; + } + } + PHYSFS_freeList(rc); +} + +FilesystemService::fs_file_t FilesystemService::open(const char* filepath, FilesystemService::FOPEN_t t) const { + if (!filepath) { + return nullptr; + } + + PHYSFS_File* phys_file = nullptr; + + switch (t) { + case FOPEN_t::READ: + LOG_TRACE("opening '{}' in read mode", filepath); + phys_file = PHYSFS_openRead(filepath); + break; + case FOPEN_t::WRITE: + LOG_TRACE("opening '{}' in write mode", filepath); + if (std::string_view(filepath).find('/') != std::string_view::npos) {// bc dirs might not exist + auto tmp_dir_path = MM::base_path(filepath); + PHYSFS_mkdir(tmp_dir_path.c_str()); + } + phys_file = PHYSFS_openWrite(filepath); + break; + case FOPEN_t::APPEND: + LOG_TRACE("opening '{}' in append mode", filepath); + if (std::string_view(filepath).find('/') != std::string_view::npos) {// bc dirs might not exist + auto tmp_dir_path = MM::base_path(filepath); + PHYSFS_mkdir(tmp_dir_path.c_str()); + } + phys_file = PHYSFS_openAppend(filepath); + break; + default: + LOG_ERROR("invalid fopen mode {} for '{}'", t, filepath); + return nullptr; + } + + if (!phys_file) { + LOG_ERROR("error while opening '{}' : {}", filepath, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } + + return phys_file; +} + +bool FilesystemService::close(fs_file_t file) const { + if (!PHYSFS_close(file)) { + //LOGFS_physfs("error while closing file "); + // ignore. windoof for some reason allways fails with "permission denied" (for closing read handles) + LOG_TRACE("error while closing file : {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + + return false; + } + + return true; +} + +bool FilesystemService::eof(fs_file_t file) const { + return PHYSFS_eof(file); +} + +int64_t FilesystemService::tell(fs_file_t file) const { + int64_t ret = PHYSFS_tell(file); + if (ret < 0) { + LOG_ERROR("error while determining file position (tell()) {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } + + return ret; +} + +bool FilesystemService::seek(fs_file_t file, uint64_t pos) const { + if (!PHYSFS_seek(file, pos)) { + LOG_ERROR("error while seeking in file: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + return false; + } + + return true; +} + +int64_t FilesystemService::read(fs_file_t file, void* buffer, uint64_t size) const { + auto r = PHYSFS_readBytes(file, buffer, size); + + if (r < 0) { + LOG_ERROR("error while reading file: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } + + return r; +} + +uint64_t FilesystemService::write(fs_file_t file, const void* buffer, uint64_t size) const { + uint64_t r = static_cast(PHYSFS_writeBytes(file, buffer, size)); + + // TODO: handle partial writes differently + if (r != size) { + LOG_ERROR("error while writing file: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } + + return r; +} + +void FilesystemService::flush(fs_file_t file) const { + if (!PHYSFS_flush(file)) { + LOG_ERROR("error flushing ..?: {}", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())); + } +} + +int64_t FilesystemService::length(fs_file_t file) const { + return PHYSFS_fileLength(file); +} + +int64_t FilesystemService::readString(fs_file_t file, std::string& string) const { + char buffer[256] = {}; + + int64_t read_bytes = 0; + + while (int64_t r = read(file, buffer, 256)) { + if (r < 0) { + return r; + } + + string.append(buffer, static_cast(r)); + read_bytes += r; + } + + return read_bytes; +} + +nlohmann::json FilesystemService::readJson(fs_file_t file) const { + if (!file) + return {}; + + seek(file, 0); + + std::string buffer; + readString(file, buffer); + + return nlohmann::json::parse(buffer); +} + +nlohmann::json FilesystemService::readJson(const char* filepath) const { + if (!exists(filepath)) { + return {}; + } + + auto h = open(filepath, READ); + auto r = readJson(h); + close(h); + return r; +} + +bool FilesystemService::writeJson(fs_file_t file, nlohmann::json& j, const int indent, const char indent_char) const { + if (!file) { + LOG_ERROR("writing json to invalid file"); + return false; + } + + auto s = j.dump(indent, indent_char); + + auto r = write(file, s.c_str(), s.size()); + + return r == s.size(); +} + +bool FilesystemService::writeJson(const char* filepath, nlohmann::json& j, const int indent, const char indent_char) const { + auto h = open(filepath, WRITE); + auto r = writeJson(h, j, indent, indent_char); + close(h); + return r; +} + +bool FilesystemService::writeJson(fs_file_t file, nlohmann::ordered_json& j, const int indent, const char indent_char) const { + if (!file) { + LOG_ERROR("writing json to invalid file"); + return false; + } + + auto s = j.dump(indent, indent_char); + + auto r = write(file, s.c_str(), s.size()); + + return r == s.size(); +} + +bool FilesystemService::writeJson(const char* filepath, nlohmann::ordered_json& j, const int indent, const char indent_char) const { + auto h = open(filepath, WRITE); + auto r = writeJson(h, j, indent, indent_char); + close(h); + return r; +} + +} // MM::Services + diff --git a/framework/filesystem/src/mm/services/filesystem.hpp b/framework/filesystem/src/mm/services/filesystem.hpp new file mode 100644 index 0000000..486e086 --- /dev/null +++ b/framework/filesystem/src/mm/services/filesystem.hpp @@ -0,0 +1,89 @@ +#pragma once + +#include +#include + +//#include +//fwd +typedef struct PHYSFS_File PHYSFS_File; +typedef struct PHYSFS_Stat PHYSFS_Stat; + +#include + +#include + +namespace MM::Services { + +class FilesystemService : public Service { + public: + using fs_file_t = PHYSFS_File*; + + + public: + bool enable(Engine&) override; + void disable(Engine&) override; + + const char* name(void) override { return "Filesystem"; } + + private: + // setup data + const char* _argv0 = nullptr; + const char* _app_name = "default_app"; + const bool _try_mount_self = true; + const bool _try_mount_base = true; + // TODO: write dir + std::vector> _try_mount_list; + + public: + FilesystemService(void); + FilesystemService( + const char* argv0 = nullptr, + const char* app_name = "default_app", + const bool try_mount_self = true, + const bool try_mount_base = true, + const std::vector>& try_mount_list = {} + ); + + ~FilesystemService(void); + + bool exists(const char* filepath) const; + bool isFile(const char* filepath) const; + bool isDir(const char* filepath) const; + + void forEachIn(const char* filepath, std::function fn) const; + + enum FOPEN_t { READ, WRITE, APPEND }; + // opens file, expects path and mode + fs_file_t open(const char* filepath, FOPEN_t = READ) const; + + bool close(fs_file_t file) const; + bool eof(fs_file_t file) const; + int64_t tell(fs_file_t file) const; + bool seek(fs_file_t file, uint64_t pos) const; + + // read from file into buffer max size bytes, returns read bytes + int64_t read(fs_file_t file, void* buffer, uint64_t size) const; + + // writes from buffer to file, returns written bytes + uint64_t write(fs_file_t file, const void* buffer, uint64_t size) const; + + void flush(fs_file_t file) const; + + int64_t length(fs_file_t file) const; + + // reads in (remaining) file to string, and returns read bytes + int64_t readString(fs_file_t file, std::string& string) const; + + // json + nlohmann::json readJson(fs_file_t file) const; + nlohmann::json readJson(const char* filepath) const; + + bool writeJson(fs_file_t file, nlohmann::json& j, const int indent = -1, const char indent_char = ' ') const; + bool writeJson(const char* filepath, nlohmann::json& j, const int indent = -1, const char indent_char = ' ') const; + + bool writeJson(fs_file_t file, nlohmann::ordered_json& j, const int indent = -1, const char indent_char = ' ') const; + bool writeJson(const char* filepath, nlohmann::ordered_json& j, const int indent = -1, const char indent_char = ' ') const; +}; + +} // namespace MM::Services + diff --git a/framework/filesystem/test/CMakeLists.txt b/framework/filesystem/test/CMakeLists.txt new file mode 100644 index 0000000..97b8c49 --- /dev/null +++ b/framework/filesystem/test/CMakeLists.txt @@ -0,0 +1,14 @@ +add_executable(filesystem_service_test + filesystem_tests.cpp + res/test.zip.h +) + +target_include_directories(filesystem_service_test PRIVATE ".") + +target_link_libraries(filesystem_service_test + filesystem_service + gtest_main +) + +add_test(NAME filesystem_service_test COMMAND filesystem_service_test) + diff --git a/framework/filesystem/test/filesystem_tests.cpp b/framework/filesystem/test/filesystem_tests.cpp new file mode 100644 index 0000000..135b38e --- /dev/null +++ b/framework/filesystem/test/filesystem_tests.cpp @@ -0,0 +1,307 @@ +#include + +#include +//#include +#include + +#include + +#include + +#include "res/test.zip.h" // zip in memory + +char* argv0; // HACK + +TEST(fs_service_system, general) { + MM::Engine engine; + + engine.addService(argv0, "filesystem_Test"); + ASSERT_TRUE(engine.enableService()); + + auto* fs_ss_ptr = engine.tryService(); + ASSERT_NE(fs_ss_ptr, nullptr); + + ASSERT_FALSE(fs_ss_ptr->open("i_do_not_exist.txt")); + + ASSERT_FALSE(fs_ss_ptr->exists("test_file.txt")); + + ASSERT_TRUE(PHYSFS_mountMemory(test_zip, test_zip_len, NULL, "", NULL, 0)); + + ASSERT_TRUE(fs_ss_ptr->exists("test_file.txt")); + + { + MM::Services::FilesystemService::fs_file_t file = fs_ss_ptr->open("test_file.txt", MM::Services::FilesystemService::FOPEN_t::READ); + ASSERT_TRUE(file) << "File opened"; + + ASSERT_FALSE(fs_ss_ptr->eof(file)); + + ASSERT_EQ(fs_ss_ptr->tell(file), 0) << "position at start of file"; + + + char buffer[9] = {0}; + ASSERT_EQ(fs_ss_ptr->read(file, buffer, 8), 8) << "file length == 8"; + ASSERT_STREQ(buffer, "test :D\n"); + + ASSERT_TRUE(fs_ss_ptr->eof(file)); + + ASSERT_EQ(fs_ss_ptr->tell(file), 8) << "position at end of file, in this case 8"; + + + ASSERT_TRUE(fs_ss_ptr->close(file)); + } + + engine.disableService(); +} + +TEST(fs_service_system, fopen_eof_tell) { + MM::Engine engine; + + engine.addService(argv0, "filesystem_Test"); + ASSERT_TRUE(engine.enableService()); + + auto* fs_ss_ptr = engine.tryService(); + ASSERT_NE(fs_ss_ptr, nullptr); + + ASSERT_TRUE(PHYSFS_mountMemory(test_zip, test_zip_len, NULL, "", NULL, 0)); + + MM::Services::FilesystemService::fs_file_t file = fs_ss_ptr->open("test_file.txt", MM::Services::FilesystemService::FOPEN_t::READ); + ASSERT_TRUE(file) << "File opened"; + + auto& fs = *fs_ss_ptr; + + ASSERT_FALSE(fs.eof(file)); + ASSERT_EQ(fs.tell(file), 0) << "position at start of file"; + + ASSERT_TRUE(fs.seek(file, 3)); + + ASSERT_FALSE(fs.eof(file)); + ASSERT_EQ(fs.tell(file), 3); + + ASSERT_FALSE(fs.seek(file, 10)) << "seek past end"; + + ASSERT_FALSE(fs.eof(file)); + ASSERT_EQ(fs.tell(file), 3); + + ASSERT_TRUE(fs.close(file)); + + engine.disableService(); +} + +TEST(fs_service_system, fopen_w_a_write) { + MM::Engine engine; + + engine.addService(argv0, "filesystem_Test"); + ASSERT_TRUE(engine.enableService()); + + auto* fs_ss_ptr = engine.tryService(); + ASSERT_NE(fs_ss_ptr, nullptr); + + auto& fs = *fs_ss_ptr; + + const char* filename = "test2_write_file.txt"; + + // write + { + if (fs.exists(filename)) { + PHYSFS_delete(filename); // TODO: add wrapper + std::cout << "######deleted existing file" << std::endl; + } + + auto file = fs.open(filename, MM::Services::FilesystemService::FOPEN_t::WRITE); + ASSERT_TRUE(file) << "File opened"; + + //ASSERT_TRUE(MM::fs_service_system::eof(file)); actually false + ASSERT_EQ(fs.tell(file), 0) << "position at start of file"; + + ASSERT_TRUE(fs.seek(file, 10)) << "seek past end"; + ASSERT_EQ(fs.tell(file), 10); + + const char data[4] {'a', 's', 'd', 'f'}; + + ASSERT_EQ(fs.write(file, data, 4), 4); + ASSERT_EQ(fs.tell(file), 14); + fs.flush(file); + + ASSERT_TRUE(fs.close(file)); + } + + // append + { + auto file = fs.open(filename, MM::Services::FilesystemService::FOPEN_t::APPEND); + ASSERT_TRUE(file) << "File opened"; + + //ASSERT_TRUE(MM::fs_service_system::eof(file)); actually false + ASSERT_EQ(fs.tell(file), 14) << "position at start of file"; + + const char data[4] {'j', 'k', 'l', 'o'}; + + ASSERT_EQ(fs.write(file, data, 4), 4); + ASSERT_EQ(fs.tell(file), 18); + fs.flush(file); + + ASSERT_TRUE(fs.close(file)); + } + + // read + { + auto file = fs.open(filename, MM::Services::FilesystemService::FOPEN_t::READ); + ASSERT_TRUE(file) << "File opened"; + + ASSERT_FALSE(fs.eof(file)); + ASSERT_EQ(fs.tell(file), 0) << "position at start of file"; + + // fail + { + const char data[4] {'j', 'k', 'l', 'o'}; + + ASSERT_FALSE(fs.write(file, data, 4) == 4); + } + + ASSERT_TRUE(fs.seek(file, 10)); + + char buffer[9] = {0}; + ASSERT_EQ(fs.read(file, buffer, 8), 8); + ASSERT_STREQ(buffer, "asdfjklo"); + + ASSERT_TRUE(fs.eof(file)); + + ASSERT_TRUE(fs.close(file)); + } + + engine.disableService(); +} + +// TODO: readString + +// TODO: fwrite ? + +TEST(fs_service_system, read_json) { + MM::Engine engine; + + engine.addService(argv0, "filesystem_Test"); + ASSERT_TRUE(engine.enableService()); + + auto* fs_ss_ptr = engine.tryService(); + ASSERT_NE(fs_ss_ptr, nullptr); + + auto& fs = *fs_ss_ptr; + + { + auto j = fs.readJson("does_not_exist.json"); + ASSERT_TRUE(j.empty()); + } + + ASSERT_TRUE(PHYSFS_mountMemory(test_zip, test_zip_len, NULL, "", NULL, 0)); + + { + auto j1 = fs.readJson("wall_concrete-1_se_0.2.json"); + //SPDLOG_INFO("dump: \n{}", j1.dump(4)); + ASSERT_FALSE(j1.empty()); + ASSERT_EQ(j1["type"], "tileset"); + } + + engine.disableService(); +} + +TEST(fs_service_system, read_const_json) { + MM::Engine engine; + + engine.addService(argv0, "filesystem_Test"); + ASSERT_TRUE(engine.enableService()); + + auto* fs_ss_ptr = engine.tryService(); + ASSERT_NE(fs_ss_ptr, nullptr); + + auto& fs = *fs_ss_ptr; + + { + auto j = fs.readJson("does_not_exist.json"); + ASSERT_TRUE(j.empty()); + } + + FS_CONST_MOUNT_FILE("json/file1.json", +R"({ + "answer": { + "everything": 42 + }, + "happy": true, + "list": [ + 1, + 0, + 2 + ], + "name": "Niels", + "nothing": null, + "object": { + "currency": "USD", + "value": 42.99 + }, + "pi": 3.141 +})") + + FS_CONST_MOUNT_FILE("/json/file2.json", +R"({ + "answer": 42 +})") + + { + auto j1 = fs.readJson("/json/file1.json"); + //std::cout << "dump: \n" << std::setw(4) << j1 << std::endl; + ASSERT_FALSE(j1.empty()); + ASSERT_EQ(j1["happy"], true); + } + + { + auto j2 = fs.readJson("json/file2.json"); + //std::cout << "dump: \n" << std::setw(4) << j2 << std::endl; + ASSERT_FALSE(j2.empty()); + ASSERT_EQ(j2["answer"], 42); + } + + engine.disableService(); +} + +TEST(fs_service_system, write_json) { + MM::Engine engine; + + engine.addService(argv0, "filesystem_Test"); + ASSERT_TRUE(engine.enableService()); + + auto* fs_ss_ptr = engine.tryService(); + ASSERT_NE(fs_ss_ptr, nullptr); + + auto& fs = *fs_ss_ptr; + + //ASSERT_TRUE(PHYSFS_mountMemory(test_zip, test_zip_len, NULL, "", NULL, 0)); + + // taken from json README.md + nlohmann::json j = { + {"pi", 3.141}, + {"happy", true}, + {"name", "Niels"}, + {"nothing", nullptr}, + {"answer", { + {"everything", 42} + }}, + {"list", {1, 0, 2}}, + {"object", { + {"currency", "USD"}, + {"value", 42.99} + }} + }; + + ASSERT_TRUE(fs.writeJson("write_test.json", j, 4)); + + engine.disableService(); +} + +//FS_CONST_MOUNT_FILE_STATIC("static_test_file.txt", +//R"(test text.)") + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} + diff --git a/framework/filesystem/test/res/test.zip b/framework/filesystem/test/res/test.zip new file mode 100644 index 0000000..b925947 Binary files /dev/null and b/framework/filesystem/test/res/test.zip differ diff --git a/framework/filesystem/test/res/test.zip.h b/framework/filesystem/test/res/test.zip.h new file mode 100644 index 0000000..88c00d9 --- /dev/null +++ b/framework/filesystem/test/res/test.zip.h @@ -0,0 +1,64 @@ +unsigned char test_zip[] = { + 0x50, 0x4b, 0x03, 0x04, 0x14, 0x00, 0x08, 0x00, 0x08, 0x00, 0xfa, 0x64, + 0x42, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, + 0x00, 0x00, 0x0d, 0x00, 0x20, 0x00, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x66, + 0x69, 0x6c, 0x65, 0x2e, 0x74, 0x78, 0x74, 0x55, 0x54, 0x0d, 0x00, 0x07, + 0x89, 0x81, 0x55, 0x5c, 0x20, 0x0b, 0x87, 0x5c, 0x89, 0x81, 0x55, 0x5c, + 0x75, 0x78, 0x0b, 0x00, 0x01, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x04, 0xe8, + 0x03, 0x00, 0x00, 0x2b, 0x49, 0x2d, 0x2e, 0x51, 0xb0, 0x72, 0xe1, 0x02, + 0x00, 0x50, 0x4b, 0x07, 0x08, 0x46, 0xb6, 0x5c, 0xe8, 0x0a, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x00, 0x00, 0x50, 0x4b, 0x03, 0x04, 0x14, 0x00, 0x08, + 0x00, 0x08, 0x00, 0xe1, 0xbc, 0x7e, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xb8, 0x05, 0x00, 0x00, 0x1b, 0x00, 0x20, 0x00, 0x77, + 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x63, 0x72, 0x65, 0x74, 0x65, + 0x2d, 0x31, 0x5f, 0x73, 0x65, 0x5f, 0x30, 0x2e, 0x32, 0x2e, 0x6a, 0x73, + 0x6f, 0x6e, 0x55, 0x54, 0x0d, 0x00, 0x07, 0x06, 0xf0, 0x9f, 0x5c, 0x06, + 0xf0, 0x9f, 0x5c, 0x06, 0xf0, 0x9f, 0x5c, 0x75, 0x78, 0x0b, 0x00, 0x01, + 0x04, 0xe8, 0x03, 0x00, 0x00, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x95, 0x94, + 0x61, 0x8b, 0x84, 0x20, 0x10, 0x86, 0xbf, 0xf7, 0x2b, 0xc2, 0xcf, 0xb5, + 0xa4, 0xd6, 0xc2, 0xf5, 0x57, 0x8e, 0x25, 0xa4, 0xa4, 0x84, 0xb2, 0x48, + 0xf7, 0x96, 0x63, 0xd9, 0xff, 0x7e, 0x93, 0x9d, 0x1e, 0x0b, 0x67, 0x69, + 0x04, 0xc9, 0x8c, 0x3e, 0xbe, 0x33, 0x0d, 0xef, 0x33, 0x45, 0xed, 0x3c, + 0xde, 0x27, 0xa9, 0x50, 0x8d, 0x71, 0x96, 0xa4, 0x48, 0x4c, 0xac, 0xe7, + 0xa8, 0x46, 0x0f, 0x36, 0x8e, 0x4d, 0x3b, 0xcb, 0x76, 0xe5, 0x9a, 0xe7, + 0xb8, 0x51, 0xbc, 0x29, 0x2e, 0xe4, 0xb2, 0xc8, 0x1e, 0xb9, 0x6d, 0x03, + 0x17, 0xfd, 0xa0, 0xe1, 0xe4, 0xb5, 0x70, 0xb1, 0x87, 0xe8, 0xf4, 0x80, + 0x6a, 0x5a, 0x91, 0x2d, 0x34, 0xb1, 0xb5, 0x17, 0x12, 0xd5, 0x26, 0x2f, + 0xd9, 0xe4, 0x27, 0x1b, 0xaa, 0x5a, 0x58, 0x2b, 0xe0, 0x86, 0x7d, 0xbf, + 0xe6, 0xeb, 0xca, 0xc4, 0x26, 0xed, 0x33, 0x49, 0x7f, 0x9f, 0xa7, 0x5b, + 0x39, 0x9e, 0x9a, 0x47, 0xd1, 0x6d, 0xc7, 0x5d, 0x42, 0x8b, 0x11, 0x12, + 0xb4, 0x74, 0xa1, 0xd7, 0xcd, 0xf0, 0x20, 0xdc, 0xce, 0x77, 0x09, 0x8a, + 0xab, 0xca, 0x06, 0xba, 0x2f, 0xbe, 0x2a, 0x31, 0x83, 0x46, 0x84, 0xa1, + 0x3e, 0x8a, 0x6c, 0xc2, 0x16, 0x47, 0x89, 0x8d, 0x78, 0x85, 0xc0, 0xf5, + 0x35, 0x7e, 0x13, 0xb0, 0x2b, 0x87, 0xfd, 0x45, 0x96, 0xee, 0x6f, 0x8e, + 0x6f, 0x7f, 0x72, 0xb2, 0xd4, 0xcb, 0x21, 0x47, 0x9c, 0x1c, 0xc3, 0x27, + 0x8c, 0x83, 0xfd, 0x20, 0x43, 0x09, 0x07, 0xd1, 0xff, 0x41, 0x96, 0x12, + 0x0e, 0xfa, 0x38, 0x03, 0x05, 0xf7, 0xa8, 0x38, 0xac, 0x2d, 0xa2, 0x4b, + 0xc4, 0xd3, 0x25, 0x8b, 0x89, 0x41, 0x1d, 0xf4, 0x29, 0xae, 0xe3, 0xa4, + 0x3c, 0x25, 0x85, 0x76, 0x8a, 0x1e, 0xff, 0xbc, 0x88, 0xf2, 0xa8, 0x47, + 0x54, 0x11, 0x39, 0x05, 0xb4, 0x3a, 0x9b, 0xcb, 0xd0, 0xda, 0xca, 0x83, + 0x36, 0xb9, 0x49, 0x08, 0x44, 0xf9, 0x45, 0xc5, 0x92, 0xae, 0xa7, 0xa3, + 0xf9, 0x86, 0x72, 0xc6, 0x64, 0x7d, 0x73, 0x77, 0x9b, 0xef, 0x65, 0x73, + 0x36, 0x63, 0x3a, 0x5c, 0x1b, 0x4b, 0x72, 0x36, 0x05, 0x2e, 0x95, 0xbc, + 0x7e, 0x00, 0x50, 0x4b, 0x07, 0x08, 0x20, 0xba, 0x28, 0x91, 0x30, 0x01, + 0x00, 0x00, 0xb8, 0x05, 0x00, 0x00, 0x50, 0x4b, 0x01, 0x02, 0x14, 0x03, + 0x14, 0x00, 0x08, 0x00, 0x08, 0x00, 0xfa, 0x64, 0x42, 0x4e, 0x46, 0xb6, + 0x5c, 0xe8, 0x0a, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, + 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x81, + 0x00, 0x00, 0x00, 0x00, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x66, 0x69, 0x6c, + 0x65, 0x2e, 0x74, 0x78, 0x74, 0x55, 0x54, 0x0d, 0x00, 0x07, 0x89, 0x81, + 0x55, 0x5c, 0x20, 0x0b, 0x87, 0x5c, 0x89, 0x81, 0x55, 0x5c, 0x75, 0x78, + 0x0b, 0x00, 0x01, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x04, 0xe8, 0x03, 0x00, + 0x00, 0x50, 0x4b, 0x01, 0x02, 0x14, 0x03, 0x14, 0x00, 0x08, 0x00, 0x08, + 0x00, 0xe1, 0xbc, 0x7e, 0x4e, 0x20, 0xba, 0x28, 0x91, 0x30, 0x01, 0x00, + 0x00, 0xb8, 0x05, 0x00, 0x00, 0x1b, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x81, 0x65, 0x00, 0x00, 0x00, 0x77, + 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x63, 0x72, 0x65, 0x74, 0x65, + 0x2d, 0x31, 0x5f, 0x73, 0x65, 0x5f, 0x30, 0x2e, 0x32, 0x2e, 0x6a, 0x73, + 0x6f, 0x6e, 0x55, 0x54, 0x0d, 0x00, 0x07, 0x06, 0xf0, 0x9f, 0x5c, 0x06, + 0xf0, 0x9f, 0x5c, 0x06, 0xf0, 0x9f, 0x5c, 0x75, 0x78, 0x0b, 0x00, 0x01, + 0x04, 0xe8, 0x03, 0x00, 0x00, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x50, 0x4b, + 0x05, 0x06, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0xc4, 0x00, + 0x00, 0x00, 0xfe, 0x01, 0x00, 0x00, 0x00, 0x00 +}; +unsigned int test_zip_len = 728; diff --git a/framework/filesystem/test/res/test_file.txt b/framework/filesystem/test/res/test_file.txt new file mode 100644 index 0000000..69e0598 --- /dev/null +++ b/framework/filesystem/test/res/test_file.txt @@ -0,0 +1 @@ +test :D diff --git a/framework/filesystem/test/res/wall_concrete-1_se_0.2.json b/framework/filesystem/test/res/wall_concrete-1_se_0.2.json new file mode 100644 index 0000000..67bbd69 --- /dev/null +++ b/framework/filesystem/test/res/wall_concrete-1_se_0.2.json @@ -0,0 +1,80 @@ +{ "columns":11, + "image":"wall_concrete-1_se_0.2.png", + "imageheight":160, + "imagewidth":352, + "margin":0, + "name":"wall_concrete-1_se_0.2", + "spacing":0, + "terrains":[ + { + "name":"solid", + "tile":34 + }], + "tilecount":55, + "tiledversion":"1.2.3", + "tileheight":32, + "tiles":[ + { + "id":1, + "terrain":[0, 0, 0, -1] + }, + { + "id":2, + "terrain":[0, 0, -1, 0] + }, + { + "id":12, + "terrain":[0, -1, 0, 0] + }, + { + "id":13, + "terrain":[-1, 0, 0, 0] + }, + { + "id":19, + "terrain":[-1, 0, 0, -1] + }, + { + "id":20, + "terrain":[0, -1, -1, 0] + }, + { + "id":22, + "terrain":[-1, -1, -1, 0] + }, + { + "id":23, + "terrain":[-1, -1, 0, 0] + }, + { + "id":24, + "terrain":[-1, -1, 0, -1] + }, + { + "id":33, + "terrain":[-1, 0, -1, 0] + }, + { + "id":34, + "terrain":[0, 0, 0, 0] + }, + { + "id":35, + "terrain":[0, -1, 0, -1] + }, + { + "id":44, + "terrain":[-1, 0, -1, -1] + }, + { + "id":45, + "terrain":[0, 0, -1, -1] + }, + { + "id":46, + "terrain":[0, -1, -1, -1] + }], + "tilewidth":32, + "type":"tileset", + "version":1.2 +} \ No newline at end of file diff --git a/framework/imgui/CMakeLists.txt b/framework/imgui/CMakeLists.txt new file mode 100644 index 0000000..c2a7a3e --- /dev/null +++ b/framework/imgui/CMakeLists.txt @@ -0,0 +1,134 @@ +cmake_minimum_required(VERSION 3.1 FATAL_ERROR) + +project(imgui_lib CXX) + +################## imgui_service + +add_library(imgui_service + ./src/mm/services/imgui_s.hpp + ./src/mm/services/imgui_s.cpp +) + +target_include_directories(imgui_service PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") +target_link_libraries(imgui_service + engine + imgui_render_task +) +################## imgui_widgets + +add_library(imgui_widgets + ./src/mm/imgui/widgets/knob.hpp + ./src/mm/imgui/widgets/plot_radar.hpp + ./src/mm/imgui/widgets/camera.hpp + ./src/mm/imgui/widgets/entity.hpp + ./src/mm/imgui/widgets/filesystem.hpp + ./src/mm/imgui/widgets/spritesheet.hpp + ./src/mm/imgui/widgets/texture.hpp + ./src/mm/imgui/widgets/texture_resource_manager.hpp + + ./src/mm/imgui/widgets/auto_wrap.hpp + + ./src/mm/imgui/widgets/components/name.hpp + ./src/mm/imgui/widgets/components/transform2d.hpp + ./src/mm/imgui/widgets/components/transform3d.hpp + ./src/mm/imgui/widgets/components/velocity2d.hpp + ./src/mm/imgui/widgets/components/view_dir2d.hpp + ./src/mm/imgui/widgets/components/view_dir3d.hpp + ./src/mm/imgui/widgets/components/color.hpp + ./src/mm/imgui/widgets/components/texture.hpp + +############ + + ./src/mm/imgui/widgets/knob.cpp + ./src/mm/imgui/widgets/plot_radar.cpp + ./src/mm/imgui/widgets/camera.cpp + ./src/mm/imgui/widgets/entity.cpp + ./src/mm/imgui/widgets/filesystem.cpp + ./src/mm/imgui/widgets/spritesheet.cpp + ./src/mm/imgui/widgets/texture.cpp + ./src/mm/imgui/widgets/texture_resource_manager.cpp + + ./src/mm/imgui/widgets/components/name.cpp + ./src/mm/imgui/widgets/components/transform2d.cpp + ./src/mm/imgui/widgets/components/transform3d.cpp + ./src/mm/imgui/widgets/components/velocity2d.cpp + ./src/mm/imgui/widgets/components/view_dir2d.cpp + ./src/mm/imgui/widgets/components/view_dir3d.cpp + ./src/mm/imgui/widgets/components/color.cpp + ./src/mm/imgui/widgets/components/texture.cpp +) + +target_include_directories(imgui_widgets PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") +target_link_libraries(imgui_widgets + opengl_renderer_s + imgui_render_task + engine + + common_components +) + +################## imgui_tools + +add_library(imgui_tools + ./src/mm/imgui/imgui_entt_entity_editor.hpp + ./src/mm/imgui/fps_overlay.hpp + ./src/mm/imgui/file_text_editor.hpp + ./src/mm/imgui/file_shader_editor.hpp + + ./src/mm/imgui/fps_overlay.cpp + ./src/mm/imgui/file_text_editor.cpp + ./src/mm/imgui/file_shader_editor.cpp + + ./src/mm/services/scene_tools.hpp + ./src/mm/services/scene_tools.cpp +) + +target_include_directories(imgui_tools PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") +target_link_libraries(imgui_tools + imgui_render_task + imgui_widgets + imgui_color_text_edit +) + +################## imgui_sound + +add_library(imgui_sound + ./src/mm/imgui/sound_info.hpp + ./src/mm/imgui/sound_pref.hpp + + ./src/mm/imgui/widgets/soloud.hpp + + ./src/mm/imgui/sound_info.cpp + ./src/mm/imgui/sound_pref.cpp + + # soloud.hpp imps: + ./src/mm/imgui/widgets/soloud_sfxr.cpp + ./src/mm/imgui/widgets/soloud_filter.cpp +) + +target_include_directories(imgui_sound PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") +target_link_libraries(imgui_sound + imgui_render_task + imgui_widgets + sound_service +) + +################## imgui_tilemap + +add_library(imgui_tilemap + ./src/mm/imgui/widgets/components/tilemap_renderable.hpp + + ./src/mm/imgui/widgets/components/tilemap_renderable.cpp +) + +target_include_directories(imgui_tilemap PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") +target_link_libraries(imgui_tilemap + imgui_render_task + imgui_widgets + tilemap +) + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/imgui/res/ionicons/LICENSE b/framework/imgui/res/ionicons/LICENSE new file mode 100644 index 0000000..6be4c3e --- /dev/null +++ b/framework/imgui/res/ionicons/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015-present Ionic (http://ionic.io/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/framework/imgui/res/ionicons/ionicons.ttf b/framework/imgui/res/ionicons/ionicons.ttf new file mode 100644 index 0000000..180ce51 Binary files /dev/null and b/framework/imgui/res/ionicons/ionicons.ttf differ diff --git a/framework/imgui/res/ionicons/ionicons.ttf.base85.h b/framework/imgui/res/ionicons/ionicons.ttf.base85.h new file mode 100644 index 0000000..034c680 --- /dev/null +++ b/framework/imgui/res/ionicons/ionicons.ttf.base85.h @@ -0,0 +1,1334 @@ +// File: 'ionicons.ttf' (188508 bytes) +// Exported using binary_to_compressed_c.cpp +static const char ionicons_ttf_compressed_data_base85[186185+1] = + "7])#######c[7l@'/###W),##2(V$#Q6>##u@;*>d;BXPV4)=-'OE/1gZn421X&8BM.>>#JqEn/aNV=Br]?AFI(m<-MME/1m2XGHOhF2vYlIfhA'-p/(Jk7DH?DTImh*R/Gvmo%Fa(*H" + "#VO&#:(m<-L(2#6#-0%JvM(RE:@uu#6_u.UV,dNoT$v)m<-X3jq/<_[FH<%+$#-[Y-2X3NP&63JuB2eu;`/00F" + "f.x#lU7Bk0t7YY#Q%S+Hub^_hEJ9O_kwrx+6eFVCcp@_T[rYxkN>:@-u5T;-#YlS.%a8/WKnu8.Hi9I1cDTk1OAZlJt1_V$q-@G;x%Wq)nbRF%V?)&+2bT'ANcUv#CIth#6gPF%0>ue<" + "3P_-#vGqFr2^h3viC6C#Q?;mL3xSfL&GgV-)Z-@',g?[';A@&,.%l&#qu'v#Ef[&,U%f+MGe@(#,+ST%KO9w40@G09&(aKK4XaWcFW>6ec[,'jsa@tSi'v*[S'Wh6S'N=LR'AutQ'8]OQ'->xP'#p@P'i2;O'YjcN'Qml`MiQ`kZNq%s$" + "`h/;/&)###^$v=P'0*>PUnZghXnFJ(CpA6T'?xu#SU)20or%@'X85##,B]Y#u?ec;(>P>#Y>5E4@#U`;;80q9B#e,[0#H9^D6" + "]iLY7Z),##1]C;$4m_V$-iqV$0^x>#)>uu#qYPs-QZ=oL],:'#GEDO'k%xh(nPMO'g`n-)0;Wg(;WU:%:2Cv-f8t1)aFP.)sRg_46f0H2AQx;$98*PA;+@s$e#OX$KT9Z7Wb.M?#" + "uu03wK#BNk3.%2^iLQOQ>#Y/uoL/Q?>#s2G>#LZLfLlhhQ(Y0x<$FmX:.+;@<.ZGM#r7058(a)bV/)a0i)=v.l'o29Z-Fe75/HD]=%S)ZA#T%V%6`bo'lO-gj<=i3p%tK-]O" + "xn7T%t/*U0D:*Z#GHX[#mY%T0:+qvAE%aR8Of10*PZU&$jC,s62TPYTH#/=F&#=qVV7KVYY#h(0586F(B#JTLfL" + "H&n+#/^*o9,gZJ(hwu)47%x[-?DXI)h:+gLq`#k;G>#.2&F-I[_A4w#]Y##nl+#mUYi9/k*u-5YDt." + "+K3jLTOZd3V)ZA#O]4H24tFA#.gB.*UhHdDPB9q%pSl$,6n?C+8Cq#,vIU$&^jv&+Ha>hib;)4'H:ag(;)Vm&xH^#.pToZgM,,##lDG>#IdH['D,P6j?=[$0HafQ(e0dh/-lOF31*Lba" + "9<@&G*?:L,B('?-E'hlAd]F.#)>P>#ohgw1&3]Y#-;(O)*q+=$Mdi-M" + "RBs?#SDvL)m%JD*vbLs-Y@u)4ZWO%&4KUd2*Frs%E);?#$]kS&pe2%&uqFgL=$TfLH:?>#T.%T.U]ZxTw/nDG>#f,,##F8G5(YO-thWG[&49,B+4PA^j)3:sv7as[$9rLE$^Cnl+#" + "p?:m9(b$I6`*j8.]p*P(HjE.3ocaI)9h`788ET;..bmgL4xL#8h2_#$lL*7Mn[H.#)>cY#wAlY#$*A>#-8(O)0?c=$6=CF*'(=h>AZc8/p*UfLxmfF4Wj:9/_5l0rTO3La#%),##:3G>#w2vG20OHg)``wcaf2k3G&Keta5R2V8[w1?%QI'c31SDt.*dow$ZVd8/#OCa#V)ZA#[459'aTZ&8hSFK3u=r]0k;G>#&2>>#fJMfLBQ4D8(1mg)0Zc8/@>4gLkqrU84*lA#EQ;j(x;-T%jahR#%o@-#N65&'*9E<7()$#_%JT%CO/qBvA8YB;Q]BAA;TX/>8?w-Z=[w-DiDt.x,Tv-Ja=L#;;gF4ZiUP/S,m]#Yk[s$D=#<.ohj=.v.H)4%Oi.M_V/W7+^,Zlk0M.8'Y%AX3f.s<`O1FuF2(@W]A,*=GR01c'9&euf_V$u+Q>#PVja*YTgQ&7-o],Vj+#-k#?3'oeG(+fq002" + "(-VMUOn#=0P/(TNT6&:f1v#0x6W$+,2t.1r:[,pHU025#1&,:DnI223BE+nppq%fYVk'JM`l0,Yb.)XBK6&p1V@GIe*X$r3D`+Pqv(+`n&QwuurchR#&tC$#nVH(#<:El2;a:>$v=0588Pi63^T=T%>p]Y#+JcY#>f;m&5@WP&=F2U2v@%%#h=7Z7xxcY##o[Yi9%S0wg9B2O'B7%<$IZlf(FE.b4cc``3rfUC,2>l-$" + "AmqB#A>2T/F.=^4e-96&&(rp.4OWJ11c0d+ed&<&Zi;B4u?n-$=Ce1=n$Of-:GtkO7P?&#D*;*#+AP##7>'^%(G:;$2ahV?4Pc##2i(?#1Z:Z##[5+#/0^]=-`:Z#>7J@#k$_J)=[2D+" + "$,]L(JUes$ac,d.%w=k0UjeI-AX'[1F%sB#BV5g)aYDD3G)B-DJ_>-Y_,AOOwpW78GvH.&-`C$3:uA#:]G*R#5+,M.avY#JS^%O_<(pR0rdiO" + "t2u7ZXJ)=gvm#%e5#*DP>#rxn3+lo:Z#4gtr$1+Is$1dXV$vN*d;-PP##W/SfLLWqE##qV`+)V'f)c&Ru%oVt,4#/d)/k@Bo0,hn&6<+$4g$.:m'':N^6" + "r82dao''B-&>uu#ZiY=lnx6GV7iNY59K/5/HWsi2mVUv-bX%<$-.L=)di._#SU9C4=^g_,DBlD#)g^I*vu.l'_w-x,:p6^4Rb0a#lsHd)(#;9/$L[+4i.<9/g%TC4aVYd3AhU`3WSl%=kvgs$d1ofLWHI##;#-f68%3DT#&5=35&DMes?A@eW$XW]nLleOU&+KXV$ZiK-4j4K(4U]Pc4;b(41mxZW.CXZc*eg8i)lA2O'@Eft-" + "gc``3$-jhL-ABCOw%k.3+b<:.Wd*P(SDjc)a&SF4mGpkLVX61M$YJL(ELC0,vObi(`+e>5%glYugg`#5Yvr1L.%2@,)GMO#N%`<-*&?J$1.nYuOv1?#JpK3(5uuaia&#" + "YmJe$U_eA#%l7-#[9F&#t,_'#TZ.+#;:IW$Flbe#/)###6r68%,6>##6uqV$1Tl##A[ap%.Ec>#xaG+#+-px=)Gc>#AMDM0gfHW.Ra+^,3rBf)]NBq%Bhn@#+$>k0[EqS-^h*_M,3e#6" + "x$V%6IU+f2SKRF4PDRv$)vse3>*A.*0Zc8/:HqZ'XXMZu6:Ev5Sa)0(cO/30n8$G4d;4=,Zs?80[(aB#<*rsdklHwdx[fT&jert4*q-M;PweiLo8o^5qx8;-%>pV-vUi'6uvR*+j*io." + "$6BJ1jn$QLBilY#PHf[#d67&,>'gm&5SC;$w;X?#3ccY#ZI9DNG*`>&:Cr?#?In8%@C:K(p[+,MIwvV'Y0J9r(.$?$OaLfLvuwT0gYqv-8ik.)jF`o%#@lN1uR/60mFaT/]YHs.PHJA," + "DK+>-$]p'+^-os$EB5/(q]qB#]xKs6mNv)4vTie3q&>u-@_G)4Zce*3qH7g).>g+4J%5gLQOqkLHkF`W[vPn&#*Xe$kUiZ#]keP&]iR+M#*:ba%POe7#Sk0,1%$1,t/^S%l+8p&WUVvu" + "nrBGH:+k0(>g$I2S####'&>uubLDO#sG.%#dQk&#$8.Z7r],##ki?8%1`U;$5D9^%(3]'/qW44MSUH##.sUZ#x1d8.m(ns.]Ef8.mA2O'M_NK)Pvlj'$DNv[H:w[-lG$N0=Eqh1J[Wx-" + "?0*r76i(G%7XK21#(]S%/Ud?$=snW?*ol$,7?Bf$lfu^,hNoQ0L'r50u]FmfR6_i#46V&#?;`1.0f(gM]B$##up@>#xK8j-wdDe-8U.##sKd>$xSQlOkLn9D5WA:Dp8T%#&8.Z7/MdY#" + "j1058l`*87*GP##'E+?#3i_V$5/R8@&,####-xu#QZ=oL>G@##pj,S/K$<)+wN)I3Q_#Y%Zl5J*_2qB#56$&4i<>5wFq7+rs_A$^7gW9K+co7fPxe*lBel/RVhx=$/An&.Vu>#fE(kbYP(v#*J1v#7gA>#:rhV$D?t;@=(.s$4XHv$4w&012&BY&" + "*GY##Dr[f1D6#5&DV'f)aEFX$@hn@#,'>k0bEZd3wwt9)i@i?#k.TF*aGUv-.?=:.1(gD*MD1>J;7Wd-@^H)*1&iv#R%qo.kVw/(tqFMXI>a(6X;P>#Td:)-7boi'_I73'1ol$,%2D6&" + "IP+87VjK3kRn[3kM8P>#,M1v#qtri/'8>##73o&]RT&4IQ6)*p#IS@&@dn0,c$s$:]H]#-]U;$89/n(eD.+#sL'^#PtFT%v(LS.$xGg3;%1J)AfCv#jZwu#.V1v#>,>;$+Jc>#63G>#96YY#d%bV&" + "`r%60`&rG)K%+Ht4DeA4h:AC#mia8/IJp;-gM+K0q%^F*&R[1M;)Sh#S$2G#GL)v#mQn:1+GY>#Y*&_SF_YF#.JY>#=CZ50;M1v#>%H>#)xe--p^:[0i-JnLP7$##UWs-$HJDO#aA%%#" + "8lWK(;72mL7]sd,`VU'#Ll_v#2]jj1-B'b%*#h.*7,8C4s,cu$&?&w,E:ja,0Le=-P#i8P>#5]2bI3G*7M" + "[VSm03tXk0UsB:%%;Ri$E7[=76?xe4&9&2)+g^I*rtqY#+xqV$fF$Z#Sc*2(5x?s$B[S;$(q8A=.AGYux#q`N-DP>#Wo<2()kYF#(55##PbU$$xBEc`suHJ(fvn#M$^?0+.3#b46(]%-" + "Jtr?#^uxn$)Y#b1it/CatW$Y;/b4$(0$.RWj/MqipC-[8I]-K<;b77.SUO'PP,Mr6&#M@M?>#`4V:mKG5:;0fF,M>i]U/" + "AN?*Mu?VhL^xG`-)8v9;27-aNAMg$./=H&Ol&g+M$;CP8;vqV7oa0d*Yxk;%nk6mLF]HLM+c8jVC?h6A>#2Jc>#B.CG)" + ",JP##HtKd)5xC?#97*T%@=L,)5:I<$4>QP&W^_K(>aM,#amlf(Y==X?F+-eQhY2k'DP22'RwAq%BgM,#AUNp%/Vjp%-Ttr$?+3e+?tLfLTr2?#e&9N@e_s]7CM]q90h9?7QVX.)+uq+;" + "X@qk;H;Sq9Bg)X88ZM99(U0?7x*]&6GE@12mi$w-[oU,+H,oh(e&+%^#8/nGn`*K_S3')9?0(iW+dR[v>R&OoZp.DFwo%hoMW%wFc.GhLvWL6jsY-?w=j',IM`+aE=X$sr2-,Z@;Zu=:i0(O[rw&S3BQ&JA]*'/Ha9'91FHVD,`O-`ich#P=$##" + "%&>uuqchR#uNc##k,GX7K+Yi(6Y(Z#g?%##-VL;$0&=a$W[(gLA0aJ:-iYW.I3I0)=qrn8Fn(T/PeMWJUX<9/#Cs?#Pq@8%^#YA#V?(E#[1qkLb]]+4ORajM@l&4;2I$" + "n60u$o:fb#DbeS%[d>=(>&i+VP>)'YqaTs$31rf:o-QSkASm0r2`wK`7%s$CY@C#&(4Q/[j:9/x9%J3cUXe$fMS3O&,d;$X.Is$]gh9M" + "&S@?$:)?C&]0s;$@FTe$0*:6&Jb:m&)L5,MHuLp.93HtL7gX$0wTCtL=ntp%#N/e%9.A`a7C^`*:N*$)'8P>#m:>d&'OKd++S1v#:05##.a%-#O+dE5vlGoLmw)/:vFlFN#R%)EM(@Z?" + "WPdd3Gv:P-xbSr%JC[x6Kf^I*1)s20iK3AFs_ww-jXt)40cuV-bpuN'G`MU8rkUv-#aP^,9uU@,^xu59,4n0#wWj-$2-?PJQ+;8%T@ho.tRKj23MlY#JTpQ&7fLv#AOMmL1a2v#H)8R1" + "X^X&#nXYi9M9/&,',SL(c]qB#qbQP/Y;`:%4;487Tg'u$mAVgEvBr8.4)@T%2-:?'Q=e%-arTd4KQLNgY+)Zul]P3'W2$sRFh82'@iYv&QC*A-H3ra4?H&B-WAx0,4YO:&Ye)Zu%Bt)<" + ":=s<%Iv?D*x`q%4D4<;$0Ew>$'`g--f85##.H]Y#,]:Z#0mtr$-wjD<417W$,#Is$^uJeM^2:U%b^hX%%w&<-TO,1%V*e4_6QWf#1rC?#3)>X%=D3T@1lUV$;>R8@R4$x$:5[8@*8###+Q98%UZ=oLAhZi9<<4MM" + "8OO5&#>P26P_r2)=)]Q:8<$w7^IEJ1&qMr&(s.)*[*'u$9IN)YKS^I*aq@8%3xWD#sc``3^4Ih,D2mG*iI)=-(W*$5egng)XBk]#6Jh3&>+xGV3`Cv#X)(j9_XiS%%apY#DZ`k#aeciT" + "X+m+`[+Q/*i0F*SPAd)" + "7B(-*D+^=%-Zon$5V#v,#N_Kc;LC-MqLdv$-$$p@^`Ai8mj*L#8EIGrWdp6&5rIN'0sHS@9%rlqe+?B=cPFd3lX$&c9^#$]T#/^o>#-PuY#:af87&wl+#shui9BY5##r:K'+" + "Y0+9%?wA2'3MDt.%K8f3bY-Q/0N_)3#1<:.6G*T%t;$_uOK?AO)wvAOJQ,n&ih3n&g;`;$_-R)a][q<-;'dgLe6%##%####[JDO#v:r$#)ElX7rd.0)[QT`3VDY>#Qq#XL(s+I-K8>##" + "/4BtLE[ND#J30n)#M-qoeM6b9%Uk(Z#,@(q@cJSC#38Lw#I)NJL;.aIWX4$UCl::O0:%)94#-Rh1HMkckA#o[WiK9J65&ZLLS.:Qt>7lFQ>#nH:?%)Duu#,a_V?u%+i%QDP##-^XV$([*d;1uh;$*j$W$0PiQ&j)Tv-tD)O'" + "`G%h(8735&k63t_Qdp_,dUYV-K)'J3cR(f)e?uD#uLfT%1L(E#:%xC#t:@W$meRQ&l?*aa4P5#uMb*=$u,,_)@C.s$*Mko7n8#p%tIJP'^vg2'+:if:p<@w)iCSO'u#X>-+'7^#':*/1" + "F=x.LbbLS.,R`)5WugP5SWS&,FJcY#wGk?#eB@>#@%_F$(AlY#PXi*%Db&&=R:Fg2lN.##J?JA,Lv;A+Rm>j'1HfLaXS9d4Je75/*G[%-Fh@W$gw&>.61)H*H;';QC_39%^$]p%=.wo%" + "TaJYGB47<$Q?@idh=$N)glO1)Ufvs$2[FgLhm&[#fk9R'0VR/(Rx,m8)fA^5B7#W._D.U&(etWUj]M*#&#X.5vqGm8l7Q,4SLns$ALl31%(s;$Vq`V$nh&*#+Mc##>V+.#@X39%E]+.#" + "DbWp%DJUS%:7.<$=j$W$D=(gC-]1Z#@:CGD0`5<%6/e8@e,Y1Z#bU*k)NNf&,?Wbq.2?sH*g<7f3+g^I*<+@20oAic)-U^:/QSs+MoC7<.kW^:%w8#XX`INx7*S>=70#PSq)w^#r%xVEe3&OC,3:(C)NwM7P1sr)9/*Y5B>A%x'7fPQ?#f0$ENu8gs$Z>&F4m7sU%)G(v#)u=)4:j&F4" + "lx2u$J%Kw5P+0QG0%'##$&>uuF_/E#tBP##H;6A#it+B$u#,W-:E=[0np@-#(AP##MQG/(Hv::%rc<(lSJ6]30F6`agDt$MVIAZ$+WxK#=)V$#B/N_7IbR<$+5,##c<0[[vkj]7JYU;$" + "3d%-#)/5##3v3a$7FuA#PXi*%DnS]=G(5B#:fa&-AnL#$)MhD4#O'@#''ND+hp#7&:1r?#rj=k0D,jhL+RD8.gn'02Mn8u.r]+c4w%dlL;$&],`n7T%/+Sx&8xU?#6llYuQ-2?#GUI@#" + "%m]=Y74n8%>`)u$W/%h(nW,##L8*L%Dw86&B_d[-s259%@?G3'nwEZ1TMHC#J`P+#@KJW73Y(_]D0F?#tG9w#pX?sAJ.w5/^NYJ(XxRv$Jo`D3W(3#l[@X^##BrB>/pvESYq-?,uW?e<" + "hQNfLF=6##*a;Q/&2w.L,s:D3:Qt>7TkHc*D%I8%;L7@#j4958T^x],x/Wp'F@.<$4AO#$++9k$SPJMB]%mh2$>Rw-tsP/(H.LF*^];<%,rCp.D)MT/]&:I$0_#V/3@q_4^%`5/et_F*" + "/9..MFAT(%8EN#/rdR&,lSI1(X0-i(Bc7:/(dcs.r^R&,l`wh(U@Ae*rNfW$&-a`5*9j.9V>0X%3]JT&#Snv$]Xq0Mb]qv-hd9U%l?Uh5LoVd*nPI1(9=C[-x6YFn)>2'#3+F[7*BUv-" + "Dk;D+vPZ7&MmLk'Q*bT%5fCv#6]:Z#j;G##8.[8%]&SfLNZsr$*#-sF3)V/4K=c4bX:+*:>`:%4(Bx$" + ")JPa3611Q&Sb#Q'XhXo&P@tS&3I0X%Gu$D,^q*.+P%@`,5qjjhg(J21ZrJI)L%xV%9bKX%.xCT.]qae+U;$t.1MI604gX$0vtTU@b'c>-'i9o-^s/I$Vx$T.EXI%#/HXc1P%T*#+b.-#" + "s=b[7jTZHdgMlY#+>,##?8VZ#>.MZ#CU[s$Ko7[#UZG3'9Ns;6Jxu7(L*F7d^qe$TSf[(V),##[w>V#DB)4#9?cX7narn'c[oJ1+8P>#3j[)$%&###QXi*%FkJ]=.,Qt1-/Aq9S#O.3VVds.5SDt.T35N'aDMx$#g^I*Cq5V/Jj:9/KmLT/FO><." + "YFn8%hLo+M'R]s$#G#v,)tfR9f1Bv-VgA6B(H1a4rXJQMW)CB#_D*9%.OHc*AX;%,DuL;$PQBY$81%w#cR,_+7;ES&H@N5&mI8U)lm8<$0c:v#/k7x,B*x=-B%MZ#t`YX$jT-?\?oHBq%" + "bjmg/DZ?@-7#<1+tsPj'.pVk'NsNw9cnat$Ta:g(lshT0O)%L(vg9Q&mQ$iLd8c:.Dp/lBE7DM)L&7H)PeE9%CeKfL+ef(3p%.GV_-ki'-W#&E(v#fbC2)" + "PfQs.$INj&l[o:/-d%H)*)TF4F^c5/v?]s$x9%lLb#(f)fk7f$Irtw5d<.lLEn'E#q^]?M*TZp.7Zu3'^&Qn&*C(r&ANx&,2oN@$g2:U%P)Zr%XLmP/673p%R3d7_3C$)cmO#C+7=KY(" + "'Gfh(4Bsh)ZA2o&A@@s$kF>$,>eaT%KEGN'%)###lY4##1=il/m;f%F$HZa<9,<'#F`N_40E&##,J:;$76>##*DY>#4aC;$+kWDV[0M>-RVplr]7^9(k1*CYR0" + "dJ`h1O0ck0sjm5.g7+gL0Gmk0]]oF4r'UfLmU%7&=BoguF=G.3SWTM'<:pr68J=0)p1&l'q1Os6@bW9%a?^Q&Mguj'm^k9%=Mfi1'URC+.TSE+`5guGZjWD+b/?n&VB'u$u+@7&R_Wp%" + "`xW**gM)S&ovMJ)RXKA+,^3&+dNk%=jZ+:&GIId+oiES7*8YY#A1dQjao9+$t1a]$s9=X$Ul-<.kwdLM8[4D#?^nvAk8P[VfSbTV16n0#wWj-$tG?`aV:;8%i^]f17fFW&HPC;$b@2v#" + "-wk/El(m12)8,##:v7-#:4R8%=)5?#*Dc>#^JL5M@`*?#0v98%-wsD<4(`v#,vQ8%*Fj.;@pVC?M_5O4LDP##7AJ]-T$$83PG-RVh.$Z?/Z%r%Y*g60Zm4^,fH'U%moE.)#*Pk0oEZd3" + "aIcI)_5;7)xt0%%PVoD*Wi:Z-?;A_43Y7%-WxG=7,F[m/x?7',R5LV.QGT_%4n*mB*('b&`wep%oI&A$LdLg(oO;#lbtx&,A*Un&3:I[0ZENt&fW`I#>4;Zusa/9%lu$W$kOE=-`($#+s.[[%l'$='E#w,k;-5Vqp$:=RP/xh$lL7:cI)4-?G&@.i?#FW/i^/L-_#I@`?#Me&q%,JHb%a$RYu,'T6&YCcY#0i)P&Fa5>>:SHD,Tk1v#G(h'%" + "e68j03oUv#EUIs$Zi#+jbm%wN$iL>'iE4NEpQ&bsm)*N:v8+[0C5&:[jp%@%rE%O%r8%_`Cv#Yx'W-UuTJ)Yg8492IfT&Sc8>,2w[&6Sf]a3" + "6uqV$42n8%6@es$5p=?#3lQS%qYPs-VZ=oL^d[i9'4D@,w%8L(nueh(5AFE*:N:u$(&MT/BP,G4geEgXM_t'4_TIg)NIHg)hQ>JLeldh#S;rpf*ol$,DwD78EomXNGer=-GnbU%-Rx[u" + "4m2)'$F###%&>uu@3wK#hZu##M&>X7TGY##7+7W$-u9%KhXD#oDsI3$Pdo/&>uu#E4Xj0" + "fJ6(#2V[Z7S)3S&+,F^#w&7JCu*H;@bE`$$4s?8@2o1?#<@n8%F,^;6'p-W$ws%##L>O03DjW.3H%6G*Sh-K)orqB#ZbAv$pf^I*A.ikL(7ga#P;Bf3Hc*w$oNv)41fNT/+36N'Eg$H)" + "qSID*t^#;/IJxSjp/RZT6&CJ37*vB+=$Rh=eS%>Jwo%9XNp%?/hh*R;n+#shci91Li0M6Fi(E+Ax5/T)m>-eh%@#" + "1#u>-SjF#-@nV`+);]1(t1XI)CcY##NEY3'b;BO97cn@[?,K.*NJ6f3%-hB#X@o*3mp3rW>-1+Y]uD6V0GG&,##WZj-$&dGxk" + "7^?g1n&U'#fTh^-R4[s$F^?gLM4jw$6s$W?/fUV$58R8@$,>>#.a-8@-]:v#%6=;$(wl+#unui92S@q/N9&&,`Tw)cb;a.3+%/vP]ULe;7[La4ti?<.?aEb$4Bei(-SrR&3SC&4" + "?RpQ0$Jnj#%0hN'P2^:)(f>C+.rJQ_D+/cVqYxQ0ua0^&Q)cZGcxefLZe(^#]V_pL]D3$#[oUY7xUrZ#p4058WhAvGR$q>$cC=`Q%(U`$+eUg(W9tT%Svqg(*$Mg(,c?X-htw[-^M2]-" + "r_rS%$2ur-*ipquq[u:Zx[sILGqP]4c@)I#ug+Y#JCt/g3g/W$wtXgLH2#,M.M(AXi8@A+^>df(^*xA,ck7W$V>Nk+nuL@#L>P^,)dWjLZ/6N'-G*T%c5-J*#o$],HQT:%kIo$$vTK>$" + "xN3<$t2YO0=i/C4[COe+@i1v#2n(I,0[JW$1RqB>HEC6&Jg@+4#djc)DL82'QhET%Dv#8YBb*A5jX%Vs:k'TCgp&(8&(4ZUg+M>NXlAqxA;-x0c?-@Nd(N2OC;$+T/XJ=:W'#" + "1iLv#5sXV$8JN5A8M5##0P(Z#4>tA%);G>#SXi*%I*px=1.VT.s7>V7$Q$=.AI_GDO#M^^B%>9W[,tsXk0=R(f)MCr?#jE7f3W^CT%4t-t9KahY$@EWD+KZLv-Iis.LSCRLM;2])*f5eC-g'@/MFRWC6YfY=lFS2GVhBEM08EX#7eMUv-/Su>#lDcY#3R3N0" + "62=a$*/,##LN44MO@-##9vx.CA.4V/]/c#-uS`k'S90q%Dt*A#*t=k0oK#IY35.&4Ga*i24tFA#OKXs-L_dlLr2**4k=*x-[M[)*O?9q%#?u%7FI=C&b:oe(^MV`+UGMsIgnL)cK%#fQSW7k4[<.'h]@#,D>>#0SQA#$gK@#4i3nWrP=.#LsUH,g0S[#TYTi)w<7f3$t`a4jq`BSt,k?#LsHd)](=V/%[*G4Z2ZA##F?S'" + "eUKF*6j?a3w^v)4TfK#duSL(`o?#6uALV%(F=,21(aVRoCOV/a*8[#)r@/1>hH(>wD;>5^)cmBqr):%k4MI3o@=;/a'Aw#TAY>#2r$##4a:1.1_CxLk&e##" + "mDlX7ZVCv#pPaE[Q8P>#0dx>#-PuY#533Z5)B7`$,S1v#EDCW-2P=i(q:Jt%wQt9%d>Tk9^b,g)_s#N0Ut;8.u0e5/-`(kL5ge5/L=Hg)1K(<-wHeF49NnE--7-g)sfi0(S?S@#V%'f)" + "dO>_+^D6>>c79`49JD[GI$06&&CBJ'Cq5'XBJ^Q&e;^fDO8+^G+iJfL%XPgL<la;S#TWBJ[AR&@q03i<0IVn'0@DG>li$s$J@JJG*QtnD" + "hBMtB[bj`5WV,G4,r8q/Nl=JCB;.?$qc7S:'sUv-%-_6&5cqV$JftD7jxjo7qJs#K.vXn:QtGn06PSl'ngWV$C]=.#E_H)E';P>#;?uu#;#^Y##Fec;*P1v#)Q(v#$4nWAfl47:6BZW8" + "FCK:/g`qB#t(4I)oDZ20aY?C#(#;9/YI5-P%],G4$Vo=%g3C(4Ys`a4W_+V/m/_:%U9*H*mwnU.rkZx6>T'8/O&>u-.Lp+M2sa.3)u[s$m.*w$j%>c4X5Du$JWTe$57mg)axQb%p%P<%" + "-K?C#$i=V/3dcG*RGa3=mmvK%7x6s$E/t^%I&XB%Nq6dD=1h)3*VB5ou7,C$GtET%,TkZ#05G>#2='s$;fL;$%*%@%/Vu>#tJ;b#2l$W$*A_R%kb=gLW_n>#0'+[#egQpeHn]2';ALs$" + ":lLZ#^v`.hM6TQ&l2Te$?#pSvI#;X*t$2rhV$K9du'f@M'38i4/(>?L)O16xfL;r9^#dKff1AejT%" + "GL`V$Atap%817W$-[O`;$lq]a#11n8%COqGD-AY>#/]U;$qT$@'U4n8%cK_$'L_P+#'-p]=,YC;$n*ihL$:ue)*K1l0Jva.3" + "pZn%F8lh_&2Gq8.LsHd)0Zc8/b`&02wU7C#2B&l+Jxd8/*b5R&VV0W&VaM223%rv#Nb7w#`34,2g@7X7Bs3Q1j8^Q&Kv/w6sHVHM4%Kg2)j(v#&p_m&&IC;&)k3-;1&N21uS9/-Ed>&#" + "(>YY#MaKfU$fBA-Z2Xf:=exJE2q^M'2i7_#(]9581V1v#WwGa4CFv$&DF7s$947s$Yn8n&=I.w#IVo-#/cVp72m?8@Us-hEo8%#:)s-e`$w-#aOjLWmVa4kGUC,p#uU%4^d8/aU5l1`Y8f3T)aF3`aJ.*Gvj.3xx[]4a0Fx-2d)+3k['X%?UjP&0GG>#TS3.)NYWI)" + "/DG>#<7.w#O3wDEE%)v#__%@#7+VZ#]6n0#X1wo%WI;?#:Ncd2i6J@#mVQc*e0Ot$*;P>#_g/I$U$8s$w3vc*+rvZ#3$=t$9PjPAuF'm&)DlY#B91`-fo%T&7Ba)#$&>uu[1>>#D(U'#" + "u)^,&CLEd49Ow8%FV(@#7M6X1fNLV?ARA2'-V(Z#7,Y?#8x_V$6sqV?;4n8%UH]nLb^o8%2/@8%=.3e+U0)L5iNQ_[pDr]7r1HP/&6?m/Hk0" + "FEW@,V%Go$f2&.MrY(u$27E:.o]d8/u9@+4$d/gLfcfF4W/c=-`iLP/$(Y]>g3poSE7K?-OPYk,P1]m0M9RQ0G]fk;[cTKM-L$,*mO>?50C)4#5f1$#[ov&#(J1v#-geD$);G>#QRi*%" + "HwS]=2$'k0-`ET%U2RH)^j:g(Ghx5/>H7g)hZNtLTLblA'NR`$0ClF-rlRfL0`EO#]YA(MO3bV71JF_$qXi*%RHpYA^n-##9=NP&@0,j'g2B.*,39Z-_G`Kce:M<'SLDZu8bc8.DRk.)" + "(hY:;o28>,(s###s3Rc;xO5W-W6c'&c_imLaq?##JNG/(XbZV-Z'^TVL)M]=)oXU&U718.B,6W8@l$W$nmw>#eOU<%(5>>#2j-8@DQB<-XFtG3;L'1(%9XoRC0gm@aE:K(2x/O1Bt*=$sIs.LQ2i*M3gUQ&:X?:l^&.s$e6]J1Z+R8%;uUZ#qx8;-'lL5/5,[0#H=4gLo%K%#" + "RriY$dilmq1R3N0&<.D$(2>>#Vcj-M_)Yt$gtWx-l5g;-JRr5/$XAA,gZ)MOMD=2,L2_i#@?sp'5&#L#@f0'#Rw'#.IxuY#>4)v#n9Y^$4]@m//]U;$u/5##Eq_H-oRE3&sPOV-1AJl'" + "Alc###I2<@_-dg)Uk[s$[a@nNif%&4ZpB:%&'s'O-k)P(MV&E##M2%&hOuZ,F64#-R5BH'7hxi'=wi[,?1kD#q-67$/K5q%+p@3(Cg+b+`5,^*em*J-?LI6/`f.-)4.lo7G#?@-[felA" + "Ej?D*2.co7Th*?#nh.W-'i)I-M>G##3q=Z>>$g*%?^Dd2n&6n&`07&,DWOu-jlWE*_(3mhOX<_&AlC68J7lA#VvM+&XkLv[b2aB8WSkxu2x8gLONvu#s)&H-,28[gj00Y(v#,a_V?" + "*Pu>#:M)[/]bkD#_wl)4/V`8.$UA%b,Bm;[9>JE-r#bpKUR$##=Qh/#%dCY77)SfL-Nw$A>%AZ54s68@*AG>#'?XV$(wu+#sn(/:.C,12H'a`+[qes$7G``3xTZ0)26MG)v;Tv-gc``3" + "inL+*/nm*NfD&J3nl#H3ER7lLX%<9/6AuN)i=FwR)wwX-Ys]],o#mf(^d^U%@L.w#O;Rh(@olY*96&Oam8-G#N`b[3n0#tlIfL" + "Q[-##Z_RP&_XLS.5])Z#Q`=,MN=-##m1Lk+EEa9'FQim$`hk[$UP9M)@A`]J?)'i)^(^L(eJ,H39hNt&]&WVR,_7p&sIkA#6auS.(%0''De_&OIaU[M`Q#A62w[&6v[2v#I0G`#n.958" + "44R8%>HY##B,#v#vBnc;/`hV$'8YY#+Kxu#xaY+#lF#29:L#a=.`+Y%Wl-<.9EsI3)`OF38$P8w)*LAWE*i,%h(NE>/(a2S+4+ZGb%'ncn&nr;o&X*YJ(V4KJ)%/5##+jVm/gH#/LgHq.Cm_^s&" + "RJJq9m@I8%h+058&Tma<(qK%#+G(v#-*,##B@Ai$L0S>#kI>M9mVjhLvW.)EZ'']?YZ%4;*vUv-vjFk0)*YA#%Llj1g5N6.#/mlLtC>o...g:/P&g7.3HS_O@h%OhVJMBB9$G+O@@w#2Vc>#8`_V$-MuY#D=[D,5Ec)3/S(v#[._S.p>R;$Qj20(_OkGMmj0^#j[a^#,S(Z#3fC;$RHG3'&U5B$m2QO'(h5T%NUD?#$HUV%-mUv#I^$-)R3pm&" + "8i(v#k-3U.kB#N'8I39%Rg_,)X3O=$O^is&i,-R&w@#(+OE9U%OZ:k'T)41)Nq&m&P9kT%j)20(CC.W$UoEi(S@?>#)Laf1&2w.Lu3QV-1rOR01PsiKN3P*=$),##i3x=-,,-[-Cf@@-" + "=lB:/@PCkL9^?uubchR#U._'#&`e8/1jZa0.BQn&IkNT%20t)<9@(<-B@qF*AE.b4Z#[)*+C[P/:`<^4wi``31_v)4ZFPm'-:iT.N;gF4()FG3)87.2K[V7%a.E%$+P.n&I_g`3KBx;6" + "jfwr6jh-k$_HFX$MvG*7p$o*,K`XV-n0r<-lKkt$K[D;$9Qm'$f/$e2Z0)F72j9D53qs*%'n&[##tM'%cqt.LIv?D*^[%KWK&n+#xp-n9+9ZJ(HxbI)4nV780tXJ*pi_Q&n:?W$K-kT%" + "e?i0&GC]1$;^1;?R2w`*+n797=@%%#2bCA$.iqV$@I_GD9rhV$7+Is$4$###+Duu#3h1d2')Rs$$*A>#%w6[%NKTU%ugn0#)d.1(ne?e4YQZ)4>IHg))w@+4,R8T.?t].G,,XZ%BW7&G" + "m7%^2%,[0#Y2PX7UAP##(3`C$AXmX0'25##/dXV$Ua=oL]Hni9S.pF*f)d3'@1r;$Zoa]+'I?&%6jic)0Zc8/CuO,kwspL;uCuND:Rk9)42r?'-I1-Mc`7uOa*%r7xtKwK[*3$#b+<'#" + "/VC;$(g1Z#)/,##+QCV?,Pc>#$NC;$jH%##9RNP&q^JN(%6lk0BLPI9S,LB#%2rMVi$`CM5L,XVitY=&68pu,TC+N;1YCv#Jfc?#rr[GE*ZV&.xn=gLV`vY#mrFgLW>?>#uu:T.,#Ku&" + "+./_3KDt%,DBox,>_2D+,iK+*rueh(Nf3I$.>Kb*3'[)4VVP8.s^wb46jGg)XYpkLPW;a4.cg/)Dk]t@V##kBPZl/*NTc/*v8fgL[Cd/*NLP/E[fsmAeBW4L1(,+%QZl#>O4n0#R8###" + "qDG`ai-]M*YMWY/(N#,2H@e.Ui$X@#Hkj5&GS+.#0Sl##4TM,#BI35&-`Jm&wZ5+#S692'AfeW?VN1g(+>Y>#3V>>#NHjE*Q/2O'Fl./(Tw&:%[qR5)/VlY#URi*%b-](-##?WEI37k_02/_:O1uqxm0m.k0OwmG*]b+/(" + "rq=V#Jmb#b;NsD#tdR.M:p].GMOcj+jal`u6i1Q#joQX79IK>(?8ch#GbA<-Q*59)o$A[#0F;s-Ke&Q/rH:GJ*H3<(EJP8JSVwVo8OUga;Gfo7Zh'K<:h:O1R;>>#8.h+*K478%4+i?#" + "n:B58.Vc>#?cKB%';cY#91CGD->G##)Dc>#.K1v#xZG+#)3,#>Wtpd3)4xA6[iPc4oDUv-%3ck0&n-l17/(s$_,)E#kCh8.rWdd3hc``3:Z8f37&PZ6t7Kf3$)]]4$R[+4rk(i2S+XD#" + "(i^F*vlEQDEgt03$Us-4J0Bj08K,W8HaG>#Ux[fL.5,eD2l7[#jC,L)8vw,GIij0Ee*5g1=;`x7h--^#-PNh#a%)?#5uh;$enbgL[`$]-T6n0#MSt($&e0Q0%)###Jb/GV+,ml&cEAJ1" + "U#n3'#&)&O;jgA[#=p()3dBXA#]mv/1FhK]$8^*E*f[ii0@L8@#pw6E5SEL:vYj+G#t#@?qfL" + "u[/7(BeChLXmBgM@F`hL1Fg@#/[YE?CCaC>PQlG2entH?%VTwB>miEe-?v1KcQ,,)p/Yc2P*B@#3f1?#m:958QbTGED0%$$2s?8@h@s9)A+Ycu)(ce)->IZ$HKw,*>&Hg$Z^f88/i>g)" + "2f)vo[5UB#/>Jj02fCv#_56t7kDS'A#/dF5x9J]6a]Z$$FP/r@Oo#?8Z_mP5(N1+$ps&%#t[eZ72DdY#^v+]#HE5hPw[`V$e),##,GcY#,BP###?v`->wgI;'4u&#r6_f)9oBj%sqWU." + "F*Yk0uxTi)H2Cv-gc``3o.i?#lbGg)4Co8%wiVD3xF)?#&X&[u*,7-)nLkX$$tbn6F?)g(/rG3LDu4&-b=bT%,;r,)(:>aTKif)*62^q(#.G$-+>P>#NQ44MPLQ>#`TC_&M9ei9wO-##8TWE4oS:Z-:+U+*Q0'q%]%'#,i]qB#]CI8%a8qB#Qr-x6HZU&$DY6w^TEo5/V7=X(mwn8%" + "xQ6.M?jxF./&>c4Z9o.*hlh4)3Jx-)]H)I3]#+1)4PF**Z$102#nZ:&3HRGr#aPV7$44A#x%7Q0]_U<-7'AA,XNn8'=X%&,]I0C4t##jTR>#/Guu#OTOOMQRvu#EsaWqScui9g^N#-(5oh(M[es$pB%p.xTZ0)QsGA#ZVA^$<)Zg)8gTv-fgxq$&N>6s*VFb3Tuq,`;[j5&[+Gj'[v0sH" + ";uqV$[<#x5W6A?G]S<9%o`[J(oRmw#nju5&tTsx&e.+q&k'D:V4B_9V#(KlY#4den9_*.&,vrIL(F=%<$jqur-g$hA#x.Mp.o1[s$H/he$9/:H3" + "Ug$&4Z`Gs-'cfgL>'Sk$/b0sLd,Pt$[h7X$q8igLe*#ci)Ok$1q+=($euWM(o$2Q(VA.s'f0c#Boisu,N?`l8w0+;?NO)>GBT8SR1O4Yc;4M4O,Wc(+n?uGHYjF]#O'.&+C^*&+lC>.#" + "9:eS%,&e-;@Vfsx+k6CY?Z)Ih(O,M0(Y[nA#?Ufi'G=R5)I-S@#Up$L(5^uY#hqOgLEF]S%6g1Z#91VZ#Zx@T%5OG^=:oUZ#60--iT)SeV*cR" + "J=MtL_91dH>cDiF%plHGfnTZA-9>G>_4(4;2$hv7PgS>6ExYc4?3.12jc-<.GxEF3704U.Yl-<.(>WD#2d)+3JJs`#>>;H*S(XD#]1;t-iQ@lLKpmWIEr:T/Ut;8.0a,9.Ot8v-UH)B#" + "j,jhLu3Ms-or,d3*BYU%gtGm'e,$E3Je75/'qHH3W3YD#e&p.*=M>Z,HmNv6gPaa4bEZd3*^B.*Kl2x-nuQb%c,6/(r_i0(x,Tw#)>P>#blI1(b#U6&t?5sg^%]T(P'PUSN'xX'^#E8v$.sVm/0sRH#kxw%#*^Q(#knl+#vPKT7^Ah?7&4#n&q1?,4BLiZ#^Wul&R#A^$MNll&Or=.#TTpQ&K.TM'WFUF$" + "'Y0wgp&pp(S3K2'@0g2'23&###4Rc;;FNp%2u$s$06&##'HI`$)/,##T/2VI<$3v6w&3^#G=u^-iMkb7CF#1Oj3/Q19E%?.c.Yn:1j?]@U?ldc>&2t8_2FM29/xh(KMEF3-M^b*C,tI3" + "d(i=-'YWY$GEf;-]PLA&Y;m]#vo=c4jE(E#+jE.3ne7%-<[0B[v@&H)*)TF4nGUv-nw9)lc&_6&Yhev7sFWS&Q5.^$Wk*+%jV'`+f<2S$n%)v#Vaj78h24VJC:Is$K.Ub$G'^2'vXk$@" + "(&RN'pVma339=Q'&.RN^JV(<-Jdu)3)oIE+G6M+*=QHD*M'f@#R8ngLka<=&Ftsp%Bo:;$$&###;qt.L;h?M9x9FV?Q23^Hk<0s$YXW9/JPc>##T'@#XB3*E5lY##HI1GDD=.s$5Y5##" + ";v?S@/M>>#9,.8@t@1X%8An8@3xQ8%TKonLpe8&$2^=?#&.Dj9m$1q/$1%`?#0#,>.kKZ7XMg+4LxVQ9r&o(+vxRL(;rLv#sTRP/,UZ0)vCh8.TONdE>b%I*LX1x5oC,G4afWF3X>u`4" + "v5/gLD>^I*`%^F*@mab$@;Rv$CT(T/Ts#X$7)TF4bH'S/&GJC43/q.*/dk5AP#^Rplfrk'k]2o&e2mn&^c=v,]L%s$46NL)kqq[,RgPR&CI&m&kb>(+E+ui(w8?3'q9XP&7U*:.pd&v-" + "+%i[,Eo=U&qf)K(=l1Z#_8RH)vpwX-YIG(+p->gLiT=U%2qVI3;*l5&r*UR'j7g'+0V4i(%w/R/hf8s&DB*5(a;)(G=Pj0(4@^6&?(7s$2ZB?-FExx,/&to7>cw],GU`;6/GlY#uZqv%" + "2x68%>HY##3u6W$DsLZ#*;,##&ArT.-V1Z#oR4U%Dwox=(,,##U%6#-k>cS/ZP_v-8@Hc*c#d3'VMSY,m1DWHV7?T0RO=s%9.`8&7fX8/V94v?@Ti&#V4+gLOWO&#&2w.LK2w%+<4KV6" + "/`Y5;6XC2/2[s$4_O;$7_uc##S^58Xo>s6t.[s$8.%<$C8YB'Q>Y5t`<%m1cM'cwwK$)X'=(" + "f99U%Q7Ja+]cvPJn0PXI>B&+)39)FPjo]#CBa+mK2^O7uGZ,L&_8/L04p%SphfL4*^,2`*AF#h1]b#10%w##%9&=CAh7'kfR;6gLs`#,+U6;rv/W$`kYb#nb/V/;cU;$IKiY5" + "K*>mB6AmlL;Zui:*VG2r2c2'#-Q(Y7'MH>#dHeY#kb&*#'D(v#W81pLsqiV$P3*#Je?D@I,uea+2%hF*?Uvq7Rt;Q1%KYA#&86r7R#OYdsKA=-jp.K)T4`<-4L#I)T:T^$p][`*F77<-" + "#*;q,+<`L;$S%oQ::nC*4?'BQ&A,8-#BeAQ&EY<5&BRap%>&])$.f$s$5+[8%8`>v&+8###URi*%Hkj%=(ok&#P>Cd4" + "_;=W%$c3RM9(ZfCMMVp7osfY62j^I*L-oA6r[Vd4OJpf3iaSI*=#G(5.LQ,*urqB#6hRp.DA2T/I5^+4I2JD*T#OH*-.C(4I/d]#9&*=(^.^V6_L4gLtCrB#j[3U272pb4?x`,DPCYI)" + "0pvC#+.'S#P+=Udjh:n'wF%_#0IBFIeB8<$)Of30KtSm&lf@1(ZW-v#>IRs$G6@0)D>*%'Z-,kv5.,U$.Mr._[QdQP,Mv:E.3hrNS7_o:A2]F=Z.9h+.)[wq*4i-]`U2*CmBa*@GM3s78%(gAdt4jw@%" + "Iv?D*na&/1FeGS77@&ND-PbI)N[*9%S&UB#6+V?#QmBB#PP^D54cnw-;7@W$nlQS%+DG##0Z=;$9.e8%2W`,#2.[s$&,DG>#VXi*%`FUcDP+dl1J+cM(-)]P16on%-_v=',vxnL(" + "vo.1(9lE+&)Lo8%H),J*l]F/MX9#;/k,$E3ah&K1D(^C4Ck#;/$>Us-Ii#%F-c%$[Ar[,kI&M1g:%(+4w$8JviS`$slR;6&,o0Ul?b5&DhnW$" + "G+A'P%]'s/9f:?#px>Z%]?Sa+J=Mv#1t.Z,d&?s.XrpQ(VT@W6h4E^#P/r,).w,G&Nq%=-6<&W7)`nN:Q)Q;%NlQS%e))U%^%io.5]3>53l?VHnkn>-0ctI)G47W$eu?s$@%.<$lCL*9%F2@8%AXWp%?" + ")OV)+m/,o/1eBcFC]G;-Ud9#$OCsX.jE:,)U8n`*-=.t-=v+F+Y:4gLPEa?#n2:/#A>*$5Y'+&#jWt&#J.HU7S.ws.M?8&,Xb*9%P])q/K=CF*r]YA#omQ>5nB3Q/#a5J*(=UF*qAd,2" + "$`x_4wk=V/;[Nh#JAbBGNGwe+PBRFbOrQfG>X`#5J#aWB+=]l3o>^+4J`>1w:iuGC3Da#&Q7[HWo269WcZ=7x=^H)efwn&Sj8b44*`o0-lw6/QdA'5`32#PYG3$#IXI%#=7^H)" + "ZWpQ&p:6L-n@6L-sf#H.,F^:%iA1g)/YiG*)<;hGwPWAGCv:T.%BPfG(;jj4h0Q<84a7m:_:Z<8sS@(+0O`+*%/5##<@`dacQ,,)P>l%=]5e?K+pPT%7d`,#1GY##;)xD$/iC?#<.78%" + "DY%[#3;G>#?pLV?3flY#3#ml&-hY+##o529;>ee2na:O1q=E9/WPHW.P6;hLk.Nk'W:=F3etxw>?*`e3UDjc).m@d)H+sB#xQ*c4bL'E]s&d,nM(s^pm&3Ln9.9PO2(?Df$#GZk;-L_5H0d1E'#>O?DEvf;*eBsM*eJ,,##M#SfL=Z,oLf?\?>#d.Ni-((C2Y@VK(JuT%##'&>uu" + "rchR#XKa)#fbY+#Y.q]7gEfh#Evh`J4]X.)[;:8I#&66ScXHQ'46kD#k^>Q:m1ko7:5/T%p#ml&E'Km&8KG>#@JEPA.1NP&CG39@^-]w#9GcY#K>78@G7i$#" + "Gwew#Eu82'BHG3'9;65&9bs5&5v98%63tD<:_Wp%lhP'Ac43e+1A&c<=;/IOZU7DEA$mV7$9o8&fn1nWgtUj0=j1<7lx&J3" + "+'&J31dOb$WR@%-WVe)*jPe)*QfP1MPlUY8D35/(V`[7&nE#Obr?#cg(4'#E1Q&qx8;-uYP5&+STc73UQc*CoUv#^1iV$idA8%dau2;OGWC?C+e>#+P:v#6&ur$4%7s$@5YV$94e8%" + "J(FN03l?8%+8w8%W;@gLCndi94b@LM%JZY#jp-V3?lBW&kb)<-6[eX7Z$'u7Z6d&#TrIfLo9A`aw[LP/KB@M9,4)M^KH`V$6KHdFLl0H2e8G>#=ll>#HY@[#;+V;$?o7[#GR<5&GVIW?" + "58>##ARjP&6;ns$9XWp%5v98%^r]32jNaMM:x;?#64[g7w`w;/]O%##VXdH=c_?1-=YI)dBk]#vkh8.*W8f3K_[1MGl^GNJ*YD#&Kc8/" + "v?]s$@]WF3J29f3M):I$j`u`4CZMH2BsCn'a2)O'CUQ,45mU.>>wfOv@pOQ>#<4%s$sb&*#7@I<$G:_b$2uUZ#.jb?#CR<5&>JIW?425##AOaP&2&[8%64.<$" + "7)US%%t&E<3ll##%#DT.jGo+>bP^[%VwQ,*Zpt6/Eu9b*TLi)5[(Vv-/W8f3x3YD##%(f)M=@8%hiWI)rCw'=2nL*4sf6<.j,wD*;#qs72S(a46f`&&9$8*(xZXw76DD$-gfC;$LG*ql+7.6RP,<&5>##" + "uU'B#Ro,tLnQe##d[eZ77RT6&0Sc>#q`C;$,V:;$@5YV$v@,s-j,SfLL[cB$*P>#s2G>#$-]Y#qHcB$Pg>n&C=.<$GQLg(_&Vg(,2tM(4C@X-01^=%c-,V/$)blA$_US7Wd('o" + "P+@98d@ow'&0V+MBeF^I+uW/>0WA)N8G<$#l0L9&5fU;$@LMmLIjdY#-TUV?)>G>#JvpAer@]h(8c9Z$KPFtCeb'E#Ba><..JeC#Od#th4Pjp/@()0M$.>fI7,h;:(PUV$uIO&#Dp8m%" + "=/lr->@gr69LAjDMY(?#xS'@#=7@w#@p`,#:x(Z#/VuY#>/`V$/fUV$:v=?#4r:Z#0M,##Eusl&?WKE<5Jo/189m+#7bij9')%<.L:`;$[.7x6?Xg60#OLg2H#4Z6=.ER:;$67FT%,R(,)q,>G2/fd5CSoUZ#mvsr$3x?s$AYqo%34*p%ESP?#,fh;$.W`,#1PcY#6aUV?N3^m&,;G>#W*+(&" + "5$DT%?o=2(R5SY,%@hk1p4<9/Q?jD+vl71(lieh(CcY##ONuN'BZEYP2Xt'4om`.3>U^:/uiWI))`Ys-GL5gLrYA+4M2'J3+MBMBTi*[p:Y#5(($Oh#uc08.S=^_4#e6H)Ms<0PAw%4Z" + "5[4<&>EcECMnZc*>UC<$fu&-#NCT9rHuwR#SBP##guv(#uBV,#mrH0#+:4d78JXP&(;xl1/nBm&*)m]#YV13=SG$tHXK-i*8;,##-55wK@@%s$*Oh,)BwN9%@Mml&=wJm&;v=?#&:F%@#Bb]2',0,##:$lf(*K`,#UgUk'L&a,#I$5j';[Ck')B=;$c=)b5D3.:MgHCdHgri->77AE5*u`h3-c3=.R&$S/k`@L(JiDt.^CYI)K8_e$1KC:%D[ch%6W8f3.._C41/6J*" + "*^B.*eKJs-@_-.M,7L+*l:IN:N[V-*KD,G4O29f3:CUhL%57<.X@[s$>+`V$i985/qwkj17Ut9)-Mo+M]jsn8(FWt(pQT:%0`9f='/I],/4Kl:TC$v&" + "17)D+Rjf49vr/S'[W>n&*$M_$5oh;$BB5R&Sh[s694`Zu<'KB+CL[s$4fU;$T(U13F#[d)2f1Z#)n8.4Th7<$/gQ.#6)&h(WhNp%4tGpS_P7h(fmSx&.Jta*.>Gr'usF3b%+ei0>40;6g12A=:v7JC" + "(%FZ.[n*p%puC^#nwpj(#.h(2j)p&SLRs$x`YOMuimN'b?^6&Lfw#MN=OMZhQ>#0s1Z#mI,29B^X2MAIJ<$7XWH8gZg),fsiI39t_k1sIaT/R^b:.4rFi(vmn0#(/'F*eN&Q%AgiA4Ae,-3Pb>d3TpT7/" + "KkRP/N'j[,q?CDN04_F*gk[U.Hx3j1&ViS%S6*d*.P]1(*45uAxFO/(t<=t.QwdE$a'Ux<:k$8?+ZD8e#0JrLhF4j1JqeZ6wF5hS3V]0Y_YIbR]U?hPo=4XLq3n0#+ju2rJ31[.P:2PSB.BsSPSUV$T..w#lY&m&w/#p%$Q5]#" + "FLr?#c.wC#vRg58JjlN'^H[HDGN,3'KPo-#L69q%Ol(@#7V,##0g$8@5`IW-9(Mv#4g1$#TT>3'3a($#>UWT%3pH8%%[G+#1.[s$fi$@'ka/s$)Z:Z#g-os.>i^1Pop?aIW2mc>Ls2t8" + "MpN.30jBW7s`#^,`^pQ&m0VS.,UZ0)uiWI)v`7_Q6e'E#xmbg$o,>D<;aG<.'cQP/eA^I*pMuM97WlS/jW4T.>;gF4U]PD%_Pu`4_ex],&@=nU`1RA-HSP8.OJ,G4QimG*45^V-C#_eX" + "=$JY-hN5_JVR_GM9-JI*lYWI)75g9&1WC;?4[#R&p9%x,_uLv#iC$X7S3K6&.XMD+PM7LEGHZ51xiIh(B8hn'jQRB+IdJE+U*kT%nqOgLsJ>T%d].l'JwAQ&v6h+*ZE#n&(kwt-m,ZR&" + "h@xfLw#59%>O39%bD)4'>+7W$]UiS%F8,(+_dpm&kCus0q)HR&5((X60ghV$0@>2(Wauj'tjGn09b8Q&jk_cDV;b**[/As&=?nt&GJi11Y5;d(QN#R&]a^q%cJCk(=+%W$NEpQ&b:ffL" + "mK16&i1bI)T'OT%@eap%M6K6&C2n#5Fe3T%AF@<$2JP>#.]_V$;Fw8%nC=I)#fJG&m8p%#(u^]7>J%s$=F[S%0i?8%4GG>#sh&*#0lq;$2Z`,#5iUV$YLQI3<7eS%-@[8%2Zu##" + ".c:?#Xcp]$ws%##0B_KEPM7E?6ri)5/Sew-Fi&9&#]Vm9t>]>enX2u7mNuD4IGhs74ON/2&fcs-EI7lL71_F*PgfG3#X@fMP>Uv-.coM`=q%>-?90oLvkkj1FGXk%p^D.3]DHVHUl+$5" + "=#w7&I_jb?VZ#R&uO9J)ALR8%j_TF*vrnh%nt/6&Kn8Q&m[P$,'aV4'ZG***vJL>$WP&B+`?0q%8xh;$LtN9%U57-)I<*H*KT#HO2Hj5(FJCL*H;X.)TRw8%3]l>#71[s$G-b9%Ebw8%" + "K906&Kwjp%?_ap%n=0+*Q-tp%3]1v#JKYN'E4[8%mhFgLlmC(&_g,R&F.2$#%/5##k,&X#`5B2#8%T*#IQmq(jVV>55%MZ#K($p.N%LS.9L*t$nZwu#3rCv#4T=;$64%<$:vF?#2JcY#" + "0jUV?0&###:%rr$5pL?#)wG+#89T]=0rL?#[A#29eVKJ3;-.12h2>B,8Id(+eT9U%MT'B#8*>k0.pTi)Fs>Q/YekD#>P>c4X;PH3N#G:.$]K+*V;l)4@f)T/dNXV.9wZ)4pPqw-eL4gL" + "BW_V%k_D.3t(/l-3YkE*.(qb*LURs$7j%l'%;Fs6@$Gv#@c$-+pM;O'D,mvA_653'3#7I2GZ(O'vUt.)##aO#1v`&H,[vZ$*M:;$0^x>#1UiX--ai63Ewu+#rKU2:oQhv%COLp7(RTgmUKVmf(%GbGU##xK'#.E9T75Fxo%LV5B,*Rr/:=F#70" + "N9cY#>/i?#pH@>#dTl2;@pVC?lmTS%DbNT%DG:8%=@@W$BDjP&In/m&O7G3'X0rgC4[]M'=j7-#:LNT%8d`,#6.@<$8g`,#5+.w#8j`,#38P>#" + "8N`,#?LJM'9LuN'W$Jb%Uu;e+^[u0?WXSM'F;$^%R-4K*G>.a?r$I1<&.fA6Hble):']t-Eg:l0FsHd)-%CZ1T/RgUM'vm3Q/" + "B4e8.;j:9/'=mv$$]K+*09Iq0c?XA#j$d,*%u[s$,Qa-?4U@lL*?tk6%A#GiixwAK$UE5&K8S>,opO9%/0Cu$_AU>$hR1s-bc)o&QS/b*" + "_-hG3>?lT%$),##rCbA##F&T.*)>:0ae@3344Is$Dl$W$Jx1v#1JG>#D_i2M$1?.#4rqV$=J+.#0cLv#UKIQ`f]3BHOG=&>&fG<-8A.+%M_)r7X7>W8]Ns8.u%<3)uFNR#6?N)#@+q]7" + "0%TL4FYC;$AAY>#KjsZ^[CRW$-I%C/cd49%4d`,#/Dc>#4T`,#1D(v#4K`,#9bAQ&4a`,#91NP&3u]Q&VwIb%r:H9K9Kf:Ca@5r/k@E9/Elta*lWWW:`nvM&5@t,U^:/ADn;%4X3W-i*SX1`Fn8%):OA#.dGb%F4)/:,N3j1D,?50]4n8%Q#*E*,iiQLA6)m$]669%O%Ec`xQ7=-f&l>-k=b.)flsE*>O3p%4x$W$pa>c,hf[l'M0':%=O3T%8+r;$" + "e9gM'U,%L(GM68/u$$K)_>N&+s#OsUK(RK4A#k9sZ#=UE5&I6gm&QMjA+Wv1O'b]ja*fx6%-)G4I35nTB-pV/^+>Z)J>#(PUV$c6^iKiYHJ(a*s-*%g*87>Of5B76qi'" + "w@ZW-N#cL#-cQP/SP,G4,c,t]dn&DFi;$1:6q7Iopj(.Rvg)nM>)OqAk6/rR5Z$w@:L0'?07/f9`K(k-v6s4?)B4`k*9%$i)M-" + "T+m`%j<@##5f1$#E@%%#Uqn%#+[9]7sbv(+x%SL(*AkS7S>#+S.n&g?IA,.`'f)d))k'U%b.Focq6&Ql-<.FsSi)cTM)N" + "*i3<%crTi)6't?#0@hB#@Z7F(n%`&T+@xC&el1K-C1$T]aRfhU_CT;i)W`xi+BTRJqsbd@W3>RaL#4Q1Q'bT%p6c#%/SC;$gQ[>#:D.KqJ3$Sd0YSpq'7'TlSY,mU.>>7@&ND+)@W$XUFA-*A+i(F4I8%kZwu#8uCv#Jc65&;C[W$^hhNXWP:;$<&;Z#O^5n&1h*d;DR4K1wQED<" + "(>P>#$uvRVet]l)PBUQ$gQIVQlCeYuPo*d*" + "&;Sl'gwAh;6I^C;$@F[8%;Nc##F(PfC" + "-Auu#B%lfC3FaP&9;o-#3%iZ#6aA>#IOJJ(B)?bR&=iWP&7(V?@%hJf=aCC4;E,&U9)X'?7AIpq/)aRh((7$0)XZ.b42tu-D^*Z5sgw,*b^5N'S:Ls-" + "K%AA4;E6C#v:Rv$;-rhL#hs?#?5TF4@Ci8.3v[)*/j$A-8LVt-v1e79Liv5/pxJ+*&Z#QCV[#gk(kL`ohR/T/Rh(SG7L(87Ut6CoqV$-&;L1" + "2fU;$w8#8/k.v<-7wNn/:)J?5MuT,3ux)u.q_vM#jhS*@^9/s$+rI<%#ko7;81/)cslf(qqGc*W9r]5q=6I%uHa7`5r:Z#<&k9'k6aV$HNi<&$rt.LU718." + "@vp;81vM4'9(7W$sZqv%hlES71DP>#%SHx/+P(v#1m?8@8>we/%9XV$'ql+#1]v877QOV-4cb.)Obws$81r?#tm=k0?E->%2Mn;%s7=+3j&p.*Q%Vv-4U+,2VAqB#b3FA#HJjD#ei)4'" + "9Qo9&8oKd2FI1.#2#]H#drKK-5tRjPPh92=$00X:`'Y`3$4fu>" + "4-xA6POMV0o0X9%?(_v$Y7xfLV[?##-9G>#&UZv$DW(T/r-g:/M8Kf3SoU%6t;xI*?qjp%#bJ>#SF;v#N[%@#+71W&+bZI#NpcN'S]*M(#:*XAn`&m0tGK$-7>aQ&YuE_&7QkM0K'3#&GDflAYQJ@#n7^+4n9LG)H1`;$" + "U*J@#o:pF4n>#jrn%#Kw`V7A*&&,a5wD'Mt%##IHtgNbkOk0-d(Ob><.^#YuOZ$+;h=u`28g;_UZwTPE8$&c?1kXX6dmQ" + "mihE4rhC9MvKegBGrfA#joMT%3NSY,2Y2?#m&k;$.]_V$fKR>#1;s1B,umo%E3=x#5o3<%J`<^4w.6J*RJIl4TV8cO2qdess&c.G8EQ4Y_H8K<#HxK#2^t,MgHQ>#8?M&#)/b8*:-xe*" + "9t>N0-Lx]&$fWa&53)qMkjj[&L](W-L8p9;:%N'#$,rY7jSG##2c(?#lYqr$xTG+#,Pu>#1Z`,#+VCv#.T`,#2cqV$1EM,#&0#^=-`UV$hgLL11Plo.FK1l02),&%CDWv535-J*)$A+4" + "okY)4Kp?d)k_d5/c:pr6IuUv-unf,;Zr*+3h^'u$`>e-)8.Y^4,v7J,edX5&RYuY#IqIX'd5IE-$]FH)T$BQ&Rhap%N0^2'?ut1qlB]N0.$R,8T/gV4jLN%0i)*n,njZq_F*Q.i?#v-ikLKpC)38=;GDQHr]umI_f`ksDsKiXTH#p@O&#$3h'#" + "4dZ(#]sR+#'Ci;61(wo%x,.%%5@jl&@RNT%?4;s'M_I<$7(eS%]4ST%l6^]=/lLZ#R3%l1@jW.3C?.l193RL2hN.O(X-nO(?os0(xxqB#?mZv$ECIw#J>.6&R8@8iU;$@uZS%iwLG':JG>#B+nS%T0lk'AdZqR$&Jp(_Yed)Kg0>&.8OS7P43p%50tp%:e/6&,>_v#seol'xhc?,#w`IhTUfo7;)3v6-D/$-.g>G2" + ",0/iLiqH>#g),##&/,##0HcY#%XED<@d/a#'9xu#;X+_-`YC?-6vK[6@tOk0o29Z-Vq'E#UA,s-u9qfL,.2#$q)YA#n,U:%&ur?#xaF3b2_;;/wIpr6Q?)ig2VL;$s'p=%/Y1Z#@:1,D" + ",@nM04%R8%nxuY#.Y+gL(Y?_#c-`g&=O@@#rcru5F*,3'6`(?#@[3t$4uH8%?C@s$5:nS%l8c5&%uLv#+RMs%V3n0#1da$v16wK#@f0'#a'5*,n^O=$wJ?-d3$W[$>`'+$-Vu>#3ihV$" + "_,SfLkW=DA#NYnb3.TS/hHv=59U:hc3qcA>,G26A_`<%&nx4^d#A#3xC?#vE*)#wj1($)>P>#T#SfLL8L2:KX:j(p/u9%gHq,3ig'u$c3rI3D*/i)oNv)4XC[x6aoot^M;(S2Z'^kCcjYY#/p68@1uZS%2i(?#9v=?#-PUV$sYPs-TaFoLCqv.:0L.hM4R`GD&St20E$9=-mkAq/" + "[&Y#-s13=.o^Ma4nlqB#8,HA#An<:.QkK&$tf%&4KLhTrUEW@,eFl;%a4#_$YD0gMdv2x57G5A?\?_Z%J(" + "1Z33(*&v8(8q75(^lL>#_036?tHE%M7aZY#K7dl/HP2;?]YT,.)>piL*QZ>#8R[I-.S47NK4s%,Ir>RECo0v/35]&#VLa-?>c*.?.oHP/I,eEn6&OS7^r+Z$=/KemwG`3k$0$:i$1x5&" + "YhQ##nVH(#Ccl>/Po6s$jPwh2I1e8%q^qv%0oqV$BO_GD/]l>#B=:GDw+v876uqV$3KG>#+V(?#.p98%(tsD<3uCZ#*pH8%#TTs$,:gk1Y)l>-^]wD*fgpQ&-`UV$&'Gk0J[]R/&uI`," + "D*6N0g<7f3+g^I*NoF%?ohP<.1UW:.$jWI)gVf3%9o+(lqV-^Z#B['ApD``3.W?T.tkgG3&poY,Ek+O::c'g2(voY,f84L)&wLW3@dYfD^GXk+7NuD3F6s'2E_Al)V4C<-I0&F4m7sU%" + "/Q_s-1t[Y#YfY=l[<0GVbbLS.dGr80*$>x#j+058';P>#jvRfL`^FD<&rB^#OdLfL=qX*,DKf&,<;I?$;'W[,Ug'u$:$M^>,9cD4Y`:5/w0`.3GGgkL`J$X/Omd)*D22*4dIKT09(+9%" + "-W+N)b%d>#MK>N'G&%3'aE^@#RS5.=LGiH8N0TEX&#,]eZ7#suY#UiEM(:`(Z#AE)61D.(J)mXa)#.S:v#7sXV$nOnqL.fD;$B$Bj*" + ",8hs6'K1v#O&NN(9AS1(&_?k(/epi'?]qv-eSZ_#U?/(Olu=c4l$U=%gfcD4)gi211X47@b]V8&t'+F9it@T%ar]iBcYDs%7bHw/b``8&g:pw%Y+^a3xgn],wgB6&db%->>#O2xL(#PKb*JK1l0W+]]4?G#v,g6e5/8u(H*vg'u$DKLZ$Q>Mj9" + "=66N'cu+G40Zc8/3Yr_,().I2k.^>,Dk[w#J.Xn0]s10(#8f,##A?hfLJ:-##rcl8.xv:c#L*?N0$>=i(OD^<7>50i)+E*'3S:7YcD<%E2P5]H.X63ume.M8k^KOmuMaMiZsMM%;-?0oQ-^$F?NCep3%s>K%#WCEK*;o$W$1/5##5]cY#j4B58&2tS7kf3873ih;$@#T>#;F6DE/>G##LB]nLYkH###3,##(^fQ(2hUhLsoLU%" + "#DG;G7UhE*'[RM@@NUOK3i*Nk/(58LD+U&A%Mg*DFIW$[:+gLQl'*#C;Zp.[NYJ(in)qiAV058-TidaAj?j^3Z44LM8WjNrBBC-7d6#5" + "q3wK#@;r$#&$4+ce)QsGA#H2Cv-&wA%6G@gG0W5NT%XiLT%]a+O=1;F/qlO]X%D):-#j)R&#BuMqL][Z>#'8YY#&5u(.>#ffLFk%Q%" + "lTLfL^3n+#p_li9>h3j(/,oA#?rWGP2ps.LVV;7ES5WlA#[e9Dv(*W7^=u^]tYr.LG@MWAt_?X7C+qF*Y_7W$2+35&dr$3Da9E?#g2,##;`te#]IE5BA^,Q/fTW:.eas1)2-#Q/e,IH3" + "j3av#O5?m/)Yc13DR_+,?S5W-6NY%'.,eQMA]mIU4pSD=+okA#;8M9.%/5##rCbA#gVDT.BL7%#6af4(8n+j'+;YY#*,,##%Z0@#ngw>#gQwu#(Duu#/_1I&bfvWUDtdi9Z;CZ-E?M*4" + "tf%&4D`i=._W@K)6[]R/*[D.3eD;ILPK:?#WA7Q/D#IsA74,aaRsM*IbaZ`*xT>T%]kfi'c?&/1i*#5AG^Sc*g&U)3VrQS%p2TS%=LNT%BSP?#e3&+%.N(9.,`U;$nb5H21.<5&-K`,#" + "Ehs5&1f86&/^98%;M:k)//Oi2(Y*=.C'Eh).jn-)02Rn&T:=F3bXJe%4g4c4w>pA,;:J:/8*3a40qB:%M00u$dZ'u$BKc8/o=]:/=)'J3[tw[-:UhhLbB2x5m4^+4E_.nfJ]S-Mg%hNC" + ")5G>#A7-of.G=E*uppi'l5S9$HpCO'kg.@#$ep0(V-GT%gYY7(6+o+M2I9P'i.v7/BECD3V'gM')t&@#r&M4fdDDO'%6cu>H>;jT/jd(#sg7-#Ic_7#bO3p#';L#.s8`G)dZlc)&](g#" + "2d9M#gt?CB`(,AY2$P?,4K-x#VsiG#W7Ha5stA6&erhv#8NNJ#S(G>,qQ9#$qhqA(b])aYdUKF*wDXIDu'[=-*ptiC)E]A,#Hr_s$I/aA+i,`G)V40:@OEkl&pF]W?^JZ3'Yn:>,NS8>,26Y9/,tT2'<.$$U.tM(^Wf5)Sjkx#HXY]+8+nS%GQ`,#j`tr-b$Kv-#'A>#" + "Sr2e+gmj&F4VmF#-7:?c*YNT6&]e`i040Dn'*pCweN1Me$wAOZ6c6s*%d:i;-H].i$vsHd)E3lD#BBGA#F4p_4$I$HP'=L+*J;g+4W>_W$@%&45_m;%qFUX:2V9+*>&]#/sV2)3k;>L#8Af'&wrYk+3u/U;uE:&$+*8f35jic)8F9Y.%M++3`-7W?:Et7/>oO2(G;*I)TeYd3vIk.)%1)`+%+mC+LM/$5@uc>#3JuY#2i_;$" + "?BC,)Xm6H)7m-r%Mer?#*;P>#?fY7(++mf(M_[W$DC.w#WgG3'6%Is$xBh0,U'As$Kw;-" + "3KQK+e[k0(j-9C4?Sdc%$3vN'.$AE+dpG/(IQ]X%c93Z#%^gS%/iLZ#re(/:tfs&+U7@<$xYFx$]WOT%6s9s$Rn[W$4IjP&b+SfL9Q5]5?9c/(Q8Ih(8Ml>#(?g;./t[=->FW5&_RFgL" + "'>5H2@HLG)Ob[<$w4hW'1_BhU/GPS.%5YY#8#3;6f,[0#6l:$#pH6q&;`uY#f8P>#?,^>#%,,##@(#[$'K_$'k01sGA#8vjI3&$nO(wH0aaT&,+B:&e#58jrIL" + "$aI1g[4n0#wWj-$tun+MkR3$#t>$(#e5x+#7%.W$AAY?#8k&D6:Aqo%:U.[8%-V:;$/ES>#'2,##pP5W-pP:?[`(f5'^n[f1g5P^,+PbI)jPr0(m.]5'Of1$#.wdO(PN.b4" + "4gN($*aCD37ET$TTN`hL9CT%6CBuD#Rq@.*V-)*4TMrB#lT'#$Mqu/g-N3]%am:mf?[4TI[*(u?wI>;-BAkA%ijCg%a`Nh#/;OmA4b8,2:_r%,u2>A#I$O9%[hL`+P:V2($5Tp@4H^;." + ":x7@[sdSg4He,87Xp[i9.c=&mD&###);TY,w%$v,/:%X-KP+v,vK3C,F1um'Y%0J)Z$&W$2mqV?U03h)a=r;$%(79.8+r;$k(K0)^=@s$ERap%b7P81DH=U.3MG>#`9OC&]3T]=.f:?#" + "3$_Z7j=;)51)6f*SphT%9]tI)dvPn&u7^l8)ge*]nsT.cv@+4-flS.RTIg)2v),V6TGG2" + "#;Q=l=jNJM;qIsA?;5dM4jX>-deU&l)beZu&M1hLs)#N-`ich#M3db%6iYcaLN[['sesvAX;Dt-,'6i*3=cT%BgYi9^'##57D[W.db%W$G+ns.x5Cu$1`g.=isW-*dmYj'NaOB6VD^+4" + "&LgQ&PN53'&o%a5?R[W$v63Z)PmQs8:toM'7v7-#L'kp%8E&##3l$W$4>tA%0f1?#6luY#G7pi'Ks1k'AYMM'HZPN'B,P?#7(wo%tcl8.,wu+#tWh2:O?Nv)V8I59)Pq5'Uv.X^m-1T9" + "u@$Q'^bkY_Vap`?gdZ6:a9/b>b=14;V/4K=c4*OT:/Zk_a40kSe$[?ng)3'p8%wLXQ'-R#p)H*9E*jL(SZ=7" + "5'Xn/_&ID*0n3u-P+)X-l8'F.&N.)*2:(B#g*UfL`DH>#*DNfL,4[M0(`eW$cVVs%5T3jLTKLaWaq2D%7pGK)L&HZAXf1+%@%TU)*C,E#q*5=7D:.W$xbw5&x3H).[]HTI`?l-$4PGk4" + "C$REN=n7u-j79p7'@%*HrS#It[7X3>]#h(058u$6(#HG5?#FhdDE+55##uE3D<++:'#4AqW$@@[W$@2o3:;x_;$qf:9/2YXI))U(lKrHo5'1nFo9_hA,3O.es&m@wT24)B;-)u3q-" + "+(,1#.BcTjTq@Rj-)PV-Q0'B-HV5##k$#'$9H`&#QXi*%DkJ]=c+K'#]xpF*v&ck0eZ9M-]v>ESXVq0QZb?>#%,[0#T1g*#'0D5:pcqV$1J,##Gj@N22#XS7.JlY#%RED#((q+*M[e<$M>wk$N_mc*EVC;$Rtw8%>2461V;W&+W?O=$n18p&:7@<$xh9J),%d;-)E&M)L.)v#2w?L,fjkx#)Q)0(?QZ`*x%t#5Nke%#t8q'#NS(6(" + "PI)20$0$r%2VuY#D]VA&Vl_V$$eaD<-Pn&IFmN`+bNau-HTo],p8d3'=tFJ(LdYj'TQA.*Dr&)7w%)WH:R)B4_W^:/vu/+*Q35N'k>?A4&,]]4iKg9MBHQ`+B=hJ)SaM-)fv1O'b&G$G" + "kKb.G$(MU%ndnIMf,Lh$tbCJ3B#q7/T2t5(hY24'J5J;M3gh3GRgq6*6Rue)NnQa3-959.:k7-#S_Cv5k6X[7xlq;$xZ5+#.SC;$s/5##tN5+#%,,##0U-(#2DH9%>.rv#3>,##,S.n&" + "]m4j9rX#Fx0lBv?o5'gR#c*#[K6/_W^:/v2x?9]e&K2@P=x7[Nc##/(m<-2R3N0pD8=#(J`,#Ho.nLs@,gL(fd##4qINMiRH##-LMmL):#gLX'4<#" + "I&Y6#7A1).XxefLmK7;#c1@8#eDpkL4qugLQo^=#x3J31A+i?##v+>#-=':#T)jE-kP0K-*GuG-u4T;-UxgK-DW4?-u,1W$/[U-#L'06&F;P?#Gtsp%AfsT%84D$#=d68%6Z%-#=I*9%" + "<&>;$;4@s$?v6W$GC(gC37nS%<>o-#FLRw#So+.#Fn+j'8j]Y#k@c4gNEH*(xUS.MV(W-).GeY7_tD#h$pc2>;gF4VE+Q/&2h8.#qVa4UrOR*2,h.*iT&],N-_C4m_Fj1" + "#i<<%[k[s$rxpG3G@lBAsbNq2af1e37FT:/$?Zv$iLffL5.5V/kOOv-*[Nh#g@[s$i4-J*qYVO'F[=j1&0&F.s[n?9@v'R'[/l]#OHOA#0%p+MIw%],.+uA#P)gb.x#.Yu>#-PC;$)x<`u+fj9MLLZc%X%^b*Lux1(N)b%$3l1Z#64eS%>6>3'I64x#1rH8%p=s9)4N9N(@XRw#" + "@Tj@$:FEp%I+%<$BtNT%4]uY#5r_;$1`KC#5(%<$1PlY#ek`;$4l-s$2a$9..Pl>#B3Pj'6i(Z#:+`?#C9,N'8]C;$/V1Z#IWgu$BuL?#_+du%Htnw#;FR8%(;P>#EOEp%^OaP&k<_hL" + "Dx2Z#A_]M'X.ffLM5oD*NZ0^#+-.iLiHj;$3%rv#PK#N'-GG>#b9lBAs;;s%5T:kZp>K=t_u71Z#3xqV$F=iZ#ax0W-H<53'E0'u$-S1v#" + "=Hqc)VA@)*:+wo%XM5`/54.w#-l?8%P`F$$8+V?#>n/q%8qIu-Y1ofL)A,gLgn'B#HZl/(:]P>#5rCv#FQCg(?C.W$.i$s$;17s$GXW5&bL4gL*xSfLAb;<%>3>N';w]Q&@<#7&1u6s$" + "7+M?#<1.W$CC;Z#FxZS%?R[<$rdpE@mfS_#a4Y$,NU.s$>2>f*ZQ3L#]1*p%_;?V%Dr6s$Ih>#425##JpZgLfNEmL`?DX-ENrNO:oLJ:O]'^#Cf*T%;IV@,6RmG*qmP/(h^c4XNgR/Z>tjjglQC#W+tp%" + "x.3P:bexi'^0)kB+r%o%KwET%4rL;$aS^[6m-N?#S@l+'S.9U@w@rYu1u@Y-VSp9V81wK#o$###woUY7vf6<.M]Lv#Q^0:%+GuY#oS(v#*EN$$@Pu;$*;>##Rb7F%GnJ]=8L^-6wM,:." + "1(PM(2B(l0s/?qV0H.)*Yk[s$l:*T/?;Kf3*H$9.$2f]4^SEF3NP5c4CY9+*r3lD#BV:13dRNT%?OWp%pKji0rvfw#I@o:dP$OT%orFKhiao30K%8M1" + "bwE6&fOlJ#o#WPEqQjp0Dq=)#ub`)51+no%UwI/1258l'a&a#$A)ofLnUd>#,+D=/&;cY#YJhPM`D$_##05##nT.##GN[L2be%<$D=XY5e]qB#26MG)Yq)Z6WK]s$].TF*A12X-EI0:)" + "Q17]6CE(E#v.<9/@=@8%l=)J>jDPA#/_3d3Q)c)5pPLm&Q-4t$:rLv#1gn%%E_Wp%(.cQ'X$*l%S6TZ-Z%K1(FnEp%)8.GV4&Us$C+rV$&PW`#G^mT0ta$v$9pMW9NVF;-g?O=$VW4t$" + "0[qR'NwOJ(fF+gLBBb(&Ynd##K_R%#ovK'#(&iY7T`8p&5A>##v1@w-ss9U%d^TD3OD7?$R3nguK>uu#@dv`*T`)-;ti#0)g6x<$j,iX%+Q6C#)8^F*C7_58^Ir9/(V]C4Dt>V/aSID*" + "E05Pi@b3.v[L(,n9qVHuxIq/<7_f)dg^q%m.058f`*87" + "49k;-#4?l.6;Xa$;NK40=7:GD$),##p0c'&jXAm/%V7fgXZ-SfU*/<;r]78Y:v#RG7U/hiZt$eqE]-iI'f)lSQ$$*W8f3'b#s-a[5gLxrZ1MJ=S.*" + "&%?r#rfYn(rKl'4Xw`YGJ1*p%j'S`v0463Zm/%&>uuq`hR#XKa)#<&iY7bugJ31(tt.Uj4^,9Id(+tPmR&;;G>#=h3f-s)WFN9uL69$+]&6" + "/_P/(B&obW#5%F4W.7]6gxOZ6DE(E#Zx$m/O;Kf3jLx$$dnchL+_c8.Z=AC#df:a4V@E:8Z('@QjTF+5ke&Q&.>cY#/VC;$1D4K13rh;$/P(v#S#V0(l(5Z[,2(" + "Ho_v#B`(?#9f(Z#.D;U2#2ofL;D*#.bCxfLFmn`*8bqB#PJw-)NA*I)#de)MbRm$,$,>>#^+sV72W#0)?o1K*+'[a33=*9%A3(,)JQ5j'SH&i)rkh8.cVrh$Rq]:/OJ,G4&.^6&K[r?#" + ")=e>#-hxIC`2dn&_mCP'2/Y)8$BmD-_h%T%Ug@H#^)V$#r>$(#3v_Y7b1dc4w(I<.4]X.)I:iv#4]>>#sABW$Deh).MWOOMY[-##-a(Z#'),##Yi^F*Er7i)+nZ0)f#2K(Jd*P(?Ag+4" + "a_UF*C>Qg)BXkD#RmBj(9wvh,Z]Qt1QeZk(rVvN'm'Gk'04%=-o+r<-86.&G-K$9._=;N0(JMH(TZP7&tVI1(5mxs-Mkk0(ZviW%lO2_=1S#KhaZ2X.Kek0(4^-9&nrEe)11lA##6)+I#i71MF.)W90q%1A,##uHW.=L>Aq9%c/q/RWo],>fCZ#)3(Q,3gH2vBo8%Y@[s$e4NT/K9ki0JJH9/P>^+4>e]FO;ekD#'-T%6oY+)5" + "%2BF#Y9xJ1DlNt?mH4K1-8G>#?RuY#-UaJ1>XJ2'6:es$MnRW$fGC_&(Yk,MMg6#5NqDD%A7-L3>IN5&C49:@t0,n&wVGm)8BpK1dlH_u_X1Z#0YC;$W^/I$(?l'&Ruhv#0olW%@x(?#" + "1.nS%;k$$$0Sl>#%*Ab.OY(Z#)o0^#PcQX.-lQS%uFPS.FS2GV;-Hl$x)>VHlaG<.4/.^Q:O7@#mP#<6.6&##;c$s$=Le5)1oqr$8>[8@@hI@#@Xap%LL66QiCfl],5dvSWX)2MZc(_,;8$sIPC>#MkRX'0`:;$BUUGDOtaP&:U&Q&EYY?#4MuY#CJ+.#qJE32;7.T(@4V;$;R&Q&3^i,#8RC^#" + "6VZ`E>DSj0:SIW.fA_#AwKW.=>H)p9**hv7K^wh2utk/2]g8&,DWOu-s(xh(viqB#=&`Z6lua.3g6@DE%/Bv-Q12X-['@6sC4vr-<)'J3R1dW-8>Wt(]*UfL=NC:%cfrk'/4m<-cJhw-" + "MOTfLh2^I*YL`T.R7l$,//K;-UuCp.6`[h(o*je$ZcQ=1_FU_+_%Rx-F3UhN^,gnNe^e%F" + "CoXfa8mbuGfS7T0aEh>.0>5##iQ[Y#;YF.#)>uu#EGJd&th;L=[54.)rd=k0@2>o.i.<9/C&f^$pXfm0p?i8./x^DNrnXI)2xWUISZ(a4ZM#s-=VT:Jw&&r2)W7F%,SmD4SJ#%90>QA#" + "CabS%:GP>#NJ*I)Gm'?-Or-s$Is_K(3LHc*O:;Z#/xZS%0kI],c%*t.wA`k'?..<$BX*T%U9n0#:.-E35:[s$PETq%Ul)T/Z,uY-h9F9%:xLZ#FsHd)/t[=-5#/-)8j9Z-+pV4'ndV4%" + "AFVZ#^'7W?-^tu-dQ0q%1.nS%%U.x,6POE*CeJ2'4g=>-cWB6&@tat$Lb[<$P#IH)JOrv#8fCZ#M[R<$NdPn&[NKU%V[%[#SVEE*ucMk''XRx,L)Lv-$piO'KSgHQ;.M[,>H,01/:jl&" + "(<_s-P3wK#UNc##IXI%#lpB'#>>N)#gbY+#90f-#jD@Z7?5+gL;Uu#%<2uv#0>YY#)>G##.Z=;$+kWD<0u$W$*gh;$*sGT%^$%&,(JXI)[aYj'M90q%1i68%CNlj'evaL)Pu4d3X2$+%" + "JM/)*26MG)>s6/(G]iH*k%AA4atr?#cs8I$Q.J['/N.)*aY?C#3q5V/_#p8Rf68>-'ZbKMS;MB#Y36bM?@(i<@Plo.)VM39ls8I$g`H(&XSnW%vqO,MQ]/nN.ADZ'jMQj'*M`SA" + "]cN/iOBPj'f>^;-&o5<-@#H`-2iF_A?.r;$R>ID*Qi5)%o$Wv-e>K.*d&SF4QMn;%<.?Eaa4*uR1A$eWs93d+Q'02i3G0<$,+" + "3xr[G5vX7m$nbA@XZAt_V[c&-0nxRVY'Tx,:.<%kn8pI*3biFeD#WEe,,Jm:1GP>#0>,##.MYY#UxefLjjv>#]%SfLBp]N-G7Bg/2u6W$3Z`,#`tHa#(n:O1a81Z-" + "nG;O'Mw[@#l$#'$xI,W-5$A'f^BA7]JW#+SL;$" + "le&*#=F$)E'Auu#1p?8@->G##NNonLOLH##17#-27O9L(vUKb*.Ld,*iiqB#Se3g)cWb5/,7$`4&Q(&=6kO/*jSh89SpJ;D>jbi2%o8qjq,BR;Za*87rNCP:H(xU.vjc`uKMVX-SJS&Q" + "%Op*#;ahR#eS@%#$K6(#m2#H&?(.K394n8%Dl8mAFL*p%Ius5A+YUV$1,R8@877w#0.[s$.QM,#91<5&/f86&$*A>#r]7=/DB#KkA:/7q_k1'(#R0" + "if$w-0VX.)On<9%>[[@#?D3[3nYukw1?#*`#g):e.x,vv4A#mSc;-_;S>-" + "ae%;'c$cf(tY>>#fHI>#3F1d2raFk0Yh?X-PFo3vo:)kum>2U2P2###+vG`a,1cTrT_d##Oqn%#?m)_7`Uo[#]10J),S1Z#]ixl'vo387C:%w#*D,l2;D+.#:x_V$45R8@*J:;$L%N)@" + "ZM;s%2VY>#2%N*,mgKU%3GG##(BS&,0>+i(uGHV%Qq*=$7Oso%J*,Q/kMbL)&l[s$3Vk,22h,V/TbCE4Q/`:%&,KF*9>%&4JDpvAa9T'+$6v_-*3-b<[u>,4Ke1`-fhI5LX)VrAt7NT/" + "Ld##,Kxu#(Rnc;.lqV$*^Lv#qQ%##wo@L(Nhjl&eNWq.HK.b4^g9W$C7XF3&u(H*.WA+4&V'f)-" + "Hi-Da^CR]k_68=Jvnw$M0Z+>JA-u0R$K+S$EA$e>rDM*%5w5GV#q`C;$4oh;$Hx-9%TeCZ$ex?qL?38DE,JG##'?XV$(*Mc#)AP##3,g(1<=2L)Oe[X-x7x)*vx_5/" + "$8q8.hG+jLN_j.3&L(E#h:AC#N7V9.sJ))3np@<%qco>,eViNXG4Sh.:>Ku&<,Ox%QXmY#MH,7&9bjT%FiZT%;1<5&E+iZ#D[+6'@Ya,&igS[#]?3d$6f_V$Kbw8%sJGb%w/1sH&JTP8" + "tNc>%%&nx4gr/1(@av%+vcM4'LtWT%d67&,,S:v#TN9t7O'LB#uQ5+#qUGM9r=%a+*]3n/cs>V/j=8C#i(Tc0Pv)E*_KOA#[kD7B]..b4`Ai>70@1[%bj9-OZL'2B?IO]u:g`IM+(%##" + "(&>uuguRH##b($#Oke%#*,3)#+^`>#dY.#%I#jv%-JYY#?FCGD,JP>#6#8-#,GP>#>/YV$2lh;$;WCv#=1lfC=IhcDicOW%;Sn8@G,u?-0nCI&8Lo;8mjmA#TEE90[L-[54cww-(tw0#" + "AVfT&(s.)*VCZP/?2'J3@nXG%Y)c8.Pj`.3gahD3DDXI)]1h8.aGUv-/GW/2_V8f3_>]C#^ZkSRx4Gj'@K8UT*ol$,m3Af$1]MC&:UEp%_'_O;)DRW$.qWd;jeqr6Bd/i^'G@3'x.)pL" + "S[m$,_Qk.)5`@QMF1Rf$C9:,)kBe],Cn[[#U1(W-&dWI&6?mx4p/=mLBnMA-*>Y>#oS(v#(D(v#7gA>#(Dc>#-Z=;$%bWD<-Y(Z#'TL;$cnD_,3,A1(JNiE4TekD#+gB.*uc-=HhYlRC" + "*Ih%%*VO,M.B]s$'Kaq-LmOL#0@%lL)vMaM%a2<@rp=t_j+UX%Q#8XN9%><(?A?IUm&.l-s$XPApg" + "'Zg%#a2PX7bfcY#AOrZ#j49584-XKlL:)qiY.LcD^+5$$up@>#Rd=oL89wi9WCrk)5YDt.NcOW3e]v$$x9,V/xE(E#WVJD*E(`S.$R9T%rsD-&H(p&+Y=p2%Ato2'x3==$R`rZ#nsJ(0" + "Jg4',`(Qr%16[S%]ih5&DGbE$-=C7'_sMig'%JY-3B:tUU_vu#aOnRn1k4GV$5ju5ecTc;ks0@#XcdC#r:958>m_>$lXa)#`@:$^qj;GD(MC;$;=UGD3.7W$;05##'8P>#3s?s$'bG+#" + "/B,^=3.@s$=WZ<88T+P(to%;%wZ+F44k612;Y6<.ADn;%o)%i.8,ZA#VeKO.p=.s$#txFT%dIB2'" + "[YYf_8%%s$^bH>#PA;M1)]9(+bQb9%+Na2gWK?e65YeDa=_N5&YnsP&mZ5X%]+uI#VFTY%Ca:G`@FrZ#;xOJ(_eH>#;xL?#6&4i(hZK6&TIVV$CD4;-F'hlA7qFJ(%&nx4N.#&3Pq2F-Mc#&fkA#q.VT.:$cJ(U&el$]+1+*9)MT/@J,G48T[)*1t`a4%MbI)_k2Q/T1LF*iUeh,af5R*[@[s$^_UgMD1L+*@C,L%Ukq?LogKF*" + "*Zcs.a:kI)dbE?5--_k'l3oW$k5Dk'^NBm&]9'U%A1.W$Gh5S*(NaE*S0L2fx.uEk5&aW#7&uIK+*Ms*o*j_fQ0=wHZ$,6Ou-[VW&#" + "ZO`S%u&.GVh0.AFC3uGFm_jV$UsY#v5/iHX,2%L5gLab#`4_0ihLNHdd3kCJg:iq_F*NW$H):&<+3MX[rQ" + "NZQD*/[_a44.7<$fMc;$3%A/12QbW-QO53B:](Z#w_5_+Q72?#9LEp%ehL[,SjhG)3o_;$w*gfL4l.T%`X[<$RlkV-3Vc>#[hm>#[AL^##/Oa*YtQ>#)DlY#Q;G>#ft@T%Art:&ujf@#" + "]aJ[#^/fpAa(E%$I$jRBG*#n&d4dv&FZqG)Mv`]+nQSs$Xt+N1YCrv#IkDT&MY4v,(XFqDsh/6&pkUW-/V(Z#bQ=p%34OV/@+Q>#7)*Ow>7A3F/2'-Z%-#>ni%,o=,.#^'f8%FsXV$OtIs$A2n8%Jr5?&Im:k'Nn[T(P,;k'YOo[#AluY#" + "61`?#,iG)dsEA+sW;D+bOeA#nrs.)jF$Z&C'5N'`Z+4MjJ6N'Dx@[#7[iN9L(=j$cR]$KH1+7M*Gi(Ep<8Q'%]RqL8C+eD@-Ug)+ulAHu]Da+5q?bQ&,FH-nWAc$W&f+It-o8%" + "G;[S%'$nLI,Mq`?3NvGO^Eqq;BqAROUac1PE[E7N`Q$r;U/>UM+>YKG0)-lEv5FRDP/$O<7%Ik2+1,R0IK'Z->LCj(II2d*L6xA,9.^V6?Gj;6IZD.3(cK+*]3B:%iFq8.]?A8%" + "(4FA#%Mtu5&V5W-(#@^ZD(<9/8fDU8<3PN`'`@C#M7b_=vD?o0#[j5T%=C[s$B[N9%LBgQ&" + "*>G>#YQj0(YC*j09Fns$Q5qt$5uCv#ar.K:@w&@#U,Vk'r>2k'>UsP&Cuq;$`rJB+Jbw8%te^97uRap%s@=2(N$XT%;hAQ&,hex,aQB6&;W9Z7AuQ>#B&B6]5V:v#$KmAF_/E#NeZ(#D>N)#fhc+#u_Qj+wRb87Vgu=$q1eC#90vb#H'o<$/bLk'_/2O'I;[S%+eEd;=nW9%7P)q%>R.@#P4diMi8[tD#k&p<-ao*O'p:OF3sK@+4t0LC4Ab#V/w8]+4P6iT/c14+3o;))3qDmE&s,Zr%" + "08#*8qgeq/wirO'7chV$CnET%rXU*8hj+>%QDWa*I0p2'5rU;$,#,*+v5ZR&F@;mL&ue_#K,s`'vHd&%NDZ,O*5iQ&8+eS%E@P6h92''$UsGr%WxIK(IIIW$%*Dc#u/TO&q^e##YnT]7" + "FQth)rR#m8x0D/:EC*9%lZwu#4iLv#:^&##+MY##1mtr$1%7s$2Z=;$67.<$:v=?#5uZS%tcl8.+wu+#*K*4:0_Ig:s,m/2^sj-*h`EE*0lDdD-BDH*f5fF4xG&+G%%YI)?1[s$=*YO:" + "qgDw$$]K+*Nghc)NDbI-;#u%Oi(S69Q&PPwh(sQ:41Pd5X$-YCv#ORgo:+=EH4ggKm&DdQD*`7*Q&oZxRV++]w#e>hv'1@qJ)wdWu-Ha]49?A-=7" + ",kkt$;:.[#0RDR81'kh3.JSn&ukn<$w(^r-jBDrTTj(*#$x7E5aXrV$6YcY#ppEZ#l:B580i:Z#C@CGDOT.$$0m?8@%tJ]=pc0^#Dv57CN(eW.jV-<.<_)r73N,<.7om=7s]12'>AgF4" + "'Ou)#E0.b4x?7f3?;Rv$,R7x,7@[s$I>%&4o^]?MDp6^,YpLk'j.^g<0Uno1`+ffL>Y)X60@,r/oWX=$GTl/(ajt=$C6t=$]0#m:&COn35;O2(m2RY81N5/42%X5&2Zb#%,/i11?[$-3" + "H6-7&w&HN'%pQr%QLUGD.XM`+OwwGGF@x;69*2,#G`la7PhB8%48,##eTE;$c9&s$r6>B$dLsD#l[s)#Hw&6&GY+.#HtWT%Aj]Y#,JuY#7^&##3fWX%;Q+.#IqdDE8ONP&Ef39@'5>>#" + "+WLV?/fUV$A8R8@7.`;$5)ml&1$m+#)7)j9RuE^@`Lqk;LGSq9'i+v.#p)4'6xFI)hZ612BRFj1MEQ)4O-+mL/>j?#4&f^$^Fn8%CY@C#;k?v$-FQv$<7p6*H4vr-McS&$#IeF4,em3+" + "xn-lL=hXD#N5TF4GjE.3Mp]'/f^[+4hWad*x]DT%6k--3*GlY#j.[Z$nW4g11hau-xPHk'QD[-)K*pm&K7r0*6Vu>#21wo%*s_V$7f:v#/@l;H&-P,2FqQ0)u$fY#O;@-)O@MZ#evc3'" + "a)2k'`aOA#//?A#jg*',d%G;-uJp[6)=9u.b`R-)6C*T%VN>7&^[b/234wo%q>111u^06&FkIW$RPA#,ekuU&^E/s$W$A@#5HVd3aHAA,*FBu.D####OT1X%(<4$#B,Le7d(7w-S:[s$" + "?\?RL2e5c>-8Id(+7O*X$-/,##cau2;G##qsq^f-EGb%`phV?%,,##x,>>#q4>V7-dq[-mv6V3AJr]77.))5,K+P(t+Sh(+=Hg)BiDt." + "klWI)PEZd3g385/?DXI)EF_4jpNo8%NW^:%I1?4%*Rv)4ClOY%NPbi(S(B2BF&oU.v;[L%+G9f)1XTQ/_Wp6&#M^f)ZO8*+&5'i%F'7h(A#K'lea&l1`&h30x/M0('&2wGl-CR'aJr0(" + ";`@60eQCk1*BaTr:gY=lES2GVee18.ehmc*KuUV$h(058l+n6/wcU#$bvER8lRB_,ZM.)*hiWI)`T)i2a01]4jE(E#nAK4LNj^r.Iqr?#P6tp%tnFgL[s5/(N%V-3Z>G1)X(@8%&W`gL" + "Lb%Y-3`$@')b/%#u_^>$?la>-5oN#(OPu>#4D,AFE7CB#tN5+#)HWCRist%&,.o^+*u%=I)mPIH)'32MZoa+hK+#-oSG$G_eO/2`TjH*S7Y_+aN;.3" + "2ep0(ogl)#]Ci;-:8dX2$),##3PRZ7TNct$-fh;$(NM:3Jnd)E-c_V$@O_GD3f68%4s?8@82-E33lqV$'p-W$'9xu#SlgH4b5Zs.M,HW.'paa*#X;a4a3FA#B-Tv-CI]://sId)hCh8." + "W12-3@]WF3SmPGOsPmv$u:gF4KmN.3-`r7q*wp,$3Fr[,6VE@$(@2D+2g)4'dxxu,*eOU%#'l]#`>KJVL$Ke?,0x],E]RM1@9x-).di0(dGDO'[Oe.ME*iJ)ibM*%D_`$#(&>uu4(+GM" + "/BZ;@;mViBTt%;HkS*E#.?;G#;tC.3.o-s$q2TS%@UNT%03$edd(rV$IoSQ&:4D?#C2n8%liF00:Ih(2=hf)Udk9%SN^6&q+Jl'PRN5&h][h(NRrv#6CIQ/iD7S#" + "BQLK(NiZk(i-vxO2JcY#vx&+*+^O_/*2sE@[R2s7gx*H;@Vs)#2tI-#.-kS7=g^S%i=47DFYNT%;2[s$38YY#f<0[[skj]7o+IW$EuJmA7:7W$<):8%:=n8%>,>;$1`(Z#5*,##/S(v#" + ",?'s0;7Is$6ZcY#uNED<*=M#ROD#7%SCm@9c3?$]aL8Z7f>AZ$w[3RMSk[Z%67t]7h5)(GrKDXB8NG,>Bk4b5Xf5K37%cj1KH.b46)(0*'=L+*3j1T/Ea*R5=T%iEkt$R#ru$F7E5&" + "6UP>#]>8#,WSa5&Bi(0*:r1Z#UHNh#A]U>#GoY>#1JG>#^pJI$H([;$Ub.9(?[A2'2cLv#`b%T%c%M;$PFQZ&?+R8%f9*U.7^x(+7I723fbI<$pugk[#C<[U7uNLsd,lJP'x_jA+Y3ad*" + "]RX^4TCsR&%3_s-H^ib*3,&l'ncX,i,.>6'@tX<6$JvY#]#3;&+$:o&s$cgLbMvu#&o9B#f,[0#7N9b%'lr7Rl+9UC[[j`5mlc##TQfuGYrQS%H=$2(9puY>LR4=$#`K58x3gS%vJt?#" + "-/>>#N'4:(3%.s$E_hGD9u?s$7%%W$GDnW$FX10CT)3`#8r1W'0o_v#9u`q%6%D?#?C7W$_r.K:3A#;',S1v#eIU#I(L-`@,naMJq9egnA8&cDdE>#-Su>#s$`f:Q`H,*I9r>$:`*=(mFdQ'iBfj0/gBQ(k*Bb.qTR>#W+BF*N$f[#6+iv#G[WP&*Dko7C5ds.2^rJCnA]t8V/q%Ow*7/?>C(a6fv.:HdQC#ZA)4#dcZ(#PoA*#g3O=0cm(B70w=x#(J95837wo%Fn-HD:@`?#" + "J]o-#>IW5&2)2Z#Uh(C#2/'^%)8>>#2ZLV?,[/8'MuE9@=[w8%5)ml&4-m+#/IDj9Sb3<8gVvP/x+IW.r,6n&Pv&T&0A58.slqB#S$Mw%HZ$E3Ynn8%?@i?#8Q+n%4+jp.9C[x65M:I$" + ";3%Z?Q]'^#SRGa3Y>0N2jT9Z7?xJC4a#)k'or:?-KL3j0Mwa5&[5vV%_1ffL;vYW-G5$:2Z(1LV20@k(=MlY#p$dC+X#:V.@VUU.(CaKV.>G>#2+@W$iER%)V?Q]udjl8.*c68%:4Ha3" + "62>>#QA%%#3Qp2#:]U7#3('Y%>Jm5LOVI@#04TM'gAVO'hjLL(YJaE*mpwhC<7es$3o1?#F/`$#r(Fe)^NID*P5ZF#lRYi9YbP:l3*Tdg5_bw`c.2'_R6s^T[mc1P#OYGH2W1)?X,*t8&FX#7.d(Z-F=l**HlZ`,S55B,TA@d)ToYV$'/-J*" + ";RBu.B`WF3/75IYD+NT/`KEjL+?C:%o)e<.#,&F9a#H=wEl'C_F*#EmZD*7+`Z#1u-s$I_.W$KZ,V%3.*p%;O[W$tQJ/190712tsUk';%2?#GC1H2KUrV$OhIs$-JcY#OKFx#6JG;'f)_H2Mm&[#[>mN'UbVL3'gWE*" + "1&)p/EPuY#q1c^%N`L;$PmpY$$tG2pXaGN']Mg88(BdN'`c*e)NUUo/&xxfL%6lX$G)RW%iZ1O'i](v#<-lf(?'9U%.Vu>#>(%s$?\?u/(@'':%J0Xq(hUE9%1.(^#cgf6NOgE<%sBmk(" + "@JxfL*Xo8%2oh;$8.%<$QA&B#Cn>e6j#WA+eg^u$VBn0#gQ&s$#flC+?nE=$2.[8%9.%w#8FE5&M+p2BMcl>#/`_V$tA59%-PuY#$G2k#JCrZ#vqb,MDfZ>#%R3)#Sl1RBWn8v507/hl#cE&_>OKHl^D*/XI>#TtWt.bNFG2@wsp%Z..d$MxG1#EkN9%Jf+.#Xvcn&Sx+.#" + "mY%h(aX+,)+Yb.)chFG))PXI)UR5/([>R1(9jC?#@_sp%EDNp%<:7W$?gh;$F:ufCkk1E3M0Tm&Bf[%#+%?c*Cle%#+%-G*?M7%#kl[L(GY%[#S`wl'cQKY$/J>>#N(xo%000E<9Not%" + "*E=;$>+VlX3;JY4R:5-qv7O?`k1&e-H3E$a`+ri@L(er,0b5OG2(" + "1KsI3m>sI3;2QA#pP@^$KRCc-cV8f3+g^I*5A,s-R4Qf*a_CgL.:L+*O29f37_$gLif6<.5$pR/7QOw9R$W@,[M8f3GMrB#AOw`4p[i8.FY+Q'AmH#-[UjY.^1K+*_S,<-mD?T/lQ:a#" + "tHZ)4ZWGnEQjf6(P:$Q287O2MtWdM%W.reNK2Cg4;p.g2aoY>#Dg?H)q*G,39u'dMq$$k(uk5c0PNKn/RqPlY#94r;$7+YD4_RwO(KY(Z#+Jc>#j+[Z$" + "V(g'+PU]V2pl;KrEv=v@_TG>#ooC(&R*sI-QV3M2=J2?#,]U;$]7Le*an&BuqV$Aq&U%+.Kp&?f(Z#Rj(K(qi`0(S`WlAmbdZ$67RS%" + "iK+gLdN7q/Vir#$:IMH*4Yx_4]L47G_6ZEa/8lq=[IBAqC+_.GjXNP8;]Sd[-8>r'.32(vI[0GMWC&DW?q=gEgg#5OHW=7D$D@<$/.?,4CQwh2%4%g:js.12WYuY#KDQ>#a:q],,V_V$" + "I4eY#W6*OFk_j)#3lhV$#B$bT%T&3a*kGLB#G]U;$-MlY#<[j5&Ugtx#+JlY#[>3**1AG>#5c:Z#Ibap%hM@l'Jbjp%BMc>#.JcY#3FjV$#aDc'&i,l=lB)%:)q%rr$>Uwo%3x$s$u`JxtNtv7RA-@YP5.g(N;Ya-6dX35&R=W`3#A#`#@r&2BXlPM0hC'#,]8>VH" + "j+Pw9VjrQNevDA+q;Ik`s%2v)SetT9Jr,[i8&]wMe$;K*XC>:0[[:lj]7fr7[#J'Bq%IoMM'it@T%7pml&I3gm&FPUS%Dlj5A9XNp%AGo-#C[ns$JfQP&K0B6&NF10(W<7hC>[*p%" + "F;o-#G##6aA>#waHtCaL7w#`#MfLm/GD<+YL;$'N(Z#u4>V7cfhD.TK[HDX6:Z?sMwx4$vg#?w[v%=Uwe'&^cl-$d8vD#G>WD#:jmC#0H-(#`/j<#[#W<#" + "S]U7#NPC7#:j=6#vpr4#sf60#Zst.#b+^*#,9q'#c3=&#LF.%#qW=k0THhx$2O(+*BIR8%aR`S%af6<.aI.[#(#;9/e%NT/a4SNRqJC@m;%t8+YJ32SB.UD.&4lQu^,G#[)*MD^+4O9iX/22d8/PGwA4q#A<%+#[]4" + "j)Fe-/g`O'64p_4]?gOMU1G@M<:cK.RD/H)_9%<%1OTfLp^IIMLP1u$jFbI)C:'L5/%%],I&e)*26$^,MW0T.8$:u$)/)Y4N#SF4GMrB#NTW@,NR<9/C1tD#Wq5gLs-D9.$3Tv-[RvP'" + "dSWt1_tRA#W=Ec`0Y1Z#@*Q>#:%D?#jjYn&SR7w#-'l5&QjU0(p4cV-@7r;$-DY>#/lh;$AqWp%*PC;$<#`Tj5&AUE9%M'bt$" + "aqTj0RIVZ#FZlN'f_2Q/m8ge$=@7w#KR;?#4SlY#^]J^+9=e8%8I*T%8X8m&>pFY%>b#Vd>V%A%D;$.D.<-3(iZ#:oY>#@^QD*A=%w#e6A@#GCI8%H^-H)av'u$7T$*02VG>#BxbfCn5q)M_&L]$.P1v#&>kp%5%rV$Mdw$$/iLZ#CU*t$L=IW$Z@F,M/&=8&" + "Nr.8@0fqV$bgNI'9r_v#B*BU%Oojf/>l(?#:4I8%1oY<%?0#n&D.[S%%ThV%c8G>#?'G/(ItN5&p5)8&W;Mg(%TDs%O,PB,guM4'.lFE*s^=T%/`U;$IDGn(V$o<$SbIw#NKP/(X>T(/" + "M_/m&V(%O=m+`?#HhJV%8(.<$7fCZ#b@Bj(nl4Z,=r=gLlo=p%rs^6&R;7h(PqIw#Rd=17FOVlY#G0,3'LqAm&KbSM'?FwS%LFr;$iwkgL$ba?#:4@W$N?bT%1cU;$X(]fLwrI)$" + "CF@[#:OaP&0uH8%:oG>#Fu$<$8(`v#PXr?#b'Js$C()?#)%K5'YYRh(gY@P'D:D;$:XJ2'8r1Z#P04x#E*k5&Lt7s$2lU;$74R8%GPJ.&:o_V$(pia-xQHh,FK=_/aKAW$Qe&6&Kq*p%" + "e$Ot$DbR%#$&###/xOS7:SQP&UH^#.+JY>#%3o>#5(4N0,Pc>#$NC;$SPW-Mc5Yt$Vl-<.__j=.?\?,T.pQ8]0S0K;-w?^;-.`M[%M5>##k,&X#U7B2#Pke%#_K`<^:8YY#c<0[[pkj]7" + "NGcY#+GuY#Pwb?-m/aj45o$s$/^Lv##X5+#,w/&=.fLv#>FYv.F_P&#qm(w-Ihd,M<;U_4KB(l0a(]L(,39Z-]p*P(#&AA4l/^I*3uJ0YG5G:._G_Z-5ob^+Z=6@)tc`8&Z;I1(NFI3=" + "G8eA#b['loHw0-)0/b_+t7YV-uL=6'npn'L9PYU*qr)9.9UR@#;WF.#D&>X7T8,##oH:?%mrNS7,85##g8G>#r6[c;$ctA#U$f'&b[imLk`n##ONG/(T`RBg,hxYVI" + "tf:sL:-LVISxefLpC?>#Ro,tLl2p%#*q)XCADB41/M1v#8J9B%-;>##7+nS%mqq?BWD,##-?U=Ehqx8;-0l8,MLJ#&#,gk-*>^m`*JJ4_#h/5##>)^>#;Y@%>VCx`=" + "?D3$5%Yfi'=`Y##aH9>$`Hq,3l5MG)?]d8/@&4_$xkXI)atr?#iG+G4h37DEM60q%O?7q%;RG3':b>L2pZ6N'S)rw'4*w;Mb4nW.pM]t@:b8<$YNRI-X,b+.=p,tLtLLK*4XZi9`Z>p%" + "31e8%DUqGD/r68%5>e8@,]1?#+>>>#2dUv#&hG+#1?,#>/lUv#uJG##vZv(+%DXI)PU@<$.UqhLJ6dJ(j_?d$BcTj2jM/J34r0@%:I+'Jt7]1(;sXe$Iu92LqPr>8n(SjDYk.48_[>#:4:GD-8YY#wZm>$*3-]1,Ho>#$.D/:EY,##.j.kX=%;[,eWXT%>4%rr$9[Y>#)@A8%pcD<%5Qaa4GKOM0c[cX7Qm;*e@2058*VUV$" + "2mqV?5*=0lR#@8@jJO#&s2-T%H#+.)b^tt$Q>P^,Eac4i$XP&Bk*ZuoOvP1gAAKF$^>o;YqmU&d]4Y'93S^5mh65/-Zjg;lqa&,DPUV$S(:dM^NZ&#cxf`7" + "hVdY#gj=5&gZxo%g>Y]#M9+A#OH,UV@o&*#D_WP&DMRW?$6As%+d=9&>#/`Jm&1oqr$/9A>#Z?_)3DL6c*)wZ)45LPn0VZFu-`(UgM8UO**1=q'fow>(f^YMT//rXF3" + "et_F*L`><-m-SY-VX9:)BX?c4J?^t%31EK1?96m:Ni1a>dZ-r/F&]2g&Zd3'4$SA,5?WD'/bho01nDn'FIWP&&]/t%I8J>.FM30(>%3&7T&XK,7O)x/[p#V%LUg6_.8_kLsAZ/(cI#,*" + "Y'gs-DBbA#fl7-#Ne[%#L$Y@#k1058#BQa<5v`>$(5>>#d]_pL&xQ##.KM,#'2,##s####-L,l$mwA^-ccp6*g)>H.mpw^(Mqcd3F9Dm$M22?[c]fF4r'UfLJIA=%cF&>.U4p+M:HD80" + "BrdR9>K^k9*P@+YujDw81CL>5K'YS9xvm^$wA63D8s/+#P$b5/El7-#k<^T9rCMH*)25##9pYvA_N4&>F$2B#2jl/*8I1^#edV.2rw*$#44i$#8Yi>$4=CF*l4jA,p6XZ1wHeF4BZC6^" + "$S4M(A/Ye$/rQQ27ZX?MJREd(E.wB6[lY=lZ:3GV6/Zc2eMMB#Rr/f)N'tp%,;cY#eYlS.&/,##qf%T%H[G+#%nJ]=%/5##'0u>-$6H/(;WU:%YCh8.sa)*40b,V/IV/)*V+M.N+T()3" + "Vo4_$f'I:7%`JD*R4r?#k9fT%'BBVQ*jid,FYhW7oRJA$[WF=$^H-)*].bI)@(H>#djBU%@t*]#Zduj'ALrV$/-/e*mUF.DWOst.5Z6>5`ipU%>j%d#(X^b&T<#R&&n[K(H3uM$`uq92" + "jTPR&X(?j'YmS0YQt<0lV2w.LFZCG)UH^#.^-]w#Uxn+M3Tr(EtdDe-?jANQ3^ie]a?kW4fa" + "wE<8%j6IP/B,6W8f$+p%Kh.[#tF958Gvft%9Pw8@1`hV$*DcY#5d1R3fVl##2)US%-*'E<7:.<$+/wS%anIW.4_:hLpX+.)hvE.DVaJ]$G`4Q'dHE:.YkRP/B(7x6o+tI3v>guGoq%Ia" + "[x):8.V-X-D/WZ8MqMB%&/W,svDmuJdu0hL)P):8X^iIM+^d)M4KkuJpD+a#3_+/(VcpxFGd_c)`/;W/rueh(K+v>#iq]a#rSx#)[cY##D@Iw#O$IM9w_PH36N4Q/;^XoRd4330EAwf[" + "kV7M([.JU)iQLK(9]sZH6NZM=8alX7%kSP&rA:D3bc/1(.Sl>#C,o+Mr`6##7*,##)8,##;dfMB4-#RCrX=I)ASOrhHsjL)>CJZ$1WkL)_ObL`;<8'5M*_d1%GOpD3C@%%#]cCY7BDXI)(2G>#h/5##]';?$7sUv#V#Of-Sq[b%[rC$#i%=I)ifqB#R?XA#**IH3+gB.*1DRv$MhO%$#G/GV4GG>#agc,)]aZ`6" + "w(^3Uq>##lt]a#fc*87(J:;$0vH8@/PlY#uNED>#`Jq+VEAnu5G+8A4A.tt.a#Z]4`=vY#A@DZ#k:B58ZKVF*`<=^6Ea4$6nbu^]ptr?#`B&s$RNnm0wX@C#O[5gLh`0<7^&[d3DjNM%qK(E#sJ))3q%^F*nYLe$maLG)P9NR8" + "X]jD#vOs;$;H)B4Q1MZ#7mXZ#0cJC4``2[$YeH>#tdXr..Y/(4$:CO+J8117:N@p0TM4T%5b$d)xnFY%xuHj'7=Vj9VpT#$JUIw#U-I?$*V:w6LeAv7Q2Z@-[felA@N_c)/u*9%goES7" + "3&no@2I9j(mUIr52rRv$xFg+4?6>U<@bcm^bv%j3H9v@>QiIfLd:3D#9,[0#;EaP]R@ml/o:=^4TU$v,c;ntdm?xbQ@tSPFj$>bPG-&7NtH32#';G##Zw>V#s/PwL.Ck$#Y'+&#ww38(" + ";]Cv#:;5##lb&*#;1@8%7/.W?B'%?$u6%g:c^)[$1;B#&-PlY#UXi*%f-^]=,Y1Z#[]Oi(Od;A+>t%&,&>Fi(vc`O'n[=gLCKdJ(KH.b4-.h_4p&s6SO#@5``*R:q8w+5,fQg)B_49BARc0;-6w7A" + "76e(NZQUgafm()*3i/;6=exJEG*U`>59AB&.*XC/R3]rhe;h:A+GVEt.RfL;$L.3v#-8CK*Y<,Q:T:;v#" + "@Dj:/9d&##k:eqLTq)Z#2T`,#Cmv`*s)MH2/'Tf=-r8q/AW)K(9KC:%PGfn$chkD#TMrB#jBFA#-rk**75B;-LW%/MjGE.3&L(E#h>Zv$'W`mrDt1eMCIs?#HU@lL56Ia$`5gG3'CmZ%" + "RH#j#?qJm&f1bI):%@8%sg#/27UB6&V/sMYx6k375/0@i8.1rSfL##<9/i02iLM.RxknuW**^DK41v;>',D8KJ)q'txbr<.x,AhChL" + "nek6'6AY>#ode_+F-N`+Y,e**Q7Mv#KI7<$^V7-).P-s$KKK6&O&;o&XSaa*:IY&#hOQq;06S=-YD250E1Qc*SQ[v,@Y4i(esnr6*St.)@,Zo/':R=-n7+gLO?C6&^Pl$GF&*a*p0B$." + "mc4U+Lk+$]-33cC^D*" + ":=E6/hMe-3r8UQ&&3pc;TKA$-?);D,(--;%GVLw0E0J#eP'(115Va0(`]3U9Tt:[8[(f5'4ddm:`E,I+BB$*3nNGQ:85VT/Tm(K(cmhwc430g:4bwF4,W_Q&JAR@[l76X7+&SfLMS?B$" + "ilES73JP>#[1*W-p?=_/qp$,MH:gG&WbZV-J>`:%1IE;$Glh;-*kWJ%XD+Q:`;$PRW9/ZXNT%.A6A#[-aV$mssr$1r-s$>,>;$7+[8%@&@W$" + "BF(gC2uLZ#AMo-#>=eS%FSqo%4%rv#q5rx0-GYY#7d(v#xWND<'%_#$PdLfLbo8[%Z*Tq/Ua=#-&)oh(S30U%li.1(v5alE@XG.)CUB]$Sb(f)7$4Q/q*U=%dRu)4twGH3NC90/GPF/M" + ";)Sh#P=k'GkKb.Gx7>m+=Ul9:Qa-.#kC#294hFJ([.k**w#Yk0++#*=5?m;%Da.kXDJ5J*Q?h$`q3Xc>:]O?`$@Xc>CMAl7StVV[S7@G&@uU=Mva;xL,R/0:2p0R'Qiou,pg&/13Pnx4;&Od2:N-)*.f_;$gZ^S%iWwu#,P(v#DG>?#XKNh#nA:8%7Ce8%2?A>#wHc4`^5N'`r2@$nQfP/1q0u$?Ad;-R6:V%_S;9/lESP/(xn8%h$)<<=6((i<-cCCs-m9VK&GEbA#j>nD*Pe>3B=uxM'Z0+X$L3L-)jQgU%5Y(v#,rEt$EF$8'" + "Dq3T%@I%W$N&@h(EZLg(0(eS%eR4gLN%`:8ZqZt-:;G>#+f7Z$3@Hg)LD*I)NYE+3(qv%58&Qi(F(r;$^gE;7ss]j0`;MS&YNY3'qx8;-e[rS%><6##2axu#7)`r?Ilk(Ef86MK6OC]O" + "WLPj2Y,nS%vR1&$PE=A#Y@V#7Q[%5'q].x#`mI;:nOeTI)bRB$ICq58b-=A#k1#H&R*,.EV,#D9JA,U.@A,bI*B#mJ559>A[i$$+q9W" + "gMWKtKq6b<5VWTjZ=c=$xks5:o?VhLj7X3PlwOiCPVlq7()'4X'T`0(FtcZ4VdWtMXr7HD-sCAkfTS1(emu>RN5voLxrd^7Dg^REdU'C@elg`NMG>i__4;#2Uj23_:O1i]-<.G$a`+TXn<$jxC7/D2^V-jX'u(" + ",`OF3U7[x6=1Nx-c^e,*PB%f399N.32Zk-$KC_F*jpB:%hI]fL25p,3JntD#E,7C#tu[&4[o5##Z2-l-;oCE+2kQR$,YL;$1Vc>##2^V-Zg/I$s=Dv#>oCv#EFW5&4lU;$-fqV$xQ6L," + "WwVv#?eWT%,rx5BH.#/,-f3E#m(wM$MJGq;mScY#O:-T.3uhV$nG=##/H8>#YTNA/%wK+,,Nc5&l><^#xeM*I(@XA#7=RW$<%MZ#91VZ#2x-W$9oLv#]4xfL0u:8." + "b.([K_Rws$_:4GMntVv#`@,w.Cc)%,KJp0#P?*I-k,t<:hvj<:#+N;$v=:$^hL`>-'G:;$&atKjY;$$$0F?M9;]<]X1ONa#r=058-)Wb##E(v#p.>V7F]E#.r1SgL:4/<$5F5h%9CUj0Ei*`Fk3)XB8-b2%QvC:%" + "6bx]Gsi]q)tf^I*QkY)4#W4jLP=UF*RtC.3QW$D0j97##I0Hlf1f.Y.SS:gC1bs;$5=br/Yat%$w$d1)/]JL(KX[W$@k/Q&aM7L(NSWb3ZQ'Y$7boi'-gtVNtBJ<$hNZ8/_>qS/$)wIL" + "kl)E4%8pv$cn1R'Q4ST%Cdg<$&hkX$UPwd)6Udc*Ub[<$&WPO0dwL[,jx.5'ElMfUgLvu#AAIT%1OAJ1]D9G;E;qa+ixaS7%qF=$?gNc4AF[s$/M1v#HD+gLjw2v##q9(C&" + "Q&PD<+PuY#&K1v#nT.##^>tI3e)>#-NT_c)OjPj'Bq@.*]3B:%ZB0u$3H*^4n(4V/ig'u$^.Ls-ZCu)4$UCa#U2`:%$V8T%YA%&4gc``33Y7%-46_j$@*>m#A-#3',IrY#;f(Z#:94s$" + "FdSi^Zx*H;PY(K(lRIW$<#/a'5Sc>#?]j`*IM]E'5Z.H#?5PJ_?mUV?Yi2%$3Yu>#4j+v#7Aka$2Mc>#+g0W$)rLK_8/RS@GYcj^1GG>#Pixe%@=0GVokpu,+S+R00YFi(HFno%h+058" + "%/>>#[%9XqhL:sT&$7IVe0#P,G4G$]I*2R6.M@V>c4)kdC+-k?2(Y$=X$._#b#&#e;%b9nguuP1m&h_8Q&4a1w#_j2Mg#4,706Rlj'>6A&,k*)^+Ji]p&" + "%Sp^+REx0:pO/m&JVBL(4ei%,%/5##rL'3%&Qsx++Kw8'Y:;v#.)di:S(g:Sw>jPvQ&" + ".u78/'xs,<;nY#>Dke%#EoA*#`u1:'7SuY#1YuY#CG:8%?Ln8%?^&##6`Lv#:oPv&0f1?#9+7s$3d:?#'qG+#5/1(el40&TfWF3J)b.3R-VT/" + "@Dn;%>xlLM^Bj?#io0KMq7xD*RtC.3-hQR*[:]73_;Vh#M#nB$>Fe8%LREp%E6^6&'fOi(f1A=%A=3p%AX4v.@ET<$Cqxi'ar+42C1;,NOT*'O._uw$n&:s$@+Vv#hOgF*3/d9%f<@]," + "eX;?#-/Dp/@jiq)H3We-7Nos6kvK'#w^fW7bE.G*l8m3'7A,##c9ow-nt%W$=0_fLtpi(E1D&2BG@0q/%hFk0msxB/&UZd3[`JD*Mki?#dWMTw3GOcd31EWa4e3q_4" + "^nr?#Jj:9/T`sfL@wS04#Z)7^:M1-.+6d(-_(8t%Xmp:%6L82'1,[8@n2PU(Ahe@#H)4*.p+Ik0TTF]#?wXJ(XXU[,1+Ti*Z_.I.xZu]#tpk=$TUw8%2V:v#c.sW%wo.$5t8:r(umAj0" + "5)9aW>v7R90G3K(Ya^u$N99m&*K1v'T0j6L>LQS..)V`3uAj(ES#tf)6Rs5&CNCG):i:?#md<;$4.%<$<2Y?#3=eW$4j`,#44E5&0N`,#7%wo%4K`,#;LNT%9d`,#Imv`*T$hT%)3MY5" + "OvW.3/:5R0f]-<.2Df1(HI[s$LZ0B#9*>k0Nv0a%;>Uv-)uC/#2=_F*Vo@A4nDq<-8ns7%NdM&Hh$A9&_YR8/wM4/MuLjO'`;&<&33ii(u0Ab%%3c'&S+l%l6Q@j:AGO#Hk>X^,PU^(4" + "5Wx*.WggLscAQ%WX6##Y-4uJ*#L'=B8anJQ&d_sp%F$a`+ZtE9%sFB58655##GweX'+BLV%f*'q%MYY?#EtA6&NLw9%4u6s$H@1gC?PP>#8.;?#:mtr$J$F6)j8ec=1xq;$" + "`)`#$gfES7oe@&6Ld3i2t.R<.+L?'$n7pF*oS`k':MG##7k=/(,EPk0N;gI*UDjc)5+vM95LPH3`]<+3vdTv-q9Jj0/XkD#BBGA#jAqB#r<6d3ta)*4EC`4L" + "Mh?g#cOo=%G$Z)4uJuY#U,q]6?Cw8%FU<9%9BwB$J`bV-iwXJ(V1`Z#$AH>#Txg-4h0SO#3ki>$vk,q7qcND*-?oT$+rY<-AvZ>5CMMm1@>G>#A#MZ>KGX]%::i?#nY-i1A015M+hDB%" + "3H>[7m*&&,$jr0(I:i;$;XRv$a&SF4D0k-$L`D_&/.LB#" + "eUnH-*ch,N`.nvA'YF]uvH]5/a2]h(iu]VMZUblAM&@^70-@>%n9Nv@]gjJ2e[V=-b%BW&M;#LM[wjOWfHW$#uD-(#9iqjtCj,]#GfN#*>YY#dusA#" + "%CoZ4$*A>#s6#F#-F)d4-ca9/DF$,*S75jB=oG,*dHj;-#>1p$)*8f3B4vr-^;VG)RJ))3xk+=(DF,gLh-2x5o@5c4MnCB#$u8Z7ie@I$(nkT%&S]fLjJ_m&Ei;d*bxse)^@nT%P?040" + "P7V?#j5kEks+DI$NjO_%VRGJCDE,n&?uSM(.1)@,2;h9R=/ZQsSO?##EBbA#/m7-#Gww%#98.Z78o)v#XIvB,Cfh;$-GcY#me&*#+$9W-*,Qt1G6=;$)M:;$2l0'4I-DO1]ivs.FK.b4" + "(i^F*?]d8/5_W$@(F_F*Yk[s$OoXjLboR)*@9=V.[P[]4$nkv->s8e*52fs-&:=89G1.F4Pa%U9U@NY76dC;$02Qb%bjtP&;nAQ&MAFG#9Ahs$EQ=sD7aQp.%e'm&f=v>#X@(@,@Wl#7" + "cfV_&&&2Y$=co],2DDPMft1)+" + "?eqZ%RrdWcqD/+4Z0nO(0x+F%hTriL2Mu$M*vQ=lnq,?[:5#L#,B%%#bKb&#J]&*#9C&i3d#hD3>#Nk'g%P^%<;958DjES7(PUV$5#R8@2%78%#-h?X7/:wDE+PBBd8%CPb%obqXM0bTM'aO>-jF5q7/" + "EI_j(Bl#n&CJWY.?UTc39IeB&S,>>#E,[0#BL7%#o&U'#CrpZ$-(F@$,f-s$>IhGD==3T%F.mv&.]_V$'2>>#A+=CV765R=.DUCgC0_i)3S)2v-/R830" + "`;:Z-gYh?-#)>cY#sl1T.'<7`$-@rT.Imn-)>hA,2(K1l0tl@d)Fax9.MA#c4__w2LOk`'Bu/?%N*.t.LN77>#eT3^,ic,<-4Z6>5" + ")&>uuguRH#s>#*NLV?T>m295ohV$/HY##;=n8%0WCv#$bG+#,0g]=-`Cv#P.36/Ta+^,4%_+*j>;O'TZ5R&vs=k0" + "i?n5/q;[v.a=]%74cRe8oLg(4_?87;'E,C?4HNf:2=Gn/%TF$-GI*4L,;ul$SsCM&5>i1L,DjBnLj=(A&^kfi'EHA3k" + "x(2'#v/[_-BJc>#IfUv#V1[s$U(H^,l_a)#6r_v#KIZ_%Fn6dD&$p;-h(B?.)8>>#tx/p<7J[H;GL,H3p-'8@X/Dm/LS(v#/YCv#0l+K.+AYY#3aEC#%6=;$&ql+#qbci9&i:,N%:;GDft<[?)7)i2wRjT/22/1(G6aqivJ=c4t,5r$E`wv$iP1C&" + "je4V/.v*Q'7@pgLCS&J36*YA#10=R*enSb.I3rhL@L&Z$+B]c$D[ws$?LN5&0C5u%BOR8%c(@q%H#O_5mX*p%A=wS%+#9vpL*617<$0iwo%&c^+4VJrY$ngWV$A]=.#" + "Hh6)E44[S%Bd:?#3xqv#J);Z#3f(v#/p?8@eqW_&Vu+A%&/5##7Y$>@)w]f=A':$7&':G5Zv*.)Hhu6's)UM';=.s$4c&gL>;Uv-E0Or$+8Zx6'fA)*wfGT%Xxn;%#qVa4$JJ=%KgB.;" + "=*w<(l4NT/#Lwb41IqhLCbp_4OD#c4j)>D%ar6>>Ca3D+(MZNjw,T)mn&Z4H>#,Jc>#Hqb8W$*7oA6ia6.%&6:w--7UhLxSU:%dI+gL=hXU%pd``35jM[$?x$s$nesl&ihcv,:OxuGdo&8C*p%jY9T75u$s$s7Xs6l1*D#dRYc*AfZ>#Or%E3" + "9Zc#$nV[s$oD$w'Gl@r%lJ]FinMjG#]Ap'Fv %qS-3'BI.<$k-OT%LVe7n[3n0#I,###WVe^$3ZW]+L'do7i56A#27KO1.V(Z#8Q0H4WtVV$/oqV$,.jx=;`qb=(AY>#RE.;6E*D41" + "BS&p&?8MC=eCm;%cKNh#F*r&-I3it6O?Mp7]Lf#.cYJf3(=1:)fekD#qJ))3P#v*W#+H_D3FrQDa%oPM9-+qT7Bj`u" + "0SN.FLej5&`)xbi0)0>&j?SJ1Aw86&UsYn&SoIfLVk-##w[LP/I6%29o__W*+AG>#qini$HF^fL`F/W$2axu#9oL;$Q:#qrbiUV$<;R8@)5###)Htr$TZ=oLAhZi9.=`KM&r2?#`kS[1" + "Rh7N)Th<<8Sa[L2uTgBJmMLZ-4D/-)7J'f)Yp?d)p`e`*u@x<-.Yqc$I%V%6ZX65/hM,C/U57(*[tbm0bA`k'dLVO^gigZ-`$mb-;g+?,Ewo))T$0s..3Lq%`u/b*LT3k0iNFG2L?s%," + "ulcS%:(nf'e6i]5]:%?78rVA-#o-20NWw.:<^9Z7pOQ>#<4%s$ib&*#2xq;$=S+.#.S(v#2s?8@/c(?#;4@s$1Tl##%nG+#1*K]=0Lh'#rwQ,*Ypt6/?PXa*/[CZ`kS6<.kTe$)>+Kk'" + "L3j)53Lv%5SSwJ%&gR1(U?B6&q;^'+h:YZ,cB'q%%uOA#^Rc(+cDc#-cGiN'a^*$6]T8*+TQY3'`LGc*SWAA,.uVO^nl7a+5JVO^LiX&#T3n0#9Ut.L_-ki'^O18.PjWf:Wb[Y#" + "2](Z##*DP>#2dXV$7l_v#3QM,#44es$>fp>&*5###VXi*%BlxA4)BjI3$SaT/1HNa4[.gh(Viod)x^8bEnC?v$&6Pp.D-;o03ibd=45`)3Elc,*@4h58^1S>.@]WF3*YFJ)3A0%," + "u1>;-57%F8H>'32o[64(BMQo'5OZ;-9rv98o>>9%SH8xk,x'/)HrUw0>xCb.K$0?7A%J3qY1O-)+KT88xDtT[[LEYfaEqS-hVbG15DW)##$N<.2`l>#];A^$=UWV$;47W$A;[S%0%eS%" + "Pgl^oXoLv#6v98%L7Gt60BM,#1VG>#5a-8@@wjp%3vPP&69v+#3[r/:?QbiME_rGDOTC]?+&$##e+v(57Ul31R9j`+si@L(IO[s$f,F&$'0Gk0)NbL)%Gq8.OJ,G4k&B.*5Ql8/aGUv-" + "M%1Z5[5MG)7(XD#uN$>%,a0i)hCh8._x;9/mGpkLS<`I3[/j;-X]4A%bB_k1%_Z5/7oCv#X*Wv#=Tuc;k'9A4j1;)TwLDU.E+o0mN'3D8M+/UnP/=CIW$VfCv#" + "VEXN-Z)*1(bS[-)$IuY-+0U@'rp<$#cj9'#-l?0#*m-n7ts4kPn,)X';X#;l)e+Cj69<_FrZ#:W']%_Zg),]I$jel+Za^8o0dRi4R1F1(MO;6BZW8/a2k'XgSi)i.<9/OJ,G421C(4" + "X?n]IveXI).p(T.*6xI*4;#s-FI@1MT0ng)'n&Ymhg(eG@L(@hsp%QBBu$OB9q%7RY3'wcvR&<1PA+1(ZC+0rwN'w0m(+]RRW$TMwd)hsc/(VuBJ)" + "P=M?#<9%l'H?p6&Z&.L(Wphg(DLes$U_+W*O9%CZIa$" + "P>#n&7s$2DMQ&E%p/1FnmDE3=;q_,eTtp%W=Vs$_m10(p_Tf)K/6c%QabV-a9>N'wtGC+[:MZ#?Q(Z#8Ia5&HP.w>s.F**" + "Jwsp%.Jc>#bpsL#?'p2'm;Rd)F@r;$eQ3#-/l-s$[5`0([30q%IkN9%1P1v#mb-v#P&iK([;dR&[0tT%mdhZ-JPC;$@42$#[p7^4ZA)4#d[P+#e1O[7rMol1YcCv#oOsc+;?\?Q/E2Q>#" + "uj6<&hxjo7,SuY#?=CGD)J(v#78o-#(>Y>#7sxu#xBnc;j`;*&9H%P1$Tg8Msu5xr;A-9SA(%qOdv@v:5)8poXGuu#dfES7&[US7" + "=9(,)sJU`3F:w>#*AP##)oT2e8@2B_w''PrZ#8ACZ-@[v(+k)Qn&fmpU%5xhZ#sv=k0p:Rv$`aFs-0lMaOPA=,%[2QnaKr'ga93dr/:HYb[GE>naf=]6WC.?;-gTJlL@MkfM" + "&iYOMvMjiMH;*>&^p:D3D44>5f=r`506qU%0Pu>#fhL%$B5p>#4u$s$0v$W?'/>>#KBonLM@?>#YK_$'l?MF*_fPY-,Y4E*s>XK3s=Jd)>P/v5:_G)4J;g+4kJd/1gYDD3WYA)*#MS)*" + ".kXU%0@uX$mq5Q'Fqn8%1uM=*ZC/Q0^'XP&2i/5'6VE9@0,M11B.cI)['WM#bCqY#Vp[M+,.s?#['R>#*1LD3Q%5_+UM'm;`B3)+nk:W-Idl3'G:+j1r,)S&[_4R0f[ZU7bx224w[c]%" + "W%@W.mh*=$pTg%#RlIfL*92G#f,[0#AR@%#NGQq%RCvl/2p7l'2#_R/F2oD*jKFg1F`5J*qJ#QMZOcA#m.&j0;T_Q&SiR$$5Gw.L5vWoC02B#*<@.v,&6_Q&1Ku]#PqLfLT_'QA_U)B4" + "-Mc##=(V$#MXI%#$It[7>r7[#H/IL(Z^5n&.MP>#*J1v#,5CK*jpB:%5fCv#oRa)#%q8A=MOH$$vN5+#&n/&=&0]'/x^7c*gk1`+4Id(+I-BQ&(qFk0?^A*[M>`:%_`0i)Jk_a45mlG*" + "6U8N-jVN$5u4IL2P>>X[ZvNY1:$te1#Pq(2aBrT7XZ`=-r(xU.%l;Z78LM=-c>pV-dBi*.Sq[>-.-.^#wXI2qV#+;QGdj&4^%iY7dGcY#0VuY#Jx-9%3rUv#?Go-#(GuY#*EM,#1c$s$" + "')Rs$$*A>#%w6[%NKTU%ugn0#)d.1(fZ3uJ>VI&4_TIg)NT/i)^coGZJ#%m/5XUV0P.kB#g)d<-A8`T.%(&##L?#+25##H9B6&3A>##t8'<$" + ";EKO0j8,##.DG##gJMfLO@?>#HPC$T0NAgkK5w+#W%]fL)xW`+v%fh(UH#3'MKGj'(]2Q/u`AMVn=0OG)vMD?<=NP8-Yd>-" + "osY4Ms0AY6]_BrU2?WKmNlUA?^h9EnbUqp$U:)H4'G:;$0ahV?^1xfL1&3Z#1W(v#vEnc;%oK#$6bpk$u-kT%RdGn&U9tT%U2RH)eKwDE7?2H*sRg_4EJP8J$dRh#:`OL2qwOw$Wh+q/" + "TC1tL,SGgLlYcA#GW_pLQO+[&v`>&#Z_la7bA`Z#RppQ&@l$s$6iuV'K&-676c*b0+[TNGG##>wrik/4L+*J]L=QmDl-$rf0i)BuXR*)3,F%g/id`:%TCpL(&PfxYg].K#XR9oIFu19.J?G##slZN0;9/W7MJG>#+8_g*Pb_<-C<$t..h`Gs-Vp8.8o%59S/*,##O0wK#):Im/tepT71/,##" + "nF`t-nGSfLo@e;%m'Lk+VG%=(o4x#-=[tp%0p06VL=?>#63n#5ws%##)&Y3)tjOk0`bLs-;va.3x[wC#8p?&/1j0)*,V,C&K*6R<;Vx&#:1wK#ej@#/3F2##rgZQso5.tLT46>#7IdFn" + "_qR2(9Yb>$Qp,-*G:=V/5MXtCMKuvARe_).*SOaQ82#,M2m0F*=o+G-h%1#o$vgLd_q58v>m;%:[KvRY*'>.Dk_a4)BDda^xiY$R7vhk^s$l$S&vOoAhMP/._%E5-lq;$@=UGD2.Is$=Do-#+GY##1Z`,#2uQ8%1Q`,#3l?8%+8w8%" + "$*A>#3ACk)6hLhLfA:U%V:=F3C;@'7`Da.324PcMA3kn/4(7]6K.rv-AbPhL_sE=e/U1w8CCA%-FV8p&v;g*%>B*D#p#$r8^lGR.L?4,s8[QG*%.nm&r`:C&r?8nNV=CD#%,[0#=(V$#" + "/_L]$*SC;$lae>#m.ko73pjC#@7:GD(PUV$0gqV?*>cY#K9]nLT_dY##9P>#TJsI3]3F]-Qax.L:l8>#qh6(1dHRlYRHs=Mxh)v#v_UNtTx,daV:;8%" + "l_]J**gu(3nd6JC5A%A#G$4A#MQOA#p:B58uIFgL/s-##,A,##?(>N'7=eS%;vF?#7vLV?n,&=%47[8%:,Y?#1cU;$4*n>53/BY&.`Cv#(MG%5GQeL2m/9e*Lb6k(Q'RYSsk9b*.>,QU" + "JcCt'/LA8%RkY)49`Z=7&hFs-de`J:0xfQ_Ga121Vv#MMG?#DeWp%PeV[&Fn6dD4OJM'-G>##:Jml&;QKEV7" + "]),##&MPm5hvc&-j7$##YM^+4BBRL2*7Gn0cx2T/-f&6/[VqZ-+YxH)(c<9/&L(E#SrU%6PxgI*gEW@,ih^F*m=:8.LhcGMwwbe)ToW%$OS51M>X%u-YAgkL/q#4*keF%$Zn;6/Ijs5(" + ":q8Q(q?jZ#_idC#$%lj1$.CK2%0Gw09&gi)b',r/QfjX.>6e4(/VxA.qSns$R3oT(mCvF+Ri_<$qT)^O#uoQ0b%';0;D]Iq('/E+2ww=-_Ko%#QlRfLUb?>#p*[0#.@dU7Exh;$f9n6%" + "?2%9.9oUZ#M1x*31*9R/P#fF4xJJb*mNa1(xr`1(K<=Z7OgDb*bXoT%2`CG)Wisx+$6BJ1imMcDMWEf)F88#,pjX=$[F5G*N46p.Z7r;$qLK5818>##.SuY#+R0H^Lh193RL2).5R0wF*X.=rOM(v[,(+jD.h(w&Qv$m#YA#],p[6EHuD#tjng)F2ZA#8HOK9),d38_i=-']rS%]*Ba<1X.U7YS_.;" + "=5D8/b`pO/PGkTDMEsK,=WZ^7$K6E#'d/'5L0Sk9=Xpm&UA/Eb]n7lLjVOjL.2VI;.1j/DOMJ>.#mtjLF7$##WZj-$h8alAw[LP/4MR]4Qaw.:1Xm2(,Jc>#AX/I$bDP>#6$###<1RS%" + ";Dwo%4ih;$=8X&%4b%Y-TXi*%c0e>#&#RxG*5]+2)5C)+.)?KN1)C)ka*lc``3_gp_,W5MG)OgHd)jAqB#TekD#NuPW-*?`#RCp_&4qH7g)Q>Nf<[>MY$Et/m&Wd,3'c4Ke$k$K2'" + "7iv),vObi(d+e>5o5alA>0l2(c'n9.ri6Q&^_dP/M60q%-TTe$'[O5&F+9QA;k^j((J04E;Y_x&7Z7xxcY#t@058AB'h4<,#v#74iv#8#US%4ih;$<8X&%*>G>#=34W-XK_$':3f>.7n>AX#R%'2#NQk&#&D@Z73`D;$j_&*#/i_v#^>uoL%F&W$" + "0T`,#.GY##&B#PXi*%FnS]=hV$@'>kT60:s#W.;P+.)G#DP-;_t,%X0fI*LR(f)M7%s$]1[s$3xWD#N]d8/xE(E#IIc(N2v>gDB0Fu-9[@3)nf$3'?*2'+0HiV$3`4(+gfpO9mal++%5PW0A.r;$5U$Z$h?;-*)E-E3x(G`ML@_l8a^*3L_-ki'IUe),r(6;1XlLS(=wIgWTV&nN3tqN(0:Z,Mb)3%$_qdl/8`d>#&,>>#)#s2G>#'9xu#tZ1_$" + "BU@<$_8@L(usOk0xm@X-bag:?N'1B#O89U#8g0%B+jOA>V:kpp^nQ##iIIZ7iJ(v#lXo6*`oh;$+DG##i?%##-A>##&v):)RJ1v#1^C;$wKwc;(.$?$PdLfL`]W$%MQKu$OX5H3)-ck0" + "k/5J*6AI&4I-.Mj@nXD#+T=eDg34Mhe=fj0$TVMh$Prt(?aFlY$S4M(K/Xm0NW*##r/Bm'ZhxJj$MT_4*dD<%XV$q.e,t+W@*T49J@@Mh(6*g;hcKh&wjv%+0k@a59JuY#>VuY#+Muu#" + "l(to7S2q>A:E4:.tatX$0Kp8%.SJhE^5E.35Z5<.U4(Z5Z$CQ,ksg`*DG=GJBrF9/bgS49'M_@B,]K#Mh%NZ>Yl@u-1@,gLb%B-#r^T/116wK#.N7%#fWt&#PDfq$5=WV$5fUV$>JWp%" + "9p%-#DXFs%5Jf]-Pbp34X=e8%'5tLX1(qY?NTg],a5SY,ZMHW.Tsb>-97-G*oY%1(@cY##Zg(o&s]?EPA_XD#" + "Uq@.*#U;GDIw50):HF:.#@Rq7'vk,2$?e21=kDl(Yvcn&-O].0kV7M(j#3C+4jVY5):m_+rM%h(N[rZuQ5g5:+UU7#(e)_4Mhd7;2EVC?;uVV$3r$W$3HuY#=(cfCI?.?$2sH8@F1e;-" + "%M*N0$ql+#o[ci9-:igM/FMGDo[IZ?/(OT%]dXKl#d/B+ir.1(qpJO&@,Bf3T,``3?;Rv$'G5s-q_I79/I^k16O6,*H,T&,t,<&+$T,P9Yq;Q/5C:_,`&Ba+KDv&#%)###%uQxkA=ff(" + "gEai0L$T@#T4pF*fTXX$fRJ88&RlL:DT`T/'_(g(=QPA#fsIa*]M>Q89E#NKonLZq@F%" + "B[nt-A_v(+2LHK)(?kJ-sukJ-Ho`Y$-[Oa,4BauPfWF&+K38],GKS^56iN/2V1:iY$9e,3jD>X7:S):8?vjo7FknA,3ij&-:/=@4ih;$-a>#0sHS@LD,^$%0]Y#s3pE#c>@12#YsT/XsO#-87-G*dW9U%6l`u$KQA.*(Ad8.jUKF*N_,<.+dfF49#:o%s8ZFF`j(G%/CQFGmX56'Yj_g(cX_.G@;+.)" + "(QuOMPVANO7h(fu7lav1]h(17s<15CTJD.oF&#tUB#$oe9k0w&sN(90:,)*DcY#d(e20@UHDE%2G>#$wo92Pwu+#n_(/:m`.1(W77n9%xE]%F(+^4t;5_)ePrk'" + "(m8UMsSTJ(`N@li:NFm'I9G['jYZQP=wR6#*,em/3f1$#KXI%#HS3r$CON?#3lLv#D;MZ#)>P>#EJ%[#7lC;$1#.s?c]^,.J6]nLWeZY#4>rZ#mI529.:M0M7X.)EN-mA#d`OX%eM@Z." + "GLRs$PuJ+*rueh(^8`K(^pY3'Ew/Q&EX*9%-`UV$fJ%L(kYDD3Ee0a#V2P)46VLe$Bb:hLlosI35#;4LG55q;r='i;aBW$nxOO]uIhG<-6t[:.%/5##uU'B#FJKsL5<<$#6)m9%YrRfL" + "XIQ^?--]:v#;;:W$v^)I-Vgqr?%2G>#HNLfLO;n+#mUci9v7giL*_7)Ej0b[?" + "/796&Y,MK(6AsI3pj]=-OY3M(OS+A#S(,uO?DE1la=]X[H>#(?+?#,'T]=>&@B4BED+*" + "S4>(+,%qF*TL(b330GNDb*$x&##VWj-$wb6##X*f'&gNrB8&^]E';iCv#%Mwm04k_a4@%RP/K6Oh#D>4GM-1M%K`KKOJb3`U-G__`3#7b.-" + "bk,--UBRSJ,('_-UZ/I$Q:t.L&HXV$`ZR#MCZxm0'+Db7'xgS-cq>H-?;E]ugnF>?x+CR'GQcf(@W@L(SqnW$%/xE730hC#tIv590-*Z6qi>#2]hV$me&*#_(SfLhR,.#wQt$1GCZ_%,`qr$6s$W?;=BQ/,KCV?.`:v#%9XV$*'v+#w$;/:n0V`+0%qF*pV`k'v-vv," + "`&DK(ouE<.?Eaa4IHXh:[R,]68gfX-8BF:.K)'J3;L$gfPwQOEHuU=%N'OM0>FvE+`LFS044cA#ATYm/NQPM0Nw.C+`L(m(Q+.'6,7tw$Y1ffLIVeZ&(AlY#4s+?#>7MZ#JFg,0>DrZ#" + ")>cY#tlu8.-ps=&+(1B#K^Jj2R0Z&#Kpi63K>YY#+)xX.>i9p&mIPp'g'tp%'o>m8C;FQ'edm)4,YkR-+pS7.XYFjLA&0i)960O0-pKL3jd(7LmB(&NUOqkLkxEA+6%P&#WW'-%$>x.L" + "fNAJ1fS7T07N$r%jX&E#*VtZgsh7F%Gt]]=c`?['CU.##N>#qx8;-/BcK.8G%R&vg(&@BuDp/?'mH3?&(H3X'`hLlb*mf+ZYA5x08xBHtc3=%MkGM" + "3l0E#Yn08%5J?&#nd0'#i-Mb7`s:Z#+>,##,/@8%UW:k'WZ,g+cZ,j'O9G3']KgJ+^EK2'IqSQ&W#c8:5M1`?>#)WuY#kC,29gf?W.^3>j0I+xm0ukS60e(1.AMdHi2q'l0B#NXKw0rCbA#+4h#v%^%_>M(hr04J%c%E####aRuu#1vZS@qrHt-u1^iL'R%)Eh-b[?uY,##+PbI)Pens$FKPJ(mbh;_2$j8.uAOZ6uqU%6$g$&4[h6g)iHL,3/bP)39=1C+YrHx0$-HxOO_i[&1*Ic*f?bp.THIe&" + "[eK-QJ####lahR#+x6&%NFDd4MdL3XWa_V?/c(?#1i$W$0PY-&PEx>#kC,293;###X;Cs-c@xfL6Twu#xvFk0-a0i)&0fX-PH7g)$k]Iq$RUo7pDaJ2`>1I$#.?.3uZlT%O]n1KcB?d=" + "K;Aq9&=O#7(RN`#);G##j:RqL]>wi0:W_V$:g&##$R3D<>DT[$&BP##E>84EJU8&6Z0&G$ZTit6QX<9/[P[]4Cq5V/6HC_&e]Yd3$jWI)=4Tq)" + "bD#d3KXXh#]e_F*/YNT/0#t*dZ,JsdD*H?K:%S0BU%7@qp7(gk,2k6B2#>4i$##0f_;$1E&##.M1v#0,bA%P1(gL+VEJ%p<>Z.bHb9DmVUE/:5r]7b`Rh(p@0+*(K1l0=R(f)$?Z&4bJpI*o.OF3pgR:9SS&-Rue'7w#YA#OjT%5.Muu#6m_V$7:;$?u9+$0;s1Bi]@L(x/lk0'`j=.TOHg)u$>#;oXfC0uZS%aJLpLmP5T%?e6S/mAgirs%);G>#QRi*%+P7Q/&DOI)DY,##GLI<-B%s@*wrrY(&TBO9TikA#.o:aQc=C]VVRlo.xr`1(6pdq)7.64(;hV^22]dh#Y5>##iviW#LBT2#Y3=&#wC@Z7&t(.22l6s$" + ";&DZ#//###1]UV$RLms6'NC;$W4Z>-lDlS/]Y$<.8=?c*i;2O'IZ?D*6tDN9P1Z+uhofF4t<7f3jEW@,6c):%B59f39`p>,lW?.MF$EEMSHvw5E_VG-6[)d*[f&Y.RV[1(^#mhLIOA60" + "@70q/HYKo/xQX'0JT/E+LevA%adp>[jOZX7_T7iL7f]s$h(058xiES7ll<87:QYH29mA>#;P=.#4&]H#GEK6&rFHL-Tnfe%-)4I)aG)w$[#" + "Y(o+Mg'Vb$4EEqDiM_Ca.caN1@h>%.JUi2M-Sr^#%%AluN#,##VWj-$_qt.L(G&X/`qH##3o$W$0pH8%)>YY#P)WN(RGG##A'tp%qi7:&9wFk0BV5g)XDl-$J0fX-&;W+MM2.m/%raHE" + "8UX#1849Y%8x>V#^B)4#p&U'#2WH(#*g8x.&?1>$m^`h)W'ff1>MuY#ANmU&:xh;$.MYY#u;9W$Do3N.>:LGD`#a#$Dpv`*0k<<6w5YY#l5d313'@h2eMUv-kDi,)])qR/r[2Q/lao+%" + "gR1+*V/?]d8/kX_a4+xPK)fY8f3bR(f)#+ST%(,$J*mGp`5'$=d*D,fi1r603:X?x=-,d(50jRM.PBR%@#7f(80pJ]l'xSDpLca3d*A[TA=eRSG5sm&X-5QAA,^G4rL&&g[%<_v@," + "wb%>QZQWj59VKv#r>?>jQXf/>#=Q5A#*$4Q/Z-qWQE3s.LVt(U7s'0qBjUBj(v#'/1TC+N;au5##m=ao&/5,##dI2v#" + "je&*#,;,##a[6w^RAuu#0^_V?4ih;$HdDm$n@r]=0rh;$e8MB#HX/U/lSu^,r,67&?C7@#xp=k0o56N'Rd#j'27AC#gc[:/V#))3v:^Y,YPID*qc4c4EI7lL2Bi-M0uK-4gDEu-Q?D/q" + "-&Qw-xRFM(_rD^uUF[P1ih;d*#Zg8%Ua>>'Gq&6&UX(B542Gn(>'JK:Y76h)YP182>kc3'>Fl'+)ib(N1wlI#lF$Y5U9F&#B./`,v(oh(^d5n&9.nS%0.*p%)u5thM>YY#Bp2&+evajB" + "Vs,%-`3x<$D^4u-qVkL)EE^:%HRo+/ihK]$=4hE[nxDkbZ#Bd*D+WP/k>l]us;i972`:pf7eU-M,3_'+=b@G;C]8O+Xk'$Hf.Mg*LKUd'UA.h(09@'#%)###vfilA>e'++dGr80^BB6&" + "8l:Z#ALMmL0CUg-rBSCSO-b#7d;bf-b3R-Ql?7K3VWII-FJ4s%tWI/2lN5T%O2w.LPMW]+Lii5:DfUv#ZFM;$hb&*#/Guu###>)p>#0Y(v#a(vY?&:q`$LWP'?QC$##.`'f)" + "h2o?9>eWq..9%-)%p8d#O7=F3Bbp=%PP)B#1P#h%e=v?^:sOq,X8&hMi^m5&=$+PV3ViX-Q<3YJPF?##bF15%@.3'#(?$(##.Mb7klsl&cE=x#TWG3'85i$#Z,r0(8#%s$X'+x#<@n8%" + "6Ga5&&eG+#8`($#@#Ad#:[ww#=VC;$knk3+835^ZbZc31N[6c*SF`;$?vs(59n_02/_:O11Kg8.TZo],p'A9.YEB6&A9=<-4:-a$9iNBo7f80Ob]fF4Y0%.MUPA+4>bQAOU]XjLfuZT/" + ":kdj1V.IQ9V.42q-$@;D_&XIO8C57jc2Ak0['875O.X)1i#pY:?-v&'a+vYxF4_qi?#qx8;-" + "#G5s-jKgFCcC_s-ciLY7d%wo%&Kw[%41@W$+SL;$)B]Y#(XED<2uqr$cO+gL`t2v#$HuY#K,4D+,#9;-2GPS.+W:l0<+M1&K`L)4D2B&]N?*/:4HNf-sV7plRfLY7-##2WqD&fKh:pJF>G-0_'hOW5PM<]1Fm'jB'.?MAP>#r(x3+V(nh*vWgm/YaV.35YDt.Yr(a%uu&HbA#)r$./Q2PX7B[oQaR>YY#0T(v#vEnc;iP/F,n(j0(&W&:'btpMB]k,K)JHaf:5hp/)aXUEs2snA#Mc.I-<7PG-&A1).vH-.M0**?#e?@>#vAJd-mC4j1QlRfLx_tW#57B2#>eDV7p>mn&av'T.1SuY#f23U-*.8r1`n5/(" + "Z#1rh;$:5G?#0GY##V7&NL[-d3G=2pmGa,d,vN'KMWe)r14.)bDrK(S$OT%9xh;$=hsl&5)-t$T6fX-:N8f3*ft'4FnLhLXZbA#j+TdDht7/$[KRBq^OW%3%[a_Qr6$aY&/iua*ohWK:u5Im0RE'>GSv*XC(a.1(A6wU7(2p)XJVu`>Dc9GJ9FG[esKnl/kI*Z6-ak3Oet(gLB#TfLn/'@#Jvt.#pt3[76l.[#p7058w%bS75Kl)3@7:GD" + ")SUV$55o-#/fh;$60F&@oiVGc4(m+m11#R3D[X-=(*P=IF/Z?Y'#Ydl/" + "uuca%:QjP8/%g*%cJ>W-ECskWfsw`Ej,$Z$[lds-OosWFE=7Q0%/5##wb9B#C,[0#)L=w4R`vq%QCvl/(c<9/Y8ZA#pH3Q/j%>c4%_I^4)79u$Xm+;HJoJ4TOvTj,hb7GW5D,C+u2@:&" + "D6F)YIG@-+)BRYQ/^4j,Ix@u6@sLH2bY+M(^BK6/5rC$#PPVc[8@lA(e=d9L)lC;Uv-2;pr-f9;kB`&vG*e(Tguu=6wK#1Sk&#IIf%-@KL,)4P1v#I,,##md<;$^'LNEK6e,*:D/1(`bN0;e3G)4GELh$?)'J3ubx:/_*,S91UkV/[sB:%@7Yd3oe&Y.?C((+Ma8E+>Sdj#uR39/" + ")r9^#mZ4O+7d_u$m+=hLpbSw>s&p7/2ei8&1vnJakLO[RXLro%?RRS%T>bT%%Jwm08$pR/sC:<7Yc*E*>V&E#l_R@#pMG5Km?xbQO5G?6'mM'4J,K^+LG,;;j+.w&=w5d.`Eug1(.?U7" + "d5n0#tlIfLu#q_U&(;Yl22,PC;$3>alA.iC?#6oqr$KO#n&7x:?#" + "81@W$6gC;$%ks`_+xY,[3?c4L,Jw1PKQqISN#rJfLB^]g:b$a<%=wfi'QPW]+.q:AR41B02l$@mLCflY#YJVk':Y(Z#EY5##v1M^#(G[60)etP&%D`^#+i^58o8`l'lN,3'" + "^Vrh+]*WV$:&R8@HnA6&^W]nLnMC6&4oSQ&v5d31F*s%,>n-ha+t)d*3G89.(JXI)BEk8.q]U'#*GD)E8.-K)1.n,ExYmZ$r]?C#*IMH*6SMs-N&i.E-.^L;9uclAdB#i7,e[^,70G8/" + "UMnZHX6F2_R12kLPVOjLHKihLwY;ODD^o0#YDD['OUp6*%]7Z7ieJT%*=0GVNS8>,<^9Z72,,##q8Qn&7rUv#8ocY#$9NT'wGSm(==2mL+r)v#.pwD$+JlY#SXi*%G0wA%&GEk'&1m?," + "jQ=X$P1x*3jpB:%?29f3Sm^R/cgxI*R=e8/026J*iL0+*([%0+r`4k2&aJcMl6_iBtqTU/WF9,3LRV.=OP5I$((YZ8fIOX(v(ofLu9L'#&2w.L?-,/(O8[`*R7f2;nf3872]qr$.P1v#" + "4P#Z&B[Ep%-;G>#Y9OC&$@r87pc7L(>P,##(opb*v+4I)nueh(^2M0(N_es$;[WP&go7g1[*'u$*K2K(,(C(4kR2.N9ZW'%uug3JP#" + "kNc##GL7%#Un7lLt6,=$m40580YCv#.V(Z#e*qu%WSNd2%wi0]Q3tB+Nv)B:k[oR9[_^ux)n=C437pF9.[pK#E=(%Im?_B#2sO#-6.$G*q0A+%,2B>,rYiU)@DRv$=.tFPjHFC&VNMd3Ki[.OgZ'%'S;?W.%bkC&,dr,2fl7-#Ne[%#L$Y@#i.058" + "h%#%9XV$(wu+#sn(/:,LEAP*X.)E^g;%GW*6H3D*/i)w://(V+36C$$21()WV9C@'qL447%@#`ut.#4l:$#WIF8&hlES7Igm`*DcsT%R),##7L01(" + "sH$O(q;:R/0B(u$),QA#OCSI>$bdc*Y+-##N4p3GgUYU&hq6(#rCbA#06b2(kAq-?k?Fs-Yal.Uw'9OMjiVV87#7W&Qo4;-.G3>562%<.?5>>#V@2?-&HZ3'?=3p%%bkC=j4]9&ux*87" + "$&###QNt[GnBbB,w#G]#bZQd3Kr'eZ)qB:%hpng)&'_:%WQlk-t=E_&*EsI3ihK]$bL*I-^oQY>$5uD>U%@6S`pJ=Bj*_aKD3L$eX3k:Un'5b2S0GtT^D&?%+MM+b8&" + "w_5RAb+pB&diu'(rjnlL_+.&6dAUx&%(@.Bu'm,;oC0aYY#YfY=l+V.GVHGSY,eNZ)>" + "b9ow#3c:?#Md(O'7]L;$t/F?#jXs)#*/>>#;A+.#7.I8%?c'+$<@_cD$&###0^$8@7Iw8%'Btr$4j3]%aL]p.*mGT%phGZ,)V+.)gdTq%CEft-;va.3&@3Q/$$F:.TUr8.r2,F%dc+G4" + "S)ZA#D0lN-6[)d*W1>@52'mr/5(^aFOsln&CPrx=40K@QiR*9Ln-lO#4,9+GLXr39N>uu#sLI2qw.,;QRU2#%n.FS7M@I>#jTwu#F@QC%)8>>#.ZLV?6e[Nkl<]nLM@6##2-@./rWU?%" + "?IBh5g_<9%A4iv#7(7W$g9>W/hp=k0&1RP/U1Fg134c]2?t&@#dUd^7nS7u8$&Dpflx8S[=6@LaCr@/(>>ke)#'ck0Gnr?#sTZd3X*fI*Mo&bG:4PS7'$/=)jUN/1E#%X91#<2'*'v+H" + "P>^;-x42X-p(Q9i/;./(AtixF#^U`3IIOY5[2F22wsBU%,8P>#kAP##6(Is$/EcY#,f68%+H`,#91[8%+8w8%)B=;$T]0h328_M)p&hU%KKw,*Skhv$'LA8%d'xNO-d0<7Vb7%-8Y:I$" + "otr?#Is>CFmleU/]Ye]45IL,39x`=.wBs?#48`$'CJ`0$EbeS%@lUnLg25x#qe0%%+r3x'vi:u$&SJC''?A+i]NT6&lpKo)1%Q0)b/A+iYDmvAo3NM0Yu:s$@.mY#m*oY###4d?$1&=a$(/###(F`i6vc]n.W?Ux$vM7gY[qpK/jx+G4QNNjLqht/Mw3Qv,Eg$H)" + "6p;+3Ph9)M`SAf3t4o+eav;]p4fGT'_XBMB8hl%uR4cJ;#;X&##-E<=fDd&4hVH(#`It[7dhh4;L]Lv#OG_Z7p6@g)e/)O'8cuu#mae>#*;YY#9A+.#&25##AYCW$K@>6ssh7F%tC1l%" + "aG8f3xix_>+Um**@;IV%%/,G4inL+*C7.[#S^,,2KD]o'2'&=%?]d8/K)'J36*YA#h2;i1%7_F*nfjI)YpB:%Ra0.E1wCT/9o7`,&j-W%S/<9/9-p8%`X65/rAGx6NYdm&j'+x#I/W&+" + "W3f[#UX)m/>#77&wt.x,rRo@>c.G_+MOi;$vfMg(8_oi'_;=#-SMtt&R7q8.hx<.)EYlY#>h^U%JIR8%uF$uoA9l/(:K^@#2S(A?X>#=@I8%.`1?#" + "8XlYYD8l%?3buJ(8iCZ#6=e8%j*is-4xqV$Eee<$0e'*#sL'^#3QAW69@%%#@t(*#IkH)E:7*T%/ihV$3d+?#(5>##V;ML+]7l=&&/>>#&%(,)u-ENBl/ST&CMI&4E0Oh#L*x9.IvsI3" + "u?.lL;1PS7#itIL>FVdakniJ2k14E#0[Rq.:Aq)#>FwvT_=&[>3Fd%-ju:SIJbYK(@qW9%U]wo%6C*p%lx*hL9sH##-HM,#3]G>#-NLV?4[`71(144]-b`'i)7^9Z-kUFb3>jZw'&-/J3x#X:.cafI*#$B3k)`IC#ovi0(M9l0(4YwIL638&,%u8Q(XR=>-kG3la" + ":_-wu5k%>-,UEj0aM9n#<`&mA5fUv#::n8%?vmo%)>G##5&G?#.l6s$.Q`,#" + ";:e8%+8w8%,NXV$=.>o?W.=ime121$l=$SmjjLcbdJ(8G)X.n,uq.:jrO'_I+gL.R*N0B4r?#&Y@C#R^s/M'q[P/xg;E4tj-LHUn<$P*'U%>@7s$9lLZ#Rv>V%MplR&*#rQ&Rbsl&xN@t%%O.0:_@Q>#1hX[4Qu99%N#n`**0XQ/4BxY#<]B'%f(SfL" + "QxSfL6'BUB-V1v#EE-b7]ewo%9FwS%2c1?#2i_V$/i_;$:R3t$U6fs$=%@8%MKJ>GdgpkT5:nS%5F##&,>>##,[0#0^Q(#" + "*R.c7_?J[#2Fpk1]+`;$H[)UK1Ctw$/f:?#k/xfLo`0mAgB(01-]1Z#4j+?#+G:;$qYPs-SaFoLCqv.:83k*O*xrV$dB1:3;8r]7d=hi)?*Rg)(&HT8@iDt.r6Aj0?x;9/x<7f3QsGA#" + "$jUp.-drk'h.$?e3pT7/W@$1,UxnU/3397/D34W-7UnT`2(?p[;'i;$fd>k'Ng:0(Ne39%U*xH+rV`O'pG:h1FilV-b;.h(Stes$?O3T%Hi$O'IZa**XTt]#2[_^+cH][#2s$O'<%%>%" + "HE_''q(/T%W2###0W$/L8lXY,Ch(58'h#5A;qn,+PulY#YUo6:dBKs$+(>c#UJXg3647<$oEoq$G3Y)#:.7W$CS+.#<:Is$=Pap%JbLgC5.%W$AAo-#+]hV$*BM,#/VCv#&',###" + "SXi*%FqJ]=(ok&#Z1s>7oJ+W%-[RZ%t6Og*rMC^@h@(4;/hBZ7>UUG3n_aT/ZDWK(I+(f)H2Cv-#OCa#wc``30<,f[K+*GQR123ekD#)drk'mK_hLU=w[-pfi-%v'Kn3" + "F*fI*q^D.3jlwU/KUP,Mrb6lLnD4jLoJYA#Z2:T79P+97jH_v%UrA1(`FJNKDkoi'2Zg<$N#i,+B>n8%In8%Vx-s$?77W$fTVZ9(Wt?0UYL;$jeJ&$T[d>#vFF-1T%bk4GVe9EM0PK%29oPVxXBRld#-JcY#@m:$#" + "RTcN'219A=eOq'#4Ufi';.i8(MjP3'`Xi*%h8m^=Lpc3'Z1s>7damA#3hRZ%^d,E,CV'k;J`4R:&CO#7^Vg+4&/@W.Ip#<.K[:N(LKw,*]::8.d.<9/KjE.3oFZD%?2pb4jCh8.`]qv-" + "NJq0,CF5v(dF%<-2:p#%(P%X'`cSn1aSv9%CLa5&@_O;/AT#X$W;D8&S)3a*dbap.gC5C+`Puu`Y,N#2XH(#Lc/*#kbY+#:Rnx8R2V>$w`G<.Yw%j0OeH,*CxZS%VVtg3IIsP&TQBq%>_s5&Qk*9%4.[s$u:ns$H$KQ&=HcY#4`Lv#0W`,#Y4+gL5?b,#?I<9%=aV,#1c68%" + "+8w8%#-J>#9J8N0[qdL<1/9=/Tc4Q/`:%1>Kf3bR(f)Yk=V/_@_Y,s)tq.@?6N'&u^>$XoIm/d8]+4v.<9/tOKn$5aqN4" + "`n*X.x?oR9xUTp&`Nvu%iSdw-?OpC4=t>:&>7XR0Eds@,xCr^uw1L-)krir?n<(?AvpX&%30ShCZmVH#?xRa3gQVO1f2nh2bbGh2EX#=(>Qa@,2^mf(0$U>$C_ws$0Dea32sY[-L)bA%" + "hWRE+$dMb@b<3H#QYxN'hUH>#r7e$#g%to7PUwB5ksV&?tR2v#Mb8q/>@Ha$t%Mv#Bf-s$X>Mk'IX*9%8%78%mZwu#1rUv#1Qf>#MNl5/3Pc##OK]nLf79[%C&0f30^OP(p/8u6now)*" + "bsrO1BTIg)3M8JLsqgo0psVm10%vB(ZU@X-c$t,+6wl:&^'0n/.N7>L3####&YlS.;ahR#gC7&%`:;J:Z-tr$9u$<$4QM,#6r_V$3sqV?Ggv`*pSGH2s2G>##*]Y#x53t&C:.<$3+?'?" + "uPup%9:[8%bp5R&-+ZV-$>JL(m,f+41ckD34Cg1B)beZuRBkxFYGLG24FR=l=CVda/+k0(tui0((DNfL5o?]OY]8Z7m.wS%&t[2&OM1v#/EG>#7awf;$ctA#U$f'&felRAdYbG7l[7&6:GZ++1L0%'Q;G##waG+#)tJ]=1pv5/.46G4Ef`T/hiqB#T:r?#@f)T/" + "?]&E#q*U=%nh^F**%Cg2H6IIMEu;9/%(Z;%.@-Z$cIRQ/P^D.3Zk_a4E&)H*`)-]Q]2aa4b*+p/7PuY#lq#Q>x/B[m2JP>#e6G^,:D(u&+X4Q&@Vvb%t)_LNJUP/,C;KCO'nV@,h;`Y(" + "HTNfMHfsu5=-r4;U,Q>>HPZO(Pdu9%w+-lfm=V;$+J`]5Jc,<-W=4V.Am5$,A`pV-AdGq;D7c&#>bm`E@Fd0)(rBP8bS9G;:&sT9>V[T%AV,G4GdE.37q_k1'(#R0m4<9/]AUv-LNo]," + "<[2D+*Y'f)ZUt)uS4aT/SE]/NP_#`4DdIg<68qt'fUCgEuSYA#ueLp7R6r]less0:G]f5kJqP^$;3dkKB^6N;SWHv(T(7(sn2Op7PkL_&4_=R/Uc@t(`?uu#Lhl&4Y3=&#g=b[7GgZW8" + "j(@s$w`59%e&,F%jVc>#805##*>5##65*T%3%%W$0?A>#$RLNL_6TA]a-wIM`+'c4C-Gb%M>$a?T:%H4NT/7&Yw9;)2C&$:/o'S=Us-6sUZ>d,+T':.:t6U+jC&0Nqx_i_]?MJhtt$FE(K(_QX]#BKhc)rJH;%oLkI)>QHD*^3T6&:i1Z#7L#s0QlMF3oiL5==t_5ge8%?eD&$V98s$G6t=$q3Q_+IQ'^#WPm?$>F[s$3uhv#)Ap;%t(l<:(ovY#rBx[#rGuK1[*kW83hmo$[(?M9@vp;8+I`/)VX2m/*JuY#A)ofLMIEv#" + ":?Y>#:xXfC97UcD+8YY#LBonLS4=PAUqAw6t&#',R%v##U_1OBsc#K)P+83ieY8f3IhaV$7Eh2DB>+jLnQ]s$wF#v,X2xq7soG,*`k9e2=qv-$^7j6JR`Zh#YBeK#)k&.vc_n<$L;*I)" + "/$Tp.$Znd)-np5:oWcG`#Gk0-ims-AFU-M5XhX%D6Fb+IT9#$?)Gt71j@p&qx8;->MJ87Z^hR#4HY##;*]v#5K[0)pH3Q/wx#(LYG,XVfoMrDSi2*B#ddRuLQ6G?-)-tnL0v=c-s4[$K8N.B#U1FcM+i/%#[0di(" + "DsgI;u0&e*xjOk06tB:%,IU`$_5ZA#ZV'i)aqB.a*?VG#2d:;?0_7g:WElMK$?&H<#_a`#j+058Cnhd-=np<1Mj=D<'>cY#$9P>#dE9m0" + "usXk0Td(T/vTZd3Z3f.*1]J,3=$nG*1CcG@`*$>LNX%Q'#N)E-sMSF-@urqLOV]F-1N]q$O#_;.f$v9/QwAv-(;wS/WnL+*(s7^$<)Zs$Qqnl%73JS8qXi?g^%,NB^6ho-X:BtqkGGq;" + "(e8t-(D'p7mp=++wjOk0mY?C#JbP)4h_d5/seb+Prab*a&BnA#t^qA8`o8A$xFwm0H$4Q/J[JJ1G>,IVQsnDS:0>5#%9#97]%*)#l*T*#3qG3#nO9uKnZm&OSokt8Q<#9%1D(v#AZ`m1" + "n4ko79b&Q&L$@HD?nE9%RnqGD-i_v#@7LGD%u6Y%8;n8@3@NP&CV39@;u$<$7L39%K?i::j(o+#vqci9UCVtLQlZ1FeSML1XR]q//a:l0u6_=%%2B;-0u8AA2:L+*$DXI)jRRh,YEq*%" + "^>%&4OGpF4x]DD3&^`21Mg6N'eUKF*+2pb4VG>8./Y<9/MWeGMK@DiLkaO;.lK(E#`-U;.e3+XCnw/ZP-[R8%[vu3'p4'F*)S0+*N3B6&xhp+*2l^F*S-kT%IEGN'^/$;%:RNT%]Q'6&" + "A[<9%^U$t-aTKq%iN&7/0`U;$BqW9%C:@s$KKGN''=M%,lGDk'Iw&6&p4XI)l5M0(Vs:0(De-d)4%@s$.l$W$LTuN'D+`v#.VuY##D#1m55&,ql+#wtci9^hIUMZFs.Gs)T,*" + "e-GN1B&3O'5Fs:8K(#Q'^L(p$M$D)NJ7NT/G7[=7jT@lLF?1=%MV?g)g(lp'eb;C,g_Vs-w=e6oaLG)j(KF*/=vx%OC&#$V#VK(_2am1dD`-,0.$c*dd5n&N#[)*]vcN'3YL;$" + "SKTQ&GX*9%3]u>#L^C0(kYr0(M8N&+O>P>#11wS%FbNT%4@s$asS*%R096&=@*T%jkl$," + "?$3)+.Sp;6tk#(+x_Y$,=x1?#4u$W$;I*9%X8I-)Q-tX$e1N:/L-IHDa:ffL`a;<%JK#n&fG2o&Qh3t$IEGN'tbpb*#s.P'C4%<$m>U-2sqJ]$c:YB]So?8%K6Tm&(r*M)D+iv#.AP>#" + ",DG##*####[JDO#EBHZ>TmOg1`?>H$,V(?#1P>>#:;[S%X'xw#N-bp%NT&F*R5M0(G8l?#j(=e)An&m&hA.gLB#A8@B.q#$8]R[#jI#81weOI)Z1A%>P4a7qsr)O'Q9B6&99?tL297L(" + "4^Yk0]H/i)NT/i)6ax9.9:k=.P`0i)?5T;-%5T;-A5T;-Zc1p.Jq1E#PRMe$N]iH(/W5bCMX-OWG['Xb4/(c+3tL%gZca--b2(#:;*n(l#aN`0gfLeu2$#-oL^4393Z)I->^6" + "/`(Z#B(H?&-`U;$IX8R&<(R8%B7MW'5..W$3?&##6u?s$:%;s'A4rV$xQ*d;2[mZ$x#A>#5l)e+o5g;-T:k^-W?7@9T+R8%B@(_-lVt'84PNnMJJ9?.DF(gC(P7[?QHxK)dvPn&C:.<$" + "0dO[&NFFO0-L$O(Xe(a4cngnJ4SYF%C;)ku4J8bN^JX$cGHxvRqC[eGAGwA#[xh;$pi_v#7.@W$A#Is$BF1gC*Jc>#2`1v#WY_'%P@H>#=oOg1KXalPjLG$.K):>`:%AKeeM;7^gLhDPA#uLMI3rZ@K)F385/ik_a4Jc7C#^LlDN.(m<-VR%:.8x(H*;cX_&tnR3OXe6]'I.Oe%/lR>#" + "VHNh#$=*>J1::U:pM,F%rvJ$G%T(Z#U;7d)2lqV$Za57&]s(k'`vcN'>%`Z#OTPj'HOD?#es3P#EE#r%d;.L(bf<**O_.[#G*T6&EI%<$dvVig/>&3'X60U%i2d3'jiR-)" + "]#Hn&aj5r%cxjA+sR_v@w3GgLHxO.)aY*e))W8K3[apq%_8*E*Aq,>Y1W8C%R8f]%rKH^#b,AgLj74Q'R10+GIH'u$Nwa9%LNG3'a>Mk'W^#R&PX.@#0YCv#'=LhLe:GD<``@8%RNu/(" + ">qJ2'bS@L(.i:p&e;lJ)ZYB]$ZYnD*>]v@bv(EE#auN&+Tv>r%hE'XU8HMO'i:Kb*]fj&+,#3?8C6'Y$]p$-)+(Tq)tD7L(3R=c/dpPj'8]uu#d@JT%JFK]=M25PS_L*@#:IUM" + "*5>wKl/3BJLR+,H0)-lEr#x6D^tlWBj^b52'(#R0FM7$$1_IJQ)fZ(A+-#,>gqdL##TBTlJmf-C#" + "G)h53.$-7&==.@#pcnY%0kj?#7W$N0*Tk1)/fNT/t]:pRm.Ad)6TID*9&p.*M:pGM8]sfLAT..MH?VhLvV]+47G5j10Tg0N0>n;%k>nJ$YD1>JI/,mI7<$K0'6&?%`Z#diN**fH7v6[g,r%=Gc>#G6'Y$K>I4'H'xs$O*'U%>k/m&<_v68tAd&4U'FX$BW-d)@(mY#8]C;$c^p:%aY[d)]&QR&jVrO'i.XI)wm%;Qb&Is>?#a)Ot:r%?W-5&^6E8B.h(O'49%W$+]#6(M?#A3'Y$DSl>#FE#r%TJ=kO7BDO'IX3p%Dn*9%$qw7R8R&Q&?tWX$q8c'&a,QJ(WpYN'[v(O']Z5n&H95N'J-0Q&[D&'+[]Na*" + "_slN'W`X0P$t,r%eJW&+1umo%l+kT%)vho.2GR]4`Yp(A2(_W0)3m*A<$Mm?].s?s$@C1gC<_c4w-1:)/k#;/[?DiLVj`a4_e9:)5H(u$D(^C4X?;9/" + "a^D.36Dl/MUhuHM7)oGZ*WiS%>b%,73UD@,3xM:8`_Cw,HYXV-^D,:;jQfn(P^Mj(Jd>,2j2A[%>ieG,-bi2)98*_5C0K;.83i+=-JcY#)jQe2&d@m8_Y]Z56.wr[%r9C02R+@k0oCTP8F)n;%AE8$PP6TZ-E,qv-)^L/16+'*#S]*WSVLf)=uY4Z@D]U;$_N/&,c?O9%2%XR0Dl(Z#kEUO;1RO^6j(MZ#;.0Y%" + "tCh(E0YCv#?)#v#AV=.#KqH)E3.I8%B#eS%BVUS%'w&E<4u1?#+sZS%HZ)j(2:M%,hdTq%v_m`%K#MT/it_F*>_g:/SC76/QExt-sL4gLVONT//%d,*nbm5/n&e)*$PkGM$%:+*A4`T." + "OKOA#n7*>.e2ob4ACeD4E`va$1/.(-_Y]_4T_<^,3.$g)C61,)vieP'@O&m&#*es&5FCH#*+U<&=e-:7s?5W.C9g/1ifCZ#O).7&CCeW$-Uui(sq$q7=(<$+<+%aQ/AdPp'(]&Q&ahCw,i8G]#laS7/D5Z8/gwQf*tCgw%4iOfCF]K$-.#;D3$xGg32c]fL.%(*#)GuY#2iN]$S>5##0gh;$=:3.+PlVT%16712kSUZ-o,Yugf%cfCeN%hC;uUM0:X(>?(BCU%[el]#,$D%*,a)S&NXI@#D0^2']]*e)6(FqIL*,3'" + "J'#j'SGpjCb4hF*LM3@.j&Ii(7/5##'1qB#%,[0#hWt ocjLf?\?>#>J@2.TuRfLfgvY#vQ5+#;uII%fckJMD.YSRM0s+VVs%s=FS7+M)VmXQf.Go^W`+TE<&F" + "3Xa.=>1DZ#n03b$be?7(6OjP&Fo,$&ABPN'=v7-#PHPN'BA:8%N6p2'Qx82'FqlA6&2wG+#B#m#>LhE5&F=$DWAp&e`0-3/kW`#sWAa+/,O87.fU;$?Zqr$'25##2j+?#-PuY#1eqA4+NI`$,S1v#tJG##Z3Fx-X@.<$txPlLQKdJ(#O?k(`XLF*_8g;-ErL*%*NB@.Is$Mk.s$DhE9%Dbn[#3%.W$L)@d)?w8Q&:o:Z#P+7W$q=76M_.PS7w>4hLMaX5&n#T@#ZeOkL[l7TI=_39%quCSIacb0MKaJR.fR@<$DbG&#,YSe$2?IV#" + "WZu##HjxW7WSYY#x`#X$hRa)#&),##*?M,#)>>##Nkf*%G/5qivb#.))KM,)NGSv5lGZ]4:V&E#F.=^4pVI$8#4U-MN.M_,MwnoAU&%;)eu/LUs'XwLWxSfLU[$##2-[0#+LvU79),##" + "=#HOag^i(E1D&2BYQYJ(oiv<:fNPh#J*dTM*ILt%wlY&#@Pj)#_d:04VI39%0MQ>#ZOIZ7o7ko7.PP>#AC:GD-G(v#:(lfCFoohD7S5##>LWp%;l5Z&1]lY#YXi*%+KXZ#(HcY#w3pE#" + "-LD)5@0.12o`L?--JXI)b#d3'?lc##vie5';p()3jvYJ(6_@5/vBo8%CF;8.$N6_#R%kD#HjE.3[UgV65hRU.VP[L(a@Vt-r-q+M6BGA#vgi)rcM#5" + "iq#i(<2MX.#rQ>#.P%lhwGv/2wb;,+IJQ9/#a/xtIvSa+A7Bt%6%;?#v6c31)6>M'-T4#-3E3&2w.LZRho.HP2T9MGlY#l6Y^$*FQ_#A.?C%:7UcD;%iv#" + "2X`=-]+JT%Jt]]=,25##>t5.)j)Tv-CnDD+?Ztq.FOes$<$cf(Oslj'UZ]I*GZv28nkBN(hB=,+L.fQ-E^$T-=A72.ked6OkvpK/OX@&#T(ofLai?(#HCx.Lna&/1G6@M9ig;a>YD'/3" + "8_Ss$5`v]#o@958(AcY#J/iZ#@0^m&9.Is$u@sF3od$9..c$s$qJ2O1VnE<8bi5G49E*I3k]hv-v]`k'J[ns$`4B>,TdY/1dZ'u$9OnA,05%&4g0p,2oUFb3sJ))3*v&J3<=]:/]Ia*." + "BfC[0^[9JLfMMO'1>FT%X;q'&)D/?(j*Rt-1.B>(*7gY(FFkp%Ugs<-FaLq%1dke8%*AYY#O^kkMZv''#(?f>#o[li91Y[60<1_+*g/m3';5m,2#wFk0>ErI3JS[]4_-2?%" + "M$f:.b[Fb3xD:h)R]wC#ef1K*O,*]pnqjT%S2[)*JYb]+*q4v'L$+Pk$K^W$;TXs$'vPp%3pwuQ(AP##TMHC#`_P+#?F.%#`9F&#F5W_7J>@8%?nE9%BD(@#>r:Z#8:I<$7dcY#iKpT9" + "`6k0S4vr-PJ))3WG_FE6Q(a4$FoX$#3GWKm7jR#nL-U7dJ7h(]qV2M" + "waVC(j4-@#D/G>#O&Dpf02Jh(+'Oh#6^qtf4:]IqPXT^2[)utTX##Ce^`*TNIa3'EG>#rHu^$8hFJ(S90q%=IeW$7M2:%/JtQNAD/OX`M_Z-" + "J;_;.H?UV[stqcaj7AtLN>Aeap@^>-Il%###-?g1E,[0#W-4&#t8q'#TlapL-BSt%:Jw8@7`(Z#EW1O'>@D$#;d+?#Cw82'HJeW?H7i$#SZ#7&EoWP&(wad;/n7T&MZLfLk#Q?.R#L;." + "WS5UAHaT$-R#1Z-6]4M(7-nO(APm4(&#rB#DctM()a0i)tc``3Rq@.*'Z$@'eK@+4P4vr-rr<_$KHF:.DC+9._TIg)o;1_uY(cJ2oE:h(*RbFLOPl?#N0*L#9IcxueMcA#u4X)3v70j(" + "bo<2(v7]h(AsE:l,Z2hLuR.(#Adi&#Run+M.O?##cRXgLebM'#=83Z)FhAa5@=ns$D%TmA9d(<-J9YN'.6,##MX[w#+>>>#U$Hn&@:Is$2%.s$0B]Y#a`JX^ea/@#qU>29@Z'/NE_rGD" + "NTC]?0sq;.;x_;$qr-Q0i7*t.Pa=#-*JXI)vfq8.I-BQ&JPsG21Muu#KG3I)QLt'4NT6&4AG5s-G6@C>+sfG3;&9<&nLoU/dxrB#>3GG25n0GVbSLd4v,^T()BOS7Xo?%b:Q=F%<3(B-" + "hK:x$7WBj(;v*XCI####&2w.L@jo=%lHZxO(a)bMk'=*/jBF_9N(Fm>s." + "86b)AFS#_#$I6]nLFxSfLWB?>#Qhn0#p&rG)^`4(.PgwiLVNO/MF'nF#_7baM" + "67]gu?M>X1*tj-$gJ=;-ee.T.^Kb uZ%MU'8@_72/1YB,T%a6I.)8:[S%`G.*-Tt8q%QL#nA]HPn&Zh>nAJ>G##3r?s$JNOV-)85##,B]Y#O1<5&>InP)SmQd)M*,3'P-tM*H3o@#" + "VW#n&b*G]#m2P]#Vj:k'M.L,&NKXV$<(3e+h.<$4D8MBM+0?A6jUD?@39c$E(TO;F5Aq91wgv7sweA6[iPc4FTwh22Uu31qFaT/[/u>-" + "$W;O'bfw)*].RC@]Vg88Li1T/;-bBHS_N[=b&>LJ(#QviR)7$(,)LfEX?Ojp6&@E:g(GOAR&@$'U%57RW$9>u?#?.%s$92%W?<`1v#vEnc;" + "/L?$$#'A>#p0pE#;0nm+aT&o8Up%t%91r?#n@9b*%,i/:.$gG3l@Ms$(?:?'aKfbOXKHH3'>-##owDW-Yro0#o@m-$]m/K2F&$/LZb<6/(BR^2rQ.tL&]Gs-O.@M90^:?@^EW$#U3=&#" + "I6`*%b6*?#1chV$E`WP&07WP&@Pu;$A?>n&Buc>#6^hr?F]5##4ru##AJ1@#;:3p%#M*N0+kY+#xk>29;3o1MEe@)E@UxZ?d.PI)CS###%6ALC.QVH*roe-)jc@L(q$>d2=47W$*5>##" + "ZY.1(B[eX-'YOT^eMsI3LH7g)Pu@PD6n/K1:=dj#aH.de8@A,o,2(wLC$:l>##[PR0Nt2)+" + "sueh([NBq%E$4A#690W$%Ze`*t#TW-b]9wg1Ptu56W8x,d,;o0D4NT/-K?C#v?]s$@Cr?#x)Qv$eOe,*O3me<=/#Q^='4^Q&$'=.33P:'5bCv:A=>n^7d####w(:p7K)J>.$B#,2" + "sMf%F&*#v#0]Lv#Flu?#M?T6&$VRqLCQ>T%9,xD$6`>##5x($#9565&FBK6&BMml&@*Km&OOk>(Ls1B#ic3i2+(g60flZW.bJLZ-ipar7cf'3(;p()39Q,M*p4aC=JB^;.s@Pp'9lOF3" + "WNbI3v^]`(->K600Dr(,vObi(w.B_4A'H03hG6U(Ct6'5?f-A6w:+.)CGY##7g`,#4Yu##>2xD$C&Ea*iug^4&NcY#)HI`$" + "(;P>#>lS60[;-s.liIL(=/-4(SWiE40k'u$aAT.*7xv`Onkp/)].K+*B7E:.m'(02B.<9/pl^I*7#*^4u$SP)bDVO'27NBk72B5:)TFq$u*0HqLF%w#^7wS%x#(U%[%fT&CdhJ2XS>Q'" + "jJi0(<-wC#h,c_,r&vN'1SZ<$L*F9%FJN*-,'pG&fkfi'*)7A4R''@#:'xjkWoqr$:>[8@aiR^$SKS>#%,,##tcl8.%6i($1OqB#_bwX-.&+.)0?jbN0#IJSRluO-wVYO-RZPwMjfvP." + "eu]Y,0UL sQN0=4i$#F5mC^p=4gLE3sh$AqF)#3rh;$>P+.#=Cn8%;G&m&-SuY#0^XV$1lUV$00&##.c($#@7sQ&;FRs$Zb7F%ZBK&=V7Hf3^-+Mui6_mGa,GY###x[Tb*" + "v14.)u`8gL+XDK(/3OQ'4+ce)F2EbPiLJ=%#.JY>#?5YV$:SjPA-25##(85##" + "h5s9)IR5+#)w8&=1YCv#OFOR-vA([-VuHB0aJ>mL6>5g$[]Y##>0uJ(#'Pk0#O8j-WU@[^ouPV[HBOeZdpa.GW8Q3Xq3n0#QF6##DBbA#Zk7-#+Pj)#hSWE6O*BW$>3CG)V04,2@INp%" + "C?hfLT[)Z#A(i:&'r3(soU'#uiWI)o#YA#jpB:%x3YD#3Y7%-r+a]$*U^:/" + "q14T%wom8/M,%E3%USw#WRUa4?_#V/dV;9/Anxo%9^7A#`9jQ/7%[S%:uC?#_I%3:)SW+V*1#.ih;$^V:v#BUew#GBOA#$t6;/KAcY#g0a20=SuY#(>`T/OG)'@ZRiY&" + "-_AG2D%eS%ix6W$'`aj1d####@`+p7=8)x-<^9Z7(?ux#8=.@#m:958V<+g$g/p>#,GcY#1Ec>#9t,kC0r$s$W-072nW'vdm/;.`$#ZJuX78]W#.V.xfLWp'*#?&sMOiSn+#reli9r7be)%0lk0sE1dMCV629.1?k(;X^:/abI@#" + "f5aqMK+]?Z?H=GJ$Fb.GBZsi'ng:XLri[+M+,oGZO]@U)Zp7e@*=q3(Ya>Z.Q9B6&3>5##RpN+.DSV[AC5:'>';P>#Sv.1(p;RMjLn#`4*dD<%]=HLMwf0a[iK?92&?Y5&@tKk$+.5u(" + "lR<$PFtd##IXI%#:x(0MgeH##0Z=;$.cL;$F=J/(%>#5(`h=*5T$loM*2ITMnY+CA/&NnjrJDX(.GJb@aw0n'MnEa,&>uu#-CT#BE^qKGmmL,)jAs3(Zr$ABZ2x,M-@EC=A'h#$6%@s$" + "#0qd%Su$s$YxXv$s/xDm$5j0(n+Fe)BLW*IAt2ZS/3fgWcGsI3raxbO=Pi_(p_eE.@VtY(mk)6'n.Om1Uc+?$Z:4,M*#3v#.p*a$*>G>#RRi*%I$T]=-LI6/-`ET%swkgL*uXt$.QCH*" + "_HF:.P7l(.RXw2NSn7bQ_)$X0$####E_hR#g>ja*AId,2lc*E**$4Q/%a5J*7$PkA#]OggL1+XC&bkfi')cFS771J:pO6,[$XluY#4MrTVTJ1v#1&=a$',###SXi*%+v`p)l2GT%" + ":0Yj'QQgQ&1x68%xpFk0*/6X$$3x68PhG,*[C#B#_'T3bx>oLFE**lW73'Cf1CNuG.@eJV;h4DO@/Vm&4[x+2p@s[GIGL'#jq]a#%&###QXi*%HYA%8aw3CMao$&Oe[KR/IY_8.:/5J*" + "_DNP^Po1<-MF.I-jaD=-+6ba%KmG`aj$WS%mtar?MHdD#AOJB-.]:Z#%G[s$-5,##lOa)#oi4W6;=Ep%8W`,#3Pu>#8Z`,#(;G##5>tA%+JlY#SXi*%RXvY#,TcY#ZnwZ7LXX]-cMq;." + "J`+i(Sa.b4c`0i)JI3Q/X(u_$q0YD#;X^:/d<7f3?;Rv$4g8KM^p^M'ApFL:u^l8//-6fE65Aee2Cs9_4Ip-kir[ww-`_D#,Eo]l'+]Xf2N9^6&YZXx#`h(`+$3cA@f/9a+" + "m4jO'C.sx-hqDH4K_^r&wne`2$w0R/j2640LD8P'VMR1([L?T.?nh3(r.JM1fM-v$-)KN20%44'b=co7?GM?-,Ml>#G`$T.-Mc##096T/?Kl>#$eG+#6H/E##HY##1iUv#)3G>#(?f>#" + "p_li9kfBQ(vd':%xWW.N)e'E#A.,<.2:)s-7'DJi]@-T$l.G;Hg)6^.2.5877MF'Mdil`ZGNM[`g%vMHC#5aP+#vuv(#Z.7n(Vb;20-`CZ#i5>##4r6s$Xs[fLnYJ8%)$###1]UV$" + "6gC;$#_WD<33t8T?ZW`+q%RW.btc%5kO3T/.6%-)(t[dbPkeYQUAo8%a8q:.=$O]F79V]u0%0c0hKuJ20w`]+#6br7pSs20u2^#5=3T%0JY>#0lU;$M5tJW-_Q#)9H1Z[1O&?77D3Z[?BVj(2Z:l0%a5J*4TF:.-jB.*(_Aj0tLj/%ʺBCYB,q>kg:m$w4(rIf8+" + "R>`l0u^m>/Uu=dUe&P1GB4QJD+3TB@4(X(jB#fq.)>PQp.JIF<%tmvJaxGGA#m%3:MGglk4%(HX&.hI>6`5HpAfMX,M38iP49X(vQ>6iA#lk%Kaig1:^88YY#c<0[[mkj]7CGuY#=v]Y#" + ".,35AsrfGV7X?]Y-;k62,&]NK.=E#=$2p,88Y=_)PL4YG-V'#f%5,]`6@nS%EY7%-*NIV6p3AM3Q1p60Vd+^,h,pe*vxRL(FF[s$F0FA#40>k0J`p>,dlQv$kghc)T^A49d0T;.L'00k>,B.*u1&-F*xAk$" + "G;gF4B>#:W_V$>4(gCGs8]$%6=;$+-v+#$.M/:Sdf8+=lLj2^.[]-uf/55v0n3FY0Q&#*g/c6.7Og*f4-##+uAq/jq^G3;#7n&OMou,Z;dj'J`JvR.0Ed*D%]s-" + "<%Eu7^klS/qL=I2Oqo/(0ufG3Z19f)o8`O'Nl$B&jRV)YG.IJ$eVvv$(I;d*dMnL(*o6WAGo*$8K4h)3$J%(#%####BG7@#a'+&#HHH^7Lrwo%->G>#qb&*#5YC;$BVbe#,]U;$CLD[&" + "wq,68b;N&d=Wo],&rtJa#^)k'dUuJaYQ>'0g::WJg:?>#xdf/)+[bp9$5M>$&2G>#/Zxu#*J(v#NsINiQRH>#&3]Y#F/=K3mYC>$A[P&#j<,?-`nJKN#@DGD/Nl[?wBk?#Mg,R&3D>##" + "OqWX$]deq7`2;5KXExW-lq?E5kO0U=jC=W68([0#=:K2#`NMO#4N-S3T>P>#%e&/=/>h+47OPn02kf<$877a?Ato*5].r;$AL?ESgvGlOsJa^JlX+f>hREUu$1SuY#m8^s$LU6l*;:e8%]EhDI<`DiF(W'f)bapQ&Qpq,)Jgln&/uQ8%r%&_#e,Ig<$rS,3^M_$'I])6CJ8-#>NIq'#0&[o@-fqr$;>wS@T]1RE9&EI;8.^oh3=u'Qh>kjhc)" + "jQIddqSYA#uaM`N*wT8%:]KF*WH5<.?/E+3+Of,*ve7V8^r@Z5xT2e-pE.t-q<`@,eIgf)cM;s%g5C>$vU4i(v'6$,nrC^#x`)<%x4sS&gl2o&b&hm&gQ'Q&AnU-MmmB#$+K_u$.>tA+" + "k:JL(fMUY$fivV%h_gJ)T,mr%bA[h(;ODx$1J9^+k7AL(gPUY$gl)W%+BwiL=<4F+h>e-)%&>7;4e/7(c/MP'b1f)GvJ2OD7dwiL5r0+*Z8DN'fT'Q&pd':%kNV'80A9#,0Pv/)jEfW$" + "&ux^,itG,*o.o5'U+d.7wc;W%uxD8&irD4']c^X-[=CW-^J/^+i>Rh(<$3fM^cCj(Xu+Z,&oK)NP/s;$;IcGMk&Zv,?ZZHd>R1hLARpucfoF1;.t?N'Aj<58D8t*,>#Z8/tRCkLk^5.#" + "U3n0#<7kLs/gA6(>2);?Yvl.L*BJ1FtO#7g@MD5P29f3q/p],;Rm(+dp#7&8]Y##v6Xc2JJc>#t+T)3aS$<.u6sZ#i57K#?#ffLcurV$C`d=0" + ".a-8@+MlY#9N_@>iKf9A(7iS:6,eW.>wOk0puFb$mm[o'_V8f3q*U=%Euh8.*)-98<4ff=]HKA*k+r.;bRce#d;6ZGv:O500R8@#X94^6S.?7;%2BF#41[X-<]7/;5IKW$G8v.;H,v01" + "mYVA-?Xo]%D1@.#+####a3wK#V`R%#+^Q(#QuJ*#$Oi,#A#g`78mx1(41%w#piJq9PU+&-ls'-2_7n8%pB%Y%?@r;$#,MZ#Dkj5&CS+.#Gkws$Dj]Y#-VuY#3Wf>#JKgQ&:1`v#CDu?#" + "?LJM'Xo7T%Z;gF4a:R20?DXI)V(^C4gM1.$0U^:/AA&c3NHxB/GC5R*0WSF4Tc*w$[=YjLnVUv-DXp_4" + "iJ=c4N`D_&:sa'8veNT/-B2&.$C7lL56fjLO+*?#;Pv98mAY>-Y:Im/=MCZ@#Y94=$5rq;$>8Qk($auo/='>/(cntG2q$JT%p5Vq<=vD>5Ug0KiG#m^," + "2M8)*'[O;/-AMv-K^4?6pg=g117lw$;ol>#nh`V$s=l(513^gLKjec*2aUM'@OIw#aZOA#+B%h(v'A`a48ev$,CPY%#au?0w0hG3,V3O'lD5&#d*rJWEk:#9v-+;?D]k(E/wUm12+N;$" + "3ur^#3(]Y.CClfC9'0J=o-K6&lQ,p%,0TH+IYP##Xr5E59P:v#b90[[kkj]7ucC;$4oh;$BA5?#8%Mv#Yw]3'D*tp%?58-#?[sp%6j]Y#3ih;$@=i8(ap>R&>4;$#c?OC&V0K]=/+35&" + "q4>V7k'h?.U*.HDI_Uj0I]vmB:Y'lDgKrtBP]<^@-w&j<&<1)?N95+5KmN.3-4,R0]Zs)+:Sfh(ns,S/YJ=c4?_#V/c(.b4pcY#FE)61?aCE3*GlY#2M8)*=@%@#I1`V$s''I2ge%T.(sq;$'PP8.mwm^,8:V58A&SAcrRTp7K)-Z$" + "/j%B.j&Kv-.X`8&r#kV$Y-jv#Z,P?,'2so&QM+o1m[lZ,eBI>#oj9d2m))4'R&###]jj-$(sr.LRl#v#MDcmAa2UGF`iGd*HYkr-Dh2D+Gr$<$-`_V$+3/&,JMf>,9sZ>5kAcY#f6%##" + "1PC;$.vE&%:[E9%7]1Z#UwlKF/RGgLk$@29lPi0(KkET%OepG&/eGn&U9tT%Z`/'+(XZ0)KVxu,6CAC#R&M:%0[o;-Waj'%;I3Q/<]2Q/@^oKPWU6>#N5AWd&Ei0(FJ6>#&Tro&:YWS&" + "Yfno&l&h#vF:-##8>]sdOo?WekElrL1_vNB&/4?QAKEfMhH+&#+_iW%xu4uu4iWfLrBjWq624.)85,##tl@L(J.'Xq*q=]#^XPc*<`=q-$V4wpoDA#,FBo],1N8N/A@[8%usv*NL^oFO" + "0`XjLi[<^4,HZ]4/-=R*BGa?pK-79_#.R&*h`C]sfL.nNY7D1H:v55KP8[L4j7rq[>-L&&i1@Es-*Jju8.kEG&#eH03V9J94L>6cf(5nVf:0b%G*[TgQ&>w=j'-]U;$jb&*#CX?)E" + ",V1v#?CLGD&8YY#.WUV?Z%ffLPB^nLNF?##'DIQ/iH%##v>Z3'XJjD3%*Yk0uxTi)(^d;%B1'E#D@Y)4.%#30>grk'6S[]4NNg@##p?%bkn.$l-tYm]Y;fvYfa8m&Un3t$xOcofqtYh," + "@'r6NMY1%ML'JY-fIPF[gOjl&$M+87o:KL(9]c>#A>xNOuS&eZ;q5,E$6W$$-^_V?+25##J<]nL$1#,Mo2#,MxG(f)?+78%MARh(O>^<7mUZL-/G0wLdQHh-0K+XUXg1P-n9S#O3iL#kLL/)M2M;?CM#W.Ohvo$Y+@p.#qVa4kP1I$C50J3n,U:%lU'f)^5]OTVG]'/ak+T%_w^iUqb6-33rh;$8iU;$" + "E^qG)AgBR/U_Is$-S:v#:1%W$31'o0Xd's$3ss-GT,Gl(K?u/(V)vn&VXrZ#(U)D+[#NA+(v28&AZhg(d&Q7&E.D?#i[[79(AGkHIv(I3tRKj2dNWd*Kx:Z#]a.+1+Duu#0HcY#wQED<" + "$f0^#]#xb1w#Iw%pxZV%PtM1))e?.M[d^/)VH/xIbi=c4Gb:T/1EWa4'S0T/Y$fNk8O_hLaJtDY)o&heYQsiv6h(854R-8QUA4EEbA#SBP##EF.%#WCfa^BD5##fd:N;Q.^[6<7E5&5>jlA7JY##?Rj5&fwnZ684*T%'$###0M>>#CfWP&743p%CouV'5%`;$WRi*%" + "V39&=447<$W(W#7jft8&GWMw];(qY?a.ue)MURs$Q.5(++%qF*jowH)jPr0(KE,N'Q9B6&`A^(/J27L(W?Hv]QM0d4.=Hg)kj@+4J02N(]kl)4?h'ba$Fp/;%S@X[J6-##U>flA9XcC-" + "Dl3c2N00_u:r5/(h%,Rp5a<9#)ogWhNI8j08xL$#$+[@^4V1Z#GlQp.[f-s$'sVEea+e8%?]T^%.fqr$3#%W?b=4gLF2Fa*IOtm/w),##q1>V74#r[-fELU3N$o/*QtET%t9IX%l*wT." + "prV8&)]_%64kdk%4DBF*rDQJ(s:j=.[-J=-Z1pT-kGCeaeis<->XPbuK]I4;?DF;-jo0U7;W7Q-$>^;-#]aj$s_/2'3B0A=b6=;$;.7<$@PUS%DlF.#[4SfLo0NV?34no%;>@W?.M1v#" + "I9Y[$Z)9Y&0MuY#+8;6&h*$#SfG63'QKgQ&vort%jcD0(ujrI34n.i)qrgI*LET@#4o0N(U3SV[56sa29GSS7-2m)/?)kT-Aw8nW^>?%b,X]7nWK]L(e0)Z$$^,3(;4-@#m*=?1YiWT#" + ")/J$vJ0@:lLhYhLd[R_>7-#X7Z_RP&oPQ]4/0s-MZI=6'=lCv#mvsr$@rte#*Jl>#-Juu#,Ec>#vT5+#)q8A=)Gc>#geU-Mb8u9%U:=F3UTP$KD7^;.2a0S%?gbgu+U>J#JOag4kSgg:" + "w5TkLjb74($==/(IqHErPNMn::05_JjQ<$#TV1Y7x9B6&AF[s$XiIfLxurV$@UCd-w]K^nnA^nL`K.DE0[b6'Zvl3'oo7L()n)FNKmE<%JIF<%EDYo.$bD%b)36/:eS@#SGUtM/xe<(GPch#&;#G^@L(v&ck02n@X-6-d;%Bi+E*?6El%^k_a4v$[gu]:KkuLbalA,tGD<*N*c#rsRS7jCrxJ+#&m;a$fs.gl:C?NjwcM/P<$#HjxW7qNgQ&;xUv#J.tMEcfnb#&,,##v,>>#-cR3'" + "[&2k'rgFk0aA#J*QUZ1M7r4G-A.GG-kDU@/vi=B_BviNN$$U3CJmx1#(2###JKu.LfMHJ(lBel/>LGS7?q=gEOI&m&.sbj)9c1?#xbAQ&]gAq&DJ82',Pl>#8&i34uI[W$9;65&@$'6&" + "@Mml&?*Tm&9v98%1+R8%UTLl'vS=&>d6fT%.igh(lOi`5S89f37e:O1m(ns.CRHc*3n7=-:,sK(<^_:%YCh8.N^,,2tU>c4q*U=%i&e)*a^D.3kuw:/CCMs-;va.3BaWFN'32/S39/X=P2(JBs%,kl3.)>&u$MaEOU.v-,O4ms8],ulJF4=)Uv-INSx,RRqw-#xjpL&LZd3EKIiLGAJh(" + "e'&%#tUB#$$#-Yu>#6,E/OH*x13K(+jD*0MIH(M$_ro.[tT3<-$P9Lq;E^JxKTsLx9$##+F@_8Ulqr$/4>>#E%hn3" + "-n2&lxpnJNX.(58pC&W7wA=kFqZ[##?@%%#Z?O&#I^DR)5l-s$mgn>#j%ko7?USM'-JP>#92CW$9u(Z#:%.<$1TM,#;hJQ&E@Ms'/D###YRi*%Lwj%=0a?T.ANiF*EUw8%[-wX-BNo]," + "6:?c*lJ.-)dc@L(WNgQ&CeWp%G:sd%q&j0(&p/f)gW3c46#_R/@R1+*I)tI3F$CD39k5Q'>%NT/:JeC#:Csf[IbbK1itdo/n2Sa1oRuNBE(n<.,pGO#Z^.XVmGws8I6+%,ZYBu&8DFq)" + "D$)1L%/5##+4d9i$vkr-whuv)$;'T7'arJ1^u6W$B)^>#1fu##RS&qr>--kC87*T%4Jc>#_;(pL/D6##Pkf*%J-]Y#1o)e+NU9r2T1wo%1DkU/55O4'/w``+>foG2m1f5'2l9j('c4Hdf3/j+om0t_ve>@]2l0dbLs-U%sB#J+b$3jf4mGJLt>5DlUC(_8w/(%$<3ttwxGVu3#Pdt0NRI7F%)e141j,]IM6.2CZX-a;$?WEI3vDBe*MwA<-[i/be2Jf-)jc@L(" + ":/m9.'ej6/(OW3&+Fk=.U[s$HJo-#Dq<5&#NQ=OMV_Z>#$E(v#cAp8Bmbf>8XLv>@D5I&4IS^&?PD@G,,hl0(TP.V'i1(##%####E/>>#L.4&#b4,a7]2vY#[2_B#" + "[;hB#PZXA#FeYV$1lUV$8mtr$;Xws$;;65&;tA6&7DQP&+6BE<0&###'2>>#?u]Q&%0]Y##4pE#[jCO1lrQW.NN]A,+G4i([WpQ&;fc##nP@5'M1x*3" + "Y,HA#[/Zv$[hgk$s^3Z6q1'J3afWF3-1C(4lZ7+NMPT9$`NNh#?=Jv$S3?>%k3]w#R]Zo/6)PZ,L,)s%R)td*6R@=-SA+1)&hlF#(f)O#=-,3'@;n7W'Wv#RTonL@[Z>#8;tA%[iOv$U[kR-pG77QjTS,V:WGLRg5%##&&>uuZ1PY#)0`$#&8E)#kU^:/o^?d)F7#`4#5NT/NI.[#$]K+*M-`9/xE(E#$DXI)pT@lL'@wsA-NLW$H+0T&gwg`*6fK'+tK96&:;[pIX<:g21Nr0(_#?r%'(GU&$,RR&^;;k'C1,lUXe0'-OX#u/I#:w685r21" + "9`/f/9oH>QtDao0$OI(+dsX^,a-FT%d$Uk1#-TLV?*P:;$3jhV?.iqr$" + "9&%W?2+RS%?87W?6C35&HJIW?A3,/(V(+X?C3gi'T=X9@.D###3vPP&YZ=oLQB[i9N2sT9te7&6R;Bf3i]$<.P9V-M?vJX-B[Ub*I+(f)w#9Z-rWdd3gMi=.]7C>,:#G:.8DT;-vExT%" + "q,wD*kHL,3O29f3=MjD#B7E:.TQ.J3lp0u$Q(P)4d1x;%.jWI)MtTfLV_ud3G5HVHnB@a+dm]r.`>L;(N'HL2oWHL2J/b_5[BMk'Z#sx+_/u;HGJ%J2x%>?:>/e^lU_m_8-[xZlcEVe0" + "f@2`+IU$,*V]*tL@_r<-+d;Q/SVe1(jY6G*i`Ee)**;,M6d?Hd312L(Q:xTIcR#n&S)e)*7c68%T]:a%PiP$#l^''#&9q'#>DW)#Gc=a+;7M?#4AS)0X`+N;0]U;$?YslA8C%@#;7[8%" + ">7(K(;Oes$8#US%KnA6&:^M,#N-92'J`eW?=qJM'BlnW?$&###9^$8@6olY#;Dii'2tl+#(4mi9P`?OMFlDv#Pl&Y'9.$M$CD3(LQ12TB]s$3xWD#Pq-[%$:SZl81?Q8h_Cs]s44@(jM@@-i8jv%`Q+0:>3ng1+S+9'S$Tm&c/p^Fusib&F'#;(" + "BJ(i#]%h`(3H1W(v1=A+YfY=l1k4GV,-ZlAZ<]rH4U$>P`bA`W9o(J_b`Ioe4Qk=l`^2`s8hoi'i-75/ACTV6stnu>QX2>G+3_,F@r[]44:i@k$Yf4fWN3L#bY8;6UsaY#SQkl&R_?>#" + "fnLS.OX.F%87IP/`2,F%9sou,Abd%FIGs.CsDeo7eg88%aF5;-gB@uufC.g)x2jG<0`d'&brUV$tJu4JMs(8@xqix=-f(9&S=ho.DBR_#-(35&5n4;?C4CYPT,B_/&wCG)Pb_uPl2DD*" + "p@[w'$K[`*&9&RE9AX]+hZGrdoq74(mn>;-[]e`*b56Yc?J4S[QdK,*O>Ym'_W#DWF:Kv-(1Re$+KMG)Bq7(j(L>#VmtI#RabI#)jNrLvpRIGD8&/C3$18@&(sx=rFZ`kC2-*NbP)47GPjL3Li8.upVa4c@%q.%P,G45[Z;%%ae'&C_mg)" + "#@ILM#WOjL=@o8%v?b*.N%o;%92x8/2]K+*iWW,3.'j0,S#r9;+Lj?#xx2+3Y&942sW#V/[o6s$AcaF3?_#V/c/P/)F7T;.sWBm/=WSF4PDRv$?->K.Zf@C#:Q$C/Xku#$`)YA#Y0a#M" + "*@G%MdRTC4DS'dM=5I:M>RqkL$>w,*fAHj'5s-I/js>V/cG+jLh`T=%MV&E#'$NFNFt]:/?.G80bd5N's1or6Y5#kkd44V/Zx/+*>U?Z,s&gf1+jj/M,?Y0.A=rkL[6t84f*Y13d*usFZ-esJb.Mb0c3/lr]-e,m?-h<'Q&hqq[,-l#c*$C_F*K)b9[%QgR/^DEE*" + "fb/m0idNe-ls6)*:[kV.s^1K(MXri1o99Q&gf)Q&7u1Z#k-LHMVgtA#`U(%,vObi(m1f[#M3][#?am`*?(7W$X&cZG*;P>#DRYn*plP>#?+7s$$cht-oX'N(_KXX$q,KW$HxIn3[XA2'" + "'C,mg1LDMm(Yw3x#EOnW$=SlY#jYMX%XAMk'ZZ06&$*A*+Y:FGM.?u5&" + "=HKt$FB7Y6,*+F+@WI;6u;@^$&D/M1#p'jR/kk^F*ULlfC4)hR/[+0F*Am'w#:o$s$n8o21XU1,Dj58q/sJ(11[kq[," + "n;-NDVw2ZuXn*/MLno'-UBP3'[Qbi(bqJ73bFKj(*o-t-1Ib=$[DRd)p_ht-nUk2(J/OS7Rqe[#ekE&b);P>#eH0Q&IL[W$8%)?#HV=]#@j2&+##$7;s%aNGT%jW.>>Gxg%F$V+DN]R&DWF4g]+2&BDAx8&$P#`X<6pqA6&4(9##" + "m'8w--5,##1*L*$TAR1(d_FgL84c/(pOOG#QqTb#mWl2;1BVC?qJMM'HkJM'CoSQ&EUis'P[8@/c1Z#(^hV$s4>V7#IDA.[67HD-uq5'4EE$Si-8hC(/Kv$@56^%n.9T012$g[fY-:W(5xfQrdhDI5#_OESiwA@5fv(5e]-<.P1)Z#bDFJ:@MDt.'Nc595Kmv$Hc*w$X5wU&wH8=-" + "h;an'$-U:%i[nG*vlLa%O41a[gu+G4P&Du$ZRju$xpVa4HTGs8)UMq2,BHj'g];b&-vi#R&1L+*Oh4sL94+g$l(M9.:i5G>Y)5W-n.kj;]NY;/^S:X-;l032m>Gt$E9r=6IJ(g*BWI;6" + "0kAo8_@o`=DP-T.=DcY#Q-'s$W?ft-3W@j(_NF=$8lD_&A1.TpY7Nf8>M$_#Qf:*2S;Rh(b@U5%#%bW8X,^cj37(TM*fwf&gp]<_gTVgL?#>w$b'oJ)W-Ss-oU?t6ss-SoIfL/W`G#f,[0#`d0'#;=b[7R'>]#q4058/i:?#+J1v#2B,##,JG##2Z=;$4.%<$6v98%&qsD<2l(?#" + ")j?8%CKM+*4n1i2iAu>-BWgR/*&#rNalAs@WpfUWg6&6r73']r13(wgI>#5Ec'&:#8[L'#4/Fa$&2G>#PXi*%PheNk;Vci9w=piL+_7)E" + "`@IZ?\?9)O'P-ngu;1%X-`6JW$=hsl&/DW+M-I]$pQh8u.aWRiLv4Cv-UP/<&]fg._q`Fg0-LBF&7DPYuX`BDNM&6/(#c:qi>OJa6712&f&U/_DUv-DqV`+vD-V%Yal`#==`?#LQPn&4H0E<,S/m&qgn>#;=I8%8sx>#5uCZ#,$###AINP&1Tl##<=.<$;Dwo%I8f#$(W6#8gS<)>,Y(?#ZUU4;" + "<9_?7Q?)80:;Sh(nu*.).^1l0d6P/%Axw*3@k>V/D2+E*`aJ.*E<%e8xb49lE<%uMJ8767K]$;#[]4MPx_4r$8ZoJ3" + "mu`g;r`0M#pM9I*xkFv$H>nS#hE;.3]_)v#SDi>R(?'$-x5^f1`XAS@%>uI3quHW.Rd=#-;FHc*BO/2'@9P/(<.nS%IdHgL`0W;$Fx^b$0xH8%Av3WJ[BxS%'nFjDaW-12o?o8B@bhp7" + "9kb#-S.$J*a/gq7Do4&>twd;-S3(M)gt%=-TASv$e1Vg*Z7$##Zdj-$RA*G#i=q'#bKb&#,WH(#VC,+#Lwec7/Y5/(U<>n&^9b2*=h/2'JxE9@BLOT%lfJ7&MkAQ&;U3T%7dXV$1+@W$" + "?]C@#?*Pj'6^`,#dDVk';[Ck'CcIJ(.pI0A#lm6l;iIur9066@7kMTf3V5bM23thO1trQW.luHw-JQxA,4SbI)]WpQ&5MG##tUl(+r`j.3+$lk0j8k-$QXkD#DPP8." + "tf%&4Bd4R*^^A.*-POE$.cLv#6s+?#;77W$_KrK(" + "?_*t$G`:@#:r$s$IY(@#2L/m&,qrR8le`8&eRV3=c+i.;jv(>&j>Y+iV$2OMA.MRCgC:9vV7#O)A.MLCGD87?2>f0BQ&>-3g%L7t]7`.Uj2PDVB#B)qv74$L$7]`5G4EgNi2.f8q/" + "'rJU/T^x],/c0f)Zk0g6c20+dfF4,*8f3+Xs-$1BGA#DPP8.3Djc)f1V.3rtC.3o0b=.vu/+*,,Bf3Me$K)]`>W-Ah(o*-[Bx7hdhA5pg$alo+8d)u=iSI^N^m&<;l-$" + "KOdq7e&3v60(lA#r2fn$lkH78t#_w0rv^#$@60W$%oOa=^A7-)Hbfw'F####+c1p.[ahR#$QDEI?JPd$/(p1KvasJNI5tc)/NJQ(H'J@#jY@h(9/`$#bGe-)f=Ll1=Oap%-mR_-E3OnL,)uSCl0Tluf*h&dk0" + "]^_,)pp8R/iQpQ&.3aV&/mlS/84.<$'n.E+V)%h(eT%k(W3UG+geI<$7fL;$Z;i0(IRUt6Kbl**g)m3'S2M*M'eD0(J:@m/k[vG*Qfv8/K*YU%p:H^?&?4f*,P/c3vVQ>8hQ9<$Ne,n$9?7=Oa5&=7nS%nnj69PIsl&h>qu$OSS#,Q@;$#lpe[i9AXWoI5jur$BOIs$NYqo%XNKq%Vx1@#JwJM'AA+.#Q^G3'Jf+.#K<5n&<#g>#@U?DE0DP##O9>j'" + "3v:M3/J>>#E`<5&739E<>n/2'L(F9@;P8N0/'v+#&4;/:NMf6:.hBZ7d+v(5CERL2]K]X-^<$H3&ZIh($Za.3JI:p7xq_>$(=Da*;/pDNe#(`P.8+>/?Td#8Uq1^u(6hF*i.N/8%r7p&" + "$T-/rMbf2DwgFM*@'=u-L2u?-ZGg;-';)t-3`4JC[fTp79(V$#lE^2#_`Z4OKcsp%#r[Pf#&cT58]3.wAI%(1(L4CsJpZ%g5mhKX%15=b7tWlj'A>l?#" + ":fC;$:;I8@&Tv*&d'@>#7g-8@=e]2':@7W$:mtr$;6kD<;qJm&3M3t$GD:,R;M>wKM4s.GSiwA@)@1k11&+.)e6Q7A0&=W85egx$&V76M,QbV$f>_e;j55H3Di^F*lxb0&$K=c4CV>c4" + "v$vhLG%<9/rF&@'Ic*w$ax;9/AJXu/,C_F*4fWF3lo-F%wvBu$IsA,M%Pn;%#@5V/M>?F%-?EE4xT+?-Ax@T%s)mp;-32Q&5Ln;nN82d;fGNu/(Zw@@#G$ZnqV)G/5##" + "/8o/1&2w.L<(ku5VOFj;xO2v#:Hw(+6=n8%ADP>#>?dp0E>.?$2(Xk'>cc>#6c[F%QGY##)?%`$x#&F.O8>##5)Rs$b&Zt(V)Y3)G8H4078NW%vuTs7/Mv`4tZNQ8V[kA#(XHv.BsPQ/" + "O]%12gmi.9IU]srHd0<&IjqsL9P):8qx8;-7QUA4JbhR#k&U'#<2<)#0#Tx.R.nS%'.YgLEst&#r)=?#C_WP&C]39@.Vuu#4/@8@/SUV$/c($#5,Y?#;:E5&#;Im/1B.D$2x_Z#/a1E%" + "F1jT/(Jo-)<%1N(/d:l0_#G:.YCh8.'<c4*^B.*eo^I*stC.3B+Cp7iMYF%m/]&(khC`+^mn4(NFo:/)-cx#P=fE+KIgX%fpkT%_7Xt(/R6Q1(`bHa^cM]d" + "3RQ(+@E?N'@_:E431Cj(FQBr.xIlZ,G=kUIT*(i#%`,AOpdSZ7e;TR..tsD2@xU8(=SY>#" + "1MlY#-WUV?`@M;&(?o>##o>29A9ox,DLex>1%IMs+MoX]=%" + "`p*AF,E,?#0S(Z#MwRX'>O.w#P[LGD3:es$+AYY#O#3NLV?oC]fLf,cd;@vkU&%3xu#)kqZ%3lQS%>BTv-KtnW_OK'u_&3B'FZDv;%`7ofL)@dJ(TH.b4xd6B#x&lA#" + "X#=hc_J'HMn/)e0$U9>#$)wILWk%oL9V#oL#Mp;-$*V&Mjm,/(.EscN)#I;^B5//ka*6QP%5kf-<.e>w%+Qj>j'Bq@.*Yk[s$H0pi'#_n)%=jE.3:=tD#" + "U.u@?bqe[YJNxB/$jWI)0U%],^b%T%AD[x6L]K-4JZF?6wvOT%0H2s/:IS%-_Yf?5V:kp%t`[h(NUBP'NxU,+tel?,`+BF*c`_?-cxQW._)oG4:C^U/N:;v#Q6hg2V@Rx68XV%,@9Qc*" + "<(BP'tm.I*tWAW$#:uXfC+Muu#5&@8@je.b/" + "up@>#xml+#qECm9+.VgM,@DGDonnZ?4M'7/cHXt$g$+rRsT4K1q=@8%?P,G4+87<.0RW:.(^B.*PMKU'OE^6&K+v>#h+0/))xP(+@7RH+.6;U),LwdD)0K7/w(+i(Ow-u6ugo%#u_^>$" + "aD66/WWt&#jM+sMLQo(#;4Is$:sXV$>F*T%^avT/-Juu#8mC;$VbNp.6lUZ#Am0i:Cl7a+ZHDL5b*qB[.&s]70mn&A%2?###LHx3MkB@##x/,##uj6w%,nDD+`K^q%mueL(dD@H)8P0f)^(8g16CF<%)vsI3YK^:%CFKZHM)h)3h;O[VfH=J#peso<[.@+'dYR<-?tbA#Ej(ELCK8C_" + "E`MBLY3c=T_[A&',vw6'i0LfLF=6##+I?C#%,[0#=:r$#2a+l(&=1-M_Joo%k1058=f1v#Y%&f.'2,##6ZY8.w&xu#2]I)+c-m>$xrBK-Km#rcC;$->cY#3#=a$&)###RXi*%EnJ]=LCc^#`'fs.Fjk-$J;4E*$aaI)v;Tv-GH5<.gg$H)a^D.3-P,r@%DYd3KjE.3-/Wt(=;Bf3n6P[$DNwC#u:]],emDPK" + "=nQ,*3nnX->4c6'eX>hLU1sp/PjhLb6Lk1" + "SL=^,k%cjLbVRF3N[b]>O6HSJC.,%51097/IZf],Z9Dp/o@ow':Z7'#%####F>;mL,H@##TiLY7ac68%+JY##0mtr$0u-s$1Qf>#-PuY#gT@a*$(BW-Iu``@wwFk0ZMbL)N#G:." + "C@.lL2QXm/>+k0(';dl/IhJT%N<###MYb,M&79%#&It[7xMc##>Rs5&42NP&eER)#4f1v#8MNT%.qG+#;^>^=29aj?T.f1%Z7_####*>YY#,6>##6uqV$42n8%6@es$5p=?#5uZS%rcl8.*ql+#'6Rn9m@^'+oo7L(o(+.):@S4rIjL(GW7Gd3svZ)4J'Jau,.Q-Zb$##>N)#aI5+#*u@Z&QLvl/LlkV-0fCv#kMC;$gE@>#,JP>#1H]Y#,V(Z#0Z=;$41.<$6)US%@tWT%>;65&=ns5&%%$fM)YF&#.dEo9F)sT9/nW[,7r+.)3svn&" + "(s.)*K_@+m?5^I*N@$it2,RA4/1Fj0?]d8/?e#;/DMn;%iCe1':D,G46*XR%a8DT%M_.B/@lF^JQ6w:&lbPC+b;.h(vIf1(UEp2'UM3e)nNet-*L8a+k2Dk'4Ht:.2%&<.Jf')&ec<>5" + "nD,>J@e4B/+QKV.$=s7'.Mw=+e+NT/o6ow#Uk[9AVH&PJcMJ)5PSiiG&Z%g3&+,#OA+xBh:@+)k]+" + "5&%$$%oPc*O(A[#[B][#[s(k'S:S[#Y0J[#KBY3'Z=/<$V=NP&1MuY#6Vp>&.>P>#NQ44Mh+*`#0,UW$);P>#WBnB.1kNoRh;DMP@1.:MuJa^JTe=,H3vT4EovnUCZ+t#A1EPG>k-E.=" + "7Xrp/fud<.$?TS8aI+U&6JG##^hDQ/+tGa=q5P)4?D])G,SN+&LP-W-8>vVf&r&a=U8ae--J(#(^cd8/F]2UD2l@vPV8CiWPBZd3A_5E3m0o],A&R;%8XI=-UdX$-^]-s.M+sh)4=4#-" + "?p6v$:bR=-6JNj1`^=?-v5PZ-xjg'/hP^b.<6h735ba:;Y+nG*Ba55M(V47Mu7_F*;G59YlRNN" + "Z0oo%ws7Z&K31T%l:KV6ci5D<1r)QCP$B2'Z9+x#NE5n&=/MZ#?7VZ#71n8%B2)Z#:8>>#N^kkM9cuXrx49f3I`,##I,sT9&CO#7^1%]6LaRL2q>KoU5K&&,*uP_+oM)O':#u;-3alP&" + "`849'i_;u7MmnVo$S/K%r66pgjUL1&$h'u$nEZd3'1p0%u;Y$-9nc]>co$Q/02L_,O1IGEO#s)Fi1xi1iHFkMHMqsN01L+*fIIF%v2Rt1&=n;-ZUUEPagJ/NKU47M`VL_,q2-T%ZQUV$" + "YfY=l;1/GVp`2>5L'do79L8PJD=?M2QfeZ$r@0580P(Z#94wS%NJ[S%3uhv#5*,##,GcY#7j1Z#3C/2'+BV,#Q3TM'MonW?@_.@#OB#n&:`/6&.e5+#;Wp&=G_sp%L,-<8jI``5(_'99" + "2BZW8xTBv7ph[]6h[7&6iK?@5A-Y`30($G*$vqB#KFn8%kh:8./Y<9/C?9W$?[u^$+in;%rH%x,hbK+*s^,V/JQKe$p<_=%,>,c4MvEi2rErI3>2:.$LK@;-t22g(+_3E*cBbJ>HBYo/" + "QKYp/_kn8%$YkM(=.cM(qpgU%Hbla7?CpvA5%fQ0MlSG3xxc[-NFS60:R5fOP'Lg2g(Wp/cZ8E+.2;T//^S)GN'M9/n0]@#(kp0(@>gV-RF%?78c2&-nBIP/Zht1B84ck'B$" + "(2>>#8+35&>^Lv#*SUV$2565&E[aT%<^M,#BLwo%>A@W?H8Ea*%>-uqxm0I`p=^%4$(+/5pr-Kw)r7Z$ia40IE:.e<*H*qer22;7(p7+N'?->6X>-0>a>-FGl;-" + "'4TR.OC]5L3ls-v`i0pNIor]$^Wd`*mQ?F36cl=(',###4QCV?9I.@#<4%W$/M*N)E=Qc*47?c*/Qnb3A@[8%Q>@L(2ZYk0xm@X-$ctM(2&KV--flS.mMbL)2FeM04p1cV>JcZui$>@ME76>#KY/GMt$veufCxJD(A@QMwYlN-*udh#Mc68%8*WrQEh0`7Vw>P0M+BmA" + "/i:?#gY_pL/>xp&@;[W?.cUV$>5R8@AuC$#OBT6&+--@;qi*N/d<" + "]S5L#qs2_fGN@tUY@qs6He[%#npB'#*T4L)ouE87$&###,^$8@*VUV$Fv2a*w?n30#xu$,k5@d)ekO:YF/a+Ia]%9ItIp&N>J@Y7wF',tsXk0=R(f)Rfg-QR]u;-H+`H-iV(H-0tfF-E?/F-f>H8_A,9.D?#@#ffLxaQZ?8Y(?#PK]nLTk)?#XK_$'P1dN)Txms.Hn2)+%JkI)u.FI)iMr0(AcDt.m_G)4K;gF4>'d;.>4%6//Z`,)hQ%.M;)GN)BkY)4" + "toT.*WAvA##=A%b,aZ`6h`,l:usX=lAjTb*&Cr<-[A7Hqg=w]6YSNw.O-F#;L.u19f3FLag)A`NF3c4VT.4p;+3FKP0.1%`-MtU#oL)fC-OC$`%M+G%IMnAm>#tM7%#'9q'#>bB]7?gUv-PL.W$,eqF*" + "8oLv#sK:?%q)8@$@LUGD+JY>#Aug'%R>E-ZSa-8@*JlY#8@^`*^nLa3-c-##99[h2$f8q/v5?n&N&ic)T3pv$(cQP/lQN'%nk/w60#5J*]::8.2ekY$Y<]s$@]WF3;*IH3HY5J*J$*>J" + "Akn@#gDfk2T9rc)&d7QiZD:&5^iY>%#&Qo75W';Qt_Q.)H#*a*qXM43b=I<$d]B+iQVLo*wD>[0mS5dXePGMrF1lxOAjv%+.#;D3TC+N;Rofh(`WBD3ge9=%1JY>#1f:;$`L2Z#/Muu#" + "kDc>#(>G##;QUV$:1(gC`Y$@'pw60uXwMv#%eG+#.3g]=.fLv#vmK7/6^Uu$JTGe&0Mm^i@I4X`=-hPP=6m;.V&BXFaaNg2V&53c9%1E'e;Oi9X%V43j=,^c8.E:]>#S64>dIZsS&v4dTrjfkI#`5i$#tIIZ7Se(^>N7)-*rueh($K]$nUqDv#B#sx+n9c98&8YY#" + "-WUV?&,###hu+gLEh$29+f9f)giqB#Yw^4.ie-lLHSXG1-.h_4kE>V/BTIg)h&d11ekOF32@R`EQv*vHniJGM.Up/LT%nH-3+#+%@P,m8oD)-O[Xb.Nb3c%;ir+[Ro#pcMb2E3OdwpW7" + "I7WI.32G>#m3_&#Rne'&AbY+#=Nm59d^YJ(fg9SNl=ItC#_j-$'t@>#E,[0#U3=&#.^Q(#g(p`7O)V$#a;%L(If.[#LHGR&Y'oP)/D###8jCV?9x6W$-i-s$-Qf>#6.@8%3#.W?.uQS%" + "E,7W?Yd14'ip]nL1o34'?tH-)5iT+4dDO(5SV,G4;t_k1iiHW.Tsb>-0hAF%r:8L(6LCj(7]b**l-'>.n2qB#<7C>,@6lD#k@Bo0PxTi)?j=Ib4DctM(PiC%6,R(f)voc'&?4vr-" + "4nnq.eC%I2A?BI$nwV2M=tf:LvRtK,7'l%/:;.-_sEI-Sv[_uEw%B-fk.[#q9sZu98F]u^I:;$2fD$(>Y>#4Y>>#,BP##<.2Z#>os9%2$6+#GdpA=A-t9%b$Lp9mPAZ$sINnMIqpi'5*G^:R(s]7k_J60=QjI3;-.12+:Gn0ic-<.:f=M($FIX-CBb>-[a.b4J*uk0fh:8.83qB#" + "'YTV6X2xq7wM)(Z1'Ig))w@+4BFK[%;RSv76bQJV]&9;-2]o_%ErDZ7o+aaMK_k)#VC>^=(&>uutmn@#r6>##@@%%#oD-(#=k0X'0>P>#gZ9q%W$of1Z6x+274%<$<1]S%mjw>#'/>>#" + "8A+.#.D,##1^$8@5(D?#=I_2D+QnW5&Lauj'6*Z]4>id8/)=Bu$G@3Q/*^B.*0sPb%snc;%UI7W-6N_$'TWZI)+2pb4" + "K@<5&0.r?#cU8j191S^R9j7-F+$@[=-9$sYu6?\?=.b5E^=JK2T-=XbB0;kw=-?`Qm(m8bJ:#:rR15hPn&mG-ktmhqjt[*3$#j>$(#o,*[.PCEp%p#4?#.MuY#" + "=J+.#3Ml>#DP+.#)SL;$g`;j01YY>#6m_V$,b*d;B##^$,Qtr$LsiQ11d7L(x[pb*kiaa*SNA.*[*'u$.[3d3)U<7%RS<+3.g0i)SQ+SjB5^+4wKVk1GVv(/VaOh#v#4R8+f,-0a@0GV" + "5lVH.Vl:p.k_ho/D^9I$4aO13tY+(f47;kLpb^s$r+k<.4-xA6Q(2v#YUev7Z@Z;%lXc;%L;AB#+V(?#vtO)'K?=;$.,P3)PM*J/fa9U%v?nLMfvmLMZY^N-vu]N-I_sM-.PjM-OV$xL" + "vTBi^=X3>djf-H*OMJfL@=+S&rt@[#PYLZ-%8-##7'JY-G^Q9i@UpetgW&%#0)Ue*m(*6/1V1Z#3hRD?/]hb=';P>#EEi0(n%FI)m`.1(ep.lB0vCa4_U07JoJus-bkJ]=/HF]ugc(W-" + "Kh.lB.srS&rI0V31#oA#8H%Q-t#5G-D4TD6%####&x5V#9g1$#SV1Y7d4*T%647W$4gtr$Tg3f-rh)+j:;8)=Uco^#7R,n&U@9q@WU03(=cDt.ugC[.<02N(&o?X-rP%l[Mjao7_jpqu" + "UEph7.6t2(,'2hLh5$##L9qvU7-WdtLdJsuLLG2]-p2OF.jp0GVLd52qHp;kOX[6##qH5+#0]H(#ZEX&#:]ua*'2>>#=7/[#]Kc2;7TVC?" + "+5Z>#'55##?qgI;EW=&>*1M9.4&Mg*8=P&#p`'D49l(F*PB$)*0vm;%>UR@#wg=k0$lMrAM6>d3J[R1M/4YI)PV`)3j>%&4H'k?#Hw`#5Xm<9%[,*M2lxEW%G[jP&Vm%=/d,*$%q?aiM" + "b6j20PsXZ6>L&m&0>%M1RQl=$p4,i(Q.350s,`l-%>JFew#&Mn200/BY&0DY>#gq`IX7^e*NcYQn&b#V.tiwWg;O(_x7#qU#?>'<.-h/v6&h[:<-*ol$,#':`&MM:EOOen&M,W20(WWOv-A2:5SZwnf$g,IZ-2S)Z#16%B#Rh7F%w]+HMa%Yt$" + "<[7.4_)4J-MnJN->.FJ-;Hg;-?I(d-Lw3+%CB<)#$####H^hR#VS@%#r5x,*-AcY#$a9@#='LfLkU<@Ap#Up7@(J$$;t;@,i.@C#]q.[#DK7f3*?oO(7$]I*5WGb#=[_t63u0u?*>P>#" + "rC1?%Zt6%)d0j?#&Pi^#I8n-)o(:kF=PoA#-+E>0Z&>X7BVSP'+JhkFOJuu#NTLfLqbZ>#-Z=;$Ud=oLU?wi9mue*350lk0jk[s$u/0-3v9@+43g/CONZ5c4%8rm&ejHu%Zr?DaUc*i(" + "n_1f)pW(o'f;>w02djk#gqu$,b$]J1EW95p0R=)6u&'%#.HA4(9tFJ(+P(Z#A)ofL/jd>#805##V(]fLAee`*BdmT.r%+.)lP0K-%&Qt$sZ?^4R`i=.Q2$kGNP6fuZ^xAJ&NJG203w.L" + "I&x]G(=D['#RUG&^k.L>J-&X#U7B2#5f1$#cebs%.rQS%Tu[fL^4ou-hs[fLJa6+#l7KP8<_,g)8SOR'XlPLM2vA#g*>d?9p>nihk@bwg&&DgCu.?VHEVDcVQOOBJe7W)5MlWs%mAMR:" + "&;n8%k@uS&FUh(EmKFt$;PET@99qS%>B`d#'`^58#%a]FtIto7a?C)Il[j)#74@W$@V+.#<=e8%@8ur$De/Q&K%gQ&:7;$#nMOgLR/aZ#/6&'1]-3$#8.2$#9iI:.>=eS%ZfmH(Y-8JG" + ")HXRDFK;L1rL/q/Ao'b*&bwj^ZE31o;v#/l$W$tn3q%K@`;$`=M;$/fqV$5-wS'NGY>#MotV-`&;O'886t$xTu^$<@IW$oeOn*i,#A#?YG>#@U39%(,V11Q-Ft$CU*9%6([8%,AcY#NC(KC" + "x@8U)-52:%T%soCS9FU((DIw#IG(L&p3np.oFZ>#OUO&>Vg#R&u^)P(0xQ8%ldK3*IS1v#)152(Oe/?$<%i;$8%Pc-T69tU.=OA#CYG>#A3lf(Z:tK(B17W$BbJm&4l$s$0e.g:PW5L1" + "+,S_'DB(RJM?j]F04n0#bw6##k,&X#57B2#)K6(#4q1K2kDc#-u>QR&4J>>#rf712,rd>#e),##9d&##(MP,*=$_US7o26b=0:*#3x$W$#rme19@wo%1E&##7V1Z#0LD6jqnSQ&" + "D7;s'=F`?#BbE9%-HY##BU3T%4k=_/3[Om/,&wo%s7>V7^I'_-3to&:YV[v.rVUp.DBox,=Se.O(SSL(4Yj0(nuJs&K$nO(c`NF3:ej-$b:j=.JJl-$sQ46/ktsmawBH38,?U^uEaW>-" + "Y[bHV(A@QM7b>1%#Y)N*4T__a4JIF<%d&D#R^X'$H8Z+ccFg94Hxd7u#l;$##b&A,M5Y6##;dS2^-AP>#oS+D56mQS%CD4;-" + ";gw9D6[i##=(V$#[Wt&#i0;,#vpt%(F=.<$;wS6&6Lsl&9lh;$nH'm&Gk<5&B_,i(j^JN0N0Pj'O[*p%ut&*#Mqs5&TIZ_%>t/6&DPo-#5cG>#,NLV?,]UV$>/R8@Ug$h(8X&m&1H]Y#" + "EXJ2',EM,#FO<5&Oi*9@HguN'/dpo%9Hv+#;tI0:O4=9/+/###gU_O;OR%'?;t+^6ZJKf3+:Gn0L7RT8Fn;D+il*HZxL81(ujrI3pdj-$h`5J*>Y:I$^fha46Ru)4HjE.32Bc8.4x]_4" + "G(-^2M4gHV:M:<-CFH<-u&&w,dNSs$[jxx,V3,j'U%DAPP9f_/5&#G4o'kEEagdA#TGVXesXKB+o5lk03g:Y$o9Q,*Zas)+HF6.-Lc68%HB,7/1;WD#?`Us7=w/QAc44q&>@IL(C:n8%h<0[[mkj]7nc:?#5+7<$GsC;$7GE5A3%rV$F[_GD57Is$:&8-#/PG>#1NLV?1uL?#3c1v#3,e8%(eG+#2NG#>44Is$]&FB%W[Mx9w`viC)_uV7hhb^-l$3OPM7t]7" + "rTF=$c8iu57uWX.Ebv(+5_mg)_I=8&Z4LV58=IE;RxR/=B`kQ>#dRH>#b-*Q/5?YA#vsRb*/maa3@Al',q#]e*+AG>#?fG>#T%NP0(DNfL#[5;-" + "@Xr2M$7NY7r[#nL529C.`;$Yv(k'SK;_Xvf;" + "'r''#(QOv#/*?tLfNqfLc,m=&4qFk0w4QLMP;_UB)#PS7sA[]ug5n0#&/JfL75*D#w+[0#R3=&#=Ja)#+n@-#:wP3#58u6#ZaGQ+:1;?#LO:GDJ%iZ#@_aT%`k1,)nu3.)RO%kkgSSd2" + "7j68@bYo#,d^0>$ItNT%6sC$#UjhK(4Z(v#<0CG),H`,#Xv?h(cc4MrSfL(k)]?C,)]2%H)XB:g(D%D;$SuuY#VeN5&#O?u/(&$PA#Y,Yg4b[7w#9F<5&9rhv#bq$X-" + "'1?E*H,I7&X>ed)I8@r%:`(v#?cY>#pLwi'ODqr.NfJb*6mLB#V6:U%[R>,*`RM?#GUVV$YsPN0xVH(##Ur,#.N_nLs^PT%K&`V$O3g2'71@W$4v98%-3tD<*>cY#.c:?#,:Mt-_v=oL" + "hSDs%+&O@.?I" + "AR?M9Lk/K26A_`Vl##EpF6#QTF.#G0f-#=h7-##ol+#,3h'#fke%#OF.%#=Sl##nW)<#s-d3#umk.##HY##>Rrt-0vn+Ma0E;$DE[+il$b(Ww/';H" + "$Fl3+Qfqr$Ac4L,V]:;$k1'5880K_&3.$AO.[2w$AEi7[%=%v#9XU#$#n.eQI/>>#m.HA@pY3H=*Ml>#i'-7&EEGN'A)8-#N?GN'V'g3'2iCv#6d=;$>@[8%H8@8%Iw8Q&LCU,):FIW$" + "XZQe)VYI1(5FaP&d0C=doB]D=)+D9.oDX)>/GYs%-UGhOUOos$BDSm>k07K3sL:L#RK7VZMj1,)a@SfL9s`V$tV/]t*Gj(t$53OqWX]1p?B(7#>j=6#" + ",-85#pE24#YRp2#=M<1#,;w0#:Ws)#/FX&#hQk&#v^Fk0m&PA#C,``3k;>L#CP`5/*T6C#-wN78]]d--+-U:%'Ef.*on'hLVj*w$b4p>,&'ihLIRV=-]e*e$Lq[P/>;gF4E:T?.3`<9/" + "R^aj1H,wD*cnf34pHOA#(cK+*grZ=.Ib%s$`]pP'7q0X:=K6_#T(.x6A?Ux$l%AA4OJ,G4abL+*xUKF*HvX$0EL5gLqVl]#K&4jL)A#;/v-YD#*9%cY#;s$'4?h8m&h_^.&uV=6%empu$" + "?+D?#286X1[fUv#-GcY#p+Fs6M:Vv#MR^-6lWEv#Fd_g(OE0Q&NbRW$?(e%-AOV?#J%Dv#Rrf^+YohV$3x6W$=o_V$:1MZ#k8Lh1GI`v#>qAm&tf&?$4%#gL[wLU%:Xnw#" + "EcY>#InqK(<.IW$_XXgLbgcgLH&Ev#/OlI)Z=4,M(=ul&4`(v#]u4v,>CP/(bs-h(9fP>#1K$hc.i:`+.SC;$snh_%DSWp%]ICl%>@q/)@UN5&?+vY#IWu/(:=`?#Mq4j'r(FI)NVE.)" + "Y'8w#:U39%9C[s$DO;?#AnA6&7cU;$nG3**7V(Z#'G/(FH,n&pL]p&1[.9.G0tT%" + "+JlY#6ru>#+MuY#HZu3'XpgY$ltbq&9jq)3[i32(3o6s$K?Tm&7P1v#QLY#$a9n0#_W49%Sq5n&jv1o&A]l>#)AY>#;]U;$NrXZ,TCIs$@ECg(adn_8u&H;%)####G%(m8-Pd&4.AU/#" + "t:^h7O3xg=N1Tq/t>?7&lrdC#b0%:N`>@X$^Q3L#1;>>##`T58a4'e;E.(J#O(g#LYEt$Eta9%T]%[#:4[8%95*T%GRCgC;rhv#E=lfC>7L7p'+^6" + "EL:N(`?Ug2Ka)v.TurB#ihYmU2/.&4qkZx6=Qw2V#Br1Z#=2QA#U^UG)6GcY#)'G:.>l_V$lfpG3Ks1'-s6H]8?WQ:&`@cZ,;(@s$Gwfm&7@*p%" + "`EDgadbvY#W:YZ,Z26?-e+O;&%h%##2XN1#dWooDWJ=D-34eS%8;?lE(c?1<%WcY#*,m>99nm6'@r(?#3fN`-j%ko7.c1?#A1:GD0l?8%D@:gC8O3T%AGo-#Dg+4&rYe6jo%&4SP,G4" + "VU.:.#C7f32]Dp.m&l]#oJOw9-(7x,i5k-$I3rhL5N%.MQ@o8%Hj..E;2-XV.nB#$>i$s$6uCZ#?vlan_N(6/fFWB#4`u>#/YL;$7+.s$fmwlBiD#" + "Wc6x-Y1o+MgxV0($Qm3'*otA#wgDe-OJG>#raQg11f$s$P0xs$W^gq%p`qBW6OhJ)1f_V$c#YT%fQc/(2Vl>#<;v40=&iB#v^6iL3e$V%:[>gLQ:+w$5%`v#0%eS%_+tI)1]:v#Hahg(" + "$f0^#9g(P-@]kS4EqN9%g>i0(YQTm&6SlY#2oh;$j@xfLjY2g(@+`;$SVaa*_sM^#0([8%l5e&#QlRfLsocA#pj7-#$v_Y7R>+hY=QhQ&);cY#3GdY#=*LfLa9(p7MON)#8lOfC(85##" + "#-xu#xaY+#lF#29.4)`+40lk0&$a@2<`pp7/Y5&>4vkjLmW;;$gSOa3:l:$#JKg2#skL?1GWXVHhW5w&[iViKaKhDI8jC)?m$U)N$q4i<1=@c*DC%<$JhK_#x=Lh04Y(?#O[;@&ftkgL" + "p6q-#Jn82'Loml&F'gQ&=Zu##L9GN'?,2Z#Yrm;-G7su01]c>#CiWP&20bd;-W?T.0tY+#*.Z29K4%##6Sg6:,PkYRaNWCv#+daX&pAIE3$eY+#oO,295*iI3g]$<.#T2O'=/(<-/2%N'%%ot7kG@&," + "$c.t7/p_lgfqA[-S3n0#gahR#Q6>##;4i$#=MJf$-:WV$4u6W$`)ofLlsAs$'$###.JYY#.Nc##=Is." + "j^fw#]kY)4HH/i)^qt.LjNnxFjJrF#SN.cV`RPS7I),@#$u>V#KHLe$xj5qVQ`gs%lx3Q1PYxB#:4:GD->G##V(ofL='vW-ot$C/6g3(#r/b;$=R7Z76u]60`/P^,F;5##02G>#jD(v#X*h-HOVC;$FG(_SAI3D@WL):Pjc)+kRP/xH:a#d=jl&U4@-)(E2W/XN@o'H]x$?p)Mg>[=>[ch.IW.+S_m]io-6&qY<@?Gkl[ft?m0).wNq.Cr`=.LwE+5=^nGZ_MCj26sh0(" + "<,s#i+'B#0s*O4(Ys]7-lhl/$L<:.tpOk0iqtR-N1fQ-58;%w-q_YM9Vlh;$2s$rN+]C,+'MAHm&Yl)6J$5mN#S/i0(IM;/(Dr(?#koh?'u.gX@Wa*9'_,.-)XoC7/0#G>/-Ht#-g(H++(/5Yu6H(v#PotV-cFO31" + "CpvJ(AnEX$.4,R015i>$s=ko7b,p&$g%_W7>#;^#`qG]OGRZY#uAlY#k:B^#46Q*Sv#`@_r/T`A_4i65/(/,4##h4KP8A-,UVW>%/::_2:2^*cm#" + "xFwm0rO4GMLi%6M=xSfLeE1E#eRj)#>EAW7LVCv#%-i_$s@j+&i6+0N36V-M_)Yt$Vl-<.T7Fj0JJeC#$)i9I1N1v^C/^VIrlB*-q2p%#b_+JQKK)m`.1(q^d0F+)_bEqqa#fp81tUi%X3Gq(a3O0TY<-x0u^BFl^/)*Yr:%Nguc#'D(v#(?M,#/i$W$" + "0T`,#1chV$kDIMNWO$##rueh(U?B6&I#U>r:Q)U++[*ol$,06X>-eq.kuq0C;-48_IqW[ajL4Om$,9rJfL];?uurqlERduQS%" + "j;6A4P-,9%oxE87*M(v#is[fL0)^fL_@8_%UEo>#mUci9>BY3'?+i;$hPJ$$vpFk0HMbL)8ulKPd#%%Hwe'B#HgYOMqQ5f*xOtI)K=k>-8R)XLs.e$'uES%#mC^l8f7h,Zn&;xh;$64@<$;mRfL$ddY#'$###.Muu#t^p;%b.b,#91[8%+8w8%)B=;$1vxQ(q+4.)id9U%D#DD3jVD<%*ddC#NV/a#N@l)4N.Lp7>T9?-:NLIVDksWU>5Cdi:u=MTG,[NK" + "xx&?5$P_IqJ:EO#PG5v&LqE:(EU[QIm/n1'mI5K3-kh`NuJR##GR@%#g1%Z7.LT6&1Y1Z#d,>>#*Auu#pK_$'HIJ3bTkV;$-Q`,#5uh;$%a_;$-Kx>##%2j9-4dC+&A4.)hWt9%DZhd/" + "X(`C,^hZP//T-K1_MbL)+i=0qphpYVAF>']JP$x[k&#F=x.L,d;T%>C6JCv#YV$:Pc##92F&%8`>##94;$#?Mml&B?#n&=2c?#3;G>#" + ">,.8@?oUZ#SQ]nLcKWZ#*,*p%MDt%,Tr,##sTr`$bG^sTAt(f)bapQ&DOes$R>ID*p]qB#4tFA#jAqB#]Xj=.E9Gp.a;2]-D+]w'RSi=.rS8f3bA+jL`a#l0`Ft.LdDDO'..FG2@Id&4" + "d6F]u%e+/(E064(8Pn0(/.=G2AV:o(EP-DYftadk5Aj/,V(?#FS8m&L/Z207JY##9:3T%of=R*l$I&IdZ/w#12,##-Y7n&" + "e@ofLiC$G*VCmp&vGdV%he,[LsrV0($G=*e?^k-$[0kG*'+dw'DKOH3u)>uuQiIfLWFuY-b;)4'C.p7-fPMO'^<*/1p'[>-F=fgUB$YZK7P5W-c3n0#M7-##k,&X#@8B2#3bB]79J@8%" + ":x_V$EI)v#je&*#KqH)ELVt;%t^?['uP>?#)8,##+p_V$+;P>#^;1pLRf$p%k8:Z-DUv-jXX/2b.u;?CT(T/_6Aj0o=#c4+g^I*+)b.3`55x6?V0Z)" + ";q[X-rv8w#u81m&g#LD3&q+$G)b:m&?OpO1_.T>,mMK:[Mdxx,l(xc&q#UR^Rk#k]j)>Bm0H2)%,3'W^cj'Q@Gn&]3igC0JuY#" + "4JslA+5G>#Aa($#I3PN'GiI[#9n8q%FUi8(W'7*.Yp44M_EsZ#2/r;$1Ir9.aq0T9xvmA#4*=[%o@p51B+.##b+Yn:*@4^6C:Z`>LpN.3#`/q/Sd=#-3(qF*e/)O'n5mx4)rjk'$%O8V" + "%Ri8.C7[=70TE#P@tRq.hHeF44vBWT#7_F*f>Ph#x*gm06.oDZqhp>,WBs?#7.VC%,:G:,Z.^_45rLZ#BmU>$J,3&+[`h*%:p#g1obDv#]1^+*uTJ@#l./m01S(Z#6O$g)AC7s$#12`+" + "X%.W$^d#n&gk<2'OEkU.A.:_8lK)614fC;$Ij#T%3LRQ/LZtA#A;;B#>uTY.CQGA#_T$[-]i%5'+Vao&1>cY#hj5R&rL'`$RB'6/2ULA#j(ko7,C*j1CB(O04,tX&:%no%LBonLS9+p%" + "6?]t%/)hs$54*p%q.>V7J&qt74YCt2TmGa,3>4ZIUt-q7s=w>@SS]T0F####c[rS%<[Sxkh`),)b[18.,s:D3L3DP8R7f2;-f68%3o($#=>l?#B@[S%DSn8@I9cj';R3p%>)u;$*;G>#" + "Uh7F%LwS]=(AY>#EJ'JF_w/q/non-)>JL=u.R3Z@ajM54)6SI4W9F;$3#Ib%Xb7',#8Vi:-RZd36%=`&" + "e>lt7HgYh#3R0^-d9:=%2?Ef#5x;e+Ciet1VrCv#2J070T]Je2" + "+(g606nn0#./4.)_=$q7:TSj2V2[Y%OK@/&.cLs-=g%907%1s3'4_S-am)Q.eA5',Bi5>mam2E,[-b&-wAHbFS'_e$4YCb.#GO�`Du$CgelANS8>,8EX#7LiL;$aG$V%+AcY#5];Z#" + "jan>#CQDHE&>uu#0m?8@2uEq.VLc(+W3?e6J$qH)$wOk0xQ*c42/$J*m&p8%qGZ]4ul]>,A]DD3sphg247dtaq%[W.jqM98#L4t$#b_ZR_+m]>3Wu`#NO1_A=kw>#i^<;$whKn$O8YY#0j68@&-,>>1=o`=2X$(#N,FI)`&rG)" + "x@e8/DF71M5gfq$,WkL)/&v3;FvXT1;;aA7-ij0Ei%`)5ax(t-hN6i;OCs20Oke%#(7X[7$WcY#7J,##ug6<&j(ko7*YU;$==UGD0%RS%8Dn8@%Ob?Kls?8@(8>>#5m-8@6=Rs$+Q98%" + ".*m+#(4;j95qh-MQE&1(?iDt.T3sYPcw`3;$QLRL_FSZK)" + "nrw-)dDe)*EAHT.,5^+4TZUH/Vsng)9X6IM5]JvT,e8:7)K+Q1e,W1;lV1T.R4&P1u'=7/U2o51pZeo7jck&#gH#/LFc:12bx4.)AF[s$8=3p%j+058SkPA5,a-8@+V:v#w#]Y#&wl+#" + "shui9@fo1(?W-XLY)5J*J`5J*vt3eHn^D.3-/])e2:>d31HRi4j1'w%i>>sDp[wu@d?`kB$n#ogn>#4r$s$i1RqLQos-$>(lfC?'gi'P1X9@DH>N'v98%47[8%2Qxu#7Oew#:%JJ(@p#F*:?7S59f3>6712'*]>6" + "t@iv-ml[h(tLBF*PcJD*#Zc8/gS5J*BH()3fiaF3^m-l1#7Gm'dx+G4`NLl:i8^;.%M_l%&`OF3I>WD#6*YA#e+8_#Fc7C#L?E/2O6nG,Jij$5[5MG)kHL,3w*iZ#_%Ax(?#JkEh#uGqh1lu>++a3xq.uY_r.Dnw6/X5OT[0qUhL21'1(v7]h(&CZ&(1iLZ#" + "ECV;$Nmcn&7Cns$:w($#L_wb%9Jq%#48E)#apF'44UO5&@aJA,5rCZ#k(^,&H$#B6+JP##>.1GD=Us5&DxAmA3@NP&EV39@:CIw#;U<5&8/IW?5(rr$Zj]>GXW=&>i2hZ$KYb+7^L[s$" + "W8$H45gvA#)@MD5?tLO1uOjT/]8:Z-5x#c*#rJ<-__@b%pZYU%F/<^4$;Ls-v-pU/'&QA#d$<8.ef6<.m&ID*KjE.3uD(B#Tu+9)5kbP&AbX70>o;9/e]C:8Rf(T.Bm9Z-P6O7//5R?$" + "O3/s7u([$ZDBYJ(qa;.3'6*I33S0f)G]%a+Od0()25dT%-85##%SrB#p=E<%Z(]]4R;:R/g,8S[&',l[P2@:l:D0NCqhY9C.NQ[Jp*?PJuQ'##$####&bhR#jGY##5RD##5K[0)eX$l;2UF^6B*ik1Xe[%#gR?x%vsP,26;AL(a]qB#?1[s$@Cr?#NLoi)&i^F*.D,G4Ab#V/k^CeD4^lu8.iJ=c48bHv$KBMiLC]E<%xs3T@R=+D#LrUZ#bb$(+*4u**i*[9.+F$R&DO[s$0%4W%_B+R<`h>6'U&?]u9=iV$MkfM'" + ":+Vv#GJDcN'8ool''gq6&N[dY#T/?r%jXc(+GL1f)2-X>-52rh1ewl`4we$F>W`[6:?1Ad+hV[1(4u8g2eIffLWpox$" + "1c1?#2LQ$,S0O9%YrAF*v3X;$YHkp%rX_W-/c5_+bO5_+mo4$,Bbes$;ZKn/^gtX$B####Cf#W6ZA)4#Q'+&#&E-(#mhA.2u@3t.J6/&,Wqjl&bL$C/l+`@#KLlo7k:H,*4nZ,MX&.#%" + "Ptu8/mePS7V7V<-Q1D6&T#@E#pEVTNdlH&Q(FvDOLw3/Oa*?)O[?6##1nvC#%,[0#Ke[%#Z(a#$gc*87&8YY#tV_*)Ki`VKGJZ2C7:mB.RBS&F&nQ&+Y4s`?3EtE.75]?.TK&##_ZS6'iWAJ1GX&[#>@lG->CCTM$avY#[GL5Mf^FD<2>29.=E4:.r$qS/bgom'J^D.3@/=qMu9J@#U1/>049P<1'GGB5" + "mB;+GiGM@G%T#)/qEm7031]w'^k2D5qx8;-_[rS%.#@`aJ.RP&^O18.sMo>@O^_K(OsPn&CP22'GHp2'Bp4?#>Fwo%@;@W?4=35&;V*9@(J:;$8Lp`*KS.9.'-p]=2Fh>$GNbiaAH7eM" + "weJh(he3]-+ibF3.:Ms-)?sI3I=0Z-p&6s(d*QYnJDw%8'fO]o^f/]aT%EKM]=piN;[X-P;b1>r959?<8qR;d4JmN.301KU/_ACZ-BnV`+uiIL(" + "7xhP/:/;l06r*+3:=rAOTI)EODsxX-oSfF4Bp%H)QkY)4MKhD3GC4x'jF3]-5c*x'X^r-MrNH)4`LZ>-,2]h(_@2INdXGSNR8eF#$$sW#+%w%=ltZiL4%KgLn?h6A1cV8A^DC_&CKdJ2" + "jFMj(c>[BN]+K7NdAd/(XK*1#ZF@[#gi[Q/Gn%@#2Y(Z#`;u8791`$#&&>uuE6wK#,f0'#IuJ*#([Fa.n+4s6%L4p%@nf_#>'Z12bFIW$V,_B#rFT58s3fS%f`._#m2po%f`ks%<##v#" + "A>&s6#C>_87VqWW8`%v(59_u31=7qF*f>Mk'sTRP/j]qB#]CI8%N0qJ1=@[s$9/TF4&,]]4i]h*%6DWD#J>`:%b?Q,MBVUv-" + "K2QA#:K?C#P9xB/Gi^F*5u[:/GV7C#JhOJ2o$/@#ToRfL;>:Z-mB$H3M6#-2:*lf(qW#v.4jjkBBQ$`,g:%f33F)m(d&WR'Hi*-cU+>=c]a-Ymr^>TI1j(@75**+AG>#V3n0#wWj-$qN@>#%,[0#$dZ(#WnT]7C8-##Dl-<.-fh;$7h)H4U`L;$_>cY#So>#-L]#E5Hj387)AYY#<=CGD2fqV$+VCv#" + "`][,ML`FD<'xK^#*Q+?#.^3o9Erk**?RH_+.^IR8%eS9p7a0NTh[-s.Q0P%*a]+VV_w6i2jL)EH&=-c)HA4'In9.4ibk1LdS.*l>90:%6G>#a=]fLfN5" + "YdC6&7lhV$l1058hiES7if387(Dc>#+Duu#TF:.6wPJ(@x*F3O8;Rqg6h@%MaZ32LMKiPUsNiPI>wK#7BxhuQ%k#,?t7:&v:-5/" + "dC#gL%o?]OfAH>#51A9.[NYJ(CBa*@68/[JN:5`16Har&B7%<$.AP>#]*(kb0>0kbMJ1v#V/uoLhHH>#QRi*%Me2dM5q=M(]TT1)k_Y)4Yv^:%FQQJ($0xA,?qwnLnX+9%%0E;-`)S0c" + "wW,aPmx7/L(f_?#;iO'K,)Q&jT2H2UxbV-Vj0^#CRnW$K0:[.QOVZ#EE,n&GLx-s$:1e8%rtj^-]se$9Ah_-MUxDfN>18W$nTcW/SX.<$RvL0(qVx;%OV=jLE[=T%2cl##" + "u_^>$)F-TI;ahR#hf[%#qH`,#K/Sk7;k5r/T(@s$7_'m&G;2'wn=c#9B)G#,og58_Gc>#V773)po387,#NbJ=>/p3=5&#Ck(5*n3[#td^M'lMhu$b$.A,GeL3(SBj)+Ec7a+@_hk+bbQU7tUoq7@9r#,`jY3'" + "oA,F%JeJ30*ol$,:wG9MmaMa#9x_Z#oAi0(.&Hb%D5XS7O,.j-OpgZ-,&(=:i[.[#*w^M'1M.@'Z2=JMCInG*Ivmwl?OF0(ipgm&pG5F%m0/nLsOm$,j79p7g`D^4>]&*#?st.#+_Eo7" + "rFaT/#pFxUCGDRs$.rg58,lW20)aC;$?uh;$7q9[0qI[w#9sS>#Db`$#SYc?#[QV7o3v@.MO_GD05w87OUTAGA4JJG=D$5EA3'ok(%,fU8c$Lc>.W#`I8%/+APJ(Z:AZ0qd:&Fsd`*n?Bh*[Nt-Ybu[5Y$fx,BBk>-I9%iLwG/1(w)Kv-w+>nE=DBf)lkn]6`p<;&vA2&.P)x.Mm0O]FN:%##Je9T%A/,;Q;qfi'`/;W/285##2LgQ&AF[s$m+=87'8YY#J6]nLlC3)##*]Y#.V?-+[a(g(5-IH3V1^=%&pi,)XE`a4axO.Zqiq4PN;gOO" + "T(>7MTU`b;3Sr:D>NQ]4X^(U%O#-1)[HB6&1SuY#p1=87Y1=GMEs8gL58,,MG6C*#O#d3'tRM*/WjY/(g@DkFarI#-@hZ]/61)H*#CA`ar,^D4&K^D4n<260hk;u0*m<_J" + "D=.0V;_:XJ[A;T;O*KV%.5a^,2Y2?#dY?_J5m*875c+c-*@)F.Y:no%/poUDCQ`CAT>@_/2BA##k,&X#57B2#p&U'#4KOd7_+dY#S6/[#cqU`+MR[8%s_4M(#g<0[[" + "rkj]7VGuY#1d%-#7r$s$BiBF$0%Is$:Do-#21n8%2ai,#JKKW-ZBC_&?8>V7$N_[-hQl=2JlBW&t92N(5Umg)nC#c*@[Ca3xE(E#Vk_a47JJC4KvsI3o)YA#eR@q.L^1)30ZA<&X($e4" + "rcrk'Q^v)4OGg+4-m913-$DP3UY3E*Idq)3t6/s7#9Cptw^?a5_:%fS*E*oOJJLqx8;-" + "_+B<&#OWf:n8h@#b-%&,l,)O'r4to7Qoo]$lGu#-5;>>#oae>#.`UV$7A+.#,DYY#M#ffLYtrV$lBq)&(xpTrWnp*W-lwA4>6**4kki?#m#YA#T(AKMmsTq%E(sJU9J`J%0%pJLoI,7&" + "[oJ'#-####0]/E#lWxq*a_AT%K^W]+j6IP/.nc(NjP+J)@g;A+laO=$_:p+*V1PZ,h6x<$d1FM(Nrbv,tj9%DX&Q&n`f3/8fLZ#3rgi<[P7+#" + "&n/&=6JuY#.S.n&;x_;$'lj31ilHW._]5%PRPHv$h@iA0WGi0(ujrI3lWj-$UJl-$?^k-$%r@8%rE^:%Z/5J*,B4J*i:fjslI8x$a&SF4iPah(w8$`uLL)0.nHJ..$6Gj-0,r0.f#*b7" + "=dn51#pq;.JRnl/685%tK(&=1d1-lLQ5P$MZv3+Nl2oiL-,-X7HhXZ-#CM$Vxl;-B$_5'ZIJ^-Z'w>#G6Tm&71.<$]]vH?XC*p%T.M<-?@Oo&_ww=-[.@40&Lsr7" + "5M*B4%5YY#7k+/(;flxFZIAS@a6$H=[enY#'^?Z..MlY#pxdS%5lL;$@j_v#97[s$7*,##[rRfL/tH##4r$W$,6>##;17s$qpO00&qG+#3-K]==5e^4NNO52:#$w-cxDt.@iDt.PI.[#" + "ax;9/d4Rb4%&AA4S)ZA#n,U:%+'r-M?&B.*/VNh#UJf_>?2.F4Jc7C#v?]s$aom8/d.Ok4TM1I$[1*C&I7Gm'7@[s$B'&6%/.+D#gJ&p&)[sQ/*f+N1vQ4t$ZgCO'^&ID*WsPn&Kt3]#" + "ZO`S%?J;?#L#3a*$&3F3>[E5&p,p<$dcMk'D_rZ#Bmv`*X`tr-k$pm&LB>/(nZ*>-&q`*4.sl$G,dvN';GhV.@qKY.Qksl&fuWM(pZt9%QJa]+/iPP2C3Yj'Hl,n(d(p^+S/2k'Tla_4" + "U&2,)HTnB5:1;?#5ijf2w8Y>-RD>>#T`230>FOX.+DP>#/cWS=.#.S:;$h7n6ML&YD<+GG##*EMq20(+T/@]RZ$@(CN2Qi:bXbDnJ6k,&X#U7B2#YKb&*)#sCQg3_Exf1" + "4xLZ#?[a;42uUZ#52qo%8REp%5dXV$677W$xiKIiOde'5R'tq.,1q/)hVba*qBA[@#GrB#Fk_P8HL$9.R77<./%d,*qSID*f5fF4XO1x5'weP/[+]]42;XQ'JKOA#h2tX%2++Z#)AY>#" + "wVuAJwFT$G[mZw'^:qT78d(B#es3P#XaU>$`sY]4;hCO1cAC$-lxZW.:`+2(VZK>$" + "E;P>#T;V0(#rbF3.R(f)(4_R'c@/x$wAOZ6l7,c4v+]]4Da*i2aYRD*g=8C#FGJC4g8]+4ScD_&l`$w-Z,gV$R8`S%@N.N'.X2<%9*m5&]*c00[8hSIK/9GJ%'d9%_QfW$_S5GVb&>[`&Q&2u3I$Enb/ET=XlA]kk,21_P+#d+3)#vC:6*U.Pv,:@rZ#h,,##uL3t$EqjT%GPap%KbLgC3%%s$Lb@X'LUfs-0`hV$CsC$#AeW9%#t6[c;3DP##OQonL[GQZ$12L<$*AP##%gc##p4'J30=Gn0^/1Z-9(Lf)bsY3'x3cY%=/aj4]S%1(H0->%=Q/J3TiB.*jAqB#I)TF4HZ5t-vd;d*P+OW-@;t+l^G8f3[rt;?kg[O?" + "wPT0:Wr$8/uBFT%04LJ)>.V;$wtcC+V=N5&Op57&SK^Q&1+(/)cSDP0fJ@$B-c_?/Y[)@,$_^M'x6nT.T:VZ#XGV0(in_w,o)cA#G+*=.Y0q5'e9e##/iq_]hf387BRld#?VF.#;=*T%$Nc##2o_v#cEB@31lq;$7GET%0^=?#'12j9:34iM=LVGDKj$^?^9k>-G2:Z-$jn-)+W:l0Hws?#=Q/J3kRTv5EaVm1J^Mm1p:Rv$P.i?#HO1x5QT@-*" + "q<@o'<;R:(2FU/)Pp]a+x/F',Ktv$,lDXT[T]gj&P;$+N`,#" + "K[`V$>/R8@q-&n/ogK2'RxE9@o3j6/q;dJ(hFk9@W+CW-Z<4p%LSw8@tHAR/vPD,)kX':@]xsx+qZ$;@vBS30t&-j'L4X9@INXA#::n8%-?Y>#w^G+#$XrP%c$CO;7p*+^6`=i%6WP,c4OD^+4?WEI3XU1G*=Ri%,3*/e*l$iv5rO,G4Xc7C#DMn;%?1[s$n&PA#e/ob4JMbL)U,YD4BrW>-" + "3.5F%8mPF%&*,F%Dmk-$][F_/H8V:%VT*Z6M9ta4qI[%-?d=t_V>wi0pk,T':.:t6>J=>/I0(8&qwk0(8beZu9J/nL7?74(uWbw'4#O2(TlUC(RwU0(XI?p._bH5/R@1XM&_veqnS%:;" + "p*4:(8$;@(NpDe6p+^vL2Z=E(b>Z[';%Oh#%VF]u=#r'YgaSa%_U7T%#Hgs$i6%##)?RW&*q6W&Hm$)*ekLS.(N#,2^At+;$@FV?=#s.C)Ah8BJd[;6YYHC#'wds&51.<$GLUGD<:nWT%`,Qk*ng_T%fuLv#;;65&:bj5&6mtr$%kjD<0cu>#(a$s$3*:tBm27<8`>kI3/Ll31jin-)i`*e)1]o,2mr*+3]'Fx-i_<9/84p_4+Iv;%P[vLM/R13(B8mG*_^./M`:3T/" + "vuOv,`$%],,FYI)AR9R3j#[)*m=e]-f2/L,CEK7/0-G/M;)Sh#f'q0((Q3U.>kfM'87@<$8rU;$vs&<$bL+gL0hE30Ihk0(NUIW$Ha3_pB'#adm;/c_rV$1J,##" + "@*-90gUj)#.f_V$7D+.#.Vl>#:j]Y#*DYY#0T=;$'eWD<0dxOV?3%c*1']&,KW.b4]SRA4pM.)*]ZJ.*-U^:/ckY)4ODCg(LM]V6a4H>#PNpm&%WuAJ" + ">sCs&0%OnF>GmT[$P8c34IV-*C%eS%^g>)M1&oGZ#ofh;$0`1Z#j@Ql.0V:;$1=ug.4o-s$5s3k'-,4I)algWTC*hx$qS7)*H,Bf3" + "3JbGM.&Ig)U,QA#s%Ms-AFQ/Ct)WlC&FC+*A-B6&FJ<5AJDNl<8[BpCYHxU&(.L0%]/8;6j3=5&QUiv#^(xhw/6&:2qo%D99q%AV22'E?g2'JP1@#>(D;$8wR3kR;cY#*?A>#,Sl>#9Dw][G&2t8#$'&,0^DR:L._K::f)&+Q_+m`.1(eU=x>" + "-SDt.-d%H)kHL,3+0%HGJod2^AW/2u7-##oI@@-93dr/VjSe$9*/COI5rk-rZFv-Kx]+MpuOZ-h*Kb.xdZd3l'7*.FIMkL;=T$5" + "0EPh#PY96+q3n0#Gbf2Dp'60)b[18.4MR]4qAS#@6C35&C]*9@0oqr$A>[8@81<-_g98%cJ+jLGZ`=-(P#<-p[oZ$[Jn2;oDp3ME>>A#GTWq--GoZpl>qx=5.P]u[m.Y-WgSe$lT>N)+Elw7FKQJVp8:[-dk_w08xO&#(]'j%cK=;-gvCD*lH*20,gYc2qGf%F" + "gXw>-=@X&%>`:v#/55##4QCV?e2)4'KW>n&Kk&q%<^M,#7(wo%/Vjp%$*A>#RGX031@>R0*=t(3I&9f39wqk13LGR0)@l31iYhv-Dk;D+57@`%K6nO(9.5I)#jic)" + "d0'u$BKc8/_4Y)4K;gF4Rq@.*(%mg)Iso6*2c:8.7tUhL_Gb,4s`0i)gR:a4RG2T/q*hb*/]n%']idb<=Ze8@f;Jj/x,.%%5@jl&t+fr,f(eW.5[64EBAUv-T28IM_1j0(W:=F3;?>g)>),4/N:@<.TI&@'S1x;%p:w%pg<#R&" + "nmZ<6$%3Q'BAp6jTO6##TMHC#Zk7-#Lqn%#?P-J*5]Cv#UFiv#i1958G`lY#e,>>#oSu[G*QND#xaG+#*$T]=)Gc>#UPtI)b)rG)VNF:.IZ4L#Sr_R/Gc^F*Mh5l10bp=%ccB.*nAMH)" + "q0(k14fBj3xQlf(fO4YRP.jicY#YiIfL3#E?#$6x9)B$]Y#wW%6%M=P#$*2^0Pc2#G-#M3/%])2E#jg1$#UKb&#:0$^74m1Z#" + "j.0588@7<$KUUGD34no%APw8@.>G##;@W5&'$###+Duu#+05##2YP>#?]WP&0-bd;@)(V&)EXV$GnkZ.blZW.bJLZ-%jIL(:52h)n%'b*xfB.*#Q'fD1kuS/g?MePwcGA#+U^:/t`<.)" + "w.itQo1qC%=%MtuZHu`>C%'l:usX=l[Y?OEJk*7qp*)[6FtFT%)@9u.GIW,grgM,MjH?##Z+0g/hZq^-Gi:?#W[mx$94[s$=5YV$547W$5Wf>#-Sl##aM1pL/&#p%*K`,#;:3p%-Vjp%" + "&6xu#CeX?.J9IeMnCq6&>uvJ)O_NM-ACXnMUfTJ-IeA/.1%`-MfhTJ-=2*M-Bn%:LH[Ld-R3n0#M]/E#$h1$#ZcCY78Wr0(Y^5n&kOj)#3`Cv#O+x9C6Bdv$*EM,#H=H^%Fw@>#/A_K*" + "TT9Q)2x@C#JI3Q/Q@pea91FCL%3.&GxKMn:w2'@#$jWT#SwYIqkh=q&P=l^4?1g%O%md##M,GX7%nJ?0A4%<$h;G##;+J$K_@h(E#F2l%G$A>#*p4n(Z)l3(%eZ0)DctM()w@+4;ug;%" + "k**^/$bD%biQ8_4a'>OF/Oj?=Gfd3FkS(R<6gES7^UTS7_Q6ek-X#(J1v#,4O1x5w9n=7" + "B?`a4WKf@#Xl*.)30V**?ALN&pL@Q&9e/g1vwaWBKq1E#AVIH`3$`hLKTO'kNmjp%N>?Q&_1tea)4W88r3n0#%V^%Odf&%#op%0).O1hL+<158#c[mMx.qK-xnmH.FS_R/ZF,B#:/jgO" + "AtPoLMv.;%il%6/9kfi'Wo8>,rF0N2sP;4'=x68%:q5M(H=.<$mr*87',,##I9]nLcce`*T&v5/3Idc*Pg[.MC&cI)g`Af3HA^;-pCggLI]XjL^p%>.D'cO0TDVT/>X@A,X+U:'koE**" + "xUxa5+5m(PtcT4LbGUQ/3[gj0dH***JJ#$,[$7fa.XLfLFr]G2Z1wK#HAP##Xl)B#heJa#o].uL'uQ##NTG/(NPjc)2/1`5b1HVn_s5w9n=jR#4sn%#$^Q(#4OG)#eGT[3#1uD*,hO3X.KBS&,EbqN(sA@H)#lOF3D5%&4<_#V/)QOZ6vw_%6XsFA#KFn8%^Qo8%ri?<.tC,G4a4NZ6qkXI))*4L#4,+::42Kt/tTw=-3n&ts[qCvP7@7VpIP1BIe<$j2,##@`te#4.i?#Gv$s$FCiV$9>nS@" + "_Etp%T]3i(]6xW$InsP&Drsl&EaKEc4" + "GN><.^7^F*BF%U.b#wD4^lu8.57_F*[Gu`4W/G)4QB+v-n'UfLkeH1MU'$H3e`lD4FQa'89UhhLFLM=-YXrt-+3rhLEfA;/x&Xp>G=#5M^o`W%>NAB+:#[7&4R3U.IP;T/?L@G;Rg4?," + "s:A8@wQ,w-TFi?#GDF/M9V/L(5q8r.otD?#,KH5&_;'f-1UQH3Y3(MU^<4U.&WRH3^Hh.V^*N%,phh5%G*T#Kuuwv$[+Ls-PR7K:=F@[#^5j*4:T-I2;98N2?@Y)4+(EZ#-llw$P78j0" + "_0YJ(+laj1%KkI-/_-q&c<`p7m>hm&TU$.0.C>:&OYF6'6RKfLBEw68wm.e*ee18.$<^f1J)[^$R>gT;#7+;?:[W$Dksp%`k1,)X5[-)>#^>#/i_V$8#R8@P#w)*oJDo&IBTq%bM8G*hvBY$U#ONonLQXd>#[?(C&RN*/:uHTA6C6%126freG`_#wAsR(4;" + ":T)t8tH0v7j=V%6^7DD5Ajs*4cJUv-0MFI)w&=L#4+Zc*AbkT%hmRF4'%Cg2uiWI)@L(+*t`oF4('Cu$j%>c4Fngx$5r%@'Mi`$'o1)E4GY0f)^Bd8/nEq6*?s1u$Kbi=-J_rX-.a'@0" + "]:E_&.O073X%`v#:,O/M.O^_-pYp'/)9is/*M0i:.m$)G*$ARC#d*`%,I)Gu#e6P&>hTEu-gVpl8Kk-K)Lp8.*06XU.=#2[,b5rf%L,0p..,K,*i[$Z&" + "#a><-_uMq/Ej:)3x@=e)w9(=%&eRiFf,.`%`j,%ei-*l1iw-Lm<_5xU;Z#o&_$--^Zp.UYrq8&vWT79r?1*2oZT.Zqsh1Ohmfr0NRP1=ihV$v(%s$VYD_&" + "cpjq140(L18`wp%t[D$#)&>uug5wK#H*V$#^?O'K2#'%5X7_.J[#3`u##/0kD%Np^#A7mUD?a;%D6WV,G4CQwh24dkWQ^pc1P1?21G(Z94EjT.UCxW9U%" + "*9VhGnl/N'd?YQJ$" + "iYDD3Y^:F[8%MBt=$UtAQ&G6B6&Yjc3'@+7W$cPIh(dHU1;@N8iLR&/'5U:BsLPm.QMS>ta%/?M&AT9p2'OtjT%KRes$V;Rd)Mk@<$DOwW$I$g2'61rZ#QvHH)Vd,3'A_ap%PnN9%" + "SB9Q&acQX.J@@W$Y%3:/>+iZ#l32>P_g*]%FO3T%RB^m&J4A4#&&>uu'9(R#dm:$#o^''#vLI8/0sNS7XUiv#d?@>#;cte#0;s1B^wh`+678N)q;.8hZO((;jTv73l$W$2fCv#dGtG3.JYY#0Nc##81@W$5^(v#xWND<'%_#$OaLfL7(:n1.>&:9th@&6C9@l1#Vcw<$9%rV$D[ws$?LN5&>lo*bl@ffL2Be<&k'GkKb.GAgwW$GZU,);gQv$:1.<$@=VZ#vc322?#o:bS7up:X/kMlY#;F6DEo%?s'@%/n&iG%h(pq(@," + "xZZ0)4l487f>Gx#Y-sV$BIr8.D4GH3eBUe/2x1K`B-fG]PmTc+bB+3LxGGV0&hd#nfifcCo0?0B0X70qWVf`*pKaa?F&va6qDG`arn_Y#:nfi'fS7T0=oCv#juES7kf387waDe-n)#v#" + ">ite#2D&2B@Q(O'O*tp%PN`^#L8^<7CvHXL6_N?#xlMR^(]6-Nk.wA/Lt8ma>>x[NY5cc-2A.?7ffD<%M8w%+w8#,2ksV&?3JuY#8ih;$Mx6W$N1[s$8r)B#iXs)#%R[c;aYD^45l$W$" + "0T`,#51n8%4Z`,#3l?8%+8w8%#'A>#&$Iw%QOW9/L$<)+tcrk'RH^q%bmp6&N+o*3#(b20LI6u69&hf1`Cq)5f^gU/F7#`4HXX/2t.E+3?_#V/0DXI)A^fZM'9_s-sWqF4lGmlTr@DR/" + "7*&'5oP::f)O=5f;eiOg1J9F&#?c/*#jgPR2a+@W$_7es$1;Q>#KbD;$rnXI)@`L;$PQPD#K1-##>*LfL" + ">Wf8%B>ur$>I3T%7Po$484*T%-3,##(>G##4v=?#/YL;$9WJs6'tl+#shli9l*t>vOO)RvhK(jrX<-vj_;$gsWe'B%>m1='20(=%W=B,^)$r%LnYDNT<8WASF_F*" + "I[tW#FZ_H2>7)D+5^G40Q8es?H)Ld2`Kb&#/Q?(#R+^*#v$),#;0f-#0D>D>_r4R:*IX#7KQwh2qrQW.uBA@#g_&*#,`*A[i:N%$wWG+#&'g]=*M(v#:OgZA9jC)?ce=k0'tFA#M@i?#" + "0ljj1YPOZ6#=[x6S4-J*)%mg)AexP/;H)w$nbK+*p.v)48)5J*$En$SV1gY(`i_]?Mv>^&=v%8$5J-,N'u_*T%:1#N'&&,t6qJEE4AdQ)*FvMA+a::+*0chV$C`:v#>m=ID4&ffLctH>#" + ")l,G*-DY>#V%,C+umsG+D3MIMTS(%Mb+xRVe0]^.bV)##Fl_a%a6*$#W3=&#'9q'#T[P+#0Ur,#t=Lt@/0p+>*1,R0G[d(+TwwW$9`,##NN_m*qYjI3>E$j'dTW@,^xps7W0Hv$Z6#-2" + "b^5N'j+PZ6Ht[s$+IA8%Wv/02%C[x6jQ7lLqHQ0.b70T+H>#$(k`#(:-u6blqV$V4Q>#`;H]#PGI1([v>P0P%;Z#643p%oiV*M?n=t_]n0<$&Q>t$%e6S'4j*]%%h6S'f(r&5XdB#$^>8C8oSNI)" + "7)7T%kS2GVHg_c)ucQ]4qh1J)gf*87$),##>BP##8.Is$+qx(3iMe)*Tgc,2x+ZA#c$<8.7L@lL=[Ov.vb2Q/:%U/)m#=mBl)E@$Y/:#G^)0/_5V[:dfZlMUQ5R]," + "1YflKP8n+>#AtF`&*3n#$==>Z.O9.Z$lQYZ--2K*evTbt$Hbk%$htIa4B1^=%" + "6W0n'01AC#'P@`a@),0.XV2*M;S4H$YX[+4lT$NBHQ51ME)Y)uO.eX7cX/-<%QP[J5s>i7EAnu564Lo[Q[#E#kXND#i.ED#&u&E##8#MV?EN6)*En@[#LcU@#?](v#>5`V?CHhG)K<4=$J(ff(@K:g(4dXV$HEbD<@QU,)9oWX$L3]A67^,?A=8I&@*-#,>[.(4;F5Aq91qKZ7`&L8BGB712#VjT/TQSA," + "$#JL(U6'q%mJiu53OTl'5jm;%tasi0v$XD#:tdC#BfWF3e@+w$ax;9/IAWD#dq1DN?M``3KjE.3jeNT/D@n5/6`p>,,$s8.48T;-e`h@-l4Eu.e.Y)4hJu-$PA'[uuV_/E#.Yt&#va(f+Qlf#,=kjp%14<5&-]L;$nSl##Deap%;2@8%5JY##9&+a$)Dc>#bNIW6wAlY#'9xu#?'Cw.VsO#-/58L(7jp;.iusa*m%Q5t,_k&-^ojUMxfi&5aN%b1" + "3,b[BYY']=r>']I[TSM?JPG2rOJG&e+no%%Jfr6sX5i(8r$W$nxHs$]]rJjZv''#/V1v#1s?s$%U5+#-0K&=5oq;$-5;6&j7''+nr3I)fARd)DFMjV'V@C#.N3gLoPYA#" + "EPPmU.d^='+WqN$Rt%tB=YRA4U8.GV?$cj0,;[I3@0Rf;SC$U7e,Fa#YfY=lFS2GV;9CG)$xGg3Dr:v#f6%##)DP##[A.gLQb)Z#i0.KWjH/W$U2rG)r.Oe))eQeMqB[]4J$7o'xH;8." + "%.c;.;uN;27SmK'<`nF4kW6jBHC(N$b0)C#;1Hd7bR&-<%*DT3h;f?Km<%##KahR#M)V$#1%T*#N.Mb7JO#p%u]YP&>m'1*ep0-22SC;$e[sv##*`<5&9JY##G.2W'" + "9DT)#5WCV?7LNP&Ac39@<([8%+VL;$3p4?#-PuY#Xo7T%h*g]=5JuY#T=f6:)mi0(9g:)?mV7nCYG@<87[u31B1nl9&+Z$,_Y6W..Tlk0-lXI)v;Tv-E5WF3MD^+4[tUhL_h?lLu[6]6" + "eum;%4b4lrAY>@Pw3#V/%bqk1X>CQC)lXI)85(,HM6dZ%ZV^://W8f3;nVO(mAZN'*8nE38x" + "Y$CY.cp2e3Rus;9lG@c0n%gY,EKw:7Z^Wb%VB>8/0Lg+*#65X&%%&###QXi*%L4-##(9,##%T/U'S`08.<((/)%x'R'Zl:$#(VNs%_deq71Mu`4vAFp76`QV[xS_5S2tKkNKOAQ-ex$n6[ahR#=)V$#" + "aEX&#(IB5)E#3&+0f:Z#Dk4]#RjxjkfZ?gLsH*Z#IIv$&.i_v#-MY##8D_W$+>G>#Tb7F%:OH#S3#^6(VYkr-LNo],&2x1(+V'f)dg^q%91r?#w#>k0,R(f)rkh8.mNv)4')'J3@+x;%" + "a.OF3gsSi);'[)4*?(B#K_[h(4tP9Mbe@:527IlL#i:]9[(jB#N]ivu2UV=-*=[20(j1+9j>QK4>#r7>V7;8[]-%55m5FYr]7eaT$A,'^f=Ij;t8a)8p0XKsD+%0Pk06Y@C#CV>c4:N.)*w%AA4nM#lLiKs?#[5MG)JNew'_J))3.FHv$v>ojL" + "ks@jLJkw6/7P`x-5@%lL<-/i)RtC.3/]NT/hHeF4_OlI)x3vr-oGUv-$`^F*lYWI)(B4&)p2,9%@clY#OAY>#F$]fLIwN0$th=I)^ojA+3HG40jn:tMD'>C-;p.d)_bL%,Ws#<.1cR/;" + "@?LG)-Ye60LJL?-B,%Z$OlhV$EZQD*.dId#;$j>#9335A<^q3$OTBQ&FB4W$pwDS&nqa*aU.?\?&34Pb%]Y#*.V9lJ(cg96&s%E+3w6r%Ka$H)gG,p8Wo%?5;ahR#]#M$#7I5+#" + "/[d^7W^Q<8Q7IW$GGH[7k_j)#<4@W$EV+.#=Cn8%1BP##4xHs$@VE5&%Rb5riJA=@4%`;$/dpo%.$m+#&.)j9CV,##]7k#A5a:)?Z0HR0#cP$,`B49%@'TM'KE.b4Tq7KW_%dp8O2v,*" + "-q%MB,3'U6kp%C)kp%ZKKq%[qq;?(VOp%iCg'+kX,C+S>9W7" + "g.o-)fPVk'a@Ls-7[J2''5.o/F'Fu-gdP3'W(hE+&0pN0&Zx>,PZBY$_Qpq%63D^>(cAC'c>Mk'q==I)WmlN''?mN':1ip.wqUS0B7t9)2-tw#2Jc>#2.eS%XP[H)>,mO0UuK'+F?G,2" + "P,r0(SMoY,M%xa)R2G<5A:X#>ic;',Su>#1]C;$A]WP&7+35&5Ni,#" + "SQ^6&/f86&A81@#;n.k9FskmLOX.)EtxVp73R6a=sN7?\?$*,g=f+YR:/:/*5F9V41wtfq/F'g30P;vs.XZ.b4Q#2#h7/3>P$M>m:o(9AP##:FI[#=ib.#^K;4#-Wx5#toT]7*U+v#CtNg[Bi0HRvp6EID5Qc4h/Y#-b3xW$=e[%#_C,QU" + "dIa)#?L$)E(5,##;11GD7.LcD;k.[5th9?A)'p+>Id?j'9H1u$(#;9/3`<9/wcQ#>kUCa488xD*J&5R*_?\?GMpKJw#%*Vw0#Jv`4S5#Q'*(;9.lFS_#+Ww927V/:)wugI*8'J.*M62L5" + "n,wD*nSID*E[*a4x56T/7$:u$[+]]4G9@['9XqhLxh?lL``;60cW8.*>0ZQ'PEq-6.hp:/.8O_&J9..M5kanL/)CP44OA2'6`_V$^s$H)&hXp%Yw%[#U?SW$bTU,)ZRDZ#F'f[#6:es$" + "SA.-)D=`v#>I7W$bA@1(XX3T%0bwx,Qv1O'd,-`,B7WA-stos.VVnL(oQO?#+S:v#HwEt$R/+t&5_&MDp)3J2YrWi(acV4'31*p%KE9u$BrG>#MKlJ(;@E5&SLm>#B8S3OiY20(@OsZu" + "^[H)*ah4/(h/OID?Nqc)ElL;$OOBd)2TKe;L:Fk4u1M8IG_es$8_S2'V-9Q&bG`K(L)I-)3w&V.p>2k'5.Rs$vJ7h%(H#2KAe*S9Co0Gw3>->nA6&L$=5&Ek#b0jf4" + "hMtMC.9OxkF])Sn]xZGt2;S+$fx9'%-aqr?Q9,j'O8@?.ssY/(ZuOc7b#9N`,#vr)xD*#lLs-aGUv-tN%],UpB:%B4r?#.rSfLFk_F*@c^F**)TF4GjE.38T:)3tlY1MVIhkLwoJf3OAgF4&>x]4" + "'23Y$F.@x6rC^+4#Gcw$0&>c4f#))3^q[s$-iYW-RMPw9c4maGlJYA#<16w$[Hs-iikJM^F5gLWQ7C#'+Gv-LN`iLGr)*4h[=j1?(NT/mlJwBaH/d3Us5g$>j`?TI3rhL" + "UDp.*1=sE4e/ob4G=n5/%M++32Ao/1C]a?%=BUG)GX8m&MVfY,.F)<-M9>/(QB#n&,Mc>#,Gc>#f2VO'd7ta*:YlS.QaK:%HRrt-[rRfLL-9W$QmU0(f3Zk(&nk]#?InW$Ma>3'ut(N9" + "nB$t.G>DW-A..<$CocY#Ex_Z#`I$T.o&Pt$Q_rV$1`hV$=6uJ(fTh?Bracj'bO-p.4EKb.l^PN'2CU#$1*e--YDP>#M;s]+kE&R/b<]8%]F9)4JtOJ(A4@s$9%eS%,#HK*Nm_,)EEKe$" + "4=nV7u(vu:6B?Z$@k/q%>',3'vLaW%/NX$0t%)Z#.S(Z#:5G>#CBuf(?Les$C%rv#4i(v#MTiiLl.]c6@I7W$#$/*+D4;?#=7V?#Z]r8&6P*L1RS7r%-(H9i9.GgL:wsV$]qdt-C[SM'" + "P9kt$)8G>#B(V?#4@3T%]v4A#SV(RSd)BrlY#*rXw5$7j<_H$1^,M5pr-kCgP87:-E3^AU/#0fa1#@9=g?,8B)*nTjZ#o1958fYWI)mo@1(" + "]9I1(xR^F*QPrZ#-]qr$=LhGDF=LZ$?C(gC:C^m/.]Lv#_mf'+_x[L(T[BD*J8ZF8&/vG*YMWX(qfVA-Z5)N*FkuH)>_QU7H3O/)7slG*.c_6823-E3" + "fB)4#=4i$#Qe[%#dBVq%9UW5&4:*T%xMt?#]Tl2;1BVC?=iZY#18NPA'G:;$2ahV?Zolq&CInS%;87W?0Ml>#NE]nLR_m>#YB(C&Sfvd+Acn92X7ALXo`r]7$8+i(%o^+*(D4i(oO`S%" + "$mn-)hS%1(0nZ0)*iq8.P_j=.:G2]-_-h_4;QsI36dk-$pVcA#OGx[75AmxF.l%]7uM0LVI;)kuZ=;Z7+4.)g>l?Z7xer0#vV=dMfmlgLe/#[7viC;$l<-B#Hte/NKgv>#3@mTiW.iv#" + "JPBs%^vk$gwQ^6&Z2;O'^^g6&w9LHMS$JH)/M7H*o.OF3o8;FR,'S1PFA+7NIH(v>H6s20I+^*#Vo*[77k4^6oW&a+eQbt$5S5##%Q(Z#e1xF#g6%##'/,##DDMn3Y[-##-K`,#/Y(Z#" + "wAlY#)B=;$kPeKrhp$pQ>^4fG?:]5uCZ#4:3p%JsHH)[q.<$;4iV$" + "PT'^#9+nS%J[;?#2MOE*X9kT%@e[@#H*=T%QX@$Tb`IV%0B[8'-*_h;UU>(l8BkE@0^g#0p8ZZ$N:%s$Tf(R<2o&H)Xt[<$=LI[#?*lf(1u-s$PLr?#>b3X$bDi0(UP]>,v,L:%-q-M;" + "IvmN'$V@s$JvHi;(ThrKFSBS/ffH>@LAJ3%ok4GVp4FS7n.Om15ARW.vfrk'>(D?#qQUZ%eLa)#9qPGEJ3D^#JTLfLQAn+#o[li9Z_l2(-MI.%]f)T/d15Z$*K+4%[@i?#$9=s6[q'E#" + "Cq5V/XkRP/B4vr-=@[s$g^gY$;vZ]4v8=4O*bjO:97<5&P3oS%;@7[#[%Oi(J47s$4PuY#5uCZ#BnWT%ArG>#G1nS%h40F*rMPA#=u.GVU-$xZDohV$:%)v#>LI[#JmhK((r+gLNns;$" + "N;*I)O,Id)%NC>$T8i0(UH>j':eoi'BV?2LxKMmJoVH(#%YhQ*aTXc2c@i;$k1958D5G>#1``Z#Fhsl&IV$#HcU@#;GG>#9&MV?@V#'V*T%n]Mp9<,,##;$HRv_%,V(?#'2>>#" + "ssfR.#Fec;%l9^#IJ=3tw(ffL8=]Q-.^`mQ1pTVo5##F9Y`#O5tc4k,ug1Y[/Q&dF39%Z`f6:;Ins$e#VM't>b?#L-Km&OFZ_%" + "=wSm&SBXq(FB#N'XQ[HDlOp^#/j68@SoIfL&TF&#-L5/q9>vrT9*bBZ7j@DD5Xu]h(AtLhLjCf-);/G.D" + "asv5/0S<+3qSV)3V,D:%ubLs-a,hf1w@NG)k&p8%x1ur-eom8/eN&o8i-3Z6%NE/Mpo]F4+0]F4c]xb4/4lGMqQv)4]o:X:WGe_l>x0QMK&YU:52cKac3_S%X3WD$[U1`+q)N&+dI2Z#" + "4#bA+.XTu.1'QO4&-1m&KOxf1oa9PSA52_=Ns;U%]MQh>YpZd3BekO:=_Z(+C(DE+W*6w+$]G1qK3OT%F8Gr'a(OI)6oqf$" + "n3KT%bm;A+Pps+;ig;a>&MQ>#%Yr^#bHK99GO*Z#le&*#6GEPA(wV786wB^#Ggm`*[p?U%)qo%#LS6[7(B,b+j^-9QK_,PL^k1v]:K(_qA$%ci(FWd1(W&vn&[qq;?[d10(JA?W.%5YY#9DH%bV/ZE>V/gbEe-a/5J*U&&J3Di^F*t-NJ:D&U(GNus<'r;[6:gF(R1" + "PkjU.je]q/R>)kLgR0N(r1`?-+>8W9U[%12V+A`a+dX-,iP/[%[t8Z7*tNj9dme.MEO'L;4<:0M_?3H*6aicu'P3X%(@(*#%&>uu+dhR#rA%%#m1%Z7Fd)o&-YC;$0oK+*=i(Z#.;cY#" + "Nj;4'l4kS7*DP>#)Dc>#,?uu#tH5+#*##P;]g)ivtX$'W::%4pqi',0fP/L(=V/YCh8.wCTBfL6SX-L#&5MZ#'i]`*]PIW-WBC_&s)&0)ccqB#WT[*.RAiqOvhS@#0hi&.T>NJMLm'0M_I*j0rt)0$odPir" + "0P5##EQ(pfXL_*OV#%#%OlQS%cv)XCq3n0#N&###P3O%bSe6##tL'^#)fF&#,lT^#j8u6#@@2=-;GOV.:+,##P^>W-Y&5F%gXE_&00k-$'cOO#<-@>H<-R/S/M`@kfLS+p+M,7QwL" + "=1T,ML$`]O#mM7#TiIfLJrJfL<=#-MoXiiLVvYTN.P#<-p/]jLI=6##k^T-Qa`U2LWF0DNPTRFNsC5dMg5S/Mq%#DN='g+M&1[mL%sJfL:xHxke8s9DY*+_S7=PRfrLIZx(o_Y#=n(IM>D1TOF&g+Md;QaOPg30QQ[up'5cXx0XquQN`1jV7,Y&.$6L>`/suZ9iumjq7C9v(b.^v-$c@pQaM;-.Z]C%:5J&#jGPk+tNj-$XFtk4n61Q99A6`a7RL_&AjOZ@MM(XNA^Kh&)FU&#AF_1MhBCPN^L*4#vN4/Z>Q3R3lOh9N.>7F%(Fu9`" + "8D(?@2lG<-irt8&'FF_&Ixl58%whP0OQew'][)jU4eM:ihpNp7G+W&d#45GM,iP8NKjBK-8C#hLH:?>#>lEkFDJoEIQx'-M^QBt7e8)F7@_lA#]AOJ-e)bS8H:5F%Dc(Q88JWpBZu-A-" + "5wp[N_e&[''>-<-VRF0MpRa#Y@_8TiHl+?7?_8P]m--/%i58jw'^#@A:<-)9^KNUr?u%Q8alAi9Sk+YItk4EIU,MYo:E8" + "LNO&#/5pGM$+Q=9&k`2MYdB(M*)O;M=W]K'slRfLAg]F-IRF0MZA:@-t;#-MC#fN%W8Z]Y(GHW-XtxE@o5I&#$IW2(@^+68X38Rj[LGdOQhBhO4GY)%/8s9)VK._J;@^.$urRfL4J5s-" + "ig1GMO4?uu=MJ&#%I)HM=Y)b&1v,X-`mx<1uLbA#/:*,Wh^u-$tDYF74hQEnhHBdOFf*(QC-%Pf)-$_]l4UAO`1@J(-nA+8WlXwThpBYd=-8ORUKE^+kuL=)(m8" + "@RYF%5>Cq71+`kb*>ux'45u58xfc2VHX[&MwkBH%;FOpK0?HAN&@6##lVgrn5klcEt@MF7ut_#i7dR*=.7W-=v?U):17K<'.,GM.KsZ9Sm9dO$2C_>$KoT)N%>(:9" + "4BCwKtNj-$[nj_8f>(49GEUk+n#oDN7ch]&]-$lk(o-FN@rc]'f=+KjbuZ=.3Ec>#Fr=Rackm58Ge%KW/nv^8.YF&#r?L&#t,v-$rfYN9`u8q'V2L1QAY'h&9O1^#YS$/8" + "&?/Fe*HB<-?Kx>-s*se.%####DK;-0MuDNL3O'M#[vl.p7YY#F5T;-PQP8.#Auu#]jM#$xZF_.7G:;$wYlS..RUV$B5T;--).m/7[qr$[lQS%3VjfL[RGgL9S;<-a-HaNV$sm/" + "CnX3FJ?&F.V@s4#X970#w05R*Wt,+#=<56#ShC/#fYloL.B@;#g2k-$FpB2#$E3<##oRqL=3S>-)c7'0,R%###8(##F@;=-.U^C-*I,[.,F%##e>:@-jcQX.lR$##5i)M-W.PG-e2_W." + "V`###*::P1b**##pP'##$l$##Den-$r$CW.)kKS.*a*t.l'-5/L0HP/-=v60i@)20eJDM0MS`i0$QP8.E^%/1pn?029xw+20-=G2c9*g2_9Ng2>?t(38(.H3YPT`3CQOd3xc5A4dZ]D4" + "H?^b4%kP]4soC(=gjdAngnrLm6po338)##Fm###M#$##9:&##([+##mc]r/Ou)##Z;$##" + ":gG<-tcEB-n?Kc.GF&##*96L-E)m<-F0]^.>t+##K>%q.$u*##A[k-$&=@8JAM1TJ01QlJhd&pJ9:[PKbqImKmUi.LHQP8.5iIfLsV(jLZp8gLx3ItLl3ItLF;RtL<@[tLZ-CI?bi6%'" + ":qZw';%*_St[=*#Io_3#i$e$#9:BgLOQB5#4(4R3,$j--Gj>-m1r.4#" + "muB_/(4p)#A:.R)7R3wtnQaiCxE@q6QwB;SP9i]'uQWlQ4F%sDR&#:$iH-9+Xj._P+##*-k30Jb$##)T&##l]k-$$5j(t" + "LlWDtdbAxt'Pf%ugxWAuosxXuIH._uV+,##+X_V$vk?8%VtZS%7'as%]&wo%LS1;&V8WP&tAsl&eJ82'(TSM'r^oi'og4/(O>lM(A5-k(2+1,)G4LG)L[q]4p>hc)PG-)*wOHD*`c)&+" + "AkDA+1u`]+J(f&,h1A>,#-;_,_L=;-df98.hpTS.XB2t.^,65/t4QP/CVjfL^3UK2$ZajL%kkjLG*:Ki&gsjLU40X%REZ?\?Iu62LskNw9eMX<#im#g.PG-" + "aX`=-v&l?-h0=r.U,>>#4[j-$(A_G3MnId3/U^`3([j)4P_#&4q+ZD4k3SE4$sY]4d$vx40*^A5xRVA55KG^5H7VY5(r7#6+9(?6aQRV6MCsY6NX]v6oYnr6,@O;7?%S;7$@B<75e387" + "9oNS7<)7s7^=S886rN88r'gS8]E1p8'Q2p8^UkP9e%Om96Vci95#6OYO-1)m<-Xk*J-FLx>-6A;=-tbP[.%i@>#0gG<-OseQ-xd&V-A#u_.R@E>#&%v[.&eF>#" + "[_Nb.>OA>#g2RA-x=9C-`w4<17->>#NrD>#*XF>#Ktqh.,P@>#lwsb.EAD>#L[Lh.NYD>#?Ui].oZB>#_Lx>-d`CH-'KwA-3>9C-?1QD-i'l?-#OP@0.8@>#E)D>#67k-$m#tsID.?PJ" + "tI;MKR;(QK<]r.Lh0oiLv4ngM,;k(NrNK`NAPP8.EXg%O?De`Oiq+&PEcEAP9>EAPk-c]PN5*#QjM3?Q:@%;QYK@VQNRGvQU[w7R@(YVR;-IsR7nWoRBAXSS<4qoSEU65T$[%QTbXl.U" + "8W+NU4jLfU/VjfL13HwL[5Vq<.I@XDI:cwL.CdwLoCdwLBJmwL+hAX`620r*i.L2ULL(xLeV)xLn`'4lMR1xL;.R4GFbEf.PeLxLNtVxL;dmLmXQWrN#r`4uU-%#MlBC`j*$MI#5$M#,>$M=1G$Md/G$M-8P$MVx7O?f8b$MdGl$M;:#ChhDt$MT=&CqiJ'%MfS(%MBY1%M([1%Mka:%MRM*uj`A6P-(%.kXYjpEIqpA$#I9t924xx7#cw^u5BkFk)dw'#bK,[.jfF>#A$iH-2o+G-d:6L-KT[I-o;.:0$6]Y#nd[Y#7Ml-$JTbY#*?]Y#7d]Y#'1`Y#$%`Y#J>^Y#sAk-$k4m-$d0aY#xMk-$*2_Y#" + "/r:T.mGbY#eIwA-1fG<-=eRU.15YY#:ej/1:MYY#=W]Y#O2^Y#1Ti].ceZY#nR<^-Gd0F%RU`Y#Jq.>-HX`=-@4`T.@AYY#>#+v/qqZY#9mbY#bKx>-.cEB-eKx>-v^Nb.an`Y#X@;=-" + "dF6x/wTaY#i&^Y#O^.#/`YYY#iYl-$%fm-$K=`Y#nfl-$1%IL2P7OG2uAkc21J0)3#RKD3v(_G3cVGd3Df,&4.n&a4uEA&5Dg^A57Cs]5MEg#6qD%v5DQP8.RP@;6s]qY6J9pY64XO;7" + "Qm:W7u'to74sZs7:/958m1]T8:9TP8cCpl8F,a69ZSPM9.h1/:-oLJ:Bj`M:/6%j:1>+j:2@(j:iP/K;$H*)r0>>>Bdo]>4cH$?ZM:;?#VUV?" + "n_qr?qaJ;@M_3W@].35A1xIpAiH/2B-$1QB;YfiBYQ>2C_s(NCbvbfCMGIjC$+(,D/ZMKDT1CGD[<_cD-AsfD=;/-EMD$)EfN?DEeSwGEFWZ`Ew44)FJio`F^WMAGUPF>HSqd?H.TOVH" + "U[krH=f08IT`B;Imf0WI3xgoI9)cSJgnMpJ?F)2K^uhP/@Y`iK6b%/LuL;2L%eSMLO])0Md%x+M51=GM.TU,N_J9DNs&-)O:_8S91BPS" + "@@qoSDS95TrB%QTaVYiTXpJ3U'),##]$6V#Zle%#*@?_#Fug%Fbj1DQ%FFpXr?9$u:UDh5WiBKA'$H1s2eF#N#hF=Z5<-W0f+1W;L/#32Rc;wCRbHc#'3ctI]HdBKZ>-hJ@?-38V`3->Le$97G->hoDQ9eJ28*7L2&doiLTuam.%5YY#vC58.RL'&+BeGJ$T_A(M[G7S#(AcY#,VC;$0o$s$41[S%" + "8I<5&;-ikur-m-VS.qE75/u^nl/#wNM0'90/1+Qgf1/jGG23,))37D``3;]@A4?uwx4C7XY5GO9;6Khpr6O*QS7" + "SB258WZil8[sIM9`5+/:dMbf:hfBG;l($)*L4;?.ekr?2'LS@6?-5A:WdlA>pDMBB2&/CFJ]fCJc=GDN%u(ER=U`EVU6AFZnmxF_0NYGcH/;HgafrHk#GSI" + "o;(5JsS_lJwl?MK%/w.L)GWfL-`8GM1xo(N5:P`N9R1AO=khxOA-IYPEE*;QI^arQMvASRQ8#5SUPYlSYi:MT^+r.UbCRfUf[3GVjtj(Wn6K`WrN,AXvgcxX$*DYY(B%;Z,Z[rZ0sv:deVVrdio7Sem1o4fqIOlfub0Mg#%h.h'=Hfh+U)Gi/n`(j30A`j7Hx@k;aXxk?#:YlC;q:mGSQrmKl2Sn" + "O.j4oSFJloW_+Mp[wb.q`9CfqdQ$GrhjZ(sl,<`spDs@tt]Sxtxu4Yu&2>##*DlY#.]L;$2u-s$67eS%:OE5&>h&m&B*^M'FB>/(JZuf(NsUG)R57)*VMn`*ZfNA+_(0#,c@gY,gXG;-" + "kq(s-o3`S.sK@5/wdwl/%'XM0)?9/1-Wpf11pPG2522)39Ji`3=cIA4A%+#5E=bY5IUB;6Mn#s6Q0ZS7UH;58Yarl8^#SM9b;4/:fSkf:jlKG;n.-)(:]Y>,R=;?" + "0ktr?4-US@8E65A<^mlA@vMMBD8//CHPffCLiFGDP+()ETC_`EX[?AF]tvxFa6WYGeN8;HigorHm)PSIqA15JuYhlJ#sHMK'5*/L+MafL/fAGM3(#)N7@Y`N;X:AO?qqxOC3RYPGK3;Q" + "KdjrQO&KSRS>,5SWVclS[oCMT`1%/UdI[fUhbl>M^B.v._FFVf_J_7G`Nwn(aR9O`aVQ0AbZjgxb_,HYccD);d" + "g]`rdku@Seo7x4fsOXlfwh9Mg%+q.h)CQfh-[2Gi1ti(j56J`j9N+Ak=gbxkA)CYlEA$;mIYZrmMr;SnQ4s4oULSloYe4Mp^'l.qb?LfqfW-Grjpd(sn2E`srJ&Atvc]xt$&>Yu(8G##" + ",JuY#0cU;$4%7s$8=nS%*@fY>.XF;?2q's?63_S@:K?5A>dvlAB&WMBF>8/CJVofCNoOGDR11)EVIh`EZbHAF_$*#G" + "cAX$tuxX" + "(6VYY,N7;Z0gnrZ4)OS[8A05])4]8YD4^Au`4_J:&5`SUA5hF/s7iOJ88jXfS8kb+p8lkF59mtbP9Wg/g2VY#<-iIP)N%jv-N%jv-N%jv-N%jv-N%jv-N%jv-N%jv-N%jv-N%jv-N" + "%jv-N%jv-N%jv-N%jv-N&iZL2tmN,3iIP)N&p).N&p).N&p).N&p).N&p).N&p).N&p).N&p).N&p).N&p).N&p).N&p).N&p).N'odL2uvjG3iIP)N'v2.N'v2.N'v2.N'v2.N'v2.N" + "'v2.Nuu2.Nuu2.Neu2.Neu2.Nf%<.Ng'3i2eH&d3fH&d3fH&d3fH&d3Un%d3+F*d3^0&d3^0&d3=>jP9'OcP9'OcP98ZOwpB:CRNB:CRNA4:RN'5JdFXjZL2,bwe-=G9RN,:RhM.iZL2" + ".HO,3?-*q-PIGwp,:RhM>iZL2>#P,3$4.e-5T`wK,:RhM&iZL2&0O,3$4.e-5T`wK-Cn-NZkf(%/Hnh2$w*g20uLdFi[D:8@gA,3Pdo;-cjf(%'5JdFi[D:8@gA,3Pdo;-cjf(%'5JdF" + "i[D:8@gA,3Pdo;-cjf(%'5JdFi[D:8@gA,3Qm4W-8aiwKPdo;-cjf(%'5JdFi[D:8@gA,3Pdo;-cjf(%'5JdFi[D:8@gA,3Pdo;-cjf(%'5JdFi[D:8@gA,3Pdo;-cjf(%'5JdFZ,WI3" + "0uLdFi[D:8@gA,3Pdo;-cjf(%'5JdFZ,WI3`>p;-srL*%Y/5W-InIpKiX2u7s4+KNi[D:8YmJ,3srL*%iVp;-%P@+%?d,KNi[D:8XgA,3j`5W-vK:&vj_;u7Xr3WSi[D:8igA,3#2q;-" + "5['-%OI5WS[5se3(<'d35mt;-Iw/8%(giwK@1nt7v*>)45mt;-T2KV-vuL*%:$SpKZ*E.N),E.N:p`:8S,>)4TsF)4TsF)4a>p;-T2KV-).iH-).iH-).iH-*7.e-9T`wK2Uw-NP-iH-" + "*.iH-*.iH-*.iH-*.iH-*.iH-*.iH-*.iH-*.iH-*.iH-*.iH-*.iH-*.iH-+7.e-2b0FI3Xw-NP-iH-+.iH-+.iH-+.iH-+.iH-+.iH-+.iH-+.iH-+.iH-+.iH-+.iH-+.iH-J1kB-" + "J1kB-J1kB-J1kB-J1kB-J1kB-J1kB-J1kB-]$B0NvDj.N(o8N2v#?s7iIP)N(v]/N(v]/N(v]/N5u]/N5u]/N5u]/N5u]/N5u]/N5u]/N5u]/N5u]/N5u]/N5u]/N6tAN2.SW88iIP)N" + "6%g/N6%g/N6%g/N6%g/N6%g/N6%g/N6%g/N6%g/N6%g/Nt$g/Nu#KN2mirS8iIP)Nu*p/Nu*p/Nu*p/Nu*p/Nm*p/Ne*p/Ng2pj2La-p8Ma-p8Ma-p8Ma-p8EH-p8Pk0p8Ma-p8f_X59" + "8SwA-F&.A-F&.A-6qF?-1%.C[hMnw)i2m^jG3k(Gc-" + "'rVkF.C[hMax)i2Tu(W-xD-Ra.C[hM0x)i2-$]p^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^" + "lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3FF7W-l,`p9kt.r84q]G3E=r;-XxJ0%" + "s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%5qW.NO#K0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^lt.r84q]G3E=r;-XxJ0%s$Yp^" + "lt.r85wfG3*J%f$Gh8V8cScH3^V)WHu*fK3puQF%,a>&5FD(W-d/b>n``=(5X&p;-qDY)%5:$?Io*&;8NG:&5X&p;-qDY)%5:$?Io*&;8NG:&5X&p;-,.iH--7.e-4b0FI5_w-NP-iH-" + "-.iH-R'W?9Ap]G3Sdo;-gsf(%+JfdFm'J79Ap]G3Sdo;-gsf(%+JfdFm'J79BvfG3R'W?9Ap]G3Sdo;-gsf(%?W^/N^tf(%+JfdFm'J79Ap]G3Sdo;-gsf(%+JfdFm'J79Ap]G3Sdo;-" + "gsf(%+JfdFm'J79Ap]G3Sdo;-gsf(%+JfdFm'J79BvfG3['W?9Ap]G3Sdo;-gsf(%+JfdFm'J79Ap]G3Sdo;-gsf(%+JfdFkeM:8`>p;-,sL*%FEJpKQX@+%C#HKNm'J79Yp]G3m`5W-" + "J>jwKlVp;-)Y@+%C#HKNlniU8Zfc29cvfG3Xw/8%&2q;-9e'-%Adp/N7+p/N7+p/NGfov7bUfS86v9W-&MaJs;022%.gk&dm'J79Dq]G3Ww7W-]QSpKj/#0NqLt2im'J79UwfG3" + "/vL*%8AjwK8AjwK*E9W-KAjwK8AjwK:v9W-^TSpKk5,0N)5Qt$w@:q'n*J799+K599+K596mt;-55Ui9WufG3`0sZ9_o]G3sn2W-xuY-v9DjwK9DjwK5b3W-MGjwK:GjwKw2D&v2Es'%" + "Dv50NVFs'%$^?3Dn0fR9:vfG32#M*%:GjwKM=r;-x+M*%%ULq^tg^L;4q]G3V9g20jkB=%bdSX96LLq^tmgL;6*,d3$4.e-Jq[pKn6oR95$#d3HF7W-c/P-v.@RhMSvmL2'<'d3a98W-" + "HeIpKXsmL2`A,W-c/P-v.@RhMSvmL2Sp4d3%.iH-^10k$&XLq^o6oR9v$#d32Tt;-FU<7%aw8Kso6oR9v$#d32Tt;-FU<7%aw8KsZ&3i2%w*g2%w*g2%w*g2%w*g2-q.:4n:e3Ku$##%/>>#2[oi'>O^i#X)v(3P3O%b3Ao/1[giW[7D:U1wRp?-ot$saNRW5/xkM29q1a;.B'hI?\?C-i<" + "8F4g7ioQV[hbEN0.lbD-/Q<9B9v,0MO<*39ROv0MTFq0M(L$u$YFBtLHE[g5o.?#@B#W[1f&WI9dC01d'@5;1Y`X-Nh5R*GIGR*9@/t[s19E>EE2n&?6cWUT1R61kLRE$nA,Y5jLI];Z[.uipL4/;g.L$tW[KsU,/N=FQ0T[931vQgB-1.&73D?]4Sa+&#vW[" + "9c#]%k8KU[&'-Q#P5cu-[HM50E2HP+hxq?-9KTc.+6/S[MYFo$wgfi0QnU,MgS%)*[;w0#ENh>.8AnB#qP0K-n2>%Mwg0l%E@HP8EktW[m89I*lrJ#2Q2nV[M0'qL#X(41BG$)*bf-@-" + ">u68.]>Lh0t2Gx9h:_5B+ktpLm%-Q#jh^#2NYWI)cHNK2lS*)**SEjLLYDm0J])q0em-=.*$GGOB.)g2bhb>-nQ=v-%=ufL]hev6ONjj<7C4g7-#fm#,7%a+W+$$$qi-<8uG@g%>^3uL" + "[(NY0HsD^[FDXAL3JqiLO`?i$NxdsA_$d2$'#6k((7N$UC^[7ECqLUX1E%xbn<.IjxguBWkC?]<3p1fRMG)dn?p42Qsc6=Yf88F&eG.@XmP8U`TjL@>A;8h[@Z7X;`/%eHV].&,*=." + "V=SF/EsIg%&w+<8T#6E5K0Y<8QhwV[GQF9Bb69?6fDGY-^7X5_rsqY?;VrY6k?Pa5bEE2Mo7_;.pwReZ9WU;7_04g)umpJ1-4G>#8s_h1W>lN1m?BT*k21t[KJ3.)QO'F.f,lW[PGp;-" + "=&sQ0m=v>-BaLHOgVc.NG3=61Aff88p4vN1MIL9]7%mlLjmsmL%+p+MmrW61m3NX(lUIb%xW_M:6:P&#&Lx>-nS,<-%V,<-:IrIM#oLH:)=-12#HM,sPoLGcfr6?Yl]>$]bA#&g0#?U)OX(&1Jb%2>hY?6:P&##Lx>-(T,<-%V,<-JIrIM3G;pL:_@U.:>c;3R9/C%1nk$'Xk;lLXl7QM" + "[h?lL2b;91mAhhLPRZ5564]5Bg9oeNVu76MV8(@-4a5<-s9]>-C5g,MW'j91fsr[090l$'Y^:/D_'C[09wx'&2_Kn37MmW[+3c?-LMGHM^_ORMO#c?-K5g,Me5n-F3j@g%a:nS.Hi/Q#" + "@oi'#'i]6_A5pC?f2DYP>.s##YDeE- + +#ifdef MM_OPENGL_3_GLES + //#include + #include +#else + #include +#endif + +#include + +#include +//#include + +namespace MM { + +FileShaderEditor::FileShaderEditor(Engine& engine) : FileTextEditor(engine) { + setLanguageDefinition(TextEditor::LanguageDefinition::GLSL()); + shaderType = GL_FRAGMENT_SHADER; + + _windowID = ICON_II_CODE " " ICON_II_IMAGE " File Shader Text Editor##"; + _windowID += std::to_string(rand()); // lets hope they dont collide +} + +void FileShaderEditor::postSave(void) { + checkErrors(); +} + +void FileShaderEditor::checkErrors(void) { + _markers.clear(); + _te.SetErrorMarkers(_markers); + + auto source = _te.GetText(); + const char* src = source.c_str(); + + uint32_t id = glCreateShader(shaderType); + glShaderSource(id, 1, &src, nullptr); + glCompileShader(id); + + int32_t res; + glGetShaderiv(id, GL_COMPILE_STATUS, &res); + int length; + glGetShaderiv(id, GL_INFO_LOG_LENGTH, &length); + if (length) { + char* msg = (char*) alloca(length * sizeof(char)); + glGetShaderInfoLog(id, length, &length, msg); + handleErrorString(msg); + } + + glDeleteShader(id); +} + +void FileShaderEditor::handleErrorString(const char* msg) { + // TODO: detect compiler info format + handleErrorStringFormat1(msg); +} + +// accepts error messages in this format +// msgs separated by newline +// [number?]:[line number](char in line): [type eg. "error"]: [error text] +// TODO: has alot of bugs, rework +void FileShaderEditor::handleErrorStringFormat1(const char* msg) { + std::istringstream stream; + stream.str(msg); + + for (std::string line; std::getline(stream, line);) { + std::string_view view(line); + + + view.remove_prefix(view.find(':')+1); + auto next_pos = view.find('('); + char* ptr = nullptr; + unsigned int line_number = ::strtoul(&view[0], &ptr, 10); + if (ptr != &view[next_pos]) { + //std::cout << "error" << std::endl; + continue; + } + // no support yet :( + //unsigned int line_number = std::from_chars(&view[0], &view[next_pos-1], 10); + view.remove_prefix(next_pos); + + _markers.insert(std::make_pair(line_number, view)); + } + + _te.SetErrorMarkers(_markers); +} + +void FileShaderEditor::renderImGui(void) { + FileTextEditor::renderImGui(); + + // append to window + if (ImGui::Begin(_windowID.c_str())) { + if (ImGui::BeginMenuBar()) { + if (ImGui::BeginMenu("Shader")) { + if (ImGui::BeginMenu("Error Checks")) { + if (ImGui::MenuItem("Toggle Live Error Checks", nullptr, checkErrorsOnChange)) { + checkErrorsOnChange = !checkErrorsOnChange; + } + ImGui::EndMenu(); + } + + if (ImGui::BeginMenu("Shader Type")) { + if (ImGui::MenuItem("Vertex Shader", nullptr, shaderType == GL_VERTEX_SHADER)) { + shaderType = GL_VERTEX_SHADER; + } + if (ImGui::MenuItem("Fragment Shader", nullptr, shaderType == GL_FRAGMENT_SHADER)) { + shaderType = GL_FRAGMENT_SHADER; + } + + ImGui::EndMenu(); + } + + ImGui::EndMenu(); + } + + ImGui::EndMenuBar(); + } + } + ImGui::End(); + + + if(checkErrorsOnChange && _te.IsTextChanged()) { + checkErrors(); + } +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/file_shader_editor.hpp b/framework/imgui/src/mm/imgui/file_shader_editor.hpp new file mode 100644 index 0000000..3f5a4e4 --- /dev/null +++ b/framework/imgui/src/mm/imgui/file_shader_editor.hpp @@ -0,0 +1,30 @@ +#pragma once + +#include "./file_text_editor.hpp" + +namespace MM { + + class FileShaderEditor : public FileTextEditor { + protected: + TextEditor::ErrorMarkers _markers; + + protected: + void postSave(void) override; + + void checkErrors(void); + void handleErrorString(const char* msg); + + void handleErrorStringFormat1(const char* msg); + + public: + FileShaderEditor(Engine& engine); + + void renderImGui(void); + + public: + bool checkErrorsOnChange = true; + + uint32_t shaderType; + }; +} // MM + diff --git a/framework/imgui/src/mm/imgui/file_text_editor.cpp b/framework/imgui/src/mm/imgui/file_text_editor.cpp new file mode 100644 index 0000000..bf47201 --- /dev/null +++ b/framework/imgui/src/mm/imgui/file_text_editor.cpp @@ -0,0 +1,236 @@ +#include "./file_text_editor.hpp" + +#include +#include + +#include + +#include + +#include + +#include +#define LOGFTE(x) LOG("FileTextEditor", x) + +namespace MM { + +FileTextEditor::FileTextEditor(Engine& engine) { + _windowID = ICON_II_CODE " File Text Editor##"; + _windowID += std::to_string(rand()); // lets hope they dont collide + + _fs_ptr = engine.tryService(); +} + +void FileTextEditor::setLanguageDefinition(const TextEditor::LanguageDefinition& lang) { + _te_lang = lang; + _te.SetLanguageDefinition(_te_lang); +} + +void FileTextEditor::renderPopups(void) { + if (ImGui::BeginPopupModal("Open File", nullptr, + ImGuiWindowFlags_NoDecoration | + ImGuiWindowFlags_AlwaysAutoResize | + ImGuiWindowFlags_NoSavedSettings)) { + MM::ImGuiWidgets::FilePicker("open", *_fs_ptr, _tmp_file_path); + + if (ImGui::Button("Load File")) { + bool succ = open(_tmp_file_path); + + ImGui::CloseCurrentPopup(); + + if (!succ) { + // TODO: handle error + LOGFTE("error: opening file"); + } + } + ImGui::SameLine(); + if (ImGui::Button("Cancel")) { + ImGui::CloseCurrentPopup(); + } + + ImGui::EndPopup(); + } + + if (ImGui::BeginPopupModal("Save File As", nullptr, + ImGuiWindowFlags_NoDecoration | + ImGuiWindowFlags_AlwaysAutoResize | + ImGuiWindowFlags_NoSavedSettings)) { + MM::ImGuiWidgets::FilePicker("save", *_fs_ptr, _tmp_file_path, true); + + if (ImGui::Button("Save")) { + auto old = _file_path; + _file_path = _tmp_file_path; + + if (!save()) { + LOGFTE(std::string("error: saving file as '") + _file_path + "'"); + _file_path = old; // retore in case of error + } + + ImGui::CloseCurrentPopup(); + } + ImGui::SameLine(); + if (ImGui::Button("Cancel")) { + ImGui::CloseCurrentPopup(); + } + + ImGui::EndPopup(); + } +} + +void FileTextEditor::renderImGui(bool* is_open) { + if (ImGui::Begin(_windowID.c_str(), is_open, /*ImGuiWindowFlags_HorizontalScrollbar | */ImGuiWindowFlags_MenuBar)) { + ImGui::SetWindowSize(ImVec2(800, 600), ImGuiCond_FirstUseEver); + + bool open_file_open = false; + bool open_file_save = false; + + if (ImGui::BeginMenuBar()) { + if (ImGui::BeginMenu("File")) { + if (ImGui::MenuItem("Open")) { + open_file_open = true; + } + + if (ImGui::MenuItem("New File")) { + _file_path.clear(); + _tmp_file_path.clear(); + _te.SetText(""); + } + + if (ImGui::MenuItem("Save")) { + save(); + } + + if (ImGui::MenuItem("Save as")) { + open_file_save = true; + } + + + ImGui::EndMenu(); + } + + if (ImGui::BeginMenu("Edit")) { + if (_te.IsReadOnly() && ImGui::MenuItem("Enable Editing")) { + _te.SetReadOnly(false); + } + + if (!_te.IsReadOnly() && ImGui::MenuItem("Disable Editing")) { + _te.SetReadOnly(true); + } + + ImGui::EndMenu(); + } + + ImGui::EndMenuBar(); + } + + + // popups + { + if (open_file_open) + ImGui::OpenPopup("Open File"); + + if (open_file_save) + ImGui::OpenPopup("Save File As"); + + renderPopups(); + } + + auto cpos = _te.GetCursorPosition(); + + ImGui::Text("%6d/%-6d %6d lines | %s | %s | %s | %s", + cpos.mLine + 1, + cpos.mColumn + 1, + _te.GetTotalLines(), + _te.IsOverwrite() ? "Ovr" : "Ins", + _te.CanUndo() ? "*" : " ", + _te.GetLanguageDefinition().mName.c_str(), _file_path.c_str()); + + _te.Render("TextEditor"); + + } + ImGui::End(); +} + +bool FileTextEditor::open(Services::FilesystemService::fs_file_t file, bool write) { + if (!file) + return false; + + //auto& fs = MM::locator::filesystem_service::ref(); + + _fs_ptr->seek(file, 0); + + std::string text; + //char buffer [265]; + //while (auto r = _fs_ptr->read(file, buffer, 265)) { + //text.append(buffer, r); + //} + _fs_ptr->readString(file, text); + + _te.SetText(text); + + _te.SetReadOnly(!write); + + postOpen(); + return true; +} + +bool FileTextEditor::open(const std::string& path, bool write) { + if (path.empty()) + return false; + + //auto& fs = MM::locator::filesystem_service::ref(); + + auto h = _fs_ptr->open(path.c_str()); + if (!h) + return false; + + _file_path = path; + + // lang detection + { + // TODO: make better + std::string tmp = path.substr(path.size()-4); + std::transform(tmp.begin(), tmp.end(), tmp.begin(), [](unsigned char c) { return std::tolower(c); }); + if (tmp == "glsl") { + setLanguageDefinition(TextEditor::LanguageDefinition::GLSL()); + } + } + + return open(h, write) && _fs_ptr->close(h); // lul +} + +bool FileTextEditor::save(void) { + if (_file_path.empty()/* || !_fs_ptr->exists(_file_path.c_str())*/) + return false; + + // create dir in write, if not exists (bug in physfs?) + { + std::string tmp = _file_path.substr(0, _file_path.find_last_of('/')); + if (!tmp.empty()) { + if (!PHYSFS_mkdir(tmp.c_str())) { + LOGFTE("error making dir"); + } + } + } + + auto h = _fs_ptr->open(_file_path.c_str(), Services::FilesystemService::WRITE); + if (!h) { + LOGFTE("error opening file for saving"); + return false; + } + + auto text = _te.GetText(); + + auto written = _fs_ptr->write(h, text.c_str(), text.size()); + _fs_ptr->close(h); + if (written != text.size()) { + LOGFTE("written size not equal to text size"); + return false; + } + + postSave(); + return true; +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/file_text_editor.hpp b/framework/imgui/src/mm/imgui/file_text_editor.hpp new file mode 100644 index 0000000..7731d4a --- /dev/null +++ b/framework/imgui/src/mm/imgui/file_text_editor.hpp @@ -0,0 +1,42 @@ +#pragma once + +#include + +#include + +namespace MM { + + class FileTextEditor { + protected: + TextEditor _te; + TextEditor::LanguageDefinition _te_lang; + + std::string _file_path; + std::string _tmp_file_path; + + std::string _windowID; + + Services::FilesystemService* _fs_ptr = nullptr; + + protected: + bool open(Services::FilesystemService::fs_file_t file, bool write = true); + + void renderPopups(void); + + virtual void postSave(void) {} + virtual void postOpen(void) {} + + public: + FileTextEditor(Engine& engine); + virtual ~FileTextEditor(void) {} + + void renderImGui(bool* is_open = nullptr); + + void setLanguageDefinition(const TextEditor::LanguageDefinition& lang); + + bool open(const std::string& path, bool write = true); + + bool save(void); + }; +} // MM + diff --git a/framework/imgui/src/mm/imgui/fps_overlay.cpp b/framework/imgui/src/mm/imgui/fps_overlay.cpp new file mode 100644 index 0000000..a3ae0f3 --- /dev/null +++ b/framework/imgui/src/mm/imgui/fps_overlay.cpp @@ -0,0 +1,49 @@ +#include "./fps_overlay.hpp" + +#include +#include + +namespace MM { + +void ImGuiSimpleFPSOverlay::renderImGui(void) { + const float DISTANCE = 10.0f; + + ImVec2 window_pos = ImVec2(DISTANCE, DISTANCE + 15.f); + + ImVec2 window_pos_pivot = ImVec2(0.f, 0.f); + ImGui::SetNextWindowPos(window_pos, ImGuiCond_Always, window_pos_pivot); + + ImGui::SetNextWindowBgAlpha(0.2f); + ImGui::Begin("SimpleFPSOverlay", NULL, + ImGuiWindowFlags_NoMove | + ImGuiWindowFlags_NoTitleBar | + ImGuiWindowFlags_NoResize | + ImGuiWindowFlags_AlwaysAutoResize | + ImGuiWindowFlags_NoSavedSettings | + ImGuiWindowFlags_NoFocusOnAppearing | + ImGuiWindowFlags_NoNav + ); + + ImGui::Text("%.1f FPS", ImGui::GetIO().Framerate); + + if (_show_plot) { + ImGui::Separator(); + ImGui::PlotVar("frame time", ImGui::GetIO().DeltaTime, 0.f, 0.05f, 120); + } + + if (ImGui::BeginPopupContextWindow()) { + if (ImGui::MenuItem("Show Plot", NULL, _show_plot)) { + _show_plot = !_show_plot; + } + + ImGui::EndPopup(); + } + + + ImGui::End(); + + ImGui::PlotVarFlushOldEntries(); +} + +} // namespace MM + diff --git a/framework/imgui/src/mm/imgui/fps_overlay.hpp b/framework/imgui/src/mm/imgui/fps_overlay.hpp new file mode 100644 index 0000000..c0f7c09 --- /dev/null +++ b/framework/imgui/src/mm/imgui/fps_overlay.hpp @@ -0,0 +1,12 @@ +#pragma once + +namespace MM { + class ImGuiSimpleFPSOverlay { + private: + bool _show_plot = false; + + public: + void renderImGui(void); + }; +} // namespace MM + diff --git a/framework/imgui/src/mm/imgui/imgui_entt_entity_editor.hpp b/framework/imgui/src/mm/imgui/imgui_entt_entity_editor.hpp new file mode 100644 index 0000000..3774d8a --- /dev/null +++ b/framework/imgui/src/mm/imgui/imgui_entt_entity_editor.hpp @@ -0,0 +1,309 @@ +// for the license, see the end of the file +#pragma once + +#include +#include +#include +#include + +#include +#include + +#ifndef MM_IEEE_ASSERT + #define MM_IEEE_ASSERT(x) assert(x) +#endif + +#define MM_IEEE_IMGUI_PAYLOAD_TYPE_ENTITY "MM_IEEE_ENTITY" + +#ifndef MM_IEEE_ENTITY_WIDGET + #define MM_IEEE_ENTITY_WIDGET ::MM::EntityWidget +#endif + +namespace MM { + +template +inline void EntityWidget(EntityType& e, entt::basic_registry& reg, bool dropTarget = false) +{ + ImGui::PushID(static_cast(entt::to_integral(e))); + + if (reg.valid(e)) { + ImGui::Text("ID: %d", entt::to_integral(e)); + } else { + ImGui::Text("Invalid Entity"); + } + + if (reg.valid(e)) { + if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_SourceAllowNullID)) { + ImGui::SetDragDropPayload(MM_IEEE_IMGUI_PAYLOAD_TYPE_ENTITY, &e, sizeof(e)); + ImGui::Text("ID: %d", entt::to_integral(e)); + ImGui::EndDragDropSource(); + } + } + + if (dropTarget && ImGui::BeginDragDropTarget()) { + if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(MM_IEEE_IMGUI_PAYLOAD_TYPE_ENTITY)) { + e = *(EntityType*)payload->Data; + } + + ImGui::EndDragDropTarget(); + } + + ImGui::PopID(); +} + +template +void ComponentEditorWidget([[maybe_unused]] entt::basic_registry& registry, [[maybe_unused]] EntityType entity) {} + +template +void ComponentAddAction(entt::basic_registry& registry, EntityType entity) +{ + registry.template emplace(entity); +} + +template +void ComponentRemoveAction(entt::basic_registry& registry, EntityType entity) +{ + registry.template remove(entity); +} + +template +class EntityEditor { +public: + using Registry = entt::basic_registry; + using ComponentTypeID = ENTT_ID_TYPE; + + struct ComponentInfo { + using Callback = std::function; + std::string name; + Callback widget, create, destroy; + }; + + bool show_window = true; + +private: + std::map component_infos; + + bool entityHasComponent(Registry& registry, EntityType& entity, ComponentTypeID type_id) + { + ComponentTypeID type[] = { type_id }; + return registry.runtime_view(std::cbegin(type), std::cend(type)).contains(entity); + } + +public: + template + ComponentInfo& registerComponent(const ComponentInfo& component_info) + { + auto index = entt::type_info::id(); + [[maybe_unused]] auto [it, insert_result] = component_infos.insert_or_assign(index, component_info); + MM_IEEE_ASSERT(insert_result); + return std::get(*it); + } + + template + ComponentInfo& registerComponent(const std::string& name, typename ComponentInfo::Callback widget) + { + return registerComponent(ComponentInfo{ + name, + widget, + ComponentAddAction, + ComponentRemoveAction, + }); + } + + template + ComponentInfo& registerComponent(const std::string& name) + { + return registerComponent(name, ComponentEditorWidget); + } + + void renderEditor(Registry& registry, EntityType& e) + { + ImGui::TextUnformatted("Editing:"); + ImGui::SameLine(); + + MM_IEEE_ENTITY_WIDGET(e, registry, true); + + if (ImGui::Button("New")) { + e = registry.create(); + } + if (registry.valid(e)) { + ImGui::SameLine(); + + // clone would go here + //if (ImGui::Button("Clone")) { + //auto old_e = e; + //e = registry.create(); + //} + + ImGui::Dummy({10, 0}); // space destroy a bit, to not accidentally click it + ImGui::SameLine(); + + // red button + ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.65f, 0.15f, 0.15f, 1.f)); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(0.8f, 0.3f, 0.3f, 1.f)); + ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(1.f, 0.2f, 0.2f, 1.f)); + if (ImGui::Button("Destroy")) { + registry.destroy(e); + e = entt::null; + } + ImGui::PopStyleColor(3); + } + + ImGui::Separator(); + + if (registry.valid(e)) { + ImGui::PushID(static_cast(entt::to_integral(e))); + std::map has_not; + for (auto& [component_type_id, ci] : component_infos) { + if (entityHasComponent(registry, e, component_type_id)) { + ImGui::PushID(component_type_id); + if (ImGui::Button("-")) { + ci.destroy(registry, e); + ImGui::PopID(); + continue; // early out to prevent access to deleted data + } else { + ImGui::SameLine(); + } + + if (ImGui::CollapsingHeader(ci.name.c_str())) { + ImGui::Indent(30.f); + ImGui::PushID("Widget"); + ci.widget(registry, e); + ImGui::PopID(); + ImGui::Unindent(30.f); + } + ImGui::PopID(); + } else { + has_not[component_type_id] = ci; + } + } + + if (!has_not.empty()) { + if (ImGui::Button("+ Add Component")) { + ImGui::OpenPopup("Add Component"); + } + + if (ImGui::BeginPopup("Add Component")) { + ImGui::TextUnformatted("Available:"); + ImGui::Separator(); + + for (auto& [component_type_id, ci] : has_not) { + ImGui::PushID(component_type_id); + if (ImGui::Selectable(ci.name.c_str())) { + ci.create(registry, e); + } + ImGui::PopID(); + } + ImGui::EndPopup(); + } + } + ImGui::PopID(); + } + } + + void renderEntityList(Registry& registry, std::set& comp_list) + { + ImGui::Text("Components Filter:"); + ImGui::SameLine(); + if (ImGui::SmallButton("clear")) { + comp_list.clear(); + } + + ImGui::Indent(); + + for (const auto& [component_type_id, ci] : component_infos) { + bool is_in_list = comp_list.count(component_type_id); + bool active = is_in_list; + + ImGui::Checkbox(ci.name.c_str(), &active); + + if (is_in_list && !active) { // remove + comp_list.erase(component_type_id); + } else if (!is_in_list && active) { // add + comp_list.emplace(component_type_id); + } + } + + ImGui::Unindent(); + ImGui::Separator(); + + if (comp_list.empty()) { + ImGui::Text("Orphans:"); + registry.orphans([®istry](auto e){ + MM_IEEE_ENTITY_WIDGET(e, registry, false); + }); + } else { + auto view = registry.runtime_view(comp_list.begin(), comp_list.end()); + ImGui::Text("%lu Entities Matching:", view.size()); + + if (ImGui::BeginChild("entity list")) { + for (auto e : view) { + MM_IEEE_ENTITY_WIDGET(e, registry, false); + } + } + ImGui::EndChild(); + } + } + + [[deprecated("Use renderEditor() instead. And manage the window yourself.")]] + void render(Registry& registry, EntityType& e) + { + if (show_window) { + if (ImGui::Begin("Entity Editor", &show_window)) { + renderEditor(registry, e); + } + ImGui::End(); + } + } + + // displays both, editor and list + // uses static internally, use only as a quick way to get going! + void renderSimpleCombo(Registry& registry, EntityType& e) + { + if (show_window) { + ImGui::SetNextWindowSize(ImVec2(550, 400), ImGuiCond_FirstUseEver); + if (ImGui::Begin("Entity Editor", &show_window)) { + if (ImGui::BeginChild("list", {200, 0}, true)) { + static std::set comp_list; + renderEntityList(registry, comp_list); + } + ImGui::EndChild(); + + ImGui::SameLine(); + + if (ImGui::BeginChild("editor")) { + renderEditor(registry, e); + } + ImGui::EndChild(); + + } + ImGui::End(); + } + } + +}; + +} // MM + +// MIT License + +// Copyright (c) 2020 Erik Scholz, Gnik Droy + +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: + +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. + +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +// SOFTWARE. + diff --git a/framework/imgui/src/mm/imgui/sound_info.cpp b/framework/imgui/src/mm/imgui/sound_info.cpp new file mode 100644 index 0000000..11dda0e --- /dev/null +++ b/framework/imgui/src/mm/imgui/sound_info.cpp @@ -0,0 +1,33 @@ +#include "./sound_info.hpp" + +#include + +#include + +#include + +namespace MM { + + void ImGuiSoundInfo(Engine& engine) { + if (ImGui::Begin("Sound Info")) { + auto& sound = engine.getService(); + + ImGui::Text("SoLoud v%d", sound.engine.getVersion()); + ImGui::Text("Backend: %s, ch: %d, rate: %d, buffersize: %d", + sound.engine.getBackendString(), + sound.engine.getBackendChannels(), + sound.engine.getBackendSamplerate(), + sound.engine.getBackendBufferSize()); + ImGui::Text("Max Active Voice Count: %d", sound.engine.getMaxActiveVoiceCount()); + + ImGui::Text("Active Voice Count: %d", sound.engine.getActiveVoiceCount()); + + sound.engine.getWave(); + ImGui::PlotLines("##Wave", sound.engine.getWave(), 256, 0, "Wave", -1.f, 1.f, ImVec2(0, 80)); + ImGui::PlotHistogram("##Spectrum", sound.engine.calcFFT(), 256 / 2, 0, "FFT", 0.f, 20.f, ImVec2(0, 80)); + } + ImGui::End(); + } + +} // MM + diff --git a/framework/imgui/src/mm/imgui/sound_info.hpp b/framework/imgui/src/mm/imgui/sound_info.hpp new file mode 100644 index 0000000..8616d09 --- /dev/null +++ b/framework/imgui/src/mm/imgui/sound_info.hpp @@ -0,0 +1,8 @@ +#pragma once + +namespace MM { + class Engine; // fwd + + void ImGuiSoundInfo(Engine& engine); +} // MM + diff --git a/framework/imgui/src/mm/imgui/sound_pref.cpp b/framework/imgui/src/mm/imgui/sound_pref.cpp new file mode 100644 index 0000000..b139088 --- /dev/null +++ b/framework/imgui/src/mm/imgui/sound_pref.cpp @@ -0,0 +1,21 @@ +#include "sound_pref.hpp" + +#include + +#include + +namespace MM { + + void ImGuiSoundPref(Engine& engine) { + if (ImGui::Begin("Sound Preferences")) { + auto& e = engine.getService().engine; + + auto gvolume = e.getGlobalVolume(); + ImGui::SliderFloat("Global Volume", &gvolume, 0.f, 1.f); + e.setGlobalVolume(gvolume); + } + ImGui::End(); + } + +} // MM + diff --git a/framework/imgui/src/mm/imgui/sound_pref.hpp b/framework/imgui/src/mm/imgui/sound_pref.hpp new file mode 100644 index 0000000..2b72904 --- /dev/null +++ b/framework/imgui/src/mm/imgui/sound_pref.hpp @@ -0,0 +1,8 @@ +#pragma once + +namespace MM { + class Engine; // fwd + + void ImGuiSoundPref(Engine& engine); +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/auto_wrap.hpp b/framework/imgui/src/mm/imgui/widgets/auto_wrap.hpp new file mode 100644 index 0000000..18c0aef --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/auto_wrap.hpp @@ -0,0 +1,34 @@ +#pragma once + +#include + +#include + +namespace MM::ImGuiWidgets { + +template +void ListWrap(Iterator begin, Iterator end, std::function fn, float item_with) { + ImGuiStyle& style = ImGui::GetStyle(); + + float window_visible_x2 = ImGui::GetWindowPos().x + ImGui::GetWindowContentRegionMax().x; + + for (auto it = begin; it != end; it++) { + //ImGui::PushID(n); + //ImGui::Button("Box", button_sz); + + fn(it); + + float last_item_x2 = ImGui::GetItemRectMax().x; + + float next_item_x2 = last_item_x2 + style.ItemSpacing.x + item_with; // Expected position if next item was on same line + + if (it + 1 != end && next_item_x2 < window_visible_x2) { + ImGui::SameLine(); + } + + //ImGui::PopID(); + } +} + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/camera.cpp b/framework/imgui/src/mm/imgui/widgets/camera.cpp new file mode 100644 index 0000000..149bb19 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/camera.cpp @@ -0,0 +1,77 @@ +#include "./camera.hpp" + +#include + +#include "./entity.hpp" + +#include + +#include + +namespace MM::ImGuiWidgets { + +void Camera3D(MM::Scene& scene) { + ImGui::TextUnformatted("Camera:"); + + ImGui::Indent(); + + auto* camera = scene.try_ctx(); + if (!camera) { + ImGui::TextUnformatted("NO CAMERA!"); + return; + } + + static bool follow_entity = false; + static MM::Entity tracking = entt::null; + + ImGui::InputFloat("screenRatio", &camera->screenRatio); + ImGui::InputFloat("nearPlane", &camera->nearPlane); + ImGui::InputFloat("farPlane", &camera->farPlane); + + if (camera->ortho) { + ImGui::TextUnformatted("orthographic mode"); + ImGui::Checkbox("follow entity", &follow_entity); + + if (follow_entity) { + ImGui::SameLine(); + + MM::ImGuiWidgets::Entity(tracking, scene); + if (scene.valid(tracking)) { + if (scene.has(tracking)) { + camera->translation = {scene.get(tracking).position, 0.f}; + } else { + ImGui::TextUnformatted("error: Entity has no Transform"); + } + } + } else { + ImGui::DragFloat2("translation", &camera->translation.x, 0.1f); + } + + + ImGui::DragFloat("h_vp_size", &camera->horizontalViewPortSize, 0.1f); + + // TODO: aspect ratio + + // TODO: check for change + camera->setOrthographic(); + } else { // perspective + ImGui::TextUnformatted("perspective mode"); + + ImGui::DragFloat3("translation", &camera->translation.x, 0.1f); + ImGui::SliderFloat("fov", &camera->fov, 0.1f, glm::pi()); + + ImGui::SliderFloat("yaw", &camera->yaw, 0.0f, 2*glm::pi()); + ImGui::SliderFloat("pitch", &camera->pitch, -glm::pi()/2, glm::pi()/2); + + ImGui::InputFloat3("up", &camera->up.x); + + camera->setPerspective(); + } + + camera->updateView(); + + ImGui::Unindent(); +} + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/camera.hpp b/framework/imgui/src/mm/imgui/widgets/camera.hpp new file mode 100644 index 0000000..5f1ce8b --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/camera.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include + +#include + +namespace MM::ImGuiWidgets { + +void Camera3D(MM::Scene& scene); + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/color.cpp b/framework/imgui/src/mm/imgui/widgets/components/color.cpp new file mode 100644 index 0000000..303166d --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/color.cpp @@ -0,0 +1,21 @@ +#include "color.hpp" + +#include + +namespace MM::ImGuiWidgets::Components { + +void Color(MM::Components::Color& c) { + ImGui::ColorEdit4("color##Color", &c.color[0]); +} + +} + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::Color(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/color.hpp b/framework/imgui/src/mm/imgui/widgets/components/color.hpp new file mode 100644 index 0000000..148ec0d --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/color.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include +#include +#include + +namespace MM::ImGuiWidgets::Components { + void Color(MM::Components::Color& c); +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/name.cpp b/framework/imgui/src/mm/imgui/widgets/components/name.cpp new file mode 100644 index 0000000..5bd86d7 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/name.cpp @@ -0,0 +1,25 @@ +#include "name.hpp" + +#include +#include + +namespace MM::ImGuiWidgets::Components { + +// TODO: make editable +void Name(MM::Components::Name& n) { + if (ImGui::InputText("str##Name", &n.str)) { + n.str = n.str.substr(0, MM::Components::Name::max_str_len); // limit size + } +} + +} + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::Name(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/name.hpp b/framework/imgui/src/mm/imgui/widgets/components/name.hpp new file mode 100644 index 0000000..f027aae --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/name.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include +#include +#include + +namespace MM::ImGuiWidgets::Components { + void Name(MM::Components::Name& n); +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/texture.cpp b/framework/imgui/src/mm/imgui/widgets/components/texture.cpp new file mode 100644 index 0000000..8fd5ac4 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/texture.cpp @@ -0,0 +1,22 @@ +#include "texture.hpp" +#include "../texture.hpp" + +#include + +namespace MM::ImGuiWidgets::Components { + +void Texture(MM::Components::OpenGL::Texture& tex) { + LabelTexture("tex##Texture", tex.tex); +} + +} + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::Texture(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/texture.hpp b/framework/imgui/src/mm/imgui/widgets/components/texture.hpp new file mode 100644 index 0000000..4f24921 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/texture.hpp @@ -0,0 +1,17 @@ +#pragma once + +#include +#include +#include + +namespace MM::ImGuiWidgets::Components { + + void Texture(MM::Components::OpenGL::Texture& tex); + +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/tilemap_renderable.cpp b/framework/imgui/src/mm/imgui/widgets/components/tilemap_renderable.cpp new file mode 100644 index 0000000..4497af0 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/tilemap_renderable.cpp @@ -0,0 +1,32 @@ +#include "./tilemap_renderable.hpp" + +#include + +#include + +#include + +namespace MM::ImGuiWidgets::Components { + +void TilemapRenderable(MM::OpenGL::TilemapRenderable& tm_r) { + ImGui::InputFloat("z", &tm_r.z); + + for (size_t i = 0; i < tm_r.sprite_layer.size(); i++) { + ImGui::Separator(); + std::string label = "sprite_sheet##"; + label += std::to_string(i); + MM::ImGuiWidgets::LabelSpriteSheet(label.c_str(), tm_r.sprite_layer[i].sprite_sheet); + } +} + +} + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::TilemapRenderable(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/tilemap_renderable.hpp b/framework/imgui/src/mm/imgui/widgets/components/tilemap_renderable.hpp new file mode 100644 index 0000000..e8a8822 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/tilemap_renderable.hpp @@ -0,0 +1,21 @@ +#pragma once + +#include +#include + +// fwd +namespace MM::OpenGL { + struct TilemapRenderable; +} + +namespace MM::ImGuiWidgets::Components { + +void TilemapRenderable(MM::OpenGL::TilemapRenderable& tm_r); + +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/transform2d.cpp b/framework/imgui/src/mm/imgui/widgets/components/transform2d.cpp new file mode 100644 index 0000000..64decc2 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/transform2d.cpp @@ -0,0 +1,26 @@ +#include "./transform2d.hpp" +#include "mm/components/transform2d.hpp" + +#include + +#include + +namespace MM::ImGuiWidgets::Components { + +void Transform(MM::Components::Transform2D& t) { + ImGui::DragFloat2("position (x,y)##Transform", &t.position.x, 0.1f); + ImGui::SliderFloat("rotation##Transform", &t.rotation, 0.f, glm::pi() * 2.f); + ImGui::DragFloat2("scale (x,y)##Transform", &t.scale.x, 1.f, 0.f); +} + +} + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::Transform(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/transform2d.hpp b/framework/imgui/src/mm/imgui/widgets/components/transform2d.hpp new file mode 100644 index 0000000..c716129 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/transform2d.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include +#include +#include + +namespace MM::ImGuiWidgets::Components { + void Transform(MM::Components::Transform2D& t); +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/transform3d.cpp b/framework/imgui/src/mm/imgui/widgets/components/transform3d.cpp new file mode 100644 index 0000000..9c2251a --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/transform3d.cpp @@ -0,0 +1,25 @@ +#include "./transform3d.hpp" + +#include + +#include + +namespace MM::ImGuiWidgets::Components { + +void Transform(MM::Components::Transform3D& t) { + ImGui::DragFloat3("position (x,y,z)##Transform3D", &t.position.x, 0.1f); + ImGui::SliderFloat("rotation##Transform3D", &t.rotation, 0.f, glm::pi() * 2.f); + ImGui::DragFloat3("scale (x,y,z)##Transform3D", &t.scale.x, 1.f, 0.f); +} + +} + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::Transform(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/transform3d.hpp b/framework/imgui/src/mm/imgui/widgets/components/transform3d.hpp new file mode 100644 index 0000000..09428fc --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/transform3d.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include +#include +#include + +namespace MM::ImGuiWidgets::Components { + void Transform(MM::Components::Transform3D& t); +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/velocity2d.cpp b/framework/imgui/src/mm/imgui/widgets/components/velocity2d.cpp new file mode 100644 index 0000000..c019864 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/velocity2d.cpp @@ -0,0 +1,24 @@ +#include "./velocity2d.hpp" + +#include + +#include + +namespace MM::ImGuiWidgets::Components { + +void Velocity(MM::Components::Velocity2D& v) { + ImGui::DragFloat2("velocity (x,y)##Velocity", &v.velocity.x, 0.1f); + ImGui::SliderFloat("rotation##Velocity", &v.rotation, -glm::two_pi(), glm::two_pi()); +} + +} + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::Velocity(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/velocity2d.hpp b/framework/imgui/src/mm/imgui/widgets/components/velocity2d.hpp new file mode 100644 index 0000000..0dba515 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/velocity2d.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include +#include +#include + +namespace MM::ImGuiWidgets::Components { + void Velocity(MM::Components::Velocity2D& v); +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/view_dir2d.cpp b/framework/imgui/src/mm/imgui/widgets/components/view_dir2d.cpp new file mode 100644 index 0000000..f2e610d --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/view_dir2d.cpp @@ -0,0 +1,23 @@ +#include "./view_dir2d.hpp" + +#include + +#include + +namespace MM::ImGuiWidgets::Components { + + void ViewDir(MM::Components::ViewDir2D& vd) { + ImGui::SliderFloat("dir##ViewDir2D", &vd.dir, 0.0f, glm::two_pi()); + } + +} // MM::ImGuiWidgets::Components + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::ViewDir(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/view_dir2d.hpp b/framework/imgui/src/mm/imgui/widgets/components/view_dir2d.hpp new file mode 100644 index 0000000..e0bba3b --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/view_dir2d.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include +#include +#include + +namespace MM::ImGuiWidgets::Components { + void ViewDir(MM::Components::ViewDir2D& t); +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/components/view_dir3d.cpp b/framework/imgui/src/mm/imgui/widgets/components/view_dir3d.cpp new file mode 100644 index 0000000..aa0d9cc --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/view_dir3d.cpp @@ -0,0 +1,25 @@ +#include "./view_dir3d.hpp" + +#include + +#include + +namespace MM::ImGuiWidgets::Components { + + void ViewDir(MM::Components::ViewDir3D& vd) { + ImGui::SliderFloat("yaw##ViewDir3D", &vd.yaw, 0.0f, glm::two_pi()); + ImGui::SliderFloat("pitch##ViewDir3D", &vd.pitch, -glm::half_pi(), glm::half_pi()); + ImGui::SliderFloat("roll##ViewDir3D", &vd.roll, -glm::half_pi(), glm::half_pi()); + } + +} // MM::ImGuiWidgets::Components + +namespace MM { + +template <> +void ComponentEditorWidget(MM::Scene& reg, MM::Entity e) { + ImGuiWidgets::Components::ViewDir(reg.get(e)); +} + +} // MM + diff --git a/framework/imgui/src/mm/imgui/widgets/components/view_dir3d.hpp b/framework/imgui/src/mm/imgui/widgets/components/view_dir3d.hpp new file mode 100644 index 0000000..fb9b8d0 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/components/view_dir3d.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include +#include +#include + +namespace MM::ImGuiWidgets::Components { + void ViewDir(MM::Components::ViewDir3D& t); +} + +namespace MM { + template <> + void ComponentEditorWidget(MM::Scene& reg, MM::Entity e); +} + diff --git a/framework/imgui/src/mm/imgui/widgets/entity.cpp b/framework/imgui/src/mm/imgui/widgets/entity.cpp new file mode 100644 index 0000000..ed7a1f4 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/entity.cpp @@ -0,0 +1,94 @@ +#include "entity.hpp" + +#include + +#include + +#include + +#include + +namespace MM::ImGuiWidgets { + +void Entity(MM::Entity& e, MM::Scene& ecs, bool dropTarget) { + ImGui::PushID(static_cast(entt::to_integral(e))); + + if (ecs.valid(e)) { + if (ecs.has(e)) { + ImGui::Text(ICON_II_CUBE "E: %d v%d (%s)", entt::to_integral(ecs.entity(e)), ecs.version(e), ecs.get(e).str.c_str()); + } else { + ImGui::Text(ICON_II_CUBE "E: %d v%d", entt::to_integral(ecs.entity(e)), ecs.version(e)); + } + } else { + ImGui::Text(ICON_II_CUBE "E: invalid"); + } + + if (ecs.valid(e)) { + if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_SourceAllowNullID)) { + ImGui::SetDragDropPayload(MM_IEEE_IMGUI_PAYLOAD_TYPE_ENTITY, &e, sizeof(e)); + ImGui::Text(ICON_II_CUBE "E: %d v%d", entt::to_integral(ecs.entity(e)), ecs.version(e)); + ImGui::EndDragDropSource(); + } + } + + if (dropTarget && ImGui::BeginDragDropTarget()) { + if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(MM_IEEE_IMGUI_PAYLOAD_TYPE_ENTITY)) { + e = *(MM::Entity*)payload->Data; + } + + ImGui::EndDragDropTarget(); + } + + ImGui::PopID(); +} + +void EntityTrashCan(MM::Scene& ecs) { + ImGui::TextColored({1.f, 0.2f, 0.2f, 1.f}, ICON_II_TRASH_A " Entity TrashCan"); + + if (ImGui::BeginDragDropTarget()) { + if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(MM_IEEE_IMGUI_PAYLOAD_TYPE_ENTITY)) { + auto e = *(MM::Entity*)payload->Data; + ecs.destroy(e); + } + + ImGui::EndDragDropTarget(); + } +} + +//void EntityList(MM::Scene& ecs, const std::vector& comps) { + //auto view = ecs.runtime_view(comps.begin(), comps.end()); + + //ImGui::Text("%lu Entities matching components:", view.size()); + + //if (ImGui::BeginChild("entity list")) { + //ImGui::Indent(); + //for (auto e : view) { + //MM::ImGuiWidgets::Entity(e, ecs, false); + //} + //ImGui::Unindent(); + //} + //ImGui::EndChild(); +//} + +//void EntityListByComponents(MM::Scene& ecs, std::map>& named_comps) { + //ImGui::Text("Components:"); + //ImGui::Indent(); + //std::vector comps; + + //for (auto& it : named_comps) { + //ImGui::Checkbox(it.second.first.c_str(), &it.second.second); + + //if (it.second.second) { + //comps.push_back(it.first); + //} + + //} + + //ImGui::Unindent(); + + //ImGui::Separator(); + //EntityList(ecs, comps); +//} + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/entity.hpp b/framework/imgui/src/mm/imgui/widgets/entity.hpp new file mode 100644 index 0000000..969b3ff --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/entity.hpp @@ -0,0 +1,18 @@ +#pragma once + +#include + +#include + +namespace MM::ImGuiWidgets { + +void Entity(MM::Entity& e, MM::Scene& ecs, bool dropTarget = true); + +// just a drop target +void EntityTrashCan(MM::Scene& ecs); + +//void EntityList(MM::Scene& ecs, const std::vector& comps); + +//void EntityListByComponents(MM::Scene& ecs, std::map>& named_comps); + +} diff --git a/framework/imgui/src/mm/imgui/widgets/filesystem.cpp b/framework/imgui/src/mm/imgui/widgets/filesystem.cpp new file mode 100644 index 0000000..4b3ae92 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/filesystem.cpp @@ -0,0 +1,119 @@ +#include "./filesystem.hpp" + +#include +#include + +#include + +namespace MM::ImGuiWidgets { + +// also removes leafs +static std::string internal_remove_last_folder(const std::string& path) { + if (path.empty()) + return path; + + if (path == "/") + return path; + + auto pos = path.find_last_of('/'); + if (pos+1 == path.length()) { + pos = path.find_last_of('/', pos-1); + } + + //path = path.substr(0, pos+1); + return path.substr(0, pos+1); +} + +void FilePicker(const char* label, MM::Services::FilesystemService& fs, std::string& path, bool save) { + ImGui::PushID(label); + if (ImGui::Button("pick file")) { + ImGui::OpenPopup("file dialogue"); + } + + ImGui::SameLine(); + ImGui::Text("\"%s\"", path.c_str()); + + if (ImGui::BeginPopup("file dialogue")) { + if (path.empty()) { + path = "/"; + } + + ImGui::Text("path: %s", path.c_str()); + ImGui::Separator(); + + std::string dirlist_path = path; + + if (dirlist_path.back() != '/') + dirlist_path = internal_remove_last_folder(dirlist_path); + + //ImGui::TextUnformatted(dirlist_path.c_str()); + + if (dirlist_path != "/") { + if (ImGui::Selectable(ICON_II_FOLDER " ..", false, ImGuiSelectableFlags_DontClosePopups)) { + path = internal_remove_last_folder(dirlist_path); + } + } + + // list folders and files + fs.forEachIn(dirlist_path.c_str(), [&](const char* i) -> bool { + std::string tmp_text; + std::string tmp_path = dirlist_path + i; + PHYSFS_Stat stat; + PHYSFS_stat(tmp_path.c_str(), &stat); + + if (stat.filetype == PHYSFS_FILETYPE_DIRECTORY) { + tmp_text += ICON_II_FOLDER " "; + } else { + tmp_text += ICON_II_DOCUMENT " "; + } + + tmp_text += i; + + if (ImGui::Selectable(tmp_text.c_str(), false, ImGuiSelectableFlags_DontClosePopups)) { + if (path.back() != '/') { + path = internal_remove_last_folder(path); + } + + path += i; + + if (stat.filetype == PHYSFS_FILETYPE_DIRECTORY) { + path += '/'; + } else if (!save) { + ImGui::CloseCurrentPopup(); + } + } + + return true; + }); + + if (save) { + ImGui::Separator(); + + // TODO: perf? + char buffer[201] = {}; + + std::string path_leaf = path.substr(path.find_last_of('/')+1); + strcpy(buffer, path_leaf.c_str()); + + if (ImGui::InputText("file name", buffer, 200)) { + // got input ? + + if (path.back() != '/') + path = internal_remove_last_folder(path); + + path += buffer; + } + + if (ImGui::Button("confirm")) { + ImGui::CloseCurrentPopup(); + } + } + + ImGui::EndPopup(); + } + + ImGui::PopID(); +} + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/filesystem.hpp b/framework/imgui/src/mm/imgui/widgets/filesystem.hpp new file mode 100644 index 0000000..727b25a --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/filesystem.hpp @@ -0,0 +1,15 @@ +#pragma once + +#include + +#include + +namespace MM::ImGuiWidgets { + +//#define IMGUI_PAYLOAD_TYPE_MM_FILE "MM_FILE" +//#define IMGUI_PAYLOAD_TYPE_MM_FILE_PATH "MM_FILE_PATH" + +void FilePicker(const char* label, MM::Services::FilesystemService& fs, std::string& path, bool save = false); + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/knob.cpp b/framework/imgui/src/mm/imgui/widgets/knob.cpp new file mode 100644 index 0000000..58ede90 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/knob.cpp @@ -0,0 +1,79 @@ +#include "./knob.hpp" + +#include + +#include + +namespace MM::ImGuiWidgets { + +// this implementation is base on: +// https://github.com/Flix01/imgui/blob/imgui_with_addons/addons/imguivariouscontrols/imguivariouscontrols.cpp#L4119 +// and has been modified. +// +// LICENSE of original code: +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. +bool KnobFloat(const char* label, float* v, float v_min, float v_max, float step, bool show_tooltip) { + //@ocornut https://github.com/ocornut/imgui/issues/942 + ImGuiIO& io = ImGui::GetIO(); + ImGuiStyle& style = ImGui::GetStyle(); + + float radius_outer = 20.0f; + ImVec2 pos = ImGui::GetCursorScreenPos(); + ImVec2 center = ImVec2(pos.x + radius_outer, pos.y + radius_outer); + float line_height = ImGui::GetTextLineHeight(); + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + + float ANGLE_MIN = 3.141592f * 0.75f; + float ANGLE_MAX = 3.141592f * 2.25f; + + ImGui::InvisibleButton(label, ImVec2(radius_outer*2, radius_outer*2 + line_height + style.ItemInnerSpacing.y)); + bool value_changed = false; + bool is_active = ImGui::IsItemActive(); + bool is_hovered = ImGui::IsItemHovered(); + if (is_active && io.MouseDelta.x != 0.0f) { + if (step<=0) step=50.f; + float tmp_step = (v_max - v_min) / step; + *v += io.MouseDelta.x * tmp_step; + + if (*v < v_min) *v = v_min; + if (*v > v_max) *v = v_max; + value_changed = true; + } else if (is_hovered && (io.MouseDoubleClicked[0] || io.MouseClicked[2])) { + *v = (v_max + v_min) * 0.5f; // reset value + value_changed = true; + } + + float t = (*v - v_min) / (v_max - v_min); + float angle = ANGLE_MIN + (ANGLE_MAX - ANGLE_MIN) * t; + float angle_cos = cosf(angle), angle_sin = sinf(angle); + float radius_inner = radius_outer*0.60f; + + draw_list->AddCircleFilled(center, radius_outer, ImGui::GetColorU32(ImGuiCol_FrameBg), 16); + draw_list->AddLine(ImVec2(center.x + angle_cos*radius_inner, center.y + angle_sin*radius_inner), ImVec2(center.x + angle_cos*(radius_outer-2), center.y + angle_sin*(radius_outer-2)), ImGui::GetColorU32(ImGuiCol_SliderGrabActive), 2.0f); + draw_list->AddCircleFilled(center, radius_inner, ImGui::GetColorU32(is_active ? ImGuiCol_FrameBgActive : is_hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg), 16); + draw_list->AddText(ImVec2(pos.x, pos.y + radius_outer * 2 + style.ItemInnerSpacing.y), ImGui::GetColorU32(ImGuiCol_Text), label); + + if (show_tooltip && (is_active || is_hovered)) { + ImGui::SetNextWindowPos(ImVec2(pos.x - style.WindowPadding.x, pos.y - line_height - style.ItemInnerSpacing.y - style.WindowPadding.y)); + ImGui::BeginTooltip(); + ImGui::Text("%.3f", *v); + ImGui::EndTooltip(); + } + + return value_changed; +} + +} // MM::ImGuiWidgets + diff --git a/framework/imgui/src/mm/imgui/widgets/knob.hpp b/framework/imgui/src/mm/imgui/widgets/knob.hpp new file mode 100644 index 0000000..52c60e9 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/knob.hpp @@ -0,0 +1,8 @@ +#pragma once + +namespace MM::ImGuiWidgets { + +bool KnobFloat(const char* label, float* v, float v_min, float v_max, float step = 0.0f, bool show_tooltip = true); + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/plot_radar.cpp b/framework/imgui/src/mm/imgui/widgets/plot_radar.cpp new file mode 100644 index 0000000..0799cab --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/plot_radar.cpp @@ -0,0 +1,192 @@ +#include "./plot_radar.hpp" + +#include // min max +#include // sin cos +#include // two_pi + +namespace MM::ImGuiWidgets { + +void PlotRadar( + const char* label, + const float* values, int values_count, + const char** vlabels, + float scale_min, float scale_max, + ImVec2 graph_size, + + bool draw_net_first, + + // polygon + const ImVec4& poly_line_color, + const ImVec4& poly_fill_color, + const float poly_line_thickness, + + // net + const ImVec4& net_line_color, + const float net_line_thicknes +) { + if (values == nullptr || values_count == 0) { + return; + } + + // set up scale + if (scale_min == FLT_MAX) { + scale_min = values[0]; + for (int i = 1; i < values_count; i++) { + scale_min = glm::min(scale_min, values[i]); + } + } + if (scale_max == FLT_MAX) { + scale_max = values[0]; + for (int i = 1; i < values_count; i++) { + scale_max = glm::max(scale_max, values[i]); + } + } + if (scale_min == scale_max) { + return; + } + + ImGui::PushID(label); + + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + + const ImVec2 p = ImGui::GetCursorScreenPos(); + + const ImVec2 center_p { + p.x + graph_size.x/2, + p.y + graph_size.y/2, + }; + + const float inner_spacing_from_center = (graph_size.x/2) * 0.15f; // TODO: expose? + const float outer_spacing_from_center = (graph_size.x/2) * 0.8f; // TODO: expose? + + auto draw_ngon = [&](const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) { + if ((col & IM_COL32_A_MASK) == 0 || num_segments <= 2) + return; + + for (int i = 0; i < num_segments; i++) { + const float a0 = (float(i) / (num_segments-1)) * (glm::two_pi()) * (num_segments-1 / float(num_segments)) - glm::half_pi(); + const float a1 = (float(i+1) / (num_segments-1)) * (glm::two_pi()) * (num_segments-1 / float(num_segments)) - glm::half_pi(); + + draw_list->AddLine( + {center.x + glm::cos(a0) * radius, center.y + glm::sin(a0) * radius}, + {center.x + glm::cos(a1) * radius, center.y + glm::sin(a1) * radius}, + col, thickness + ); + } + }; + + auto draw_net = [&]() { + // inner ring + draw_ngon(center_p, inner_spacing_from_center, ImColor(net_line_color), values_count, net_line_thicknes); + + // depends on min and max + draw_ngon(center_p, glm::mix(inner_spacing_from_center, outer_spacing_from_center, 0.5), ImColor(net_line_color), values_count, net_line_thicknes); + + // outer ring + draw_ngon(center_p, outer_spacing_from_center, ImColor(net_line_color), values_count, net_line_thicknes); + + // axies + for (int i = 0; i < values_count; i++) { + const float a = (float(i) / (values_count-1)) * (glm::two_pi()) * (values_count-1 / float(values_count)) - glm::half_pi(); + draw_list->AddLine( + {center_p.x + glm::cos(a) * inner_spacing_from_center, center_p.y + glm::sin(a) * inner_spacing_from_center}, + {center_p.x + glm::cos(a) * outer_spacing_from_center, center_p.y + glm::sin(a) * outer_spacing_from_center}, + ImColor(net_line_color), net_line_thicknes + ); + } + + // lables + // TODO + }; + + auto value_to_radius = [&](float v) -> float { + //v -= scale_min; + //v /= scale_max; + //return v; + return (v - scale_min) / scale_max; + }; + + auto draw_polygon_fills = [&]() { + // fills + for (int i = 0; i < values_count; i++) { + const float a0 = (float(i) / (values_count-1)) * (glm::two_pi()) * (values_count-1 / float(values_count)) - glm::half_pi(); + const float a1 = (float(i+1) / (values_count-1)) * (glm::two_pi()) * (values_count-1 / float(values_count)) - glm::half_pi(); + + float v0 = values[i]; + float v1 = values[(i+1) % values_count]; + + v0 = value_to_radius(v0); + v1 = value_to_radius(v1); + + float r0 = glm::mix(inner_spacing_from_center, outer_spacing_from_center, v0); + float r1 = glm::mix(inner_spacing_from_center, outer_spacing_from_center, v1); + + draw_list->AddQuadFilled( + {center_p.x + glm::cos(a0) * r0, center_p.y + glm::sin(a0) * r0}, + {center_p.x + glm::cos(a1) * r1, center_p.y + glm::sin(a1) * r1}, + + {center_p.x + glm::cos(a1) * inner_spacing_from_center, center_p.y + glm::sin(a1) * inner_spacing_from_center}, + {center_p.x + glm::cos(a0) * inner_spacing_from_center, center_p.y + glm::sin(a0) * inner_spacing_from_center}, + ImColor(poly_fill_color) + ); + } + }; + auto draw_polygon_lines = [&]() { + // lines + for (int i = 0; i < values_count; i++) { + const float a0 = (float(i) / (values_count-1)) * (glm::two_pi()) * (values_count-1 / float(values_count)) - glm::half_pi(); + const float a1 = (float(i+1) / (values_count-1)) * (glm::two_pi()) * (values_count-1 / float(values_count)) - glm::half_pi(); + + float v0 = values[i]; + float v1 = values[(i+1) % values_count]; + + v0 = value_to_radius(v0); + v1 = value_to_radius(v1); + + float r0 = glm::mix(inner_spacing_from_center, outer_spacing_from_center, v0); + float r1 = glm::mix(inner_spacing_from_center, outer_spacing_from_center, v1); + + draw_list->AddLine( + {center_p.x + glm::cos(a0) * r0, center_p.y + glm::sin(a0) * r0}, + {center_p.x + glm::cos(a1) * r1, center_p.y + glm::sin(a1) * r1}, + ImColor(poly_line_color), poly_line_thickness + ); + } + }; + + auto draw_text = [&]() { + if (vlabels == nullptr) { + return; + } + + for (int i = 0; i < values_count; i++) { + const float a0 = (float(i) / (values_count-1)) * (glm::two_pi()) * (values_count-1 / float(values_count)) - glm::half_pi(); + + const float text_spacing_from_center = (graph_size.x/2) * 0.9f; + draw_list->AddText( + { + center_p.x + glm::cos(a0) * text_spacing_from_center, + center_p.y + glm::sin(a0) * text_spacing_from_center - ImGui::GetTextLineHeight()/2 + }, + ImColor(1.f,1.f,1.f,1.f), vlabels[i] + ); + } + }; + + if (draw_net_first) { + draw_net(); + draw_polygon_fills(); + draw_polygon_lines(); + draw_text(); + } else { + draw_polygon_fills(); + draw_net(); + draw_polygon_lines(); + draw_text(); + } + + ImGui::PopID(); +} + +} // MM::ImGuiWidgets + diff --git a/framework/imgui/src/mm/imgui/widgets/plot_radar.hpp b/framework/imgui/src/mm/imgui/widgets/plot_radar.hpp new file mode 100644 index 0000000..c916058 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/plot_radar.hpp @@ -0,0 +1,31 @@ +#pragma once + +//#include + +#include + +namespace MM::ImGuiWidgets { + +void PlotRadar( + const char* label, + const float* values, int values_count, // values offset? + const char** vlabels = nullptr, // list of null-terminated c-strings, same size as values + float scale_min = FLT_MAX, float scale_max = FLT_MAX, + ImVec2 graph_size = {100, 100}, + + bool draw_net_first = false, + + // polygon + const ImVec4& poly_line_color = {0.8f, 0.8f, 0.0f, 1.0f}, + const ImVec4& poly_fill_color = {0.8f, 0.8f, 0.0f, 0.4f}, + const float poly_line_thickness = 2.f, + + // net + const ImVec4& net_line_color = {0.9f, 0.9f, 0.9f, 0.8f}, + const float net_line_thickness = 1.f + + //bool show_tooltip = true +); + +} // MM::ImGuiWidgets + diff --git a/framework/imgui/src/mm/imgui/widgets/soloud.hpp b/framework/imgui/src/mm/imgui/widgets/soloud.hpp new file mode 100644 index 0000000..af15781 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/soloud.hpp @@ -0,0 +1,26 @@ +#pragma once + +// fwd +namespace SoLoud { + class Soloud; + class Sfxr; + struct SfxrParams; + class Filter; + class FilterInstance; + + typedef unsigned int handle; +} + +namespace MM::ImGuiWidgets { + +bool SoLoudSfxrPlain(const char* label, SoLoud::SfxrParams* sfxr_params); +// uses knobs and childs +bool SoLoudSfxrFancy(const char* label, SoLoud::SfxrParams* sfxr_params); + +// calls getParam*() methods +//bool SoLoudFilterLiveParams(const char* label, SoLoud::Filter* filter, SoLoud::FilterInstance* filter_instance); // no access to instance +bool SoLoudFilterLiveParams(const char* label, SoLoud::Soloud* soloud, SoLoud::Filter* filter, unsigned int filter_id, SoLoud::handle voice_handle = 0); +bool SoLoudFilterLiveParamsFancy(const char* label, SoLoud::Soloud* soloud, SoLoud::Filter* filter, unsigned int filter_id, SoLoud::handle voice_handle = 0, bool same_line = false); + +} // MM::ImGuiWidgets + diff --git a/framework/imgui/src/mm/imgui/widgets/soloud_filter.cpp b/framework/imgui/src/mm/imgui/widgets/soloud_filter.cpp new file mode 100644 index 0000000..69bfa7c --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/soloud_filter.cpp @@ -0,0 +1,134 @@ +#include "./soloud.hpp" + +#include + +#include + +#include +#include + +namespace MM::ImGuiWidgets { + +//bool SoLoudFilterLiveParams(const char* label, SoLoud::Filter* filter, SoLoud::FilterInstance* filter_instance) { + //if (!filter || !filter_instance) return false; + //ImGui::PushID(label); + + //bool value_changed = false; + + //size_t param_count = filter->getParamCount(); + //for (size_t i = 0; i < param_count; i++) { + //if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::FLOAT_PARAM) { + //float tmp = filter_instance->getFilterParameter(i); + + //if (ImGui::SliderFloat( + //filter->getParamName(i), + //&tmp, + //filter->getParamMin(i), + //filter->getParamMax(i) + //)) { + //filter_instance->setFilterParameter(i, tmp); + //value_changed = true; + //} + + + //} else if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::INT_PARAM) { + //ImGui::Text("int %s min:%f max%f", filter->getParamName(i), filter->getParamMin(i), filter->getParamMax(i)); + //} else if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::BOOL_PARAM) { + //bool tmp = filter_instance->getFilterParameter(i) != filter->getParamMin(i); + //if (ImGui::Checkbox(filter->getParamName(i), &tmp)) { + //filter_instance->setFilterParameter(i, tmp ? filter->getParamMax(i) : filter->getParamMin(i)); + //value_changed = true; + //} + + //} + + //} + + //ImGui::PopID(); + //return value_changed; +//} + +bool SoLoudFilterLiveParams(const char* label, SoLoud::Soloud* soloud, SoLoud::Filter* filter, unsigned int filter_id, SoLoud::handle voice_handle) { + if (!filter) return false; + ImGui::PushID(label); + + bool value_changed = false; + + unsigned int param_count = static_cast(filter->getParamCount()); + for (unsigned int i = 0; i < param_count; i++) { + if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::FLOAT_PARAM) { + float tmp = soloud->getFilterParameter(voice_handle, filter_id, i); + + if (ImGui::SliderFloat( + filter->getParamName(i), + &tmp, + filter->getParamMin(i), + filter->getParamMax(i) + )) { + soloud->setFilterParameter(voice_handle, filter_id, i, tmp); + value_changed = true; + } + + + } else if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::INT_PARAM) { + ImGui::Text("int %s min:%f max%f", filter->getParamName(i), filter->getParamMin(i), filter->getParamMax(i)); + } else if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::BOOL_PARAM) { + bool tmp = soloud->getFilterParameter(voice_handle, filter_id, i) != filter->getParamMin(i); + if (ImGui::Checkbox(filter->getParamName(i), &tmp)) { + soloud->setFilterParameter(voice_handle, filter_id, i, tmp ? filter->getParamMax(i) : filter->getParamMin(i)); + value_changed = true; + } + + } + + } + + ImGui::PopID(); + return value_changed; +} + +bool SoLoudFilterLiveParamsFancy(const char* label, SoLoud::Soloud* soloud, SoLoud::Filter* filter, unsigned int filter_id, SoLoud::handle voice_handle, bool same_line) { + if (!filter) return false; + ImGui::PushID(label); + + bool value_changed = false; + + unsigned int param_count = static_cast(filter->getParamCount()); + for (unsigned int i = 0; i < param_count; i++) { + if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::FLOAT_PARAM) { + float tmp = soloud->getFilterParameter(voice_handle, filter_id, i); + + if (MM::ImGuiWidgets::KnobFloat( + filter->getParamName(i), + &tmp, + filter->getParamMin(i), + filter->getParamMax(i), + 400.f + )) { + soloud->setFilterParameter(voice_handle, filter_id, i, tmp); + value_changed = true; + } + + + } else if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::INT_PARAM) { + ImGui::Text("int %s min:%f max%f", filter->getParamName(i), filter->getParamMin(i), filter->getParamMax(i)); + } else if (filter->getParamType(i) == SoLoud::Filter::PARAMTYPE::BOOL_PARAM) { + bool tmp = soloud->getFilterParameter(voice_handle, filter_id, i) != filter->getParamMin(i); + if (ImGui::Checkbox(filter->getParamName(i), &tmp)) { + soloud->setFilterParameter(voice_handle, filter_id, i, tmp ? filter->getParamMax(i) : filter->getParamMin(i)); + value_changed = true; + } + + } + + if (same_line && (i+1 != param_count)) { + ImGui::SameLine(); + } + } + + ImGui::PopID(); + return value_changed; +} + +} // MM::ImGuiWidgets + diff --git a/framework/imgui/src/mm/imgui/widgets/soloud_sfxr.cpp b/framework/imgui/src/mm/imgui/widgets/soloud_sfxr.cpp new file mode 100644 index 0000000..abe052f --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/soloud_sfxr.cpp @@ -0,0 +1,235 @@ +#include "./soloud.hpp" + +#include + +#include + +#include + +namespace MM::ImGuiWidgets { + +bool SoLoudSfxrPlain(const char* label, SoLoud::SfxrParams* sfxr_params) { + ImGui::PushID(label); + + bool value_changed = false; + + { + const char* wlist[] {"SquareWave", "SawTooth", "SineWave", "Noise"}; + if (ImGui::BeginCombo("Wave Type", wlist[sfxr_params->wave_type])) { + for (int i = 0; i < 4; i++) { + if (ImGui::Selectable(wlist[i])) { + sfxr_params->wave_type = i; + value_changed = true; + } + } + ImGui::EndCombo(); + } + } + + ImGui::Separator(); + //internal_sec1(); + { + value_changed |= ImGui::SliderFloat("Attack Time", &sfxr_params->p_env_attack, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("Sustain Time", &sfxr_params->p_env_sustain, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("Sustain Punch", &sfxr_params->p_env_punch, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("Decay Time", &sfxr_params->p_env_decay, 0.f, 1.f); + } + + ImGui::Separator(); + //internal_sec2(); + { + value_changed |= ImGui::SliderFloat("Start Freq", &sfxr_params->p_base_freq, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("Min Freq", &sfxr_params->p_freq_limit, 0.f, 1.f); + + value_changed |= ImGui::SliderFloat("Slide", &sfxr_params->p_freq_ramp, -1.f, 1.f); + value_changed |= ImGui::SliderFloat("Slide Delta", &sfxr_params->p_freq_dramp, -1.f, 1.f); + + value_changed |= ImGui::SliderFloat("Vibrato Depth", &sfxr_params->p_vib_strength, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("Vibrato Speed", &sfxr_params->p_vib_speed, 0.f, 1.f); + //ImGui::SliderFloat("Vibrato Delay", &sfxr_params->p_vib_delay, 0.f, 1.f); // useless? + } + + ImGui::Separator(); + //internal_sec3(); + { + value_changed |= ImGui::SliderFloat("Change Amount", &sfxr_params->p_arp_mod, -1.f, 1.f); + value_changed |= ImGui::SliderFloat("Change Speed", &sfxr_params->p_arp_speed, 0.f, 1.f); + } + + ImGui::Separator(); + //internal_sec4(); + { + value_changed |= ImGui::SliderFloat("Square Duty", &sfxr_params->p_duty, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("Duty Sweep", &sfxr_params->p_duty_ramp, -1.f, 1.f); + } + + ImGui::Separator(); + //internal_sec5(); + { + value_changed |= ImGui::SliderFloat("Repeat Speed", &sfxr_params->p_repeat_speed, 0.f, 1.f); + } + + ImGui::Separator(); + //internal_sec6(); + { + value_changed |= ImGui::SliderFloat("Phaser Offset", &sfxr_params->p_pha_offset, -1.f, 1.f); + value_changed |= ImGui::SliderFloat("Phaser Sweep", &sfxr_params->p_pha_ramp, -1.f, 1.f); + } + + ImGui::Separator(); + //internal_sec7(); + { + value_changed |= ImGui::SliderFloat("LP Filter Cutoff", &sfxr_params->p_lpf_freq, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("LP Filter Cutoff Sweep", &sfxr_params->p_lpf_ramp, -1.f, 1.f); + value_changed |= ImGui::SliderFloat("LP Filter Resonace", &sfxr_params->p_lpf_resonance, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("HP Filter Cutoff", &sfxr_params->p_hpf_freq, 0.f, 1.f); + value_changed |= ImGui::SliderFloat("HP Filter Cutoff Sweep", &sfxr_params->p_hpf_ramp, -1.f, 1.f); + } + + ImGui::PopID(); + return value_changed; +} + +bool SoLoudSfxrFancy(const char* label, SoLoud::SfxrParams* sfxr_params) { + ImGui::PushID(label); + + bool value_changed = false; + + { + const char* wlist[] {"SquareWave", "SawTooth", "SineWave", "Noise"}; + if (ImGui::BeginCombo("Wave Type", wlist[sfxr_params->wave_type])) { + for (int i = 0; i < 4; i++) { + if (ImGui::Selectable(wlist[i])) { + sfxr_params->wave_type = i; + value_changed = true; + } + } + ImGui::EndCombo(); + } + } + + // square wave mods + if (sfxr_params->wave_type == 0) { + if (ImGui::BeginChild("SquareWaveMod", ImVec2(105, 90), true)) { + ImGui::TextDisabled("SQW Mod"); + + value_changed |= KnobFloat("Duty", &sfxr_params->p_duty, 0.f, 1.f, 400.f); + ImGui::SameLine(); + value_changed |= KnobFloat("Sweep", &sfxr_params->p_duty_ramp, -1.f, 1.f, 400.f); + } + ImGui::EndChild(); // SquareWaveMod + } + + // +-------------+----+ + // |EG |VOL | + // | O O O O | O | + // +----------+--+-+--+ + // |FQ |ARP | + // | O O O | O | + // | O O O | O | + // +----------+----+ + + if (ImGui::BeginChild("EG", ImVec2(200, 90), true)) { + ImGui::TextDisabled("EG"); + + value_changed |= KnobFloat("Attack", &sfxr_params->p_env_attack, 0.f, 1.f, 400.f); + ImGui::SameLine(); + value_changed |= KnobFloat("Sustain", &sfxr_params->p_env_sustain, 0.f, 1.f, 400.f); + ImGui::SameLine(); + value_changed |= KnobFloat("Punch", &sfxr_params->p_env_punch, 0.f, 1.f, 400.f); + ImGui::SameLine(); + value_changed |= KnobFloat("Decay", &sfxr_params->p_env_decay, 0.f, 1.f, 400.f); + } + ImGui::EndChild(); // EG + + ImGui::SameLine(); + + if (ImGui::BeginChild("Vol", ImVec2(58, 90), true)) { + ImGui::TextDisabled("Vol"); + + value_changed |= KnobFloat("Volume", &sfxr_params->sound_vol, 0.f, 1.f, 400.f); + } + ImGui::EndChild(); // Vol + + // next line + + if (ImGui::BeginChild("Frequency", ImVec2(58, 152), true)) { + ImGui::TextDisabled("Freq"); + value_changed |= KnobFloat("Base", &sfxr_params->p_base_freq, 0.f, 1.f, 400.f); + value_changed |= KnobFloat("Limit", &sfxr_params->p_freq_limit, 0.f, 1.f, 400.f); + } + ImGui::EndChild(); + + ImGui::SameLine(); + + if (ImGui::BeginChild("Slide", ImVec2(58, 152), true)) { + ImGui::TextDisabled("Slide"); + value_changed |= KnobFloat("Slide", &sfxr_params->p_freq_ramp, -1.f, 1.f, 400.f); + value_changed |= KnobFloat("Delta", &sfxr_params->p_freq_dramp, -1.f, 1.f, 400.f); + } + ImGui::EndChild(); + + ImGui::SameLine(); + + if (ImGui::BeginChild("Vibrato", ImVec2(58, 152), true)) { + ImGui::TextDisabled("Vib"); + value_changed |= KnobFloat("Depth", &sfxr_params->p_vib_strength, 0.f, 1.f, 400.f); + value_changed |= KnobFloat("Speed", &sfxr_params->p_vib_speed, 0.f, 1.f, 400.f); + } + ImGui::EndChild(); + + ImGui::SameLine(); + + if (ImGui::BeginChild("Arp", ImVec2(58, 152), true)) { + ImGui::TextDisabled("Arp"); + value_changed |= KnobFloat("Amount", &sfxr_params->p_arp_mod, -1.f, 1.f, 400.f); + value_changed |= KnobFloat("Speed", &sfxr_params->p_arp_speed, 0.f, 1.f, 400.f); + } + ImGui::EndChild(); // Arp + + // next line + + if (ImGui::BeginChild("Repeat", ImVec2(58, 90), true)) { + ImGui::TextDisabled("Repeat"); + value_changed |= KnobFloat("Speed", &sfxr_params->p_repeat_speed, 0.f, 1.f, 400.f); + } + ImGui::EndChild(); // Repeat + + ImGui::SameLine(); + + if (ImGui::BeginChild("Phaser", ImVec2(105, 90), true)) { + ImGui::TextDisabled("Phaser"); + value_changed |= KnobFloat("Offset", &sfxr_params->p_pha_offset, -1.f, 1.f, 400.f); + ImGui::SameLine(); + value_changed |= KnobFloat("Sweep", &sfxr_params->p_pha_ramp, -1.f, 1.f, 400.f); + } + ImGui::EndChild(); // Phaser + + // next line + + if (ImGui::BeginChild("LP Filter", ImVec2(152, 90), true)) { + ImGui::TextDisabled("LP Filter"); + value_changed |= KnobFloat("Cutoff", &sfxr_params->p_lpf_freq, 0.f, 1.f, 400.f); + ImGui::SameLine(); + value_changed |= KnobFloat("Sweep", &sfxr_params->p_lpf_ramp, -1.f, 1.f, 400.f); + ImGui::SameLine(); + value_changed |= KnobFloat("Peak", &sfxr_params->p_lpf_resonance, 0.f, 1.f, 400.f); + } + ImGui::EndChild(); // LP Filter + + ImGui::SameLine(); + + if (ImGui::BeginChild("HP Filter", ImVec2(105, 90), true)) { + ImGui::TextDisabled("HP Filter"); + value_changed |= KnobFloat("Cutoff", &sfxr_params->p_hpf_freq, 0.f, 1.f, 400.f); + ImGui::SameLine(); + value_changed |= KnobFloat("Sweep", &sfxr_params->p_hpf_ramp, -1.f, 1.f, 400.f); + } + ImGui::EndChild(); // HP Filter + + ImGui::PopID(); + return value_changed; +} + +} // MM::ImGuiWidgets + diff --git a/framework/imgui/src/mm/imgui/widgets/spritesheet.cpp b/framework/imgui/src/mm/imgui/widgets/spritesheet.cpp new file mode 100644 index 0000000..75fc15b --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/spritesheet.cpp @@ -0,0 +1,117 @@ +#include "./spritesheet.hpp" + +#include + +#include +#include + +#include "./texture.hpp" + +#include + +namespace MM::ImGuiWidgets { + +void SpriteSheetPreview(MM::OpenGL::SpriteSheet& sheet, ImVec2 size) { + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + const ImVec2 p = ImGui::GetCursorScreenPos(); + + const ImVec2 uv_a {0.f, 1.f}; + const ImVec2 uv_b {1.f, 0.f}; + + draw_list->AddImage(sheet.tex->getHandle(), p, {p.x + size.x, p.y + size.y}, uv_a, uv_b); + + const ImU32 line_col = ImColor(ImVec4(1.f, 0.f, 0.f, 1.f)); + + // TODO: tile size? + + // v lines + for (uint32_t i = 0; i <= sheet.tile_count.x; i++) { + const float scale = size.x/sheet.tile_count.x; + const float x = p.x + scale*(float)i; + draw_list->AddLine({x, p.y}, {x, p.y + size.y}, line_col); + } + + // h lines + for (uint32_t i = 0; i <= sheet.tile_count.y; i++) { + const float scale = size.y/sheet.tile_count.y; + const float y = p.y + scale*(float)i;; + draw_list->AddLine({p.x, y}, {p.x + size.x, y}, line_col); + } +} + +void SpriteSheet(MM::OpenGL::SpriteSheet& sheet) { + const float w_all = ImGui::CalcItemWidth(); + const ImVec2 dims {w_all, w_all * ((float)sheet.tex->height/sheet.tex->width)}; + SpriteSheetPreview(sheet, dims); + + // TODO: also activate by drag n drop targeting + if (ImGui::InvisibleButton("clickability", dims)) { + ImGui::OpenPopup("sprite_sheet_editor_popup"); + } + + if (ImGui::BeginPopup("sprite_sheet_editor_popup")) { + SpriteSheetEditor(sheet); + ImGui::EndPopup(); + } +} + +void LabelSpriteSheet(const char* label, MM::OpenGL::SpriteSheet& sheet) { + const char* lable_display_end = ImGui::FindRenderedTextEnd(label); + + ImGui::BeginGroup(); + ImGui::PushID(label); + + SpriteSheet(sheet); + + // drop + if (ImGui::BeginDragDropTarget()) { + if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_MM_REND_TEXTURE)) { + if (payload->DataSize != sizeof(MM::ResourceManager::res_id_type)) { + SPDLOG_ERROR("drag'n'drop data size missmatch ({} {})", payload->DataSize, sizeof(MM::ResourceManager::res_id_type)); + } else { + auto& id = *(MM::ResourceManager::res_id_type*)payload->Data; + sheet.tex = MM::ResourceManager::ref().get(id); + } + } + + ImGui::EndDragDropTarget(); + } + + + ImGui::SameLine(); + + //const ImVec2 label_size = ImGui::CalcTextSize(label, lable_display_end, true); + + //ImGui::Dummy({(w_all - (size.x + label_size.x) + 42.f), s_sz}); + + if (label != lable_display_end) { + ImGui::SameLine(); + ImGui::TextUnformatted(label, lable_display_end); + } + + + ImGui::PopID(); // pop label + ImGui::EndGroup(); + +} + +void SpriteSheetEditor(MM::OpenGL::SpriteSheet& sheet) { + assert(sheet.tex); + const float w_all = ImGui::CalcItemWidth(); + const ImVec2 dims {w_all, w_all * ((float)sheet.tex->height/sheet.tex->width)}; + SpriteSheetPreview(sheet, dims); + ImGui::Dummy(dims); + + ImGui::Separator(); + + MM::ImGuiWidgets::LabelTexture("tex##SpriteSheet", sheet.tex); + + ImGui::Separator(); + + uint32_t step = 1; + ImGui::InputScalar("tile_count x##SpriteSheet", ImGuiDataType_U32, &sheet.tile_count.x, &step, NULL, NULL, 0); + ImGui::InputScalar("tile_count y##SpriteSheet", ImGuiDataType_U32, &sheet.tile_count.y, &step, NULL, NULL, 0); +} + +} // MM::ImGuiWidgets + diff --git a/framework/imgui/src/mm/imgui/widgets/spritesheet.hpp b/framework/imgui/src/mm/imgui/widgets/spritesheet.hpp new file mode 100644 index 0000000..db145af --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/spritesheet.hpp @@ -0,0 +1,17 @@ +#pragma once + +// forward +struct ImVec2; +namespace MM::OpenGL { + struct SpriteSheet; +} + +namespace MM::ImGuiWidgets { + +void SpriteSheetPreview(MM::OpenGL::SpriteSheet& sheet, ImVec2 size); +void SpriteSheet(MM::OpenGL::SpriteSheet& sheet); +void LabelSpriteSheet(const char* label, MM::OpenGL::SpriteSheet& sheet); +void SpriteSheetEditor(MM::OpenGL::SpriteSheet& sheet); + +} // MM::ImGuiWidgets + diff --git a/framework/imgui/src/mm/imgui/widgets/texture.cpp b/framework/imgui/src/mm/imgui/widgets/texture.cpp new file mode 100644 index 0000000..f15b3b3 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/texture.cpp @@ -0,0 +1,93 @@ +#include "./texture.hpp" + +#include +#include + +#include + +namespace MM::ImGuiWidgets { + +// TODO: fix formating +void Texture(MM::OpenGL::Texture::handle& texture, bool dropTarget) { + const float s_sz = ImGui::GetFrameHeight(); + //const float w_all = ImGui::CalcItemWidth(); + //const char* lable_display_end = ImGui::FindRenderedTextEnd(label); + ImVec2 size{s_sz*2.f, s_sz*2.f}; + + ImGui::BeginGroup(); + + if (texture) { + ImGui::Image(texture->getHandle(), size, {0.f, 1.f}, {1.f, 0.f}, ImVec4(1,1,1,1), ImVec4(1,1,1,1)); + + // "tooltip" + if (ImGui::IsItemHovered()) { + ImGui::BeginTooltip(); + const ImVec2 orig_size {(float)texture->width, (float)texture->height}; + ImGui::Image(texture->getHandle(), orig_size, {0.f, 1.f}, {1.f, 0.f}); + ImGui::EndTooltip(); + } + + // drag + if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_SourceAllowNullID)) { + auto id = MM::ResourceManager::ref().id_from_handle(texture); + if (id) { + ImGui::SetDragDropPayload(IMGUI_PAYLOAD_TYPE_MM_REND_TEXTURE, &(id.value()), sizeof(id.value())); + ImGui::Image(texture->getHandle(), size, {0.f, 1.f}, {1.f, 0.f}, ImVec4(1,1,1,1), ImVec4(1,1,1,1)); + } + ImGui::EndDragDropSource(); + } + } else { + // TODO: default texture + ImGui::TextUnformatted("NO TEXTURE"); + } + + // drop + if (dropTarget && ImGui::BeginDragDropTarget()) { + if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_MM_REND_TEXTURE)) { + if (payload->DataSize != sizeof(MM::ResourceManager::res_id_type)) { + SPDLOG_ERROR("drag'n'drop data size missmatch ({} {})", payload->DataSize, sizeof(MM::ResourceManager::res_id_type)); + } else { + auto& id = *(MM::ResourceManager::res_id_type*)payload->Data; + texture = MM::ResourceManager::ref().get(id); + } + } + + ImGui::EndDragDropTarget(); + } + + ImGui::EndGroup(); +} + +void LabelTexture(const char* label, MM::OpenGL::Texture::handle& texture, bool dropTarget) { + const float s_sz = ImGui::GetFrameHeight(); + const float w_all = ImGui::CalcItemWidth(); + const char* lable_display_end = ImGui::FindRenderedTextEnd(label); + + ImVec2 size{s_sz*2.f, s_sz*2.f}; + if (!texture) { + size = ImGui::CalcTextSize("NO TEXTURE"); + } + + ImGui::BeginGroup(); + ImGui::PushID(label); + + Texture(texture, dropTarget); + + ImGui::SameLine(); + + const ImVec2 label_size = ImGui::CalcTextSize(label, lable_display_end, true); + + ImGui::Dummy({(w_all - (size.x + label_size.x) + 42.f), s_sz}); + + if (label != lable_display_end) { + ImGui::SameLine(); + ImGui::TextUnformatted(label, lable_display_end); + } + + + ImGui::PopID(); // pop label + ImGui::EndGroup(); +} + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/texture.hpp b/framework/imgui/src/mm/imgui/widgets/texture.hpp new file mode 100644 index 0000000..9fa69da --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/texture.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include + +namespace MM::ImGuiWidgets { + +#define IMGUI_PAYLOAD_TYPE_MM_REND_TEXTURE "MM_REND_TEXTURE" + +void Texture(MM::OpenGL::Texture::handle& texture, bool dropTarget = true); +void LabelTexture(const char* label, MM::OpenGL::Texture::handle& texture, bool dropTarget = true); + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/texture_resource_manager.cpp b/framework/imgui/src/mm/imgui/widgets/texture_resource_manager.cpp new file mode 100644 index 0000000..ac7087e --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/texture_resource_manager.cpp @@ -0,0 +1,85 @@ +#include "texture_resource_manager.hpp" + +#include + +#include + +#include + +#include + +#include + +namespace MM::ImGuiWidgets { + +void TextureResourceManagerList(void) { + auto& rm = MM::ResourceManager::ref(); + + ImGui::Text("textures is cache: %lu", rm.size()); + + std::function::res_id_type, std::shared_ptr)> fn = + [](auto /*id*/, std::shared_ptr h) { + Texture(h, false); + return; + }; + + if (ImGui::BeginChild("texture list")) { + rm.each(fn); + } + ImGui::EndChild(); +} + +void TextureResourceManagerLoader(MM::Engine& engine) { + auto& rm = MM::ResourceManager::ref(); + static MM::OpenGL::Texture::handle texture = rm.get("default"_hs); + + static std::string path = ""; + + auto& fs = engine.getService(); + MM::ImGuiWidgets::FilePicker("texture_loader", fs, path, false); + + static char ident[30] = {}; + + ImGui::InputText("texture id", ident, 29); + + bool load = false; + bool force = false; + ImGui::BeginGroup(); + if (ImGui::Button("load file!")) { + load = true; + } + + ImGui::SameLine(); + + if (ImGui::Button("force load file!")) { + load = true; + force = true; + } + ImGui::EndGroup(); + + if (load) { + auto id = entt::hashed_string{ident}.value(); + if (!force && rm.contains(id)) { + SPDLOG_ERROR("TextureResourceManagerLoader: id allready used! ({})", id); + } else if (!force && strlen(ident) == 0) { + SPDLOG_ERROR("TextureResourceManagerLoader: id empty!"); + } else if (!fs.isFile(path.c_str())) { + SPDLOG_ERROR("TextureResourceManagerLoader: '{}' is not a file!", path); + } else { + if (!force && rm.load(ident, engine, path)) { + texture = rm.get(id); + } else if (force && rm.reload(ident, engine, path)) { + texture = rm.get(id); + } else { + SPDLOG_ERROR("TextureResourceManagerLoader: loading texture from file! {}", path); + } + } + } + + ImGui::TextUnformatted("last loaded texture:"); + ImGui::SameLine(); + MM::ImGuiWidgets::Texture(texture, false); +} + +} + diff --git a/framework/imgui/src/mm/imgui/widgets/texture_resource_manager.hpp b/framework/imgui/src/mm/imgui/widgets/texture_resource_manager.hpp new file mode 100644 index 0000000..cf2bc67 --- /dev/null +++ b/framework/imgui/src/mm/imgui/widgets/texture_resource_manager.hpp @@ -0,0 +1,21 @@ +#pragma once + +#include + +#include +#include "./texture.hpp" + +// fwd +namespace MM { + class Engine; +} + +namespace MM::ImGuiWidgets { + +void TextureResourceManagerList(void); + +void TextureResourceManagerLoader(Engine& engine); + +} + + diff --git a/framework/imgui/src/mm/services/imgui_s.cpp b/framework/imgui/src/mm/services/imgui_s.cpp new file mode 100644 index 0000000..f0d0cdb --- /dev/null +++ b/framework/imgui/src/mm/services/imgui_s.cpp @@ -0,0 +1,141 @@ +#include "./imgui_s.hpp" + +#include +#include + +#ifdef MM_OPENGL_3 +#include +#endif + +#include + +#if defined(__GNUC__) || defined(__clang__) +#define USE_BASE85 +#endif + +#ifdef USE_BASE85 + #include "../../../res/ionicons/ionicons.ttf.base85.h" +#else + #include "../../../res/ionicons/ionicons.ttf.h" +#endif + +#include + +namespace MM::Services { + +bool ImGuiService::enable(Engine& engine) { + IMGUI_CHECKVERSION(); + + ImGui::CreateContext(); + ImGuiIO& io = ImGui::GetIO(); + io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls + io.ConfigFlags |= ImGuiConfigFlags_NavNoCaptureKeyboard; + //io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // TODO: dont, if ingame ? + + auto& sdl_ss = engine.getService(); +#ifdef MM_OPENGL_3 + ImGui_ImplSDL2_InitForOpenGL(sdl_ss.win, sdl_ss.gl_context); + ImGui_ImplOpenGL3_Init(); +#endif + + // style + { + ImGui::StyleColorsDark(); + + auto& style = ImGui::GetStyle(); + style.WindowRounding = 2.f; + } + + // font + { + io.Fonts->AddFontDefault(); + static const ImWchar icons_ranges[] = {ICON_MIN_II, ICON_MAX_II, 0}; + ImFontConfig icons_config; + icons_config.MergeMode = true; + icons_config.PixelSnapH = true; + icons_config.FontDataOwnedByAtlas = false; + icons_config.GlyphOffset = {0.f, 4.f}; + //io.Fonts->AddFontFromMemoryTTF(ionicons_ttf, ionicons_ttf_len, 16.f, &icons_config, icons_ranges); +#ifdef USE_BASE85 + io.Fonts->AddFontFromMemoryCompressedBase85TTF(ionicons_ttf_compressed_data_base85, 16.f*1.3f, &icons_config, icons_ranges); +#else + io.Fonts->AddFontFromMemoryTTF(ionicons_ttf, ionicons_ttf_len, 16.f, &icons_config, icons_ranges); +#endif + } + + // TODO: register event handle + _event_handle = sdl_ss.addEventHandler([](const SDL_Event& e) { + if (!ImGui_ImplSDL2_ProcessEvent(&e)) { + return false; // if the event was not relevant to imgui anyway + } + + auto& io = ImGui::GetIO(); + // keyboard + if (( + e.type == SDL_KEYDOWN || + e.type == SDL_KEYUP || + e.type == SDL_TEXTEDITING || + e.type == SDL_TEXTINPUT + ) + && io.WantCaptureKeyboard) { + return true; + } + // mouse + if (( + e.type == SDL_MOUSEMOTION || + e.type == SDL_MOUSEBUTTONUP || + e.type == SDL_MOUSEBUTTONDOWN || + e.type == SDL_MOUSEWHEEL // ???? + ) + && io.WantCaptureMouse) { + return true; + } + //// controller ??? + //if (( + //e.type == SDL_CONTROLLERBUTTONUP || + //e.type == SDL_CONTROLLERBUTTONDOWN + //)[> + //&& io.WantCaptureKeyboard*/) { + //return false; + //} + + return false; + }); + + _new_frame_handle = engine.addUpdate([this](Engine& e) { this->imgui_new_frame(e); }); + assert(!_new_frame_handle.expired()); + auto tmp_lock = _new_frame_handle.lock(); + tmp_lock->priority = 90; // after sdl events (100) + tmp_lock->name = "imgui new frame"; + + return true; +} + +void ImGuiService::disable(Engine& engine) { + auto& sdl_ss = engine.getService(); + sdl_ss.removeEventHandler(_event_handle); + + engine.removeUpdate(_new_frame_handle); + + ImGui::EndFrame(); // making sure, does not work???? + +#ifdef MM_OPENGL_3 + ImGui_ImplOpenGL3_Shutdown(); +#endif + ImGui_ImplSDL2_Shutdown(); + ImGui::DestroyContext(); +} + +void ImGuiService::imgui_new_frame(Engine& engine) { + ZoneScopedN("MM::Services::ImGuiService::imgui_new_frame"); + +#ifdef MM_OPENGL_3 + ImGui_ImplOpenGL3_NewFrame(); +#endif + + ImGui_ImplSDL2_NewFrame(engine.getService().win); + ImGui::NewFrame(); +} + +} // namespace MM::Services + diff --git a/framework/imgui/src/mm/services/imgui_s.hpp b/framework/imgui/src/mm/services/imgui_s.hpp new file mode 100644 index 0000000..6a6bbbe --- /dev/null +++ b/framework/imgui/src/mm/services/imgui_s.hpp @@ -0,0 +1,28 @@ +#pragma once + +#include +#include + +namespace MM::Services { + + // responsable for event handling and setup + // enable requires an open sdl window (and context) + class ImGuiService : public Service { + private: + MM::Services::SDLService::EventHandlerHandle _event_handle = nullptr; + + // new frame needs to start AFTER the events have been processed (and obv bf rendt) + MM::Engine::FunctionDataHandle _new_frame_handle; + + public: + bool enable(Engine& engine) override; + void disable(Engine& engine) override; + + const char* name(void) override { return "ImGuiService"; } + + private: + void imgui_new_frame(Engine& engine); + }; + +} // namespace MM::Services + diff --git a/framework/imgui/src/mm/services/scene_tools.cpp b/framework/imgui/src/mm/services/scene_tools.cpp new file mode 100644 index 0000000..fc61464 --- /dev/null +++ b/framework/imgui/src/mm/services/scene_tools.cpp @@ -0,0 +1,213 @@ +#include "./scene_tools.hpp" + +#include + +#include + +#include + +#include + +#include + +#include +#include +#include + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include +#include + +#include +#define LOGIGS(x) LOG("ImGuiSceneToolsService", x) + +namespace MM::Services { + + void ImGuiSceneToolsService::renderImGui(Engine& engine) { + if (show_menu && ImGui::BeginMainMenuBar()) { + if (ImGui::BeginMenu("Engine")) { + if (ImGui::MenuItem("Stop Engine")) { + engine.stop(); + } + ImGui::EndMenu(); + } + + if (ImGui::BeginMenu("TextEditor")) { + if (ImGui::MenuItem("New Editor")) { + _text_editor_list.emplace_back(engine); + } + ImGui::EndMenu(); + } + + if (ImGui::BeginMenu("Windows")) { + ImGui::MenuItem("MM Metrics", NULL, &_show_mm_metrics); + ImGui::MenuItem("ImGui Metrics", NULL, &_show_imgui_metrics); + ImGui::MenuItem("Texture Loader", NULL, &_show_texture_loader); + ImGui::MenuItem("Texture List", NULL, &_show_texture_list); + ImGui::MenuItem("Entity Editor", NULL, &_show_entity_editor); + ImGui::MenuItem("Camera Tool", NULL, &_show_camera_tool); + ImGui::EndMenu(); + } + + ImGui::Text("%.1fFPS", ImGui::GetIO().Framerate); + ImGui::EndMainMenuBar(); + } + + auto& scene = engine.tryService()->getScene(); + + if (_show_mm_metrics) { + if (ImGui::Begin("Metrics##MM", &_show_mm_metrics)) { + if (ImGui::CollapsingHeader("ECS")) { + ImGui::Text("EnTT v%d.%d.%d", ENTT_VERSION_MAJOR, ENTT_VERSION_MINOR, ENTT_VERSION_PATCH); + ImGui::Text("capacity: %lu", scene.capacity()); + ImGui::Text("size: %lu", scene.size()); + ImGui::Text("alive: %lu", scene.alive()); + size_t orphans = 0; + scene.orphans([&](auto) { orphans++; }); + ImGui::Text("orphans: %lu", orphans); + } + } + ImGui::End(); + } + + if (_show_imgui_metrics) { + ImGui::ShowMetricsWindow(&_show_imgui_metrics); + } + + if (_show_texture_loader) { + if (ImGui::Begin("Texture Loader", &_show_texture_loader)) { + ImGuiWidgets::TextureResourceManagerLoader(engine); + } + ImGui::End(); + } + + if (_show_texture_list) { + if (ImGui::Begin("Texture List", &_show_texture_list)) { + ImGuiWidgets::TextureResourceManagerList(); + } + ImGui::End(); + } + + if (_show_entity_editor) { + ImGui::SetNextWindowSize(ImVec2(750, 500), ImGuiCond_FirstUseEver); + if (ImGui::Begin("Entity Editor", &_show_entity_editor, ImGuiWindowFlags_MenuBar)) { + ImGui::BeginMenuBar(); + ImGui::Checkbox("Show List", &_show_entity_list); + ImGui::EndMenuBar(); + + if (_show_entity_list) { + if (ImGui::BeginChild("list", {300, 0}, true)) { + ImGuiWidgets::EntityTrashCan(scene); // TODO: remove? + _entity_editor.renderEntityList(scene, _entity_comp_list); + } + ImGui::EndChild(); + ImGui::SameLine(); + } + + if (ImGui::BeginChild("editor")) { + _entity_editor.renderEditor(scene, _e); + } + ImGui::EndChild(); + } + ImGui::End(); + } + + if (_show_camera_tool) { + if (ImGui::Begin("Camera3D Tool", &_show_camera_tool)) { + ImGuiWidgets::Camera3D(scene); + } + ImGui::End(); + } + + for (auto it = _text_editor_list.begin(); it != _text_editor_list.end();) { + bool keep_open = true; + it->renderImGui(&keep_open); + + if (!keep_open) { + it = _text_editor_list.erase(it); + continue; + } + it++; + } + } + + EntityEditor& ImGuiSceneToolsService::getEntityEditor(void) { + return _entity_editor; + } + + bool ImGuiSceneToolsService::enable(Engine& engine) { + if (!engine.tryService()) { + LOGIGS("error: rendering is not in engine"); + return false; + } + + if (!engine.tryService()) { + LOGIGS("error: filesystem not initialized"); + return false; + } + + if (!engine.tryService()) { + LOGIGS("error: no SceneServiceInterface"); + return false; + } + + // setup entity editor defaults + { + _entity_editor.show_window = false; + + _entity_editor.registerComponent("Name"); + _entity_editor.registerComponent("Transform2D"); + _entity_editor.registerComponent("Transform3D"); + _entity_editor.registerComponent("Velocity2D"); + _entity_editor.registerComponent("ViewDir2D"); + _entity_editor.registerComponent("ViewDir3D"); + _entity_editor.registerComponent("Color"); + + _entity_editor.registerComponent("Texture"); + } + + _render_handle = engine.addUpdate([this](Engine& e){ this->renderImGui(e); }); + + auto* sdl_ss = engine.tryService(); + if (sdl_ss) { + _event_handle = sdl_ss->addEventHandler([this](const SDL_Event& e) -> bool { + if (e.type == SDL_KEYDOWN && !e.key.repeat && e.key.keysym.sym == this->toggle_key) { + this->show_menu = !this->show_menu; + } + return false; // invis + }); + } else { + LOGIGS("Warn: no SDLService, skipping toggle hotkey"); + } + + return true; + } + + void ImGuiSceneToolsService::disable(Engine& engine) { + if (!_render_handle.expired()) { + engine.removeUpdate(_render_handle); + _render_handle.reset(); + } + + if (_event_handle) { + auto* sdl_ss = engine.tryService(); + sdl_ss->removeEventHandler(_event_handle); + _event_handle = nullptr; + } + } + +} // namespace MM::Services + diff --git a/framework/imgui/src/mm/services/scene_tools.hpp b/framework/imgui/src/mm/services/scene_tools.hpp new file mode 100644 index 0000000..0ed281d --- /dev/null +++ b/framework/imgui/src/mm/services/scene_tools.hpp @@ -0,0 +1,53 @@ +#pragma once + +#include + +#define MM_IEEE_ENTITY_WIDGET ::MM::ImGuiWidgets::Entity // evil +#define MM_IEEE_ASSERT(x) +#include +#include + +#include + +namespace MM::Services { + + class ImGuiSceneToolsService : public Service { + public: + bool show_menu = true; + + SDL_Keycode toggle_key = SDLK_F2; + + private: + bool _show_mm_metrics = false; + bool _show_imgui_metrics = false; + bool _show_texture_loader = false; + bool _show_texture_list = false; + bool _show_entity_editor = false; + bool _show_entity_list = true; + bool _show_camera_tool = false; + + EntityEditor _entity_editor; + // for list + std::set::ComponentTypeID> _entity_comp_list; + + std::vector _text_editor_list; + + Engine::FunctionDataHandle _render_handle; + MM::Services::SDLService::EventHandlerHandle _event_handle = nullptr; + + private: + void renderImGui(Engine& engine); + + public: + EntityEditor& getEntityEditor(void); + Entity _e = entt::null; // entity currently in editor + + public: + bool enable(Engine& engine) override; + void disable(Engine& engine) override; + + const char* name(void) override { return "ImGuiSceneToolsService"; } + }; + +} // namespace MM::Services + diff --git a/framework/imgui/test/CMakeLists.txt b/framework/imgui/test/CMakeLists.txt new file mode 100644 index 0000000..e6f4207 --- /dev/null +++ b/framework/imgui/test/CMakeLists.txt @@ -0,0 +1,75 @@ +add_executable(imgui_widget_test + ./widget_test.cpp +) +target_include_directories(imgui_widget_test PRIVATE ".") +target_link_libraries(imgui_widget_test + engine + sdl_service + opengl_renderer_s + imgui_service + imgui_render_task + imgui_widgets + gtest_main +) +add_test(NAME imgui_widget_test COMMAND imgui_widget_test) + +#################### + +add_executable(imgui_scene_tools_test + scene_tools_test.cpp + #res/res_errig.zip.h + #res/res_default.zip.h +) + +target_include_directories(imgui_scene_tools_test PRIVATE ".") + +target_link_libraries(imgui_scene_tools_test + engine + simple_scene + opengl_renderer_s + imgui_service + imgui_render_task + imgui_tools + gtest_main +) + +add_test(NAME imgui_scene_tools_test COMMAND imgui_scene_tools_test) + +#################### + +add_executable(imgui_sound_test + sound_test.cpp +) +target_include_directories(imgui_sound_test PRIVATE ".") +target_link_libraries(imgui_sound_test + engine + sdl_service + opengl_renderer_s + imgui_service + imgui_render_task + imgui_sound + #imgui_tools + gtest_main +) +add_test(NAME imgui_sound_test COMMAND imgui_sound_test) + +#################### + +add_executable(imgui_text_edit_test + ./text_edit_test.cpp +) + +target_include_directories(imgui_text_edit_test PRIVATE ".") + +target_link_libraries(imgui_text_edit_test + engine + simple_scene + opengl_renderer_s + imgui_service + imgui_render_task + imgui_tools + gtest_main +) + +add_test(NAME imgui_text_edit_test COMMAND imgui_text_edit_test) + diff --git a/framework/imgui/test/scene_tools_test.cpp b/framework/imgui/test/scene_tools_test.cpp new file mode 100644 index 0000000..65eee5c --- /dev/null +++ b/framework/imgui/test/scene_tools_test.cpp @@ -0,0 +1,78 @@ +#include + +#include + +#include + +#include +#include +#include +#include + +#include +#include + +#include + +#include + +static char* argv0; + +TEST(imgui_scene_tools, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(SDL_INIT_VIDEO); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("imgui_scene_tools_test", 1280, 720); + + engine.addService(argv0, "imgui_scene_tools_test"); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + //InitializeYojimbo(); + + { + MM::ImGuiSimpleFPSOverlay fps_overlay; + + engine.addUpdate([&](MM::Engine&) { + fps_overlay.renderImGui(); + } + ); + + engine.run(); + } + + + // TODO: clear asset manager + + sdl_ss.destroyWindow(); + + //ShutdownYojimbo(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/imgui/test/sound_test.cpp b/framework/imgui/test/sound_test.cpp new file mode 100644 index 0000000..01994d3 --- /dev/null +++ b/framework/imgui/test/sound_test.cpp @@ -0,0 +1,156 @@ +#include + +#include + +// services +#include +#include +#include +#include +#include + +#include + +#include +#include +#include + +#include + +#include +#include +#include +#include +#include + +const char* argv0; + +class ImGuiSpeechy { + private: + SoLoud::Speech speech; + SoLoud::Sfxr sfxr; + + SoLoud::FreeverbFilter freeverb; + SoLoud::EchoFilter echo; + SoLoud::LofiFilter lofi; + + public: + explicit ImGuiSpeechy(SoLoud::Soloud& sound) { + speech.setText("Test text. 1. 2. 3."); + sfxr.loadPreset(SoLoud::Sfxr::COIN, 0); + + sound.setGlobalFilter(0, &lofi); + sound.setGlobalFilter(1, &echo); + sound.setGlobalFilter(2, &freeverb); + } + + void renderImGui(MM::Engine& engine) { + auto& sound = *engine.tryService(); + + + if (ImGui::Begin("Inputs")) { + if (ImGui::Button("play sfx")) { + sound.engine.play(sfxr); + } + + //ImGui::Text("Active Voice Count: %d", sound.engine.getActiveVoiceCount()); + if (ImGui::Button("Read")) { + sound.engine.play(speech); + } + } + ImGui::End(); + + if (ImGui::Begin("Sfxr plain")) { + MM::ImGuiWidgets::SoLoudSfxrPlain("plain_sfxr", &sfxr.mParams); + } + ImGui::End(); + + if (ImGui::Begin("Sfxr fancy")) { + MM::ImGuiWidgets::SoLoudSfxrFancy("fancy_sfxr", &sfxr.mParams); + } + ImGui::End(); + + if (ImGui::Begin("filter lofi")) { + MM::ImGuiWidgets::SoLoudFilterLiveParams("filter lofi", &sound.engine, &lofi, 0); + } + ImGui::End(); + + if (ImGui::Begin("filter echo")) { + MM::ImGuiWidgets::SoLoudFilterLiveParams("filter echo", &sound.engine, &echo, 1); + } + ImGui::End(); + + if (ImGui::Begin("filter freeverb")) { + MM::ImGuiWidgets::SoLoudFilterLiveParams("filter freeverb", &sound.engine, &freeverb, 2); + } + ImGui::End(); + + if (ImGui::Begin("filter fancy lofi")) { + ImGui::TextDisabled("LoFi"); + MM::ImGuiWidgets::SoLoudFilterLiveParamsFancy("filter fancy lofi", &sound.engine, &lofi, 0); + } + ImGui::End(); + + if (ImGui::Begin("filter fancy echo")) { + ImGui::TextDisabled("Echo"); + MM::ImGuiWidgets::SoLoudFilterLiveParamsFancy("filter fancy echo", &sound.engine, &echo, 1); + } + ImGui::End(); + + if (ImGui::Begin("filter fancy freeverb")) { + ImGui::TextDisabled("Rev"); + MM::ImGuiWidgets::SoLoudFilterLiveParamsFancy("filter fancy freeverb", &sound.engine, &freeverb, 2); + } + ImGui::End(); + } +}; + +TEST(imgui_sound, basic) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("imgui_sound_test", 800, 600); + + engine.addService(argv0, "imgui_sound_test"); + ASSERT_TRUE(engine.enableService()); + + auto& sound = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sound.engine.setVisualizationEnable(true); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + { + ImGuiSpeechy speechy(sound.engine); + + engine.addUpdate([&](MM::Engine& engine) { + MM::ImGuiSoundInfo(engine); + MM::ImGuiSoundPref(engine); + + speechy.renderImGui(engine); + } + ); + + engine.run(); + } + + sdl_ss.destroyWindow(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/imgui/test/text_edit_test.cpp b/framework/imgui/test/text_edit_test.cpp new file mode 100644 index 0000000..f4797e0 --- /dev/null +++ b/framework/imgui/test/text_edit_test.cpp @@ -0,0 +1,159 @@ +#include + +#include + +#include + +#include +#include +#include +#include +#include + +#include + +#include + +#include +#include + +#include + +static char* argv0; + +TEST(imgui_text_edit, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(SDL_INIT_VIDEO); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("imgui_text_edit_test", 1280, 720); + + engine.addService(argv0, "imgui_text_edit_test"); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + ASSERT_TRUE(engine.enableService()); + + MM::ImGuiSimpleFPSOverlay fps_overlay; + engine.addUpdate([&](MM::Engine&) { + fps_overlay.renderImGui(); + } + ); + + MM::FileTextEditor fte{engine}; + engine.addUpdate([&](MM::Engine&) { + fte.renderImGui(); + } + ); + + engine.run(); + + // TODO: clear asset manager + + sdl_ss.destroyWindow(); +} + +TEST(imgui_text_edit, shader) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(SDL_INIT_VIDEO); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("imgui_text_edit_test", 1280, 720); + + engine.addService(argv0, "imgui_text_edit_test"); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + ASSERT_TRUE(engine.enableService()); + + MM::ImGuiSimpleFPSOverlay fps_overlay; + engine.addUpdate([&](MM::Engine&) { + fps_overlay.renderImGui(); + } + ); + + //auto& rc = engine.getScene().ctx(); + //rc.registerRenderer(); + + MM::FileTextEditor fte{engine}; + engine.addUpdate([&](MM::Engine&) { + fte.renderImGui(); + } + ); + + MM::FileShaderEditor fse{engine}; + engine.addUpdate([&](MM::Engine&) { + fse.renderImGui(); + } + ); + + fte.open("shader/quad_renderer/vert.glsl"); + fse.open("shader/quad_renderer/frag.glsl"); + + // TODO: a shader to display plx + //{ + //auto& ecs = engine.getScene(); + + //auto& ee = igsts->getEntityEditor(); + //ee.registerTrivial("QuadRenderable"); + //ee.registerComponentCreateFn(ecs.type(), + //[](MM::EngineConfig::ECS& ecs, MM::EngineConfig::Entity e) { + //auto& r = ecs.assign(e); + //r._texture = MM::ResourceManager::ref().get("default"_hs); + //} + //); + //ee.registerComponentWidgetFn(ecs.type(), + //[](MM::EngineConfig::ECS& ecs, MM::EngineConfig::Entity e) { + //auto& r = ecs.get(e); + //MM::ImGuiWidgets::Components::QuadRenderable(r); + //} + //); + //} + + engine.run(); + + // TODO: clear asset manager + + sdl_ss.destroyWindow(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/imgui/test/widget_test.cpp b/framework/imgui/test/widget_test.cpp new file mode 100644 index 0000000..ae16bdf --- /dev/null +++ b/framework/imgui/test/widget_test.cpp @@ -0,0 +1,95 @@ +#include + +#include + +// services +#include +#include +#include +#include + +#include + +#include + +#include + +const char* argv0; + +//class ImGuiSpeechy { + //private: + //SoLoud::Speech speech; + //SoLoud::Sfxr sfxr; + + //public: + //ImGuiSpeechy(void) { + //speech.setText("Test text. 1. 2. 3."); + //sfxr.loadPreset(SoLoud::Sfxr::COIN, 0); + //} + + //void renderImGui(MM::Engine& engine) { + //if (ImGui::Begin("Inputs")) { + //auto& sound = *engine.tryGetService(); + + //if (ImGui::Button("play sfx")) { + //sound.engine.play(sfxr); + //} + + ////ImGui::Text("Active Voice Count: %d", sound.engine.getActiveVoiceCount()); + //if (ImGui::Button("Read")) { + //sound.engine.play(speech); + //} + //} + //ImGui::End(); + + //} +//}; + +TEST(imgui_widgets, basic) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("imgui_widget_test", 1280, 720); + + engine.addService(argv0, "imgui_widget_test"); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + { + //ImGuiSpeechy speechy; + + engine.addUpdate([&](MM::Engine&) { + if (ImGui::Begin("test window")) { + + static float knob_test = 0.f; + MM::ImGuiWidgets::KnobFloat("knob1", &knob_test, 0.f, 1.f); + ImGui::SameLine(); + MM::ImGuiWidgets::KnobFloat("knob2", &knob_test, 0.f, 1.f, 0.f, false); + + } + ImGui::End(); + }); + + engine.run(); + } + + sdl_ss.destroyWindow(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/input/CMakeLists.txt b/framework/input/CMakeLists.txt new file mode 100644 index 0000000..ed9c5ba --- /dev/null +++ b/framework/input/CMakeLists.txt @@ -0,0 +1,27 @@ +cmake_minimum_required(VERSION 3.2) +project(input_service CXX) + +add_library(input_service + src/mm/services/input_service.hpp + src/mm/services/input_service.cpp +) + +target_include_directories(input_service PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(input_service + engine + glm + sdl_service +) + +if(EMSCRIPTEN) + set_target_properties(input_service PROPERTIES COMPILE_FLAGS "-s USE_SDL=2") + set_target_properties(input_service PROPERTIES LINK_FLAGS "-s USE_SDL=2") +else() + target_include_directories(input_service PUBLIC "${SDL2_INCLUDE_DIR}") +endif() + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/input/src/mm/services/input_service.cpp b/framework/input/src/mm/services/input_service.cpp new file mode 100644 index 0000000..4d02e79 --- /dev/null +++ b/framework/input/src/mm/services/input_service.cpp @@ -0,0 +1,600 @@ +#include "./input_service.hpp" + +#include +#include +#include +#include + +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "InputService", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("InputService", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "InputService", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "InputService", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("InputService", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("InputService", __VA_ARGS__) + +namespace MM::Services { + +InputService::input_action_t InputService::keyboard_mapping::get(SDL_Keycode key) { + for (unsigned int i = 0; i < InputService::input_action_t::INPUT_ACTION_MAX; i++) { + if (actions[i] == key) + return (InputService::input_action_t)i; + } + + return INPUT_ACTION_MAX; +} + +InputService::input_action_t InputService::controller_mapping::get(SDL_GameControllerButton button) { + for (unsigned int i = 0; i < InputService::input_action_t::INPUT_ACTION_MAX; i++) { + if (actions[i] == button) + return (InputService::input_action_t)i; + } + + return INPUT_ACTION_MAX; +} + +InputService::InputService(void) { + MM::Logger::initSectionLogger("InputService"); + LOG_TRACE("constructing InputService..."); + + // TODO: integrate with config system + _k_map.move_up = loadKey("keyboard_move_up", SDLK_w); + _k_map.move_down = loadKey("keyboard_move_down", SDLK_s); + _k_map.move_left = loadKey("keyboard_move_left", SDLK_a); + _k_map.move_right = loadKey("keyboard_move_right", SDLK_d); + + _k_map.actions[SPELL_WEAPON] = loadKey("keyboard_spell_weapon", SDLK_SPACE); + + _k_map.actions[SPELL_1] = loadKey("keyboard_spell_1", SDLK_1); + _k_map.actions[SPELL_2] = loadKey("keyboard_spell_2", SDLK_2); + _k_map.actions[SPELL_3] = loadKey("keyboard_spell_3", SDLK_3); + _k_map.actions[SPELL_4] = loadKey("keyboard_spell_4", SDLK_4); + _k_map.actions[SPELL_5] = loadKey("keyboard_spell_5", SDLK_5); + _k_map.actions[SPELL_6] = loadKey("keyboard_spell_6", SDLK_6); + + _k_map.actions[USE] = loadKey("keyboard_use", SDLK_f); + + _c_map.actions[SPELL_WEAPON] = loadButton("controller_spell_weapon", SDL_CONTROLLER_BUTTON_RIGHTSHOULDER); + + _c_map.actions[SPELL_1] = loadButton("controller_spell_1", SDL_CONTROLLER_BUTTON_LEFTSHOULDER); + _c_map.actions[SPELL_2] = loadButton("controller_spell_2", SDL_CONTROLLER_BUTTON_A); + _c_map.actions[SPELL_3] = loadButton("controller_spell_3", SDL_CONTROLLER_BUTTON_DPAD_UP); + _c_map.actions[SPELL_4] = loadButton("controller_spell_4", SDL_CONTROLLER_BUTTON_DPAD_RIGHT); + _c_map.actions[SPELL_5] = loadButton("controller_spell_5", SDL_CONTROLLER_BUTTON_DPAD_DOWN); + _c_map.actions[SPELL_6] = loadButton("controller_spell_6", SDL_CONTROLLER_BUTTON_DPAD_LEFT); + + _c_map.actions[USE] = loadButton("controller_use", SDL_CONTROLLER_BUTTON_X); + + + for (auto& it : _player_active) + it = false; +} + +InputService::~InputService(void) { +} + +bool InputService::enable(Engine& engine) { + auto* sdl_ss = engine.tryService(); + if (!sdl_ss) { + LOG_ERROR("InputService requires SDLService in engine!"); + return false; + } + + _event_handle = sdl_ss->addEventHandler([this, &engine](const SDL_Event& e) -> bool { return this->handleSDL_Event(e, engine); }); + if (!_event_handle) { + LOG_ERROR("couldnt register event handler!"); + return false; + } + + _update_handle = engine.addFixedUpdate([this](MM::Engine&) { + for (size_t i = 0; i < 4; i++) { + if (!_player_active[i]) + continue; + + auto& p = _player[i]; + if (p.is_controller) { + } else { + updateKPlayerDirs(p); + } + } + }); + if (_update_handle.expired()) { + LOG_ERROR("couldnt register update handler!"); + return false; + } + _update_handle.lock()->priority = 1; // scene is 0 + + return true; +} + +void InputService::disable(Engine& engine) { + if (_event_handle) { + auto* sdl_ss = engine.tryService(); + if (!sdl_ss) { + // error? + return; + } + + sdl_ss->removeEventHandler(_event_handle); + } + + if (!_update_handle.expired()) { + engine.removeFixedUpdate(_update_handle); + _update_handle.reset(); + } + +} + +bool InputService::handleSDL_Event(const SDL_Event& e, MM::Engine& engine) { + ZoneScopedN("MM::InputService::handleSDL_Event"); + switch (e.type) { + case SDL_KEYDOWN: + { + auto p_id = findPlayerState(false, 0); + if (p_id == UINT16_MAX) + break; + + auto& p = _player[p_id]; + + input_action_t a = _k_map.get(e.key.keysym.sym); + if (a != INPUT_ACTION_MAX) { + p.active[a] = true; + return true; + } else if (e.key.keysym.sym == _k_map.move_up) { + p.u.keyboard.up = true; + //updateKPlayerDirs(p); + return true; + } else if (e.key.keysym.sym == _k_map.move_down) { + p.u.keyboard.down = true; + //updateKPlayerDirs(p); + return true; + } else if (e.key.keysym.sym == _k_map.move_left) { + p.u.keyboard.left = true; + //updateKPlayerDirs(p); + return true; + } else if (e.key.keysym.sym == _k_map.move_right) { + p.u.keyboard.right = true; + //updateKPlayerDirs(p); + return true; + } else if (e.key.keysym.sym == SDLK_ESCAPE) { + if (p.u.keyboard.view_mode == k_view_mode_t::MOUSE_RELATIVE) { + p.u.keyboard.mouse_button_down = false; + SDL_SetRelativeMouseMode(SDL_FALSE); + return true; + } + } + } + break; + case SDL_KEYUP: + { + auto p_id = findPlayerState(false, 0); + if (p_id == UINT16_MAX) + break; + + auto& p = _player[p_id]; + + input_action_t a = _k_map.get(e.key.keysym.sym); + if (a != INPUT_ACTION_MAX) { + p.active[a] = false; + return true; + } else if (e.key.keysym.sym == _k_map.move_up) { + p.u.keyboard.up = false; + //updateKPlayerDirs(p); + return true; + } else if (e.key.keysym.sym == _k_map.move_down) { + p.u.keyboard.down = false; + //updateKPlayerDirs(p); + return true; + } else if (e.key.keysym.sym == _k_map.move_left) { + p.u.keyboard.left = false; + //updateKPlayerDirs(p); + return true; + } else if (e.key.keysym.sym == _k_map.move_right) { + p.u.keyboard.right = false; + //updateKPlayerDirs(p); + return true; + } + } + break; + case SDL_MOUSEMOTION: + { + auto p_id = findPlayerState(false, 0); + if (p_id == UINT16_MAX) + break; + + auto* sdl_ss = engine.tryService(); + auto[win_x, win_y] = sdl_ss->getWindowSize(); + auto& p = _player[p_id]; + + if (p.u.keyboard.view_mode == k_view_mode_t::MOUSE_RELATIVE) { + p.u.keyboard.curr_x += e.motion.xrel; + p.u.keyboard.curr_y += e.motion.yrel; + } else { + p.u.keyboard.curr_x = e.motion.x; + p.u.keyboard.curr_y = e.motion.y; + } + + if (p.u.keyboard.view_mode == k_view_mode_t::MOUSE_RELATIVE_TO_CENTER) { + glm::vec2 mouse_vec{e.motion.x - win_x/2., -(e.motion.y - win_y/2.)}; + + //LOGIS("mouse vec x:" + std::to_string(mouse_vec.x) + " y:" + std::to_string(mouse_vec.y)); + + p.view_dir = glm::mod(glm::atan(mouse_vec.y, mouse_vec.x) + 2*glm::pi(), 2*glm::pi()); + p.view_force = glm::length(mouse_vec) * 0.01f; + } + } + break; + case SDL_MOUSEBUTTONDOWN: + { + auto p_id = findPlayerState(false, 0); + if (p_id == UINT16_MAX) + break; + + if (e.button.button == SDL_BUTTON_LEFT) { + auto& p = _player[p_id]; + if (p.u.keyboard.view_mode == k_view_mode_t::MOUSE_DRAG || p.u.keyboard.view_mode == k_view_mode_t::MOUSE_RELATIVE) { + p.u.keyboard.mouse_button_down = true; + if (p.u.keyboard.view_mode == k_view_mode_t::MOUSE_RELATIVE) { + SDL_SetHint(SDL_HINT_MOUSE_RELATIVE_MODE_WARP, "1"); // not needed if fullscreen + SDL_SetRelativeMouseMode(SDL_TRUE); + } + } + } + } + break; + case SDL_MOUSEBUTTONUP: + { + auto p_id = findPlayerState(false, 0); + if (p_id == UINT16_MAX) + break; + + if (e.button.button == SDL_BUTTON_LEFT) { + auto& p = _player[p_id]; + if (p.u.keyboard.view_mode == k_view_mode_t::MOUSE_DRAG) { + p.u.keyboard.mouse_button_down = false; + } + } + } + break; + case SDL_CONTROLLERAXISMOTION: + { + auto p_id = findPlayerState(true, e.caxis.which); + if (p_id == UINT16_MAX) + break; + + auto& p = _player[p_id]; + switch (e.caxis.axis) { + case SDL_CONTROLLER_AXIS_LEFTX: + p.u.controller.left_x = e.caxis.value; + updateCPlayerDirs(p); + return true; + case SDL_CONTROLLER_AXIS_LEFTY: + p.u.controller.left_y = e.caxis.value; + updateCPlayerDirs(p); + return true; + case SDL_CONTROLLER_AXIS_RIGHTX: + p.u.controller.right_x = e.caxis.value; + updateCPlayerDirs(p); + return true; + case SDL_CONTROLLER_AXIS_RIGHTY: + p.u.controller.right_y = e.caxis.value; + updateCPlayerDirs(p); + return true; + } + } + break; + case SDL_CONTROLLERBUTTONDOWN: + { + auto p_id = findPlayerState(true, e.caxis.which); + if (p_id == UINT16_MAX) + break; + + auto& p = _player[p_id]; + + input_action_t a = _c_map.get((SDL_GameControllerButton)e.cbutton.button); + if (a != INPUT_ACTION_MAX) { + p.active[a] = true; + return true; + } + } + break; + case SDL_CONTROLLERBUTTONUP: + { + auto p_id = findPlayerState(true, e.caxis.which); + if (p_id == UINT16_MAX) + break; + + auto& p = _player[p_id]; + + input_action_t a = _c_map.get((SDL_GameControllerButton)e.cbutton.button); + if (a != INPUT_ACTION_MAX) { + p.active[a] = false; + return true; + } + } + break; + } + + return false; +} + +Input::PlayerID InputService::addPlayer(bool keyboard, SDL_JoystickID controller_id) { + Input::PlayerID p_id = UINT16_MAX; + for (Input::PlayerID i = 0; i < max_player_id; i++) { + if (!_player_active[i]) { + p_id = i; + break; + } + } + + if (p_id == UINT16_MAX) { + LOG_ERROR("adding player, all player slots active"); + return p_id; + } + + LOG_DEBUG("added new player with id {}", p_id); + + _player_active[p_id] = true; + // TODO: reset player + + auto& p = _player[p_id]; + p.is_controller = !keyboard; + p.controller_instance_id = controller_id; + + // initialize player + if (p.is_controller) { + p.u.controller = {0, 0, 0, 0}; + } else { + p.u.keyboard = { + false, false, false, false, + false, + 0, 0, + 0, 0, + k_view_mode_t::NO_VIEW, + }; + } + + return p_id; +} + +bool InputService::get(Input::PlayerID id, InputService::input_action_t action) { + assert(id < max_player_id); + if (!_player_active[id]) { + LOG_WARN("use of inactive player {}", id); + return false; + } + + return _player[id].active[action]; +} + +const char* InputService::getKeyString(Input::PlayerID id, InputService::input_action_t action) { + assert(id < max_player_id); + if (!_player_active[id]) { + LOG_WARN("use of inactive player {}", id); + return "INACTIVE_PLAYER"; + } + + if (_player[id].is_controller) { + return SDL_GameControllerGetStringForButton(_c_map.actions[action]); + } else { + return SDL_GetKeyName(_k_map.actions[action]); + } + + //return _player[id].active[action]; + return "UNK"; +} + +float InputService::getMoveForce(Input::PlayerID id) { + assert(id < max_player_id); + if (!_player_active[id]) { + LOG_WARN("use of inactive player {}", id); + return 0.f; + } + + if (_player[id].move_force <= 0.01f) + return 0.f; + + return _player[id].move_force; + +} + +float InputService::getViewForce(Input::PlayerID id) { + assert(id < max_player_id); + if (!_player_active[id]) { + LOG_WARN("use of inactive player {}", id); + return 0.f; + } + + if (_player[id].view_force <= 0.01f) + return 0.f; + + return _player[id].view_force; + +} + +glm::vec2 InputService::getMoveVec(Input::PlayerID id) { + assert(id < max_player_id); + if (!_player_active[id]) { + LOG_WARN("use of inactive player {}", id); + return {0.f, 0.f}; + } + + return { + glm::cos(_player[id].move_dir) * getMoveForce(id), + -glm::sin(_player[id].move_dir) * getMoveForce(id) + }; +} + +glm::vec2 InputService::getViewVec(Input::PlayerID id) { + assert(id < max_player_id); + if (!_player_active[id]) { + LOG_WARN("use of inactive player {}", id); + return {0.f, 0.f}; + } + + return { + glm::cos(_player[id].view_dir), + -glm::sin(_player[id].view_dir) + }; +} + +float InputService::getMoveDir(Input::PlayerID id) { + assert(id < max_player_id); + if (!_player_active[id]) { + LOG_WARN("use of inactive player {}", id); + return 0.f; + } + + return glm::mod(_player[id].move_dir + 2*glm::pi(), 2*glm::pi()); +} + +float InputService::getViewDir(Input::PlayerID id) { + assert(id < max_player_id); + if (!_player_active[id]) { + LOG_WARN("use of inactive player {}", id); + return 0.f; + } + + return glm::mod(_player[id].view_dir + 2*glm::pi(), 2*glm::pi()); +} + +// TODO: use config service +SDL_Keycode InputService::loadKey(const std::string& name, const SDL_Keycode default_key) { + (void) name; + //auto k = SDL_GetKeyFromName(_pref->get(name.c_str(), SDL_GetKeyName(default_key)).c_str()); + auto k = SDLK_UNKNOWN; + if (k == SDLK_UNKNOWN) { + //_pref->set(name.c_str(), SDL_GetKeyName(default_key)); + return default_key; + } + + return k; + +} + +// TODO: use config service +SDL_GameControllerButton InputService::loadButton(const std::string& name, const SDL_GameControllerButton default_button) { + (void) name; + //auto b = SDL_GameControllerGetButtonFromString(_pref->get(name.c_str(), SDL_GameControllerGetStringForButton(default_button)).c_str()); + auto b = SDL_CONTROLLER_BUTTON_INVALID; + if (b == SDL_CONTROLLER_BUTTON_INVALID) { + //_pref->set(name.c_str(), SDL_GameControllerGetStringForButton(default_button)); + return default_button; + } + + return b; + +} + +bool InputService::setKPlayerViewMode(Input::PlayerID id, k_view_mode_t mode) { + if (!_player_active[id]) { + return false; + } + + if (_player[id].is_controller) { + return false; + } + + _player[id].u.keyboard.view_mode = mode; + + return true; +} + +Input::PlayerID InputService::findPlayerState(bool controller, SDL_JoystickID controller_id) { + for (Input::PlayerID id = 0; id < max_player_id; id++) { + if (!_player_active[id]) + continue; + + auto& it = _player[id]; + if (it.is_controller == controller && it.controller_instance_id == controller_id) { + return id; + } + } + + return UINT16_MAX; +} + +void InputService::updateKPlayerDirs(player_input_action_state& p) { + int x = 0; + int y = 0; + + if (p.u.keyboard.right) + x++; + if (p.u.keyboard.left) + x--; + if (p.u.keyboard.up) + y--; + if (p.u.keyboard.down) + y++; + + if (x == -1 && y == -1) + p.move_dir = (glm::pi()*3.f)/4.f; + else if (x == 0 && y == -1) + p.move_dir = glm::pi()/2.f; + else if (x == 1 && y == -1) + p.move_dir = glm::pi()/4.f; + else if (x == -1 && y == 0) + p.move_dir = glm::pi(); + else if (x == 1 && y == 0) + p.move_dir = 0.f; + else if (x == -1 && y == 1) + p.move_dir = -(glm::pi()*3.f)/4.f; + else if (x == 0 && y == 1) + p.move_dir = -glm::pi()/2.f; + else if (x == 1 && y == 1) + p.move_dir = -glm::pi()/4.f; + + //p.view_dir = 0.f; // TODO: view + + if (!x && !y) + p.move_force = 0.f; + else + p.move_force = 1.f; + + glm::vec2 mouse_delta; + if (p.u.keyboard.view_mode == k_view_mode_t::MOUSE_RELATIVE) { + mouse_delta = {-p.u.keyboard.curr_x, p.u.keyboard.curr_y}; // invert + p.u.keyboard.curr_x = 0; + p.u.keyboard.curr_y = 0; + } else { + mouse_delta = { + p.u.keyboard.curr_x - p.u.keyboard.last_x, + -(p.u.keyboard.curr_y - p.u.keyboard.last_y) + }; + } + + //std::cout << "got mouse delta: " << mouse_delta.x << " " << mouse_delta.y << "\n"; + + if (p.u.keyboard.view_mode == k_view_mode_t::MOUSE_DRAG || p.u.keyboard.view_mode == k_view_mode_t::MOUSE_RELATIVE) { + if (p.u.keyboard.mouse_button_down) { + p.view_dir = glm::mod(glm::atan(mouse_delta.y, mouse_delta.x) + glm::pi(), glm::two_pi()); + p.view_force = glm::length(mouse_delta) * 0.08f; + } else { + p.view_force = 0.f; + } + } + + // new gos old + p.u.keyboard.last_x = p.u.keyboard.curr_x; + p.u.keyboard.last_y = p.u.keyboard.curr_y; +} + +void InputService::updateCPlayerDirs(player_input_action_state& p) { + p.move_dir = glm::atan(p.u.controller.left_y / -32768.f, p.u.controller.left_x / 32767.f); + p.view_dir = glm::atan(p.u.controller.right_y / -32768.f, p.u.controller.right_x / 32767.f); + + p.move_force = (glm::abs(p.u.controller.left_x * glm::cos(p.move_dir)) + glm::abs(p.u.controller.left_y * glm::sin(p.move_dir)) + 0.5f) / 32768.f; + if (p.move_force > 1.f) { + p.move_force = 1.f; + } else if (p.move_force < -1.f) { + p.move_force = -1.f; + } + + p.view_force = (glm::abs(p.u.controller.right_x * glm::cos(p.view_dir)) + glm::abs(p.u.controller.right_y * glm::sin(p.view_dir)) + 0.5f) / 32768.f; + p.view_force = glm::clamp(p.view_force, -1.f, 1.f); +} + +} // namespace MM::Services + diff --git a/framework/input/src/mm/services/input_service.hpp b/framework/input/src/mm/services/input_service.hpp new file mode 100644 index 0000000..591be15 --- /dev/null +++ b/framework/input/src/mm/services/input_service.hpp @@ -0,0 +1,153 @@ +#pragma once + +#include + +#include + +#include + +#include + +namespace MM::Input { + using PlayerID = uint16_t; +} // MM::Input + +namespace MM::Services { + + class InputService : public Service { + public: + // TDO: rework + enum input_action_t { + SPELL_WEAPON, + SPELL_1, + SPELL_2, + SPELL_3, + SPELL_4, + SPELL_5, + SPELL_6, + USE, + INPUT_ACTION_MAX + }; + + enum class k_view_mode_t { + NO_VIEW, // disables any kplayer view processing + USE_ARROWS, // TODO: implement + MOUSE_DRAG, + MOUSE_RELATIVE, // TODO: implement + MOUSE_RELATIVE_TO_CENTER, // TODO: refactor + }; + + struct keyboard_mapping { + SDL_Keycode move_up; + SDL_Keycode move_down; + SDL_Keycode move_left; + SDL_Keycode move_right; + + SDL_Keycode actions[INPUT_ACTION_MAX]; + + input_action_t get(SDL_Keycode key); + }; + + struct controller_mapping { + SDL_GameControllerButton actions[INPUT_ACTION_MAX]; + + input_action_t get(SDL_GameControllerButton key); + }; + + private: + struct player_input_action_state { + + bool is_controller; + SDL_JoystickID controller_instance_id; + union { + struct { + int16_t left_x; + int16_t left_y; + + int16_t right_x; + int16_t right_y; + } controller; + struct { + bool up; + bool down; + bool left; + bool right; + + bool mouse_button_down; // for MOUSE_DRAG + + int32_t last_x, last_y; + int32_t curr_x, curr_y; + + k_view_mode_t view_mode; + } keyboard; + } u; // union + + bool active[INPUT_ACTION_MAX] = {false}; + + float move_force = 0.f; + float move_dir = 0.f; + float view_force = 0.f; + float view_dir = 0.f; + }; + + public: // HACK: proper methods + keyboard_mapping _k_map; + controller_mapping _c_map; + + private: + // TODO: max player + static const Input::PlayerID max_player_id = 4; + std::array _player; + std::array _player_active; + + public: + InputService(void); + ~InputService(void); + + private: + SDLService::EventHandlerHandle _event_handle = nullptr; + MM::Engine::FunctionDataHandle _update_handle; + + + public: + bool enable(Engine& engine) override; + void disable(Engine& engine) override; + + const char* name(void) override { return "InputService"; } + + // returns true if event was relevant + bool handleSDL_Event(const SDL_Event& e, MM::Engine& engine); + + Input::PlayerID addPlayer(bool keyboard, SDL_JoystickID controller_id); + + bool setKPlayerViewMode(Input::PlayerID id, k_view_mode_t mode); + + // returns UINT16_MAX on error + Input::PlayerID findPlayerState(bool controller, SDL_JoystickID controller_id); + + // check if action is set + bool get(Input::PlayerID id, input_action_t action); + const char* getKeyString(Input::PlayerID id, input_action_t action); + + float getMoveForce(Input::PlayerID id); + float getViewForce(Input::PlayerID id); + + glm::vec2 getMoveVec(Input::PlayerID id); + glm::vec2 getViewVec(Input::PlayerID id); + + // returns values [0, 2PI) + float getMoveDir(Input::PlayerID id); + + // returns values [0, 2PI) + float getViewDir(Input::PlayerID id); + + private: + SDL_Keycode loadKey(const std::string& name, const SDL_Keycode default_key); + SDL_GameControllerButton loadButton(const std::string& name, const SDL_GameControllerButton default_button); + + + void updateKPlayerDirs(player_input_action_state& p); + void updateCPlayerDirs(player_input_action_state& p); + }; +} // namespace MM::Services + diff --git a/framework/input/test/CMakeLists.txt b/framework/input/test/CMakeLists.txt new file mode 100644 index 0000000..b77c2f6 --- /dev/null +++ b/framework/input/test/CMakeLists.txt @@ -0,0 +1,33 @@ +add_executable(input_service_test + start_test.cpp +) + +target_include_directories(input_service_test PRIVATE ".") + +target_link_libraries(input_service_test + input_service + sdl_service + gtest_main +) + +add_test(NAME input_service_test COMMAND input_service_test) + +###################### + +add_executable(input_service_visualizer_test + input_visualizer.cpp +) + +target_include_directories(input_service_visualizer_test PRIVATE ".") + +target_link_libraries(input_service_visualizer_test + input_service + sdl_service + imgui_service + imgui_render_task + imgui_tools + gtest_main +) + +add_test(NAME input_service_visualizer_test COMMAND input_service_visualizer_test) + diff --git a/framework/input/test/input_visualizer.cpp b/framework/input/test/input_visualizer.cpp new file mode 100644 index 0000000..7effe3c --- /dev/null +++ b/framework/input/test/input_visualizer.cpp @@ -0,0 +1,162 @@ +#include + +#include + +#include +#include +#include +#include +#include + +#include + +#include + +#include + + +class InputVisualizer : public MM::Services::Service { + private: + MM::Input::PlayerID _player_id; + MM::Engine::FunctionDataHandle _render_handle; + MM::Services::SDLService::EventHandlerHandle _event_handle = nullptr; + + public: + bool enable(MM::Engine& engine) override { + _player_id = UINT16_MAX; + + auto* sdl_ss = engine.tryService(); + if (sdl_ss) { + _event_handle = sdl_ss->addEventHandler([this, &engine](const SDL_Event& e) -> bool { + return this->handleEvent(e, engine); + }); + } else { + return false; + } + + + for (int i = 0; i < SDL_NumJoysticks(); i++) { + if (SDL_IsGameController(i)) { + std::cerr << "got controller " << i << "\n"; + SDL_GameControllerOpen(i); + } + } + + _render_handle = engine.addUpdate([this](MM::Engine& e){ this->renderImGui(e); }); + + return true; + } + + void disable(MM::Engine& engine) override { + if (!_render_handle.expired()) { + engine.removeUpdate(_render_handle); + _render_handle.reset(); + } + + } + + private: + void renderImGui(MM::Engine& engine) { + ImGui::Begin("InputVisualizer", NULL, ImGuiWindowFlags_AlwaysAutoResize); + if (_player_id == UINT16_MAX) { + ImGui::Text("press [SPACE](keyboard) or [A](controller)"); + } else { + auto* input = engine.tryService(); + ImGui::Text("InputAction active:"); + + ImGui::Value("SPELL_WEAPON", input->get(_player_id, MM::Services::InputService::SPELL_WEAPON)); + ImGui::Value("SPELL_1", input->get(_player_id, MM::Services::InputService::SPELL_1)); + ImGui::Value("SPELL_2", input->get(_player_id, MM::Services::InputService::SPELL_2)); + ImGui::Value("SPELL_3", input->get(_player_id, MM::Services::InputService::SPELL_3)); + ImGui::Value("SPELL_4", input->get(_player_id, MM::Services::InputService::SPELL_4)); + ImGui::Value("SPELL_5", input->get(_player_id, MM::Services::InputService::SPELL_5)); + ImGui::Value("SPELL_6", input->get(_player_id, MM::Services::InputService::SPELL_6)); + ImGui::Value("USE", input->get(_player_id, MM::Services::InputService::USE)); + + ImGui::Separator(); + + { + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + + static ImVec4 col = ImVec4(1.0f, 1.0f, 0.4f, 1.0f); + const ImU32 col32 = ImColor(col); + + const ImVec2 p = ImGui::GetCursorScreenPos(); + + float scaling = 50.f; + float x = p.x + scaling; + float y = p.y + scaling; + float spacing = 8.0f; + + draw_list->AddCircleFilled(ImVec2(x, y), scaling, ImColor(0.2f, 0.2f, 0.2f, 0.7f), 24); + auto move_vec = input->getMoveVec(_player_id); + draw_list->AddLine(ImVec2(x, y), ImVec2(x + move_vec.x * scaling, y + move_vec.y * scaling), col32, 3.f); + + x += scaling*2 + spacing; + + draw_list->AddCircleFilled(ImVec2(x, y), scaling, ImColor(0.2f, 0.2f, 0.2f, 0.7f), 24); + auto view_vec = input->getViewVec(_player_id); + draw_list->AddLine(ImVec2(x, y), ImVec2(x + view_vec.x * scaling, y + view_vec.y * scaling), col32, 3.f); + + ImGui::Dummy(ImVec2(scaling*4 + spacing, scaling*2)); + } + } + ImGui::End(); + } + + private: + bool handleEvent(const SDL_Event& e, MM::Engine& engine) { + auto* input = engine.tryService(); + if (_player_id == UINT16_MAX) { + if (e.type == SDL_KEYDOWN && e.key.keysym.sym == SDLK_SPACE) { + _player_id = input->addPlayer(true, 0); + return true; + } else if (e.type == SDL_CONTROLLERDEVICEADDED) { + SDL_GameControllerOpen(e.cdevice.which); + std::cout << "added: " << e.cdevice.which << std::endl; + return true; + } else if (e.type == SDL_CONTROLLERBUTTONDOWN && e.cbutton.button == SDL_CONTROLLER_BUTTON_A) { + _player_id = input->addPlayer(false, e.cbutton.which); + return true; + } + } + return false; + } +}; + +TEST(input_service, input_visualizer) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("service_input_visualizer_test", 1280, 720); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + { + MM::ImGuiSimpleFPSOverlay fps_overlay; + + engine.addUpdate([&](MM::Engine&) { + fps_overlay.renderImGui(); + } + ); + + engine.run(); + } + + sdl_ss.destroyWindow(); +} + diff --git a/framework/input/test/start_test.cpp b/framework/input/test/start_test.cpp new file mode 100644 index 0000000..89091f0 --- /dev/null +++ b/framework/input/test/start_test.cpp @@ -0,0 +1,221 @@ +#include + +#include + +#include +#include + +TEST(input_service, add_en_dis) { + MM::Engine engine; + + // sdl dep + { + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + } + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* input_service_ptr = engine.tryService(); + ASSERT_NE(input_service_ptr, nullptr); + + //// + + engine.disableService(); + + engine.disableService(); +} + +TEST(input_service, initial_error) { + MM::Engine engine; + + // sdl dep + { + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + } + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* input_service_ptr = engine.tryService(); + ASSERT_NE(input_service_ptr, nullptr); + + auto& input = *input_service_ptr; + + // actions (spells) + { + for (unsigned int action = 0; action < MM::Services::InputService::INPUT_ACTION_MAX; action++) { + ASSERT_FALSE(input.get(0, (MM::Services::InputService::input_action_t)action)); + } + + ASSERT_FALSE(input.get(2, MM::Services::InputService::SPELL_1)); + } + + // move and view + { + { + auto m = input.getMoveVec(0); + ASSERT_EQ(m.x, 0.f); + ASSERT_EQ(m.y, 0.f); + } + + { + auto v = input.getViewVec(0); + ASSERT_EQ(v.x, 0.f); + ASSERT_EQ(v.y, 0.f); + } + } +} + +TEST(input_service, adding_players) { + MM::Engine engine; + + // sdl dep + { + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + } + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* input_service_ptr = engine.tryService(); + ASSERT_NE(input_service_ptr, nullptr); + + auto& input = *input_service_ptr; + + MM::Input::PlayerID p1_id = input.addPlayer(true, 0); + ASSERT_NE(p1_id, UINT16_MAX); + + { + // TODO: check + //ASSERT_EQ(input.addPlayer(true, 0), UINT16_MAX); + } + + // actions (spells) + { + for (unsigned int action = 0; action < MM::Services::InputService::INPUT_ACTION_MAX; action++) { + ASSERT_FALSE(input.get(p1_id, (MM::Services::InputService::input_action_t)action)); + } + } + + // move and view + { + { + auto m = input.getMoveVec(p1_id); + ASSERT_EQ(m.x, 0.f); + ASSERT_EQ(m.y, 0.f); + } + + { + // never (0, 0) + auto v = input.getViewVec(p1_id); + ASSERT_EQ(v.x, 1.f); + ASSERT_EQ(v.y, 0.f); + } + } +} + +TEST(input_service, basic_handling_keyboard) { + MM::Engine engine; + + // sdl dep + { + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + } + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* input_service_ptr = engine.tryService(); + ASSERT_NE(input_service_ptr, nullptr); + + auto& input = *input_service_ptr; + + MM::Input::PlayerID p_id = input.addPlayer(true, 0); + ASSERT_NE(p_id, UINT16_MAX); + + // actions (spells) + { + for (unsigned int action = 0; action < MM::Services::InputService::INPUT_ACTION_MAX; action++) { + ASSERT_FALSE(input.get(p_id, (MM::Services::InputService::input_action_t)action)); + } + + // forging sdl event spell 1 + { + SDL_Event tmp_e; + tmp_e.key.keysym.sym = SDLK_1; + tmp_e.type = SDL_KEYDOWN; + + ASSERT_TRUE(input.handleSDL_Event(tmp_e, engine)); + } + + + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_WEAPON)); + ASSERT_TRUE(input.get(p_id, MM::Services::InputService::SPELL_1)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_2)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_3)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_4)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_5)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_6)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::USE)); + + // forging sdl event spell weapon + { + SDL_Event tmp_e; + tmp_e.key.keysym.sym = SDLK_SPACE; + tmp_e.type = SDL_KEYDOWN; + + ASSERT_TRUE(input.handleSDL_Event(tmp_e, engine)); + } + + ASSERT_TRUE(input.get(p_id, MM::Services::InputService::SPELL_WEAPON)); + ASSERT_TRUE(input.get(p_id, MM::Services::InputService::SPELL_1)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_2)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_3)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_4)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_5)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_6)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::USE)); + + // forging sdl event spell 1 end + { + SDL_Event tmp_e; + tmp_e.key.keysym.sym = SDLK_1; + tmp_e.type = SDL_KEYUP; + + ASSERT_TRUE(input.handleSDL_Event(tmp_e, engine)); + } + + + ASSERT_TRUE(input.get(p_id, MM::Services::InputService::SPELL_WEAPON)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_1)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_2)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_3)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_4)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_5)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::SPELL_6)); + ASSERT_FALSE(input.get(p_id, MM::Services::InputService::USE)); + } +} + +int main(int argc, char** argv) { + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} + diff --git a/framework/logger/CMakeLists.txt b/framework/logger/CMakeLists.txt new file mode 100644 index 0000000..b6011bd --- /dev/null +++ b/framework/logger/CMakeLists.txt @@ -0,0 +1,23 @@ +cmake_minimum_required(VERSION 3.2) +project(logger CXX) + +file(GLOB_RECURSE CPP_FILES src/*.cpp) +file(GLOB_RECURSE HPP_FILES src/*.hpp) + +add_library(logger ${CPP_FILES} ${HPP_FILES}) + +target_include_directories(logger PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +#target_compile_definitions(logger PUBLIC SPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_TRACE) +target_compile_definitions(logger PUBLIC SPDLOG_ACTIVE_LEVEL=0) + +target_link_libraries(logger + spdlog + tracy_client +) + +#if (BUILD_TESTING) + #add_subdirectory(test) +#endif() + + diff --git a/framework/logger/src/mm/logger.cpp b/framework/logger/src/mm/logger.cpp new file mode 100644 index 0000000..db2244e --- /dev/null +++ b/framework/logger/src/mm/logger.cpp @@ -0,0 +1,85 @@ +#include "./logger.hpp" + +#include +#include + +#include "./tracy_sink.hpp" +#include "spdlog/spdlog.h" + +namespace MM { + bool Logger::initialized = false; + + spdlog::sink_ptr Logger::_sink_console = nullptr; + spdlog::sink_ptr Logger::_sink_file = nullptr; + +#ifdef TRACY_ENABLE + spdlog::sink_ptr Logger::_sink_tracy = nullptr; +#endif + + + void Logger::init(void) { + _sink_console = std::make_shared(); + _sink_console->set_level(spdlog::level::info); + //console_sink->set_pattern("[multi_sink_example] [%^%l%$] %v"); + + _sink_file = std::make_shared("mm_log.txt", true); + _sink_file->set_level(spdlog::level::trace); + +#ifdef TRACY_ENABLE + _sink_tracy = std::make_shared(); + _sink_tracy->set_level(spdlog::level::trace); +#endif + + spdlog::set_default_logger( + std::make_shared("MushMachine", spdlog::sinks_init_list( + {_sink_console, _sink_file +#ifdef TRACY_ENABLE + , _sink_tracy +#endif + } + )) + ); + + spdlog::default_logger_raw()->set_level(spdlog::level::trace); + + initialized = true; + } + + void Logger::initSectionLogger(const char* section, bool log_to_stdio) { + if (spdlog::get(section)) { // already present + SPDLOG_WARN("tried to reinit '{}' section logger!", section); + return; + } + + if (log_to_stdio) { + auto section_logger = std::make_shared( + section, spdlog::sinks_init_list({ + _sink_console, + _sink_file +#ifdef TRACY_ENABLE + , _sink_tracy +#endif + }) + ); + + section_logger->set_level(spdlog::level::trace); + + spdlog::register_logger(section_logger); + } else { // TODO: make better + auto section_logger = std::make_shared( + section, spdlog::sinks_init_list({ + _sink_file +#ifdef TRACY_ENABLE + , _sink_tracy +#endif + }) + ); + + section_logger->set_level(spdlog::level::trace); + + spdlog::register_logger(section_logger); + } + } + +} + diff --git a/framework/logger/src/mm/logger.hpp b/framework/logger/src/mm/logger.hpp new file mode 100644 index 0000000..766e15d --- /dev/null +++ b/framework/logger/src/mm/logger.hpp @@ -0,0 +1,56 @@ +#pragma once + +#define SPDLOG_ACTIVE_LEVEL 0 + +#include +#include + +// thos are helpers so you can do "#define LOG_ERROR(...) __LOG_ERROR("Engine", ...) +#define __LOG_CRIT(s, ...) SPDLOG_LOGGER_CRITICAL( spdlog::get(s), __VA_ARGS__) +#define __LOG_ERROR(s, ...) SPDLOG_LOGGER_ERROR( spdlog::get(s), __VA_ARGS__) +#define __LOG_WARN(s, ...) SPDLOG_LOGGER_WARN( spdlog::get(s), __VA_ARGS__) +#define __LOG_INFO(s, ...) SPDLOG_LOGGER_INFO( spdlog::get(s), __VA_ARGS__) +#define __LOG_DEBUG(s, ...) SPDLOG_LOGGER_DEBUG( spdlog::get(s), __VA_ARGS__) +#define __LOG_TRACE(s, ...) SPDLOG_LOGGER_TRACE( spdlog::get(s), __VA_ARGS__) + +// copy paste me to start +//#define LOG_CRIT(...) __LOG_CRIT( "Engine", __VA_ARGS__) +//#define LOG_ERROR(...) __LOG_ERROR("Engine", __VA_ARGS__) +//#define LOG_WARN(...) __LOG_WARN( "Engine", __VA_ARGS__) +//#define LOG_INFO(...) __LOG_INFO( "Engine", __VA_ARGS__) +//#define LOG_DEBUG(...) __LOG_DEBUG("Engine", __VA_ARGS__) +//#define LOG_TRACE(...) __LOG_TRACE("Engine", __VA_ARGS__) + +// copy paste me to end if in header +//#undef LOG_CRIT +//#undef LOG_ERROR +//#undef LOG_WARN +//#undef LOG_INFO +//#undef LOG_DEBUG +//#undef LOG_TRACE + + +// DONT USE! this exists only for legacy reasons! +#define LOG(s, x) SPDLOG_WARN("[!][{}] {}", s, x) +//#define LOG(s, x) MM::Logger::log(MM::Logger::file_name(__FILE__), __LINE__, s, x) + +namespace MM { + + struct Logger { + static bool initialized; + + //static std::shared_ptr _sink_console; + static spdlog::sink_ptr _sink_console; + static spdlog::sink_ptr _sink_file; + +#ifdef TRACY_ENABLE + static spdlog::sink_ptr _sink_tracy; +#endif + + static void init(void); + + static void initSectionLogger(const char* section, bool log_to_stdio = true); + }; + +} // namespace MM + diff --git a/framework/logger/src/mm/tracy_sink.hpp b/framework/logger/src/mm/tracy_sink.hpp new file mode 100644 index 0000000..b19fcd5 --- /dev/null +++ b/framework/logger/src/mm/tracy_sink.hpp @@ -0,0 +1,56 @@ +#pragma once + +#ifdef TRACY_ENABLE + +#include +#include + +namespace spdlog::sinks { + +static uint32_t level_to_color(spdlog::level::level_enum level) { + switch (level) { + case level::level_enum::trace: return 0xFFFFFF; + case level::level_enum::debug: return 0x1111FF; + case level::level_enum::info: return 0x11FF11; + case level::level_enum::warn: return 0xFFFF11; + case level::level_enum::err: return 0xFF1111; + case level::level_enum::critical: return 0xFF0000; + default: return 0xffffff; + } +} + +template +class tracy_sink : public ::spdlog::sinks::base_sink { + public: + tracy_sink(void) { + this->set_pattern("[%n] [%l] %v"); + } + protected: + void sink_it_(const spdlog::details::log_msg& msg) override { + + // log_msg is a struct containing the log entry info like level, timestamp, thread id etc. + // msg.raw contains pre formatted log + + // If needed (very likely but not mandatory), the sink formats the message before sending it to its final destination: + spdlog::memory_buf_t formatted; + base_sink::formatter_->format(msg, formatted); + auto string = fmt::to_string(formatted); + TracyMessageC(string.data(), string.size(), level_to_color(msg.level)) + } + + void flush_() override { + } +}; + +} // spdlog::sinks + +#include +#include + +namespace spdlog::sinks { + using tracy_sink_mt = tracy_sink; + using tracy_sink_st = tracy_sink; +} // spdlog::sinks + +#endif // TRACY_ENABLE + diff --git a/framework/opengl_primitives/CMakeLists.txt b/framework/opengl_primitives/CMakeLists.txt new file mode 100644 index 0000000..f2aa1eb --- /dev/null +++ b/framework/opengl_primitives/CMakeLists.txt @@ -0,0 +1,35 @@ +cmake_minimum_required(VERSION 3.2) +project(opengl_primitives CXX) + +file(GLOB_RECURSE CPP_FILES src/*.cpp) +file(GLOB_RECURSE HPP_FILES src/*.hpp) + +add_library(opengl_primitives ${CPP_FILES} ${HPP_FILES}) + +target_include_directories(opengl_primitives PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(opengl_primitives + glm + stb_image + + logger + resource_manager + filesystem_service +) + +if(MM_OPENGL_3_GLES) + target_link_libraries(opengl_primitives "GL") # TODO: make more specific + if(EMSCRIPTEN) + set_target_properties(opengl_primitives PROPERTIES COMPILE_FLAGS "-s USE_WEBGL2=1") + set_target_properties(opengl_primitives PROPERTIES LINK_FLAGS "-s USE_WEBGL2=1") + endif() + +else() + target_link_libraries(opengl_primitives glad) +endif() + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + + diff --git a/framework/opengl_primitives/src/mm/opengl/buffer.cpp b/framework/opengl_primitives/src/mm/opengl/buffer.cpp new file mode 100644 index 0000000..3042fbe --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/buffer.cpp @@ -0,0 +1,32 @@ +// +// Created by FlaXxy on 21.05.2018. +// + +#include "./buffer.hpp" + +namespace MM::OpenGL { + +Buffer::Buffer(const void* data, std::size_t size, GLenum usage) : _size(size) { + glGenBuffers(1, &_handle); + glBindBuffer(GL_ARRAY_BUFFER, _handle); + glBufferData(GL_ARRAY_BUFFER, size, data, usage); +} + +Buffer::~Buffer(void) { + glDeleteBuffers(1,&_handle); +} + +void Buffer::bind(GLenum target) const { + glBindBuffer(target, _handle); +} + +void Buffer::unbind(GLenum target) const { + glBindBuffer(target, 0); +} + +std::size_t Buffer::getSize(void) const { + return _size; +} + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/buffer.hpp b/framework/opengl_primitives/src/mm/opengl/buffer.hpp new file mode 100644 index 0000000..6491d30 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/buffer.hpp @@ -0,0 +1,35 @@ +// +// Created by FlaXxy on 21.05.2018. +// + +#pragma once + +#ifdef MM_OPENGL_3_GLES + #include +#else + #include +#endif + +#include +#include // size_t + +namespace MM::OpenGL { + /** + * A fixed size buffer + */ + class Buffer { + private: + GLuint _handle = 0; + std::size_t _size = 0; + + public: + Buffer(const void* data, std::size_t size, GLenum usage); + ~Buffer(void); + + void bind(GLenum target) const; + void unbind(GLenum target) const; + + std::size_t getSize(void) const; + }; +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/components/texture.hpp b/framework/opengl_primitives/src/mm/opengl/components/texture.hpp new file mode 100644 index 0000000..6096bdb --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/components/texture.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include "../texture.hpp" + +namespace MM::Components::OpenGL { + + struct Texture { + MM::OpenGL::Texture::handle tex; + }; + +} // MM::Components::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/fbo_builder.cpp b/framework/opengl_primitives/src/mm/opengl/fbo_builder.cpp new file mode 100644 index 0000000..91ac4f8 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/fbo_builder.cpp @@ -0,0 +1,73 @@ +#include "./fbo_builder.hpp" + +namespace MM::OpenGL { + +FBOBuilder::FBOBuilder(void) { +} + +FBOBuilder::~FBOBuilder(void) { +} + +FBOBuilder FBOBuilder::start(void) { + FBOBuilder fbob{}; + + fbob._fbo.reset(new FrameBufferObject()); + fbob._fbo->bind(fbob._currTarget); + + return fbob; +} + +std::shared_ptr FBOBuilder::finish(void) { + if (glCheckFramebufferStatus(GL_FRAMEBUFFER) == GL_FRAMEBUFFER_COMPLETE) { + return _fbo; + } + + return nullptr; +} + +FBOBuilder& FBOBuilder::setTarget(FrameBufferObject::Target target) { + _currTarget = target; + _fbo->bind(target); + + return *this; +} + +FBOBuilder& FBOBuilder::attachTexture(std::shared_ptr tex, GLuint attachment_type) { + GLenum target; + switch (_currTarget) { + case FrameBufferObject::Target::RW: + target = GL_FRAMEBUFFER; + break; + case FrameBufferObject::Target::R: + target = GL_READ_FRAMEBUFFER; + break; + case FrameBufferObject::Target::W: + target = GL_DRAW_FRAMEBUFFER; + break; + } + + //glFramebufferTexture2D(target, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex->getHandle(), 0); + glFramebufferTexture2D(target, attachment_type, GL_TEXTURE_2D, tex->getHandle(), 0); + _fbo->_texAttachments.push_back(tex); // keep a ref at the fbo + + return *this; +} + +FBOBuilder& FBOBuilder::setResize(bool enable) { + _fbo->_resize = enable; + + return *this; +} + +FBOBuilder& FBOBuilder::setResizeFactors(float width, float height) { + assert(width > 0.f); + assert(height > 0.f); + + _fbo->_resize_factor_width = width; + _fbo->_resize_factor_height = height; + + return *this; +} + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/fbo_builder.hpp b/framework/opengl_primitives/src/mm/opengl/fbo_builder.hpp new file mode 100644 index 0000000..44a5e4a --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/fbo_builder.hpp @@ -0,0 +1,34 @@ +#pragma once + +#include + +#include "./frame_buffer_object.hpp" + +#include "./texture.hpp" + +namespace MM::OpenGL { + + class FBOBuilder { + private: + std::shared_ptr _fbo; + FrameBufferObject::Target _currTarget = FrameBufferObject::Target::RW; + + private: + FBOBuilder(void); + + public: + ~FBOBuilder(void); + FBOBuilder& operator=(FBOBuilder&) = delete; + + static FBOBuilder start(void); + std::shared_ptr finish(void); + + FBOBuilder& setTarget(FrameBufferObject::Target target); + + FBOBuilder& attachTexture(std::shared_ptr tex, GLuint attachment_type = GL_COLOR_ATTACHMENT0); + FBOBuilder& setResize(bool enable = true); + FBOBuilder& setResizeFactors(float width = 1.f, float height = 1.f); + }; + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/frame_buffer_object.cpp b/framework/opengl_primitives/src/mm/opengl/frame_buffer_object.cpp new file mode 100644 index 0000000..f86460a --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/frame_buffer_object.cpp @@ -0,0 +1,36 @@ +#include "./frame_buffer_object.hpp" + +namespace MM::OpenGL { + +FrameBufferObject::FrameBufferObject(void) { + glGenFramebuffers(1, &_fboID); +} + +FrameBufferObject::~FrameBufferObject(void) { + glDeleteFramebuffers(1, &_fboID); +} + +void FrameBufferObject::bind(Target target) const { + switch (target) { + case Target::RW: + glBindFramebuffer(GL_FRAMEBUFFER, _fboID); + break; + case Target::R: + glBindFramebuffer(GL_READ_FRAMEBUFFER, _fboID); + break; + case Target::W: + glBindFramebuffer(GL_DRAW_FRAMEBUFFER, _fboID); + break; + } +} + +void FrameBufferObject::clear(float r, float g, float b, float a, GLbitfield target_mask) { + bind(FrameBufferObject::RW); + + glClearColor(r, g, b, a); + //glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); + glClear(target_mask); +} + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/frame_buffer_object.hpp b/framework/opengl_primitives/src/mm/opengl/frame_buffer_object.hpp new file mode 100644 index 0000000..1a6b068 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/frame_buffer_object.hpp @@ -0,0 +1,52 @@ +#pragma once + +#include +#include +#include + +#ifdef MM_OPENGL_3_GLES + #include +#else + #include +#endif + +namespace MM::Services { + class OpenGLRenderer; +} // fwd + +namespace MM::OpenGL { + + class Texture; + + class FrameBufferObject { + friend class FBOBuilder; + friend class MM::Services::OpenGLRenderer; + + private: + uint32_t _fboID; + + bool _resize = true; + float _resize_factor_width = 1.f; + float _resize_factor_height = 1.f; + + public: + std::vector> _texAttachments; + + private: + FrameBufferObject(void); + + public: + ~FrameBufferObject(void); + + enum Target { + R = 1 << 0, + W = 1 << 1, + RW = R | W + }; + void bind(Target target) const; + //void unbind(void) const; + + void clear(float r, float g, float b, float a, GLbitfield target_mask = GL_COLOR_BUFFER_BIT); + }; +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/instance_buffer.hpp b/framework/opengl_primitives/src/mm/opengl/instance_buffer.hpp new file mode 100644 index 0000000..026b568 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/instance_buffer.hpp @@ -0,0 +1,81 @@ +// +// Created by FlaXxy on 25.08.2018. +// + +#pragma once + +#ifdef MM_OPENGL_3_GLES + #include +#else + #include +#endif + +#include +//#include + +namespace MM::OpenGL { + + template + class InstanceBuffer { + private: + GLuint _handle; + size_t _size; + + public: + explicit InstanceBuffer(void) : _handle(0), _size(0) { + glGenBuffers(1, &_handle); + } + + ~InstanceBuffer(void) { + glDeleteBuffers(1, &_handle); + } + + void bind(GLenum target = GL_ARRAY_BUFFER) const { + glBindBuffer(target, _handle); + } + + void unbind(GLenum target = GL_ARRAY_BUFFER) const { + glBindBuffer(target, 0); + } + + void resize(size_t size, GLenum usage) { + glBindBuffer(GL_ARRAY_BUFFER, _handle); + glBufferData(GL_ARRAY_BUFFER, size * sizeof(TInstance), nullptr, usage); + _size = size; + } + + size_t getSize(void) const { + return _size; + } + + TInstance* map(size_t size, GLenum usage = GL_DYNAMIC_DRAW, bool shrink = false) { + if (size > _size || (shrink && (size < _size))) + resize(size, usage); + + glBindBuffer(GL_ARRAY_BUFFER, _handle); + + auto* res = static_cast( + glMapBufferRange( + GL_ARRAY_BUFFER, + 0, + size * sizeof(TInstance), + GL_MAP_WRITE_BIT | GL_MAP_INVALIDATE_BUFFER_BIT + ) + ); + //auto* res = static_cast( + //glMapBuffer( + //GL_ARRAY_BUFFER, + //GL_WRITE_ONLY + //) + //); + + return res; + } + + void unmap(void) { + glBindBuffer(GL_ARRAY_BUFFER,_handle); + glUnmapBuffer(GL_ARRAY_BUFFER); + } + }; +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/shader.cpp b/framework/opengl_primitives/src/mm/opengl/shader.cpp new file mode 100644 index 0000000..fa5c6f4 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/shader.cpp @@ -0,0 +1,211 @@ +#include "./shader.hpp" + +#include + +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "OpenGL", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("OpenGL", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "OpenGL", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "OpenGL", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("OpenGL", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("OpenGL", __VA_ARGS__) + +namespace MM::OpenGL { + +Shader::Shader(uint32_t rendererID) : _rendererID(rendererID) { +} + +Shader::~Shader(void) { + glDeleteProgram(_rendererID); +} + +void Shader::bind(void) const { + glUseProgram(_rendererID); +} + +void Shader::unbind(void) const { + glUseProgram(0); +} + +void Shader::setUniform1i(const std::string& name, int32_t v0) { + glUniform1i(getUniformLocation(name), v0); +} + +void Shader::setUniform1ui(const std::string& name, uint32_t v0) { + glUniform1ui(getUniformLocation(name), v0); +} + +void Shader::setUniform2ui(const std::string& name, uint32_t v0, uint32_t v1) { + glUniform2ui(getUniformLocation(name), v0, v1); +} + +void Shader::setUniform1f(const std::string& name, float v0) { + glUniform1f(getUniformLocation(name), v0); +} + +void Shader::setUniform3f(const std::string& name, float v0, float v1, float v2) { + glUniform3f(getUniformLocation(name), v0, v1, v2); +} + +void Shader::setUniform3f(const std::string& name, const glm::vec3& vec) { + setUniform3f(name, vec.x, vec.y, vec.z); +} + +void Shader::setUniform4f(const std::string& name, float v0, float v1, float v2, float v3) { + glUniform4f(getUniformLocation(name), v0, v1, v2, v3); +} + +void Shader::setUniform4f(const std::string& name, const glm::vec4& vec) { + setUniform4f(name, vec.x, vec.y, vec.z, vec.w); +} + +void Shader::setUniformMat4f(const std::string& name, const glm::mat4& matrix) { + glUniformMatrix4fv(getUniformLocation(name), 1, GL_FALSE, &matrix[0][0]); +} + + +void Shader::setUniform2f(const std::string& name, float v0, float v1) { + glUniform2f(getUniformLocation(name), v0, v1); +} + +void Shader::setUniform2f(const std::string& name, const glm::vec2& vec) { + glUniform2f(getUniformLocation(name), vec.x, vec.y); +} + +void Shader::setUniformMat3f(const std::string& name, const glm::mat3& matrix) { + glUniformMatrix3fv(getUniformLocation(name), 1, GL_FALSE, &matrix[0][0]); +} + +std::string Shader::parse(Engine& engine, const std::string& filePath) { + auto& fs = engine.getService(); + + auto handle = fs.open(filePath.c_str()); + if (!handle) { + // TODO: log error + return ""; + } + + std::string file; + fs.readString(handle, file); + + fs.close(handle); + return file; +} + +uint32_t Shader::compile(uint32_t type, const std::string& source) { + uint32_t id = glCreateShader(type); + const char* src = source.c_str(); + + glShaderSource(id, 1, &src, nullptr); + glCompileShader(id); + + int32_t res; + glGetShaderiv(id, GL_COMPILE_STATUS, &res); + if (res == GL_FALSE) { + int length; + glGetShaderiv(id, GL_INFO_LOG_LENGTH, &length); + char* msg = (char*) alloca(length * sizeof(char)); + glGetShaderInfoLog(id, length, &length, msg); + LOG_ERROR("failed to compile {} Shader: {}", type == GL_VERTEX_SHADER ? "vertex" : "fragment", msg); + return 0; + } + + return id; +} + +std::shared_ptr Shader::createF(Engine& engine, const char* vertexShaderPath, const char* fragmentShaderPath) { + std::string vs = parse(engine, vertexShaderPath); + std::string fs = parse(engine, fragmentShaderPath); + + return create(vs, fs); +} + +std::shared_ptr Shader::create(const std::string& vertexShader, const std::string& fragmentShader) { + uint32_t vs = compile(GL_VERTEX_SHADER, vertexShader); + if (vs == 0) { + return nullptr; + } + + uint32_t fs = compile(GL_FRAGMENT_SHADER, fragmentShader); + if (fs == 0) { + glDeleteShader(vs); + return nullptr; + } + + uint32_t program = glCreateProgram(); + + + glAttachShader(program, vs); + glAttachShader(program, fs); + + glLinkProgram(program); + glDeleteShader(vs); + glDeleteShader(fs); + GLint isLinked = 0; + glGetProgramiv(program, GL_LINK_STATUS, &isLinked); + if (isLinked == GL_FALSE) { + GLint maxLength = 0; + glGetProgramiv(program, GL_INFO_LOG_LENGTH, &maxLength); + + // The maxLength includes the NULL character + std::vector infoLog(maxLength); + glGetProgramInfoLog(program, maxLength, &maxLength, &infoLog[0]); + LOG_ERROR("Linking Shader Programs: {}", &infoLog[0]); + + // The program is useless now. So delete it. + glDeleteProgram(program); + return nullptr; + } + + glValidateProgram(program); + GLint isValid = 0; + glGetProgramiv(program, GL_VALIDATE_STATUS, &isValid); + if (isValid == GL_FALSE) { + GLint maxLength = 0; + glGetProgramiv(program, GL_INFO_LOG_LENGTH, &maxLength); + + // The maxLength includes the NULL character + std::vector infoLog(maxLength); + glGetProgramInfoLog(program, maxLength, &maxLength, &infoLog[0]); + LOG_ERROR("Validating Shader Programs: {}", &infoLog[0]); + + // The program is useless now. So delete it. + glDeleteProgram(program); + return nullptr; + + } + + //todo: make some check if linking and validating actually worked + return std::shared_ptr(new Shader(program)); +} + +int32_t Shader::getUniformLocation(const std::string& name) { + if (_uniformLocationCache.find(name) != _uniformLocationCache.end()) { + return _uniformLocationCache[name]; + } + + int32_t location = glGetUniformLocation(_rendererID, name.c_str()); + + if (location == -1) { + LOG_WARN("uniform '{}' doesn't exist! (hint: the compiler removes unused variables)", name); + } + + _uniformLocationCache[name] = location; + + return location; +} + +int32_t Shader::getAttribLocation(const std::string& name) { + int32_t location = glGetAttribLocation(_rendererID, name.c_str()); + + if (location == -1) { + LOG_WARN("attrib '{}' doesn't exist! (hint: the compiler removes unused variables)", name); + } + + return location; +} + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/shader.hpp b/framework/opengl_primitives/src/mm/opengl/shader.hpp new file mode 100644 index 0000000..be131fe --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/shader.hpp @@ -0,0 +1,69 @@ +#pragma once + +#include +//#include +#include +#include +#include + +#ifdef MM_OPENGL_3_GLES + #include +#else + #include +#endif + +#include +#include + +// fwd +namespace MM { + class Engine; +} + +namespace MM::OpenGL { + + class Shader { + private: + uint32_t _rendererID; + std::unordered_map _uniformLocationCache; + + public: + ~Shader(void); + + void bind(void) const; + void unbind(void) const; + + // set uniforms + void setUniform1i(const std::string& name, int32_t v0); + + void setUniform1ui(const std::string& name, uint32_t v0); + void setUniform2ui(const std::string& name, uint32_t v0, uint32_t v1); + + void setUniform1f(const std::string& name, float v0); + void setUniform2f(const std::string& name, float v0, float v1); + void setUniform2f(const std::string& name, const glm::vec2& vec); + void setUniform3f(const std::string& name, float v0, float v1, float v2); + void setUniform3f(const std::string& name, const glm::vec3& vec); + void setUniform4f(const std::string& name, float v0, float v1, float v2, float v3); + void setUniform4f(const std::string& name, const glm::vec4& vec); + + void setUniformMat4f(const std::string& name, const glm::mat4& matrix); + void setUniformMat3f(const std::string& name, const glm::mat3& matrix); + + static std::shared_ptr createF(Engine& engine, const char* vertexShaderPath, const char* fragmentShaderPath); + static std::shared_ptr create(const std::string& vertexShader, const std::string& fragmentShader); + + private: + explicit Shader(uint32_t rendererID); + + static std::string parse(Engine& engine, const std::string& filePath); + static uint32_t compile(uint32_t type, const std::string& source); + + public: + int32_t getUniformLocation(const std::string& name); + int32_t getAttribLocation(const std::string& name); + + }; + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/spritesheet.hpp b/framework/opengl_primitives/src/mm/opengl/spritesheet.hpp new file mode 100644 index 0000000..d330c7d --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/spritesheet.hpp @@ -0,0 +1,17 @@ +#pragma once + +#include "./texture.hpp" + +namespace MM::OpenGL { + +// a SpriteSheet is a texture divided evenly into a Grid +struct SpriteSheet { + MM::OpenGL::Texture::handle tex = nullptr; + struct { + uint32_t x = 1; + uint32_t y = 1; + } tile_count; +}; + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/texture.cpp b/framework/opengl_primitives/src/mm/opengl/texture.cpp new file mode 100644 index 0000000..e0c8026 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/texture.cpp @@ -0,0 +1,61 @@ +#include "./texture.hpp" + +#ifdef MM_OPENGL_3_GLES + #include +#else + #include +#endif + + +namespace MM::OpenGL { + +uint32_t Texture::getHandle(void) const { + return _handle; +} + +Texture::Texture( + uint32_t handle, + int32_t width, int32_t height, + int32_t internalFormat, int32_t format, int32_t type +) : _handle(handle), width(width), height(height), + _internalFormat(internalFormat), _format(format), _type(type) {} + +Texture::~Texture(void) { + glDeleteTextures(1, &_handle); +} + +void Texture::unbind(void) const { + glBindTexture(GL_TEXTURE_2D, 0); +} + +void Texture::bind(uint32_t slot) const { + glActiveTexture(GL_TEXTURE0 + slot); + glBindTexture(GL_TEXTURE_2D, _handle); +} + +void Texture::resize(int32_t new_width, int32_t new_height) { + // if (glTexImage2D == true) + glBindTexture(GL_TEXTURE_2D, _handle); + + glTexImage2D(GL_TEXTURE_2D, 0, _internalFormat, new_width, new_height, 0, _format, _type, NULL); + + // HACK: super dirty + *(const_cast(&width)) = new_width; + *(const_cast(&height)) = new_height; +} + +Texture::handle Texture::createEmpty(int32_t internalFormat, int32_t width, int32_t height, int32_t format, int32_t type) { + uint32_t id; + glGenTextures(1, &id); + glBindTexture(GL_TEXTURE_2D, id); + + glTexImage2D(GL_TEXTURE_2D, 0, internalFormat, width, height, 0, format, type, 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); + + return handle(new Texture(id, width, height, internalFormat, format, type)); +} + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/texture.hpp b/framework/opengl_primitives/src/mm/opengl/texture.hpp new file mode 100644 index 0000000..21d19fd --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/texture.hpp @@ -0,0 +1,49 @@ +#pragma once + +#include + +namespace MM::OpenGL { + + struct TextureLoaderFile; + struct TextureLoaderConstBuffer; + + class Texture { + private: + uint32_t const _handle; + + private: + friend struct TextureLoaderFile; + friend struct TextureLoaderConstBuffer; + + Texture( + uint32_t handle, + int32_t width, int32_t height, + int32_t internalFormat, int32_t format, int32_t type + ); + + public: + using handle = std::shared_ptr; + + int32_t const width; + int32_t const height; + //int32_t const bpp; // bits per pixel + private: + int32_t const _internalFormat; + int32_t const _format; + int32_t const _type; + + public: + ~Texture(); + + uint32_t getHandle(void) const; + + void bind(uint32_t slot) const; + void unbind(void) const; + + void resize(int32_t new_width, int32_t new_height); + + static handle createEmpty(int32_t internalFormat, int32_t width, int32_t height, int32_t format, int32_t type); + }; + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/texture_loader.cpp b/framework/opengl_primitives/src/mm/opengl/texture_loader.cpp new file mode 100644 index 0000000..971bce7 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/texture_loader.cpp @@ -0,0 +1,133 @@ +#include "./texture_loader.hpp" + +#include + +#ifdef MM_OPENGL_3_GLES + #include +#else + #include +#endif + + +#include +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "OpenGL", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("OpenGL", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "OpenGL", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "OpenGL", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("OpenGL", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("OpenGL", __VA_ARGS__) + +namespace MM::OpenGL { + +std::shared_ptr TextureLoaderFile::load(Engine& engine, const std::string& path) const { + stbi_set_flip_vertically_on_load(1); + + int width, height, bpp; + uint32_t handle; + + //auto buffer = stbi_load(path.c_str(), &width, &height, &bpp, 4); + + auto* fs = engine.tryService(); + + struct cb_data_t { + MM::Services::FilesystemService* fs; + MM::Services::FilesystemService::fs_file_t file; + }; + + stbi_io_callbacks io_cb { + [](void* user, char* data, int size) -> int { + cb_data_t* fs_d = (cb_data_t*)user; + + return (int)fs_d->fs->read(fs_d->file, data, size); + }, + + [](void* user, int n) -> void { + cb_data_t* fs_d = (cb_data_t*)user; + + fs_d->fs->seek(fs_d->file, fs_d->fs->tell(fs_d->file) + n); + }, + + [](void* user) -> int { + cb_data_t* fs_d = (cb_data_t*)user; + + return (int)fs_d->fs->eof(fs_d->file); + } + }; + + auto file = fs->open(path.c_str()); + if (!file) { + LOG_ERROR("opening texture '{}'", path); + return nullptr; + } + + //auto* buffer = stbi_load_from_callbacks(&io_cb, file, &width, &height, &bpp, 4); + cb_data_t data {fs, file}; + auto* buffer = stbi_load_from_callbacks(&io_cb, &data, &width, &height, &bpp, 4); + + fs->close(file); + + if (buffer == nullptr) { + LOG_ERROR("stbi error opening texture '{}'", path); + return nullptr; + } + + glGenTextures(1, &handle); + glBindTexture(GL_TEXTURE_2D, handle); + + //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + //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); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); + + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, buffer); + glBindTexture(GL_TEXTURE_2D, 0); + + stbi_image_free(buffer); + + return std::shared_ptr(new Texture(handle, width, height, GL_RGBA8, GL_RGBA, GL_UNSIGNED_BYTE)); +} + +std::shared_ptr TextureLoaderConstBuffer::load(const uint8_t* data, size_t size) const { + stbi_set_flip_vertically_on_load(1); + + int width, height, bpp; + uint32_t handle; + + auto* buffer = stbi_load_from_memory(data, size, &width, &height, &bpp, 4); + + if (buffer == nullptr) { + LOG_ERROR("stbi error opening memory texture"); + return nullptr; + } + + glGenTextures(1, &handle); + glBindTexture(GL_TEXTURE_2D, handle); + + //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + //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); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); + + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, buffer); + glBindTexture(GL_TEXTURE_2D, 0); + + stbi_image_free(buffer); + + return std::shared_ptr(new Texture(handle, width, height, GL_RGBA8, GL_RGBA, GL_UNSIGNED_BYTE)); +} + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/texture_loader.hpp b/framework/opengl_primitives/src/mm/opengl/texture_loader.hpp new file mode 100644 index 0000000..91858b6 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/texture_loader.hpp @@ -0,0 +1,29 @@ +#pragma once + +#include "./texture.hpp" +#include + +// fwd +namespace MM { + class Engine; +} + +namespace MM::OpenGL { + + struct TextureLoaderFile final { + std::shared_ptr load(Engine& engine, const std::string& path) const; + }; + + struct TextureLoaderConstBuffer final { + std::shared_ptr load(const uint8_t* data, size_t size) const; + }; + + struct TextureLoaderEmpty final { + template + std::shared_ptr load(Args&& ... args) const { + return Texture::createEmpty(std::forward(args)...); + } + }; + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/vertex_array_object.cpp b/framework/opengl_primitives/src/mm/opengl/vertex_array_object.cpp new file mode 100644 index 0000000..fdecf0f --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/vertex_array_object.cpp @@ -0,0 +1,28 @@ +#include "./vertex_array_object.hpp" + +#ifdef MM_OPENGL_3_GLES + #include +#else + #include +#endif + +namespace MM::OpenGL { + +VertexArrayObject::VertexArrayObject(void) { + glGenVertexArrays(1, &_rendererID); +} + +VertexArrayObject::~VertexArrayObject(void) { + glDeleteVertexArrays(1, &_rendererID); +} + +void VertexArrayObject::bind(void) const { + glBindVertexArray(_rendererID); +} + +void VertexArrayObject::unbind(void) const { + glBindVertexArray(0); +} + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/src/mm/opengl/vertex_array_object.hpp b/framework/opengl_primitives/src/mm/opengl/vertex_array_object.hpp new file mode 100644 index 0000000..93d0042 --- /dev/null +++ b/framework/opengl_primitives/src/mm/opengl/vertex_array_object.hpp @@ -0,0 +1,20 @@ +#pragma once + +#include + +namespace MM::OpenGL { + + class VertexArrayObject { + private: + uint32_t _rendererID; + + public: + VertexArrayObject(void); + ~VertexArrayObject(void); + + void bind(void) const; + void unbind(void) const; + }; + +} // MM::OpenGL + diff --git a/framework/opengl_primitives/test/CMakeLists.txt b/framework/opengl_primitives/test/CMakeLists.txt new file mode 100644 index 0000000..df34cd5 --- /dev/null +++ b/framework/opengl_primitives/test/CMakeLists.txt @@ -0,0 +1,12 @@ +add_executable(opengl_fbo_test fbo_test.cpp) + +target_include_directories(opengl_fbo_test PRIVATE ".") + +target_link_libraries(opengl_fbo_test + opengl_primitives + sdl_service + gtest_main +) + +add_test(NAME opengl_fbo_test COMMAND opengl_fbo_test) + diff --git a/framework/opengl_primitives/test/fbo_test.cpp b/framework/opengl_primitives/test/fbo_test.cpp new file mode 100644 index 0000000..c532cad --- /dev/null +++ b/framework/opengl_primitives/test/fbo_test.cpp @@ -0,0 +1,62 @@ +#include + +#include + +#include + +#include +#include + +using FBO = MM::OpenGL::FrameBufferObject; +using FBOBuilder = MM::OpenGL::FBOBuilder; +using Texture = MM::OpenGL::Texture; + +class FBOTest : public ::testing::Test { + protected: + MM::Engine engine; + + void SetUp(void) override { + // setup sdl + auto& sdl_s = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_s.createGLWindow("rendering_fbo_test", 800, 600); + ASSERT_NE(sdl_s.win, nullptr); + } +}; + +TEST_F(FBOTest, builder_fail) { + auto fbo = MM::OpenGL::FBOBuilder::start() + .finish(); + + ASSERT_FALSE(fbo); +} + +TEST_F(FBOTest, builder_basic) { + auto[w, h] = engine.getService().getWindowSize(); + + { + auto tex = Texture::createEmpty(GL_RGB, w, h, GL_RGB, GL_UNSIGNED_BYTE); + ASSERT_TRUE(tex); + + auto fbo = FBOBuilder::start() + .attachTexture(tex) + .finish(); + + ASSERT_TRUE(fbo); + } + { + auto fbo = FBOBuilder::start() + .attachTexture(Texture::createEmpty(GL_RGB, w, h, GL_RGB, GL_UNSIGNED_BYTE)) + .finish(); + + ASSERT_TRUE(fbo); + } +} + +int main(int argc, char** argv) { + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/opengl_renderer/CMakeLists.txt b/framework/opengl_renderer/CMakeLists.txt new file mode 100644 index 0000000..707163d --- /dev/null +++ b/framework/opengl_renderer/CMakeLists.txt @@ -0,0 +1,203 @@ +cmake_minimum_required(VERSION 3.2) +project(opengl_renderer CXX) + +add_library(opengl_renderer_s + src/mm/opengl/render_task.hpp + + src/mm/services/opengl_renderer.hpp + src/mm/services/opengl_renderer.cpp + + src/mm/opengl/camera_3d.hpp + src/mm/opengl/camera_3d.cpp +) + +target_include_directories(opengl_renderer_s PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +add_definitions(-DGLM_ENABLE_EXPERIMENTAL) +target_link_libraries(opengl_renderer_s + engine + logger + + opengl_primitives + sdl_service +) + +if(EMSCRIPTEN) + set_target_properties(opengl_renderer_s PROPERTIES COMPILE_FLAGS "-s USE_SDL=2") + set_target_properties(opengl_renderer_s PROPERTIES LINK_FLAGS "-s USE_SDL=2") +endif() + +############# imgui render task ########### + +add_library(imgui_render_task + src/mm/opengl/render_tasks/imgui.hpp + src/mm/opengl/render_tasks/imgui.cpp +) + +target_include_directories(imgui_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +#add_definitions(-DGLM_ENABLE_EXPERIMENTAL) +target_link_libraries(imgui_render_task + opengl_renderer_s + + imgui + icon_font_cpp_headers +) + +############# simple rect render task ########### + +add_library(simple_rect_render_task + src/mm/opengl/render_tasks/simple_rect.hpp + src/mm/opengl/render_tasks/simple_rect.cpp +) + +target_include_directories(simple_rect_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(simple_rect_render_task + opengl_renderer_s + common_components + engine +) + +############# simple sprite render task ########### + +add_library(simple_sprite_render_task + src/mm/opengl/render_tasks/simple_sprite.hpp + src/mm/opengl/render_tasks/simple_sprite.cpp +) + +target_include_directories(simple_sprite_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(simple_sprite_render_task + opengl_renderer_s + common_components + engine +) + +############# simple spritesheet render task ########### + +add_library(simple_spritesheet_render_task + src/mm/opengl/render_tasks/simple_spritesheet.hpp + src/mm/opengl/render_tasks/spritesheet_renderable.hpp + + src/mm/opengl/render_tasks/simple_spritesheet.cpp +) + +target_include_directories(simple_spritesheet_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(simple_spritesheet_render_task + opengl_renderer_s + common_components + engine +) + +############# batched spritesheet render task ########### + +add_library(batched_spritesheet_render_task + src/mm/opengl/render_tasks/batched_spritesheet.hpp + src/mm/opengl/render_tasks/spritesheet_renderable.hpp # dup? + + src/mm/opengl/render_tasks/batched_spritesheet.cpp +) + +target_include_directories(batched_spritesheet_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(batched_spritesheet_render_task + opengl_renderer_s + common_components + engine +) + +############# clear render task ########### + +add_library(clear_render_task + src/mm/opengl/render_tasks/clear.hpp + src/mm/opengl/render_tasks/clear.cpp +) + +target_include_directories(clear_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(clear_render_task + opengl_renderer_s + engine +) + +############# blit fb render task ########### + +add_library(blit_fb_render_task + src/mm/opengl/render_tasks/blit_fb.hpp + src/mm/opengl/render_tasks/blit_fb.cpp +) + +target_include_directories(blit_fb_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(blit_fb_render_task + opengl_renderer_s + engine +) + +############# copy to fb render task ########### + +add_library(copy_to_fb_render_task + src/mm/opengl/render_tasks/copy_to_fb.hpp + src/mm/opengl/render_tasks/copy_to_fb.cpp +) + +target_include_directories(copy_to_fb_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(copy_to_fb_render_task + opengl_renderer_s + engine +) + +############# blur render task ########### + +add_library(blur_render_task + src/mm/opengl/render_tasks/blur.hpp + src/mm/opengl/render_tasks/blur.cpp +) + +target_include_directories(blur_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(blur_render_task + opengl_renderer_s + engine +) + +############# tilemap renderer ########### + +add_library(tilemap_render_task + src/mm/opengl/render_tasks/tilemap.hpp + src/mm/opengl/render_tasks/tilemap_renderable.hpp + + src/mm/opengl/render_tasks/tilemap.cpp +) + +target_include_directories(tilemap_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(tilemap_render_task + opengl_renderer_s + engine + common_components +) + +############# fast sky render task ########### + +add_library(fast_sky_render_task + src/mm/opengl/render_tasks/fast_sky_render_task.hpp + src/mm/opengl/render_tasks/fast_sky_render_task.cpp +) + +target_include_directories(fast_sky_render_task PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(fast_sky_render_task + opengl_renderer_s + engine +) + +######################## + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/opengl_renderer/src/mm/opengl/camera_3d.cpp b/framework/opengl_renderer/src/mm/opengl/camera_3d.cpp new file mode 100644 index 0000000..e21a987 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/camera_3d.cpp @@ -0,0 +1,182 @@ +#include "./camera_3d.hpp" + +#include + +namespace MM::OpenGL { + +Camera3D::Camera3D(void) { + updateView(); +} + +void Camera3D::setOrthographic(void) { + ortho = true; + _projection = glm::ortho( + -horizontalViewPortSize / 2, + horizontalViewPortSize / 2, + -horizontalViewPortSize / (screenRatio * 2), + horizontalViewPortSize / (screenRatio * 2), + nearPlane, + farPlane + ); +} + +void Camera3D::setPerspective(void) { + ortho = false; + _projection = glm::perspective(fov, screenRatio, nearPlane, farPlane); +} + +void Camera3D::updateView(void) { + roll = glm::mod(roll, 2*glm::pi()); + + if (ortho) { + _view = glm::mat4(1); + + _view = glm::rotate(_view, roll, glm::vec3{0.f, 0.f, 1.f}); + + auto tmp_trans = glm::mat4(1); + tmp_trans[3] = glm::vec4(-translation.x, -translation.y, 0.f, 1.f); + _view = _view * tmp_trans; + //_view[3] = glm::vec4(-translation.x, -translation.y, 0.f, 1.f); + ////_view[3] = glm::vec4(-translation.x, -translation.y, 1.0f, 1.f); + //_view = glm::translate(_view, glm::vec3{-translation.x, -translation.y, -1.f}); + + //_view = glm::inverse(_view); + + _view[2][2] = -1.f; + + // TODO: please fix me + } else { + pitch = glm::clamp(pitch, -(glm::pi()/2 - 0.00001f), glm::pi()/2 - 0.00001f); + yaw = glm::mod(yaw, 2*glm::pi()); + + glm::vec3 front {0,0,0}; + { // TODO: optimize + // if y up/down + front.x += up.y * glm::cos(pitch) * glm::cos(-yaw); // TODO: y is yaw inverted?? + front.y += up.y * glm::sin(pitch); + front.z += up.y * glm::cos(pitch) * glm::sin(-yaw); + + // if z up/down + front.x += up.z * glm::cos(pitch) * glm::cos(yaw); + front.y += up.z * glm::cos(pitch) * glm::sin(yaw); + front.z += up.z * glm::sin(pitch); + } + + front = glm::normalize(front); + + _view = glm::lookAt(translation, translation + front, up); + } +} + +glm::mat4 Camera3D::getViewProjection() const { + return _projection * _view; +} + +glm::mat4 Camera3D::getView() const { + return _view; +} + +glm::mat4 Camera3D::getProjection() const { + return _projection; +} + +std::array Camera3D::getFrustumPlanes(void) const { + std::array planes; + + glm::mat4 wvp = getViewProjection(); + + // see: + // https://stackoverflow.com/questions/11770262/glm-calculating-the-frustum-from-the-projection-matrix + // http://web.archive.org/web/20120531231005/http://crazyjoke.free.fr/doc/3D/plane%20extraction.pdf + +#ifdef LEFT_HANDED + // left handed + { + // Left clipping plane + planes[0].x = wvp[0][3] + wvp[0][0]; + planes[0].y = wvp[1][3] + wvp[1][0]; + planes[0].z = wvp[2][3] + wvp[2][0]; + planes[0].w = wvp[3][3] + wvp[3][0]; + + // Right clipping plane + planes[1].x = wvp[0][3] - wvp[0][0]; + planes[1].y = wvp[1][3] - wvp[1][0]; + planes[1].z = wvp[2][3] - wvp[2][0]; + planes[1].w = wvp[3][3] - wvp[3][0]; + + // Top clipping + planes[2].x = wvp[0][3] - wvp[0][1]; + planes[2].y = wvp[1][3] - wvp[1][1]; + planes[2].z = wvp[2][3] - wvp[2][1]; + planes[2].w = wvp[3][3] - wvp[3][1]; + + // Bottom clipping plane + planes[3].x = wvp[0][3] + wvp[0][1]; + planes[3].y = wvp[1][3] + wvp[1][1]; + planes[3].z = wvp[2][3] + wvp[2][1]; + planes[3].w = wvp[3][3] + wvp[3][1]; + + // Near clipping plane + planes[4].x = wvp[0][2]; + planes[4].y = wvp[1][2]; + planes[4].z = wvp[2][2]; + planes[4].w = wvp[3][2]; + + // Far clipping + planes[5].x = wvp[0][3] - wvp[0][2]; + planes[5].y = wvp[1][3] - wvp[1][2]; + planes[5].z = wvp[2][3] - wvp[2][2]; + planes[5].w = wvp[3][3] - wvp[3][2]; + } +#else + // right handed + { + // Left clipping plane + planes[0].x = wvp[0][3] + wvp[0][0]; + planes[0].y = wvp[1][3] + wvp[1][0]; + planes[0].z = wvp[2][3] + wvp[2][0]; + planes[0].w = wvp[3][3] + wvp[3][0]; + + // Right clipping plane + planes[1].x = wvp[0][3] - wvp[0][0]; + planes[1].y = wvp[1][3] - wvp[1][0]; + planes[1].z = wvp[2][3] - wvp[2][0]; + planes[1].w = wvp[3][3] - wvp[3][0]; + + // Top clipping plane + planes[2].x = wvp[0][3] - wvp[0][1]; + planes[2].y = wvp[1][3] - wvp[1][1]; + planes[2].z = wvp[2][3] - wvp[2][1]; + planes[2].w = wvp[3][3] - wvp[3][1]; + + // Bottom clipping plane + planes[3].x = wvp[0][3] + wvp[0][1]; + planes[3].y = wvp[1][3] + wvp[1][1]; + planes[3].z = wvp[2][3] + wvp[2][1]; + planes[3].w = wvp[3][3] + wvp[3][1]; + + // Near clipping plane + planes[4].x = wvp[0][3] + wvp[0][2]; + planes[4].y = wvp[1][3] + wvp[1][2]; + planes[4].z = wvp[2][3] + wvp[2][2]; + planes[4].w = wvp[3][3] + wvp[3][2]; + + // Far clipping plane + planes[5].x = wvp[0][3] - wvp[0][2]; + planes[5].y = wvp[1][3] - wvp[1][2]; + planes[5].z = wvp[2][3] - wvp[2][2]; + planes[5].w = wvp[3][3] - wvp[3][2]; + } +#endif + + // normalize + for (size_t i = 0; i < 6; i++) { + planes[i] = glm::normalize(planes[i]); + //planes[i] /= glm::length(glm::vec3(planes[i])); + } + + return planes; +} + +} // MM::Rendering + diff --git a/framework/opengl_renderer/src/mm/opengl/camera_3d.hpp b/framework/opengl_renderer/src/mm/opengl/camera_3d.hpp new file mode 100644 index 0000000..ed40c01 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/camera_3d.hpp @@ -0,0 +1,54 @@ +#pragma once + +#include +#include + +#include + +namespace MM::OpenGL { + + class Camera3D { + private: + glm::mat4 _view{1}, _projection{1}; + + public: + glm::vec3 translation {0.f, 0.f, 0.f}; + float screenRatio {16.f / 9.f}; + float nearPlane {0.1f}; + float farPlane {1000.f}; + + // for orth and pers + float roll {0.f}; // in rad + + bool ortho {true}; + + // for orthogonal + float horizontalViewPortSize {100.f}; // 100 meters + + // for perspective (right handed, z up) + float fov {glm::half_pi()}; // in rad + float yaw {0.f}; // in rad + float pitch {0.f}; // in rad + glm::vec3 up {0.f, 0.f, 1.f}; // normalize! + + public: + Camera3D(void); + + // call this if ortho and horizontalViewPortSize or screenRatio changes + void setOrthographic(void); + + // call this if not ortho and fov or screenRation changes + void setPerspective(void); + + // call this after changing translation + void updateView(void); + + glm::mat4 getViewProjection(void) const; + glm::mat4 getView(void) const; + glm::mat4 getProjection(void) const; + + // call updateView beforehand, does not cache + std::array getFrustumPlanes(void) const; + }; +} // MM::OpenGL + diff --git a/framework/opengl_renderer/src/mm/opengl/render_task.hpp b/framework/opengl_renderer/src/mm/opengl/render_task.hpp new file mode 100644 index 0000000..d0d1e1c --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_task.hpp @@ -0,0 +1,32 @@ +#pragma once + +#include + +// fwd +namespace MM { + class Engine; + namespace Services { + class OpenGLRenderer; + } +} + +#ifdef MM_OPENGL_3_GLES +#define GLSL_VERSION_STRING "#version 300 es\n" +#else +#define GLSL_VERSION_STRING "#version 330 core\n" +#endif + +namespace MM::OpenGL { + + class RenderTask { + public: + virtual ~RenderTask(void) = default; + + virtual void render(Services::OpenGLRenderer& rs, Engine& engine) = 0; + + // a place to reload/compile shaders etc. + //virtual void reload(void) {} // TODO: remove + //virtual std::vector getShaderPaths(void) {return {};} // TODO: remove + }; +} + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/batched_spritesheet.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/batched_spritesheet.cpp new file mode 100644 index 0000000..f5d18f7 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/batched_spritesheet.cpp @@ -0,0 +1,244 @@ +#include "./batched_spritesheet.hpp" + +#include + +#include +#include +#include + +#include + +#include + +#include +#include + +#include +#include + +#include "./spritesheet_renderable.hpp" +#include + +#include +#ifndef MM_OPENGL_3_GLES + #include +#else + #define TracyGpuContext + #define TracyGpuCollect + #define TracyGpuZone(...) +#endif + +namespace MM::OpenGL::RenderTasks { + +BatchedSpriteSheet::BatchedSpriteSheet(Engine& engine) { + default_cam.setOrthographic(); + default_cam.updateView(); + + float vertices[] = { + -0.5f, 0.5f, + -0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, 0.5f, + -0.5f, 0.5f, + }; + + _vertexBuffer = std::make_unique(vertices, 2 * 6 * sizeof(float), GL_STATIC_DRAW); + _vao = std::make_unique(); + _vao->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + + glEnableVertexAttribArray(0); + glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0); + + gl_inst_buffer = std::make_unique>(); + + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _vao->unbind(); + + setupShaderFiles(); + _shader = Shader::createF(engine, vertexPath, fragmentPath); + assert(_shader != nullptr); +} + +BatchedSpriteSheet::~BatchedSpriteSheet(void) { +} + +void BatchedSpriteSheet::render(Services::OpenGLRenderer& rs, Engine& engine) { + ZoneScopedN("MM::OpenGL::RenderTasks::BatchedSpriteSheet::render"); + + auto* scene_ss = engine.tryService(); + // no scene + if (scene_ss == nullptr) { + return; + } + + auto& scene = scene_ss->getScene(); + + struct sp_data { + SpriteSheet sp; + struct instance_data { + MM::Components::Transform2D* trans = nullptr; + glm::vec4* color = nullptr; + uint32_t tile_index = 0; + }; + std::vector instances; + }; + // HACK: assume same sp for same texture + std::unordered_map batch_map; + + auto view = scene.view(); + + view.each([&](auto e, Components::Transform2D& t, SpriteSheetRenderable& spr) { + // if off screen, early out + if (false) { // TODO: + return; + } + + assert(spr.sp.tex); // debug + + // first insert + if (!batch_map.count(spr.sp.tex)) { + auto& sp_ent = batch_map[spr.sp.tex]; + sp_ent.sp = spr.sp; + } + + auto* tmp_col_ptr = &default_color; + if (scene.has(e)) { + tmp_col_ptr = &scene.get(e).color; + } + + auto& tmp_new_ent = batch_map[spr.sp.tex].instances.emplace_back(); + tmp_new_ent.trans = &t; + tmp_new_ent.tile_index = spr.tile_index; + tmp_new_ent.color = tmp_col_ptr; + }); + + rs.targets[target_fbo]->bind(FrameBufferObject::W); + + glEnable(GL_DEPTH_TEST); + glDepthFunc(GL_LESS); + + _shader->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + _vao->bind(); + + auto* cam = scene.try_ctx(); + if (!cam) { + cam = &default_cam; + } + + auto vp = cam->getViewProjection(); + _shader->setUniformMat4f("_VP", vp); + + for (auto& sp_ent : batch_map) { + TracyGpuZone("MM::OpenGL::RenderTasks::BatchedSpriteSheet::render::sprite_entry"); + sp_ent.second.sp.tex->bind(0); + + _shader->setUniform2ui("_tileCount", sp_ent.second.sp.tile_count.x, sp_ent.second.sp.tile_count.y); + + auto* inst_memory = gl_inst_buffer->map(sp_ent.second.instances.size(), GL_DYNAMIC_DRAW); + for (auto& inst : sp_ent.second.instances) { + inst_memory->pos_trans = inst.trans->getTransform4(inst.trans->position.y/10.f + 500.f); + inst_memory->color = *inst.color; + inst_memory->tile_index = inst.tile_index; + + inst_memory++; + } + gl_inst_buffer->unmap(); + + static_assert(std::is_standard_layout::value); // check if offsetof() is usable + + // mat4, oof + // attptr 1-4 + for (size_t i = 0; i < 4; i++) { + glVertexAttribPointer( + 1 + i, + 4, + GL_FLOAT, GL_FALSE, + sizeof(gl_instance_data), + (void*) (offsetof(gl_instance_data, pos_trans) + sizeof(glm::mat4::row_type) * i) + ); + glVertexAttribDivisor(1 + i, 1); + glEnableVertexAttribArray(1 + i); + } + + + glVertexAttribIPointer(5, 1, GL_UNSIGNED_INT, sizeof(gl_instance_data), (void*) offsetof(gl_instance_data, tile_index)); + glVertexAttribDivisor(5, 1); + glEnableVertexAttribArray(5); + + glVertexAttribPointer(6, 3, GL_FLOAT, GL_FALSE, sizeof(gl_instance_data), (void*) offsetof(gl_instance_data, color)); + glVertexAttribDivisor(6, 1); + glEnableVertexAttribArray(6); + + glDrawArraysInstanced(GL_TRIANGLES, 0, 6, sp_ent.second.instances.size()); + } + + _vao->unbind(); + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _shader->unbind(); +} + +void BatchedSpriteSheet::setupShaderFiles(void) { + FS_CONST_MOUNT_FILE(vertexPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +uniform mat4 _VP; +uniform uvec2 _tileCount; + +layout(location = 0) in vec2 _vertexPosition; +layout(location = 1) in mat4 _pos_trans; +layout(location = 5) in uint _atlasIndex; +layout(location = 6) in vec4 _color; + +out vec2 _tex_pos; +out vec4 _tex_color; + +void main() { + // fwd + _tex_color = _color; + + // position + gl_Position = _VP * _pos_trans * vec4(_vertexPosition, 0, 1); + + + // uv + uint row = _atlasIndex / _tileCount.x; + uint column = _atlasIndex % _tileCount.x; + + _tex_pos.x = (float(column) + 0.5 + _vertexPosition.x) / float(_tileCount.x); + _tex_pos.y = 1.0 - (float(row) + 0.5 - _vertexPosition.y) / float(_tileCount.y); +})") + + FS_CONST_MOUNT_FILE(fragmentPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +uniform sampler2D _tex0; + +in vec2 _tex_pos; +in vec4 _tex_color; + +out vec4 _out_color; + +void main() { + vec4 tmp_col = texture(_tex0, _tex_pos) * _tex_color; + + if (tmp_col.a == 0.0) { + discard; + } + + _out_color = tmp_col; +})") +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/batched_spritesheet.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/batched_spritesheet.hpp new file mode 100644 index 0000000..2e95c19 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/batched_spritesheet.hpp @@ -0,0 +1,58 @@ +#pragma once + +#include "../render_task.hpp" +#include + +#include + +//#include +#include + +#include + +// fwd +namespace MM::OpenGL { + class Shader; + class Buffer; + class VertexArrayObject; +} + + +namespace MM::OpenGL::RenderTasks { + + class BatchedSpriteSheet : public RenderTask { + private: + std::shared_ptr _shader; + std::unique_ptr _vertexBuffer; + std::unique_ptr _vao; + + struct gl_instance_data { + glm::mat4 pos_trans; + glm::vec4 color; + uint32_t tile_index; + }; + std::unique_ptr> gl_inst_buffer; + + + public: + glm::vec4 default_color {1.f, 1.f, 1.f, 1.f}; + + OpenGL::Camera3D default_cam; + + BatchedSpriteSheet(Engine& engine); + ~BatchedSpriteSheet(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + + public: + const char* vertexPath = "shader/batched_spritesheet_render_task/vert.glsl"; + const char* fragmentPath = "shader/batched_spritesheet_render_task/frag.glsl"; + + std::string target_fbo = "display"; + + private: + void setupShaderFiles(void); + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/blit_fb.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/blit_fb.cpp new file mode 100644 index 0000000..d7b5e51 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/blit_fb.cpp @@ -0,0 +1,40 @@ +#include "./blit_fb.hpp" + +#include + +#include + +namespace MM::OpenGL::RenderTasks { + +BlitFB::BlitFB(Engine& engine) { + // assuming fbo textures are the size of the window buffer + auto [x, y] = engine.getService().getWindowSize(); + + srcX1 = x; + srcY1 = y; + + dstX1 = x; + dstY1 = y; +} + +BlitFB::~BlitFB(void) { +} + +void BlitFB::render(Services::OpenGLRenderer& rs, Engine&) { + ZoneScopedN("MM::OpenGL::RenderTasks::BlitFB::render"); + + rs.targets[read_fbo]->bind(FrameBufferObject::R); + rs.targets[write_fbo]->bind(FrameBufferObject::W); + + glBlitFramebuffer( + srcX0, srcY0, + srcX1, srcY1, + dstX0, dstY0, + dstX1, dstY1, + mask, + filter + ); +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/blit_fb.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/blit_fb.hpp new file mode 100644 index 0000000..10ee6c8 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/blit_fb.hpp @@ -0,0 +1,36 @@ +#pragma once + +#include "../render_task.hpp" + +#include + +namespace MM::OpenGL::RenderTasks { + + class BlitFB : public RenderTask { + public: + BlitFB(Engine& engine); + ~BlitFB(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + + public: + std::string read_fbo = "game_view"; + std::string write_fbo = "display"; + + // blit params + GLint srcX0 = 0; + GLint srcY0 = 0; + GLint srcX1 = 0; // u will want to set this + GLint srcY1 = 0; // u will want to set this + + GLint dstX0 = 0; + GLint dstY0 = 0; + GLint dstX1 = 0; // u will want to set this + GLint dstY1 = 0; // u will want to set this + + GLbitfield mask = GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT; + GLenum filter = GL_NEAREST; + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/blur.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/blur.cpp new file mode 100644 index 0000000..7891eed --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/blur.cpp @@ -0,0 +1,135 @@ +#include "./blur.hpp" + +#include +#include +#include + +#include + +#include + +#include + +#include + +namespace MM::OpenGL::RenderTasks { + +Blur::Blur(Engine& engine) { + float vertices[] = { + -1.f, 1.f, + -1.f, -1.f, + 1.f, -1.f, + 1.f, -1.f, + 1.f, 1.f, + -1.f, 1.f, + }; + + _vertexBuffer = std::make_unique(vertices, 2 * 6 * sizeof(float), GL_STATIC_DRAW); + _vao = std::make_unique(); + _vao->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + + glEnableVertexAttribArray(0); + glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0); + + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _vao->unbind(); + + setupShaderFiles(); + _shader = Shader::createF(engine, vertexPath, fragmentPath); + assert(_shader != nullptr); +} + +Blur::~Blur(void) { +} + +void Blur::render(Services::OpenGLRenderer& rs, Engine&) { + ZoneScopedN("MM::OpenGL::RenderTasks::Blur::render"); + + rs.targets[target_fbo]->bind(FrameBufferObject::W); + glDisable(GL_DEPTH_TEST); + + _shader->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + _vao->bind(); + + rs.targets[src_fbo]->bind(FrameBufferObject::W); + { + _shader->setUniform1i("horizontal", 1); + rs.targets[src_fbo]->_texAttachments.front()->bind(0); + + glDrawArrays(GL_TRIANGLES, 0, 6); + } + + rs.targets[target_fbo]->bind(FrameBufferObject::W); + { + _shader->setUniform1i("horizontal", 0); + + glDrawArrays(GL_TRIANGLES, 0, 6); + } + + _vao->unbind(); + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _shader->unbind(); + + rs.targets[src_fbo]->clear(0.f, 0.f, 0.f, 1.f); +} + +void Blur::setupShaderFiles(void) { + FS_CONST_MOUNT_FILE(vertexPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +in vec2 _vertexPosition; +out vec2 _tex; + +void main() { + gl_Position = vec4(_vertexPosition, 0, 1); + _tex = vec2(_vertexPosition.x * 0.5 + 0.5, _vertexPosition.y * 0.5 + 0.5); +})") + + FS_CONST_MOUNT_FILE(fragmentPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +uniform sampler2D tex0; + +in vec2 _tex; + +uniform bool horizontal; + +const float weight[5] = float[] (0.227027, 0.1945946, 0.1216216, 0.054054, 0.016216); + +out vec4 _out_color; + +void main() { + vec2 tex_offset = vec2(1.0) / vec2(textureSize(tex0, 0)); // gets size of single texel + vec3 result = texture(tex0, _tex).rgb * weight[0]; // current fragment's contribution + + if (horizontal) { + for (int i = 1; i < 5; i++) { + result += texture(tex0, _tex + vec2(tex_offset.x * float(i), 0.0)).rgb * weight[i]; + result += texture(tex0, _tex - vec2(tex_offset.x * float(i), 0.0)).rgb * weight[i]; + } + } else { + for (int i = 1; i < 5; i++) { + result += texture(tex0, _tex + vec2(0.0, tex_offset.y * float(i))).rgb * weight[i]; + result += texture(tex0, _tex - vec2(0.0, tex_offset.y * float(i))).rgb * weight[i]; + } + } + + _out_color = vec4(result, 1.0); + + //float brightness = dot(gl_FragColor.rgb, vec3(0.2126, 0.7152, 0.0722)); + //if (brightness > 1.0) +})") +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/blur.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/blur.hpp new file mode 100644 index 0000000..1e3122e --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/blur.hpp @@ -0,0 +1,39 @@ +#pragma once + +#include "../render_task.hpp" +#include + +// fwd +namespace MM::OpenGL { + class Shader; + class Buffer; + class VertexArrayObject; +} + +namespace MM::OpenGL::RenderTasks { + + class Blur : public RenderTask { + private: + std::shared_ptr _shader; + std::unique_ptr _vertexBuffer; + std::unique_ptr _vao; + + public: + Blur(Engine& engine); + ~Blur(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + + public: + const char* vertexPath = "shader/blur_render_task/vert.glsl"; + const char* fragmentPath = "shader/blur_render_task/frag.glsl"; + + std::string target_fbo = "blur_out"; + std::string src_fbo = "blur_in"; + + private: + void setupShaderFiles(void); + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/clear.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/clear.cpp new file mode 100644 index 0000000..ed99627 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/clear.cpp @@ -0,0 +1,19 @@ +#include "./clear.hpp" + +//#include + +namespace MM::OpenGL::RenderTasks { + +Clear::Clear(Engine&) { +} + +Clear::~Clear(void) { +} + +void Clear::render(Services::OpenGLRenderer& rs, Engine&) { + //ZoneScopedN("MM::OpenGL::RenderTasks::Clear::render"); + rs.targets[target_fbo]->clear(r,g,b,a,mask); +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/clear.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/clear.hpp new file mode 100644 index 0000000..cafa27d --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/clear.hpp @@ -0,0 +1,26 @@ +#pragma once + +#include + +namespace MM::OpenGL::RenderTasks { + + class Clear : public RenderTask { + public: + Clear(Engine& engine); + ~Clear(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + + public: + std::string target_fbo = "display"; + + float r = 0.f; + float g = 0.f; + float b = 0.f; + float a = 1.f; + + GLbitfield mask = GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT; + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/copy_to_fb.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/copy_to_fb.cpp new file mode 100644 index 0000000..b0248e7 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/copy_to_fb.cpp @@ -0,0 +1,110 @@ +#include "./copy_to_fb.hpp" + +#include +#include +#include + +#include + +#include + +#include + +#include + +namespace MM::OpenGL::RenderTasks { + +CopyToFB::CopyToFB(Engine& engine) { + float vertices[] = { + -1.f, 1.f, + -1.f, -1.f, + 1.f, -1.f, + 1.f, -1.f, + 1.f, 1.f, + -1.f, 1.f, + }; + + _vertexBuffer = std::make_unique(vertices, 2 * 6 * sizeof(float), GL_STATIC_DRAW); + _vao = std::make_unique(); + _vao->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + + glEnableVertexAttribArray(0); + glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0); + + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _vao->unbind(); + + setupShaderFiles(); + _shader = Shader::createF(engine, vertexPath, fragmentPath); + assert(_shader != nullptr); +} + +CopyToFB::~CopyToFB(void) { +} + +void CopyToFB::render(Services::OpenGLRenderer& rs, Engine&) { + ZoneScopedN("MM::OpenGL::RenderTasks::CopyToFB::render"); + + rs.targets[target_fbo]->bind(FrameBufferObject::W); + glDisable(GL_DEPTH_TEST); + + _shader->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + _vao->bind(); + + auto& rm = MM::ResourceManager::ref(); + + auto tex = rm.get(entt::hashed_string::value(src_tex.c_str())); + tex->bind(0); + + glDrawArrays(GL_TRIANGLES, 0, 6); + + _vao->unbind(); + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _shader->unbind(); +} + +void CopyToFB::reloadShaders(MM::Engine& engine) { + auto tmp_shader = Shader::createF(engine, vertexPath, fragmentPath); + if (tmp_shader) { + _shader = tmp_shader; + } +} + +void CopyToFB::setupShaderFiles(void) { + FS_CONST_MOUNT_FILE(vertexPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +in vec2 _vertexPosition; +out vec2 _tex; + +void main() { + gl_Position = vec4(_vertexPosition, 0, 1); + _tex = vec2(_vertexPosition.x * 0.5 + 0.5, _vertexPosition.y * 0.5 + 0.5); +})") + + FS_CONST_MOUNT_FILE(fragmentPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +uniform sampler2D tex0; + +in vec2 _tex; + +out vec4 _out_color; + +void main() { + _out_color = texture(tex0, _tex); +})") +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/copy_to_fb.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/copy_to_fb.hpp new file mode 100644 index 0000000..3eabf08 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/copy_to_fb.hpp @@ -0,0 +1,41 @@ +#pragma once + +#include "../render_task.hpp" +#include + +// fwd +namespace MM::OpenGL { + class Shader; + class Buffer; + class VertexArrayObject; +} + +namespace MM::OpenGL::RenderTasks { + + class CopyToFB : public RenderTask { + private: + std::shared_ptr _shader; + std::unique_ptr _vertexBuffer; + std::unique_ptr _vao; + + public: + CopyToFB(Engine& engine); + ~CopyToFB(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + + public: + const char* vertexPath = "shader/copy_to_fb_render_task/vert.glsl"; + const char* fragmentPath = "shader/copy_to_fb_render_task/frag.glsl"; + + std::string target_fbo = "display"; + std::string src_tex = "game_view"; + + void reloadShaders(Engine& engine); + + private: + void setupShaderFiles(void); + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/fast_sky_render_task.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/fast_sky_render_task.cpp new file mode 100644 index 0000000..c23c1cb --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/fast_sky_render_task.cpp @@ -0,0 +1,231 @@ +#include "./fast_sky_render_task.hpp" + +#include +#include +#include + +#include + +#include + +#include +#include +#include + +#include +#ifndef MM_OPENGL_3_GLES + #include +#else + #define TracyGpuContext + #define TracyGpuCollect + #define TracyGpuZone(...) +#endif + +namespace MM::OpenGL::RenderTasks { + +FastSky::FastSky(MM::Engine& engine) { + setupShaderFiles(); + _shader = MM::OpenGL::Shader::createF(engine, vertexPath, fragmentPath); + assert(_shader != nullptr); + + float vertices[] = { + -1.f, 1.f, + -1.f, -1.f, + 1.f, -1.f, + 1.f, -1.f, + 1.f, 1.f, + -1.f, 1.f, + }; + + _vertexBuffer = std::make_unique(vertices, 2 * 6 * sizeof(float), GL_STATIC_DRAW); + _vao = std::make_unique(); + _vao->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + + glEnableVertexAttribArray(0); + glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0); + + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _vao->unbind(); + +} + +FastSky::~FastSky(void) { +} + +void FastSky::render(MM::Services::OpenGLRenderer& rs, MM::Engine& engine) { + ZoneScopedN("MM::OpenGL::RenderTasks::FastSky::render"); + + rs.targets[target_fbo]->bind(MM::OpenGL::FrameBufferObject::W); + + glEnable(GL_DEPTH_TEST); + glDepthFunc(GL_LEQUAL); + //glDepthFunc(GL_LESS); + glDisable(GL_BLEND); // i hate my life + + _shader->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + _vao->bind(); + + auto& scene = engine.tryService()->getScene(); + { + auto& cam = scene.ctx(); + MM::OpenGL::Camera3D tmp_cam = cam; + // create cam with y up, bc shader says so + tmp_cam.up = {0, 1, 0}; + tmp_cam.updateView(); + + _shader->setUniformMat4f("V", tmp_cam.getView()); + _shader->setUniformMat4f("P", cam.getProjection()); + } + + { + auto* ctx_ptr = scene.try_ctx(); + if (!ctx_ptr) { + ctx_ptr = &_default_context; + } + + _shader->setUniform1f("time", ctx_ptr->time); + + _shader->setUniform1f("cirrus", ctx_ptr->cirrus); + _shader->setUniform1f("cumulus", ctx_ptr->cumulus); + + _shader->setUniform3f("fsun", ctx_ptr->fsun); + } + + //glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); + glDrawArrays(GL_TRIANGLES, 0, 6); + + _shader->unbind(); +} + +void FastSky::reloadShaders(MM::Engine& engine) { + auto tmp_shader = MM::OpenGL::Shader::createF(engine, vertexPath, fragmentPath); + if (tmp_shader) { + _shader = tmp_shader; + } +} + +// the shaders are based on https://github.com/shff/opengl_sky/ +// with the following LICENSE: + +// MIT License + +//Copyright (c) 2019 Silvio Henrique Ferreira + +//Permission is hereby granted, free of charge, to any person obtaining a copy +//of this software and associated documentation files (the "Software"), to deal +//in the Software without restriction, including without limitation the rights +//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +//copies of the Software, and to permit persons to whom the Software is +//furnished to do so, subject to the following conditions: + +//The above copyright notice and this permission notice shall be included in all +//copies or substantial portions of the Software. + +//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +//SOFTWARE. + +void FastSky::setupShaderFiles(void) { + FS_CONST_MOUNT_FILE(vertexPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +in vec2 vertex_pos; + +out vec3 pos; + +uniform mat4 P; +uniform mat4 V; + +void main() { + vec4 tmp_pos = vec4(vertex_pos, 1.0, 1.0); + gl_Position = tmp_pos; + + pos = transpose(mat3(V)) * (inverse(P) * tmp_pos).xyz; +})") + + FS_CONST_MOUNT_FILE(fragmentPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +in vec3 pos; +uniform vec3 fsun; + +out vec4 color; + +uniform float time; +uniform float cirrus; +uniform float cumulus; + +const float Br = 0.0025; +const float Bm = 0.0003; +const float g = 0.9800; +const vec3 nitrogen = vec3(0.650, 0.570, 0.475); +const vec3 Kr = Br / pow(nitrogen, vec3(4.0)); +const vec3 Km = Bm / pow(nitrogen, vec3(0.84)); + +float hash(float n) { + return fract(sin(n) * 43758.5453123); +} + +float noise(vec3 x) { + vec3 f = fract(x); + float n = dot(floor(x), vec3(1.0, 157.0, 113.0)); + return mix(mix(mix(hash(n + 0.0), hash(n + 1.0), f.x), + mix(hash(n + 157.0), hash(n + 158.0), f.x), f.y), + mix(mix(hash(n + 113.0), hash(n + 114.0), f.x), + mix(hash(n + 270.0), hash(n + 271.0), f.x), f.y), f.z); +} + +const mat3 m = mat3(0.0, 1.60, 1.20, -1.6, 0.72, -0.96, -1.2, -0.96, 1.28); + +float fbm(vec3 p) { + float f = 0.0; + f += noise(p) / 2.0; p = m * p * 1.1; + f += noise(p) / 4.0; p = m * p * 1.2; + f += noise(p) / 6.0; p = m * p * 1.3; + f += noise(p) / 12.0; p = m * p * 1.4; + f += noise(p) / 24.0; + return f; +} + +void main() { + if (pos.y < 0.0) { + discard; + //return; + } + + // Atmosphere Scattering + float mu = dot(normalize(pos), normalize(fsun)); + vec3 extinction = mix(exp(-exp(-((pos.y + fsun.y * 4.0) * (exp(-pos.y * 16.0) + 0.1) / 80.0) / Br) * (exp(-pos.y * 16.0) + 0.1) * Kr / Br) * exp(-pos.y * exp(-pos.y * 8.0 ) * 4.0) * exp(-pos.y * 2.0) * 4.0, vec3(1.0 - exp(fsun.y)) * 0.2, -fsun.y * 0.2 + 0.5); + color.rgb = 3.0 / (8.0 * 3.14) * (1.0 + mu * mu) * (Kr + Km * (1.0 - g * g) / (2.0 + g * g) / pow(1.0 + g * g - 2.0 * g * mu, 1.5)) / (Br + Bm) * extinction; + + // Cirrus Clouds + float density = smoothstep(1.0 - cirrus, 1.0, fbm(pos.xyz / pos.y * 2.0 + time * 0.05)) * 0.3; + color.rgb = mix(color.rgb, extinction * 4.0, density * max(pos.y, 0.0)); + + // Cumulus Clouds + for (int i = 0; i < 3; i++) { + float density = smoothstep(1.0 - cumulus, 1.0, fbm((0.7 + float(i) * 0.01) * pos.xyz / pos.y + time * 0.3)); + color.rgb = mix(color.rgb, extinction * density * 5.0, min(density, 1.0) * max(pos.y, 0.0)); + } + + // Dithering Noise + color.rgb += noise(pos * 1000.0) * 0.01; // needed? +})") +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/fast_sky_render_task.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/fast_sky_render_task.hpp new file mode 100644 index 0000000..5fce7bd --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/fast_sky_render_task.hpp @@ -0,0 +1,53 @@ +#pragma once + +#include + +#include + +// fwd +namespace MM::OpenGL { + class Shader; + class Buffer; + class VertexArrayObject; + + namespace RenderTasks { + + struct FastSkyContext { + float time = 0.f; + + float cirrus = 0.4f; + float cumulus = 0.8f; + + glm::vec3 fsun {0,0,1}; + }; + + class FastSky : public MM::OpenGL::RenderTask { + private: + std::shared_ptr _shader; + std::unique_ptr _vertexBuffer; + std::unique_ptr _vao; + + FastSkyContext _default_context; + + public: + FastSky(MM::Engine& engine); + ~FastSky(void); + + void render(MM::Services::OpenGLRenderer& rs, MM::Engine& engine) override; + + public: + const char* vertexPath = "shader/fast_sky_render_task/vert.glsl"; + const char* fragmentPath = "shader/fast_sky_render_task/frag.glsl"; + + std::string target_fbo = "display"; + + void reloadShaders(MM::Engine& engine); + + private: + void setupShaderFiles(void); + }; + + } // RenderTasks + +} // MM::OpenGL + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/imgui.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/imgui.cpp new file mode 100644 index 0000000..303d86a --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/imgui.cpp @@ -0,0 +1,38 @@ +#include // bc imgui.hpp is overused + +#include + +#include +#include + +#include +#ifndef MM_OPENGL_3_GLES + #include +#else + #define TracyGpuContext + #define TracyGpuCollect + #define TracyGpuZone(...) +#endif + +namespace MM::OpenGL::RenderTasks { + +ImGuiRT::ImGuiRT(Engine&) { + assert(ImGui::GetCurrentContext()); +} + +ImGuiRT::~ImGuiRT(void) { +} + +void ImGuiRT::render(Services::OpenGLRenderer& rs, Engine&) { + ZoneScopedN("MM::OpenGL::RenderTasks::ImGuiRT::render"); + TracyGpuZone("MM::OpenGL::RenderTasks::ImGuiRT::render"); + + rs.targets["display"]->bind(FrameBufferObject::W); + + // render + ImGui::Render(); + ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData()); +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/imgui.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/imgui.hpp new file mode 100644 index 0000000..432684a --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/imgui.hpp @@ -0,0 +1,18 @@ +#pragma once + +#include "../render_task.hpp" +#include + +namespace MM::OpenGL::RenderTasks { + + // RT to avoid name collisons + class ImGuiRT : public RenderTask { + public: + ImGuiRT(Engine& engine); + ~ImGuiRT(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_rect.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_rect.cpp new file mode 100644 index 0000000..d165fa1 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_rect.cpp @@ -0,0 +1,134 @@ +#include "./simple_rect.hpp" + +#include +#include +#include + +#include + +#include + +#include +#include + +#include +#include + +#include + +#include +#define LOG_SRR(x) LOG("SimpleRectRenderTask", x) + +namespace MM::OpenGL::RenderTasks { + +SimpleRect::SimpleRect(Engine& engine) { + default_cam.setOrthographic(); + default_cam.updateView(); + + float vertices[] = { + -0.5f, 0.5f, + -0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, 0.5f, + -0.5f, 0.5f, + }; + + _vertexBuffer = std::make_unique(vertices, 2 * 6 * sizeof(float), GL_STATIC_DRAW); + _vao = std::make_unique(); + _vao->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + + glEnableVertexAttribArray(0); + glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0); + + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _vao->unbind(); + + setupShaderFiles(); + _shader = Shader::createF(engine, vertexPath, fragmentPath); + assert(_shader != nullptr); +} + +SimpleRect::~SimpleRect(void) { +} + +void SimpleRect::render(Services::OpenGLRenderer& rs, Engine& engine) { + ZoneScopedN("MM::OpenGL::RenderTasks::SimpleRect::render"); + + rs.targets[target_fbo]->bind(FrameBufferObject::W); + + glEnable(GL_DEPTH_TEST); + glDepthFunc(GL_LESS); + + _shader->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + _vao->bind(); + + //_shader->setUniform4f("_color", default_color); + + auto& scene = engine.tryService()->getScene(); + + Camera3D* cam = scene.try_ctx(); + if (!cam) { + cam = &default_cam; + } + + auto vp = cam->getViewProjection(); + + auto view = scene.view(); + + for (auto& e : view) { + auto& t = view.get(e); + + _shader->setUniformMat4f("_WVP", vp * t.getTransform4(t.position.y/10.f + 500.f)); + + if (scene.has(e)) { + _shader->setUniform4f("_color", scene.get(e).color); + } else { + _shader->setUniform4f("_color", default_color); + } + + + glDrawArrays(GL_TRIANGLES, 0, 6); + } + + _vao->unbind(); + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _shader->unbind(); +} + +void SimpleRect::setupShaderFiles(void) { + FS_CONST_MOUNT_FILE(vertexPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +in vec2 _vertexPosition; +uniform mat4 _WVP; + +void main() { + gl_Position = _WVP * vec4(_vertexPosition, 0, 1); +})") + + FS_CONST_MOUNT_FILE(fragmentPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +uniform vec4 _color; + +out vec4 _out_color; + +void main() { + _out_color = _color; + //gl_FragColor = vec4(vec3(gl_FragCoord.z), 1.0); +})") +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_rect.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_rect.hpp new file mode 100644 index 0000000..701f426 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_rect.hpp @@ -0,0 +1,47 @@ +#pragma once + +#include "../render_task.hpp" +#include + +#include + +//#include +#include + +// fwd +namespace MM::OpenGL { + class Shader; + class Buffer; + class VertexArrayObject; +} + +namespace MM::OpenGL::RenderTasks { + + class SimpleRect : public RenderTask { + private: + std::shared_ptr _shader; + std::unique_ptr _vertexBuffer; + std::unique_ptr _vao; + + public: + glm::vec4 default_color {1,1,1,1}; + + Camera3D default_cam; + + SimpleRect(Engine& engine); + ~SimpleRect(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + + public: + const char* vertexPath = "shader/simple_rect_render_task/vert.glsl"; + const char* fragmentPath = "shader/simple_rect_render_task/frag.glsl"; + + std::string target_fbo = "display"; + + private: + void setupShaderFiles(void); + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_sprite.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_sprite.cpp new file mode 100644 index 0000000..68b164e --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_sprite.cpp @@ -0,0 +1,153 @@ +#include "./simple_sprite.hpp" + +#include +#include +#include + +#include + +#include + +#include +#include + +#include +#include +#include + +#include +#ifndef MM_OPENGL_3_GLES + #include +#else + #define TracyGpuContext + #define TracyGpuCollect + #define TracyGpuZone(...) +#endif + + +namespace MM::OpenGL::RenderTasks { + +SimpleSprite::SimpleSprite(Engine& engine) { + default_cam.setOrthographic(); + default_cam.updateView(); + + float vertices[] = { + -0.5f, 0.5f, + -0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, 0.5f, + -0.5f, 0.5f, + }; + + _vertexBuffer = std::make_unique(vertices, 2 * 6 * sizeof(float), GL_STATIC_DRAW); + _vao = std::make_unique(); + _vao->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + + glEnableVertexAttribArray(0); + glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0); + + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _vao->unbind(); + + setupShaderFiles(); + _shader = Shader::createF(engine, vertexPath, fragmentPath); + assert(_shader != nullptr); +} + +SimpleSprite::~SimpleSprite(void) { +} + +void SimpleSprite::render(Services::OpenGLRenderer& rs, Engine& engine) { + ZoneScopedN("MM::OpenGL::RenderTasks::SimpleSprite::render"); + + rs.targets[target_fbo]->bind(FrameBufferObject::W); + + glEnable(GL_DEPTH_TEST); + glDepthFunc(GL_LESS); + + _shader->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + _vao->bind(); + + + auto& scene = engine.tryService()->getScene(); + + auto* cam = scene.try_ctx(); + if (!cam) { + cam = &default_cam; + } + + auto vp = cam->getViewProjection(); + + auto view = scene.view(); + + view.each([&](auto e, Components::Transform2D& t, Components::OpenGL::Texture& tex) { + assert(tex.tex); // debug + + tex.tex->bind(0); + + _shader->setUniformMat4f("_WVP", vp * t.getTransform4(t.position.y/10.f + 500.f)); + + if (scene.has(e)) { + _shader->setUniform4f("_color", scene.get(e).color); + } else { + _shader->setUniform4f("_color", default_color); + } + + glDrawArrays(GL_TRIANGLES, 0, 6); + }); + + _vao->unbind(); + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _shader->unbind(); +} + +void SimpleSprite::setupShaderFiles(void) { + FS_CONST_MOUNT_FILE(vertexPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +in vec2 _vertexPosition; +uniform mat4 _WVP; + +out vec2 _tex_pos; + +void main() { + gl_Position = _WVP * vec4(_vertexPosition, 0, 1); + _tex_pos = vec2(_vertexPosition.x + 0.5, _vertexPosition.y + 0.5); +})") + + FS_CONST_MOUNT_FILE(fragmentPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +uniform vec4 _color; +uniform sampler2D _tex0; + +in vec2 _tex_pos; + +out vec4 _out_color; + +void main() { + vec4 tmp_col = texture(_tex0, _tex_pos) * _color; + + if (tmp_col.a == 0.0) { + discard; + } + + //gl_FragColor = tmp_col; + _out_color = tmp_col; + //gl_FragColor = texture(_tex0, _tex_pos) * _color; +})") +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_sprite.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_sprite.hpp new file mode 100644 index 0000000..00cbfed --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_sprite.hpp @@ -0,0 +1,47 @@ +#pragma once + +#include "../render_task.hpp" +#include + +#include + +//#include +#include + +// fwd +namespace MM::OpenGL { + class Shader; + class Buffer; + class VertexArrayObject; +} + +namespace MM::OpenGL::RenderTasks { + + class SimpleSprite : public RenderTask { + private: + std::shared_ptr _shader; + std::unique_ptr _vertexBuffer; + std::unique_ptr _vao; + + public: + glm::vec4 default_color {1,1,1,1}; + + Camera3D default_cam; + + SimpleSprite(Engine& engine); + ~SimpleSprite(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + + public: + const char* vertexPath = "shader/simple_sprite_render_task/vert.glsl"; + const char* fragmentPath = "shader/simple_sprite_render_task/frag.glsl"; + + std::string target_fbo = "display"; + + private: + void setupShaderFiles(void); + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_spritesheet.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_spritesheet.cpp new file mode 100644 index 0000000..e5b65ad --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_spritesheet.cpp @@ -0,0 +1,178 @@ +#include "./simple_spritesheet.hpp" + +#include +#include +#include + +#include + +#include + +#include +#include + +#include +#include +#include "./spritesheet_renderable.hpp" + +#include +#ifndef MM_OPENGL_3_GLES + #include +#else + #define TracyGpuContext + #define TracyGpuCollect + #define TracyGpuZone(...) +#endif + +#include +#define LOG_SSSR(x) LOG("SimpleSpriteSheetRenderTask", x) + +namespace MM::OpenGL::RenderTasks { + +SimpleSpriteSheet::SimpleSpriteSheet(Engine& engine) { + default_cam.setOrthographic(); + default_cam.updateView(); + + float vertices[] = { + -0.5f, 0.5f, + -0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, 0.5f, + -0.5f, 0.5f, + }; + + _vertexBuffer = std::make_unique(vertices, 2 * 6 * sizeof(float), GL_STATIC_DRAW); + _vao = std::make_unique(); + _vao->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + + glEnableVertexAttribArray(0); + glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0); + + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _vao->unbind(); + + setupShaderFiles(); + _shader = Shader::createF(engine, vertexPath, fragmentPath); + assert(_shader != nullptr); + + auto& scene = engine.tryService()->getScene(); + if (!scene.try_ctx()) { + LOG_SSSR("warn: scene has no Camera!"); + } +} + +SimpleSpriteSheet::~SimpleSpriteSheet(void) { +} + +void SimpleSpriteSheet::render(Services::OpenGLRenderer& rs, Engine& engine) { + ZoneScopedN("MM::OpenGL::RenderTasks::SimpleSpriteSheet::render"); + + rs.targets[target_fbo]->bind(FrameBufferObject::W); + + glEnable(GL_DEPTH_TEST); + glDepthFunc(GL_LESS); + + _shader->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + _vao->bind(); + + + auto& scene = engine.tryService()->getScene(); + + auto* cam = scene.try_ctx(); + if (!cam) { + cam = &default_cam; + } + + auto vp = cam->getViewProjection(); + + auto view = scene.view(); + + view.each([&](auto e, Components::Transform2D& t, SpriteSheetRenderable& spr) { + assert(spr.sp.tex); // debug + + TracyGpuZone("MM::OpenGL::Renderers::SimpleSpriteSheetRenderer::render.each"); + + spr.sp.tex->bind(0); + + _shader->setUniformMat4f("_WVP", vp * t.getTransform4(t.position.y/10.f + 500.f)); + _shader->setUniform2ui("_tileCount", spr.sp.tile_count.x, spr.sp.tile_count.y); + _shader->setUniform1ui("_atlasIndex", spr.tile_index); + + if (scene.has(e)) { + _shader->setUniform4f("_color", scene.get(e).color); + } else { + _shader->setUniform4f("_color", default_color); + } + + glDrawArrays(GL_TRIANGLES, 0, 6); + }); + + _vao->unbind(); + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _shader->unbind(); +} + +void SimpleSpriteSheet::setupShaderFiles(void) { + FS_CONST_MOUNT_FILE(vertexPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +in vec2 _vertexPosition; + +uniform mat4 _WVP; +uniform uvec2 _tileCount; + +uniform uint _atlasIndex; + +out vec2 _tex_pos; + +void main() { + // position + gl_Position = _WVP * vec4(_vertexPosition, 0, 1); + + + // uv + uint row = _atlasIndex / _tileCount.x; + uint column = _atlasIndex % _tileCount.x; + + _tex_pos.x = (float(column) + 0.5 + _vertexPosition.x) / float(_tileCount.x); + _tex_pos.y = 1.0 - (float(row) + 0.5 - _vertexPosition.y) / float(_tileCount.y); + + //_tex_pos = vec2(_vertexPosition.x + 0.5, _vertexPosition.y + 0.5); +})") + + FS_CONST_MOUNT_FILE(fragmentPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +uniform vec4 _color; +uniform sampler2D _tex0; + +in vec2 _tex_pos; + +out vec4 _out_color; + +void main() { + vec4 tmp_col = texture(_tex0, _tex_pos) * _color; + + if (tmp_col.a == 0.0) { + discard; + } + + //gl_FragColor = tmp_col; + _out_color = tmp_col; + //gl_FragColor = texture(_tex0, _tex_pos) * _color; +})") +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_spritesheet.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_spritesheet.hpp new file mode 100644 index 0000000..394e51a --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/simple_spritesheet.hpp @@ -0,0 +1,47 @@ +#pragma once + +#include "../render_task.hpp" +#include + +#include + +//#include +#include + +// fwd +namespace MM::OpenGL { + class Shader; + class Buffer; + class VertexArrayObject; +} + +namespace MM::OpenGL::RenderTasks { + + class SimpleSpriteSheet : public RenderTask { + private: + std::shared_ptr _shader; + std::unique_ptr _vertexBuffer; + std::unique_ptr _vao; + + public: + glm::vec4 default_color {1.f, 1.f, 1.f, 1.f}; + + Camera3D default_cam; + + SimpleSpriteSheet(Engine& engine); + ~SimpleSpriteSheet(void); + + void render(Services::OpenGLRenderer& rs, Engine& engine) override; + + public: + const char* vertexPath = "shader/simple_spritesheet_render_task/vert.glsl"; + const char* fragmentPath = "shader/simple_spritesheet_render_task/frag.glsl"; + + std::string target_fbo = "display"; + + private: + void setupShaderFiles(void); + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/spritesheet_renderable.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/spritesheet_renderable.hpp new file mode 100644 index 0000000..aea73dc --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/spritesheet_renderable.hpp @@ -0,0 +1,12 @@ +#include + +namespace MM::OpenGL { + +struct SpriteSheetRenderable { + SpriteSheet sp; + + uint32_t tile_index = 0; +}; + +} // MM::OpenGL + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap.cpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap.cpp new file mode 100644 index 0000000..787f614 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap.cpp @@ -0,0 +1,193 @@ +#include + +#include +#include +#include + +#include + +#include + +#include +#include + +#include +#include +#include + +#include + +#include "./tilemap_renderable.hpp" + +#include +#ifndef MM_OPENGL_3_GLES + #include +#else + #define TracyGpuContext + #define TracyGpuCollect + #define TracyGpuZone(...) +#endif + +#include +#define LOG_SSR(x) LOG("TilemapRenderTask", x) + +namespace MM::OpenGL::RenderTasks { + +Tilemap::Tilemap(MM::Engine& engine) { + float vertices[] = { + -0.5f, 0.5f, + -0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, -0.5f, + 0.5f, 0.5f, + -0.5f, 0.5f, + }; + + _vertexBuffer = std::make_unique(vertices, 2 * 6 * sizeof(float), GL_STATIC_DRAW); + _vao = std::make_unique(); + _vao->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + + glEnableVertexAttribArray(0); + glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0); + + glEnableVertexAttribArray(1); // Tilemap::Tile::pos + glEnableVertexAttribArray(2); // Tilemap::Tile::atlas_index + //glEnableVertexAttribArray(3); // Tilemap::Tile::color + + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _vao->unbind(); + + setupShaderFiles(); + _shader = MM::OpenGL::Shader::createF(engine, vertexPath, fragmentPath); + assert(_shader != nullptr); +} + +Tilemap::~Tilemap(void) { +} + +void Tilemap::render(MM::Services::OpenGLRenderer& rs, MM::Engine& engine) { + ZoneScopedN("MM::OpenGL::Renderers::TilemapRenderer::render"); + + rs.targets[target_fbo]->bind(MM::OpenGL::FrameBufferObject::W); + + glEnable(GL_DEPTH_TEST); + glDepthFunc(GL_LESS); + + _shader->bind(); + _vertexBuffer->bind(GL_ARRAY_BUFFER); + _vao->bind(); + + + auto& scene = engine.tryService()->getScene(); + + MM::OpenGL::Camera3D& cam = scene.ctx(); + auto vp = cam.getViewProjection(); + + auto view = scene.view(); + view.each([&](auto, MM::Components::Transform2D& t, OpenGL::TilemapRenderable& tilemap) { + _shader->setUniformMat4f("_WVP", vp * t.getTransform4(tilemap.z + 500.f)); + + // for each sprite layer + for (auto& sp_layer : tilemap.sprite_layer) { + assert(sp_layer.sprite_sheet.tex); // debug + assert(sp_layer.map_buffer); + assert(sp_layer.map_buffer->getSize()); + + sp_layer.sprite_sheet.tex->bind(0); + + _shader->setUniform2ui("_tileCount", sp_layer.sprite_sheet.tile_count.x, sp_layer.sprite_sheet.tile_count.y); + + // renderj + { + TracyGpuZone("MM::OpenGL::Renderers::TilemapRenderer::render.each_tilemap.each_sprite_layer"); + + sp_layer.map_buffer->bind(); + OpenGL::TilemapRenderable::Tile::setupGLBindings(); + + glVertexAttribDivisor(1, 1); + glVertexAttribDivisor(2, 1); + //glVertexAttribDivisor(3, 1); + + glDrawArraysInstanced(GL_TRIANGLES, 0, 6, sp_layer.map_buffer->getSize()); + } + } + }); + + _vao->unbind(); + _vertexBuffer->unbind(GL_ARRAY_BUFFER); + _shader->unbind(); +} + +void Tilemap::setupShaderFiles(void) { + FS_CONST_MOUNT_FILE(vertexPath, +GLSL_VERSION_STRING +R"( + +uniform mat4 _WVP; +uniform uvec2 _tileCount; + +layout(location = 0) in vec2 _vertexPosition; +layout(location = 1) in vec2 _tPos; +layout(location = 2) in uint _atlasIndex; +//layout(location = 3) in vec3 _tColor; + +//out vec4 _color; +out vec2 _tex_pos; + +void main() { + //gl_Position = vec4(_WVP * vec3(_vertexPosition, 1), 1); + //mat3 tmp = mat3(_WVP[0], _WVP[1], vec3(_WVP[2][0] * _tPos.x, _WVP[2][1] * _tPos.y, _WVP[2][2])); + //gl_Position = vec4(tmp * vec3(_vertexPosition, 1), 1); + + mat4 tmp = mat4(1.0); + tmp[3] = vec4(_tPos.x, -_tPos.y, -_tPos.y / 10.f, 1); + gl_Position = (_WVP * tmp) * vec4(_vertexPosition, 0, 1); + + + //_color = vec4(_tColor, 1.0); + + uint row = _atlasIndex / _tileCount.x; + uint column = _atlasIndex % _tileCount.x; + + //_tex_pos = vec2(_vertexPosition.x + 0.5, _vertexPosition.y + 0.5); + //_tex_pos.x = _vertexPosition.x + 0.5; + _tex_pos.x = (float(column) + 0.5 + _vertexPosition.x) / float(_tileCount.x); + + _tex_pos.y = 1.0 - (float(row) + 0.5 - _vertexPosition.y) / float(_tileCount.y); + //_tex_pos.y = _vertexPosition.y + 0.5; +} +)") + + FS_CONST_MOUNT_FILE(fragmentPath, +GLSL_VERSION_STRING +R"( +#ifdef GL_ES + precision mediump float; +#endif + +uniform sampler2D _tex0; + +//in vec4 _color; +in vec2 _tex_pos; + +out vec4 _out_color; + +void main() { + vec4 tmp_col = texture(_tex0, _tex_pos); + + if (tmp_col.a == 0.0) { + discard; + } + + //gl_FragColor = tmp_col; + _out_color = tmp_col; + //gl_FragColor = texture(_tex0, _tex_pos); + //gl_FragColor = texture(_tex0, _tex_pos) * _color; + //gl_FragColor = vec4(_tex_pos.x, _tex_pos.y, 0, 1); +} +)") +} + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap.hpp new file mode 100644 index 0000000..a4cd7b4 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap.hpp @@ -0,0 +1,41 @@ +#pragma once + +#include +#include + +//#include +#include + +// fwd +namespace MM::OpenGL { + class Shader; + class Buffer; + class VertexArrayObject; +} + +namespace MM::OpenGL::RenderTasks { + + class Tilemap : public RenderTask { + private: + std::shared_ptr _shader; + std::unique_ptr _vertexBuffer; + std::unique_ptr _vao; + + public: + Tilemap(MM::Engine& engine); + ~Tilemap(void); + + void render(MM::Services::OpenGLRenderer& rs, MM::Engine& engine) override; + + public: + const char* vertexPath = "shader/tilemap_render_task/vert.glsl"; + const char* fragmentPath = "shader/tilemap_render_task/frag.glsl"; + + std::string target_fbo = "display"; + + private: + void setupShaderFiles(void); + }; + +} // MM::OpenGL::RenderTasks + diff --git a/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap_renderable.hpp b/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap_renderable.hpp new file mode 100644 index 0000000..0e9bb8c --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/render_tasks/tilemap_renderable.hpp @@ -0,0 +1,49 @@ +#pragma once + +#include + +#include + +#include + +#include +#include +#include + +namespace MM::OpenGL { + +struct TilemapRenderable { + struct Tile { + float pos[2]; + uint32_t sprite_sheet_index; + //float color[3] = {1.f, 1.f, 1.f}; + + static void setupGLBindings(void) { + static_assert(std::is_standard_layout::value); // check if offsetof() is usable + + glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, sizeof(Tile), (void*) offsetof(Tile, pos)); + glVertexAttribIPointer(2, 1, GL_UNSIGNED_INT, sizeof(Tile), (void*) offsetof(Tile, sprite_sheet_index)); + //glVertexAttribPointer(3, 3, GL_FLOAT, GL_FALSE, sizeof(Tile), (void*) offsetof(Tile, color)); + } + } /*__attribute__((packed))*/; + + struct SpriteLayer { + MM::OpenGL::SpriteSheet sprite_sheet; + + std::vector map; // TODO: move this to tilemap + std::shared_ptr> map_buffer = std::make_shared>(); + + void syncMapBuffer(void) { + auto* arr = map_buffer->map(map.size(), GL_STATIC_DRAW); + std::memcpy(arr, map.data(), map.size() * sizeof(Tile)); + + map_buffer->unmap(); + } + }; + + std::vector sprite_layer; + float z = 0.f; +}; + +} // MM::OpenGL + diff --git a/framework/opengl_renderer/src/mm/opengl/res/default_texture.h b/framework/opengl_renderer/src/mm/opengl/res/default_texture.h new file mode 100644 index 0000000..ae0d597 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/res/default_texture.h @@ -0,0 +1,18 @@ +unsigned char default_png[] = { + 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, + 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x08, 0x06, 0x00, 0x00, 0x00, 0x73, 0x7a, 0x7a, 0xf4, 0x00, 0x00, 0x00, + 0x78, 0x49, 0x44, 0x41, 0x54, 0x58, 0x85, 0xed, 0x96, 0xb1, 0x11, 0x80, + 0x30, 0x0c, 0x03, 0x65, 0x46, 0x33, 0x25, 0x6b, 0xa4, 0x0d, 0xc3, 0x24, + 0x2d, 0x3b, 0x50, 0x51, 0xe2, 0xd5, 0xc2, 0x06, 0x72, 0x87, 0x1b, 0xb9, + 0xfd, 0x3b, 0xdf, 0x9f, 0x0a, 0xd9, 0x36, 0xd0, 0x16, 0xc8, 0x74, 0x1c, + 0x0c, 0x63, 0xf7, 0x49, 0x79, 0x44, 0x50, 0xbe, 0x51, 0xfa, 0xc3, 0x48, + 0x40, 0x02, 0x12, 0xb0, 0x85, 0x9b, 0xf6, 0xc0, 0xc4, 0x43, 0x17, 0x9c, + 0xb8, 0x28, 0x77, 0x77, 0xca, 0xcb, 0x13, 0x90, 0x80, 0x04, 0x24, 0x60, + 0xee, 0x4e, 0x7b, 0x20, 0xbb, 0xe7, 0x03, 0x8d, 0xf2, 0xec, 0x9f, 0x28, + 0x4f, 0x40, 0x02, 0x12, 0x90, 0x80, 0x01, 0xa0, 0x3d, 0x90, 0xdd, 0xf3, + 0x37, 0x3a, 0xe5, 0xd9, 0x3f, 0x51, 0x9e, 0x80, 0x04, 0x24, 0x20, 0x81, + 0x0f, 0x49, 0xf4, 0x16, 0xa3, 0xb7, 0xbf, 0xe8, 0xa6, 0x00, 0x00, 0x00, + 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82 +}; +unsigned int default_png_len = 177; diff --git a/framework/opengl_renderer/src/mm/opengl/res/errig_texture.h b/framework/opengl_renderer/src/mm/opengl/res/errig_texture.h new file mode 100644 index 0000000..663bc19 --- /dev/null +++ b/framework/opengl_renderer/src/mm/opengl/res/errig_texture.h @@ -0,0 +1,1649 @@ +unsigned char errig_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xdb, 0x00, 0x43, + 0x00, 0x03, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x02, 0x02, 0x02, 0x03, + 0x03, 0x03, 0x03, 0x04, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x06, + 0x06, 0x05, 0x06, 0x09, 0x08, 0x0a, 0x0a, 0x09, 0x08, 0x09, 0x09, 0x0a, + 0x0c, 0x0f, 0x0c, 0x0a, 0x0b, 0x0e, 0x0b, 0x09, 0x09, 0x0d, 0x11, 0x0d, + 0x0e, 0x0f, 0x10, 0x10, 0x11, 0x10, 0x0a, 0x0c, 0x12, 0x13, 0x12, 0x10, + 0x13, 0x0f, 0x10, 0x10, 0x10, 0xff, 0xdb, 0x00, 0x43, 0x01, 0x03, 0x03, + 0x03, 0x04, 0x03, 0x04, 0x08, 0x04, 0x04, 0x08, 0x10, 0x0b, 0x09, 0x0b, + 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, + 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, + 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, + 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, + 0x10, 0x10, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x01, 0x27, 0x01, 0x7a, 0x03, + 0x01, 0x11, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, 0xff, 0xc4, 0x00, + 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, + 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, 0xb5, 0x10, 0x00, + 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, + 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, + 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, + 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, 0xd1, 0xf0, 0x24, + 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x25, + 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, + 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, 0x54, 0x55, 0x56, + 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, + 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, 0x84, 0x85, 0x86, + 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, + 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, + 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, + 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, + 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xf1, + 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xff, 0xc4, 0x00, + 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, + 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, 0xb5, 0x11, 0x00, + 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, + 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, + 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, + 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, 0x52, 0xf0, 0x15, + 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, 0xf1, 0x17, 0x18, + 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, 0x37, 0x38, 0x39, + 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, 0x54, 0x55, + 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, + 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x82, 0x83, 0x84, + 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, + 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, + 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, + 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, + 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, + 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xff, 0xda, 0x00, + 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, 0x3f, 0x00, 0xf2, + 0x8d, 0x33, 0x4e, 0x4d, 0x7b, 0x54, 0x30, 0x4c, 0xc7, 0x8e, 0x4d, 0x7c, + 0x34, 0x4f, 0x02, 0x3b, 0x9e, 0xaf, 0xe1, 0x2f, 0x0c, 0x69, 0xf6, 0x12, + 0xc6, 0xca, 0x46, 0xec, 0x8e, 0xd5, 0xdb, 0x45, 0xa3, 0xd0, 0xa2, 0xd1, + 0xf4, 0xef, 0xc3, 0xa8, 0x95, 0x61, 0x88, 0x2f, 0x38, 0xc5, 0x7a, 0xb4, + 0x5a, 0x3d, 0x4a, 0x2d, 0x1e, 0xed, 0xe1, 0xf7, 0x02, 0x35, 0x18, 0xc7, + 0x1c, 0x57, 0xa1, 0x03, 0xa2, 0xe7, 0x4e, 0x8c, 0x02, 0x83, 0xde, 0xb4, + 0x21, 0xf7, 0x2e, 0x5b, 0x48, 0x0a, 0xe2, 0x83, 0x16, 0x45, 0x74, 0x30, + 0x49, 0x23, 0x8c, 0x1a, 0x96, 0xd1, 0x50, 0x5a, 0x9e, 0x7f, 0xe2, 0xeb, + 0xb5, 0x8c, 0x36, 0x31, 0x91, 0x50, 0x77, 0x41, 0x1e, 0x3f, 0xe2, 0x2b, + 0xcf, 0x35, 0xd8, 0x67, 0xd6, 0xb2, 0x93, 0x4c, 0xea, 0x82, 0xd0, 0xe0, + 0x75, 0x4b, 0xc1, 0x96, 0x5d, 0xd5, 0x84, 0x8e, 0x98, 0xa3, 0x9f, 0x92, + 0x70, 0x64, 0x3c, 0x8e, 0xb5, 0x1c, 0xc8, 0x62, 0xc7, 0x32, 0x86, 0x19, + 0xc7, 0x14, 0x9b, 0x45, 0x25, 0xdc, 0xbf, 0xf6, 0xb8, 0x40, 0xea, 0x07, + 0x14, 0xae, 0x52, 0x89, 0x42, 0xff, 0x00, 0x50, 0x8c, 0x29, 0x00, 0x8a, + 0x43, 0x4a, 0xc7, 0x37, 0x79, 0xa8, 0x72, 0x70, 0x6a, 0x26, 0x54, 0x34, + 0x32, 0xe7, 0xbd, 0x2c, 0x3a, 0xd6, 0x27, 0x43, 0x66, 0x6c, 0xd3, 0x16, + 0x38, 0xaa, 0x44, 0x90, 0xb3, 0x31, 0xce, 0x33, 0x4c, 0x4c, 0xab, 0x31, + 0x93, 0x3c, 0x9a, 0xa5, 0xb1, 0x37, 0x45, 0x52, 0xe4, 0x1c, 0x16, 0xa6, + 0x17, 0x44, 0x33, 0xe0, 0xb6, 0xec, 0xf4, 0xaa, 0x1a, 0xd7, 0x62, 0xbb, + 0x5d, 0x2c, 0x7c, 0x13, 0xf5, 0xa0, 0x08, 0x5f, 0x50, 0x8b, 0x9d, 0xc4, + 0x73, 0xef, 0x40, 0x0d, 0x5d, 0x4e, 0x3d, 0xd8, 0xdc, 0x28, 0x02, 0x71, + 0x75, 0x14, 0x8b, 0xc5, 0x00, 0x43, 0x27, 0x3d, 0x28, 0x02, 0x36, 0x87, + 0x03, 0xbd, 0x0c, 0x0a, 0xd2, 0xc6, 0x07, 0x15, 0x20, 0x57, 0x60, 0x33, + 0xd2, 0x80, 0x00, 0x7d, 0x3f, 0x95, 0x00, 0x3d, 0x5b, 0xfc, 0xe2, 0x80, + 0x1f, 0x91, 0x40, 0x9e, 0xc2, 0x1e, 0xdf, 0x4a, 0x57, 0x24, 0x61, 0xeb, + 0x45, 0xc0, 0x8d, 0xc8, 0x0b, 0xcd, 0x52, 0x65, 0x23, 0x1f, 0x55, 0x40, + 0xf1, 0xb6, 0x00, 0xe9, 0x57, 0x16, 0x89, 0x9e, 0xc7, 0x93, 0x78, 0xc6, + 0xd0, 0x10, 0xdc, 0x7e, 0x95, 0x71, 0x68, 0xe4, 0x99, 0xe4, 0xba, 0xcc, + 0x3e, 0x5d, 0xc1, 0x00, 0x7b, 0xd7, 0x4c, 0x59, 0xe7, 0x55, 0xdc, 0xca, + 0xe4, 0x13, 0xf4, 0xab, 0x5b, 0x9c, 0xec, 0x71, 0x39, 0x18, 0x35, 0xb2, + 0x21, 0xbb, 0x95, 0x9d, 0xb0, 0x7f, 0x95, 0x31, 0xa1, 0xa1, 0xf1, 0x93, + 0xcf, 0x35, 0x1d, 0x42, 0x5a, 0xa2, 0x44, 0x94, 0x8c, 0x1a, 0x09, 0x69, + 0xd8, 0xbd, 0x14, 0xfd, 0x39, 0xa6, 0x44, 0x62, 0xee, 0x5c, 0x8e, 0xe7, + 0x23, 0xad, 0x26, 0x8d, 0xd6, 0xc3, 0xfe, 0xd6, 0x46, 0x08, 0x35, 0x8c, + 0xf5, 0x29, 0x3b, 0x33, 0xa0, 0xd0, 0xf5, 0x06, 0x0c, 0xb9, 0x63, 0xf9, + 0xd7, 0x15, 0x54, 0x74, 0x41, 0x9d, 0x9a, 0x6a, 0x67, 0x62, 0xfc, 0xe7, + 0xa0, 0xef, 0x5c, 0x8d, 0x32, 0xec, 0x7a, 0x9f, 0x87, 0xef, 0x2f, 0x2d, + 0x2e, 0xbe, 0xd9, 0x96, 0x1b, 0xb8, 0xeb, 0x5e, 0x4a, 0x3e, 0x1e, 0x27, + 0xa7, 0x78, 0x33, 0x55, 0xbe, 0xbc, 0xbd, 0x8c, 0x16, 0x62, 0x33, 0xeb, + 0x5d, 0x94, 0x8e, 0xda, 0x2e, 0xc7, 0xd6, 0x9f, 0x0d, 0xef, 0x3c, 0x88, + 0x21, 0x57, 0x3d, 0x40, 0xeb, 0x5e, 0xa5, 0x16, 0x7a, 0x94, 0x9d, 0x8f, + 0x79, 0xd1, 0x66, 0x53, 0x1c, 0x45, 0x7b, 0x8c, 0xd7, 0xa1, 0x4d, 0x9d, + 0x17, 0x47, 0x4e, 0xae, 0x7c, 0xa5, 0x39, 0xe3, 0x15, 0xb5, 0xc9, 0x93, + 0xba, 0x25, 0xb5, 0x94, 0x93, 0xc7, 0x34, 0x9b, 0x22, 0xf6, 0x17, 0x54, + 0xbc, 0x5b, 0x7b, 0x66, 0x24, 0x8e, 0x01, 0xa8, 0x7d, 0xcd, 0x20, 0xb5, + 0xb9, 0xe2, 0x9e, 0x36, 0xf1, 0x32, 0x09, 0x5d, 0x77, 0x0a, 0xca, 0x4e, + 0xe7, 0x6d, 0x35, 0x7d, 0x0f, 0x2b, 0xd5, 0xf5, 0xa4, 0x62, 0xc4, 0xb0, + 0xa8, 0x3a, 0xe1, 0x16, 0x70, 0xba, 0x96, 0xa4, 0x4b, 0xb9, 0xcf, 0x73, + 0x5c, 0xd3, 0x95, 0xce, 0xb8, 0xad, 0x0c, 0x39, 0x75, 0x22, 0x0e, 0x77, + 0x54, 0x97, 0xca, 0x88, 0xbf, 0xb5, 0x70, 0xdd, 0x68, 0xb8, 0xd4, 0x51, + 0x33, 0x6a, 0xae, 0x47, 0x07, 0xf5, 0xa5, 0x72, 0xd2, 0x45, 0x2b, 0xab, + 0xd7, 0x7e, 0xac, 0x6a, 0x5b, 0x15, 0x8c, 0xb9, 0x66, 0x25, 0x8f, 0x39, + 0xa9, 0x93, 0x6c, 0xa4, 0x8a, 0xd2, 0x31, 0x23, 0xad, 0x40, 0xc8, 0xb6, + 0x12, 0x4f, 0x02, 0x9a, 0x07, 0xa0, 0xa5, 0x92, 0x25, 0x24, 0x8e, 0xb5, + 0x44, 0x36, 0x66, 0xdf, 0xdf, 0xc2, 0x80, 0xf0, 0x38, 0xaa, 0x44, 0x98, + 0x17, 0x5a, 0xdc, 0x71, 0x9e, 0xa2, 0x98, 0x19, 0x37, 0xde, 0x25, 0x58, + 0xf3, 0x86, 0x15, 0x45, 0x47, 0x63, 0x9e, 0xbd, 0xf1, 0x59, 0xc9, 0xc3, + 0xd0, 0x32, 0x92, 0x78, 0x99, 0xdc, 0xf2, 0xf4, 0x01, 0x3a, 0xeb, 0xb2, + 0x1f, 0x9f, 0x77, 0x1f, 0x5a, 0x00, 0xb1, 0x07, 0x89, 0x19, 0x4e, 0x0b, + 0x50, 0x06, 0xad, 0xbe, 0xbf, 0xbc, 0x0c, 0xb0, 0xa0, 0x0b, 0x23, 0x5a, + 0x0f, 0xc6, 0x68, 0x60, 0x4b, 0x1d, 0xd0, 0x9f, 0xbd, 0x48, 0x12, 0x14, + 0x25, 0x4b, 0x50, 0x04, 0x40, 0xe3, 0xbd, 0x00, 0x3c, 0x1e, 0x68, 0x01, + 0xe0, 0xf3, 0x8c, 0xe7, 0x8a, 0x4f, 0x60, 0x03, 0x9c, 0x8a, 0x8e, 0x64, + 0x40, 0xc3, 0x9c, 0xff, 0x00, 0xf5, 0xa8, 0xb8, 0x5a, 0xe4, 0x33, 0x0e, + 0x05, 0x52, 0x65, 0xa4, 0x67, 0xde, 0xc6, 0x5a, 0x32, 0x71, 0xd8, 0xd5, + 0xc5, 0xdc, 0x99, 0xa3, 0xcd, 0xfc, 0x59, 0x6d, 0x92, 0xfc, 0x56, 0xb1, + 0xd0, 0xe3, 0x99, 0xe4, 0xbe, 0x20, 0xb4, 0x1f, 0x68, 0x63, 0x8e, 0xd5, + 0xd1, 0x03, 0xcf, 0xab, 0xb9, 0xcc, 0x4c, 0x9b, 0x09, 0xad, 0x51, 0xcc, + 0xc8, 0x4b, 0x7f, 0xb5, 0x5a, 0xc5, 0x91, 0xca, 0x46, 0xea, 0x7a, 0xe2, + 0xa8, 0x6b, 0x42, 0x26, 0xce, 0x78, 0xe2, 0xa7, 0xa8, 0xd8, 0x2e, 0x7d, + 0x79, 0xa4, 0x22, 0x54, 0x90, 0x83, 0x8c, 0xd5, 0x25, 0x7d, 0x41, 0x22, + 0xca, 0xcc, 0x47, 0x7e, 0x94, 0x49, 0x68, 0x31, 0x52, 0x56, 0x66, 0x0b, + 0xeb, 0x58, 0xcd, 0x0b, 0xa9, 0xbb, 0xa5, 0x97, 0x52, 0x08, 0xcd, 0x71, + 0xd4, 0x5d, 0x4e, 0xaa, 0x6f, 0x4b, 0x1d, 0x2a, 0x4f, 0x26, 0xd1, 0xf3, + 0x76, 0xae, 0x46, 0x8d, 0x8f, 0xa3, 0x21, 0xfb, 0x04, 0x17, 0xc6, 0x34, + 0x91, 0x1d, 0x41, 0xfb, 0x82, 0xbc, 0x7b, 0x6a, 0x7c, 0x24, 0x25, 0xa9, + 0xe9, 0x7e, 0x18, 0xfb, 0x3c, 0x6a, 0x92, 0xdb, 0xdb, 0x00, 0x73, 0xd4, + 0x57, 0x5d, 0x2d, 0xce, 0xda, 0x4c, 0xfa, 0x27, 0xe1, 0x66, 0xb5, 0x04, + 0xa6, 0x38, 0x6e, 0x22, 0x04, 0x8e, 0x84, 0xd7, 0xa7, 0x44, 0xf4, 0xa9, + 0xcb, 0x43, 0xe8, 0xbf, 0x0c, 0xda, 0x3d, 0xd2, 0xa4, 0x88, 0xe4, 0x28, + 0xc7, 0x15, 0xe8, 0x40, 0xdc, 0xef, 0x60, 0xb6, 0x8c, 0x40, 0xaa, 0xe3, + 0x71, 0xc5, 0x6c, 0x0d, 0x83, 0x42, 0x91, 0x1f, 0x95, 0x71, 0x4a, 0xc5, + 0x45, 0x5c, 0xe1, 0xbc, 0x75, 0xaa, 0xcb, 0x6b, 0x03, 0xa8, 0x72, 0x3a, + 0xd6, 0x72, 0x95, 0x8e, 0xa8, 0x44, 0xf9, 0xff, 0x00, 0xc5, 0x3a, 0xd0, + 0x95, 0x9f, 0x3c, 0x9c, 0xd7, 0x34, 0xa5, 0xd4, 0xed, 0xa7, 0x13, 0xcf, + 0x35, 0x5b, 0xe9, 0x19, 0x5b, 0x6f, 0x15, 0x93, 0x9b, 0x3a, 0xe1, 0x13, + 0x9c, 0xb8, 0xb8, 0xce, 0x43, 0x1c, 0xd6, 0x6d, 0xdc, 0xe9, 0x4b, 0x43, + 0x2e, 0x69, 0x57, 0x91, 0x45, 0xc7, 0x15, 0x66, 0x55, 0x69, 0x80, 0x39, + 0x26, 0xa6, 0x5a, 0x95, 0x6b, 0x8d, 0x7b, 0xcc, 0x8c, 0x6e, 0xa4, 0x9d, + 0x8a, 0x4a, 0xc4, 0x6d, 0x70, 0x58, 0x13, 0xbf, 0x34, 0x9b, 0x57, 0x1d, + 0x8a, 0x73, 0x4e, 0x41, 0xc0, 0x34, 0xae, 0x4b, 0x56, 0x20, 0x37, 0xc1, + 0x0f, 0xce, 0xc2, 0xa4, 0x9b, 0x95, 0xef, 0x35, 0xcb, 0x78, 0x63, 0x27, + 0x78, 0x07, 0x14, 0xd0, 0x9b, 0x39, 0x4d, 0x5f, 0xc6, 0x29, 0x00, 0xff, + 0x00, 0x5e, 0x3a, 0xfa, 0xf4, 0xaa, 0x20, 0xe3, 0xb5, 0x6f, 0x1d, 0x8c, + 0x1c, 0x4f, 0xfa, 0xd5, 0x20, 0x38, 0xed, 0x47, 0xc7, 0x52, 0x02, 0xd8, + 0x9f, 0xf5, 0xa6, 0x06, 0x0d, 0xcf, 0x8b, 0xaf, 0x2e, 0x5b, 0x72, 0x4e, + 0xd8, 0xfa, 0xd5, 0x15, 0x1d, 0x88, 0xd3, 0x59, 0xba, 0x94, 0xfc, 0xce, + 0x4f, 0xd4, 0xd0, 0x33, 0x56, 0xce, 0xfe, 0x4c, 0x65, 0x94, 0xd0, 0x05, + 0xe3, 0x71, 0x70, 0xe9, 0xb9, 0x0b, 0x01, 0xed, 0x40, 0x11, 0x2d, 0xc5, + 0xd8, 0x6e, 0xaf, 0x40, 0x1a, 0x96, 0x7a, 0x8c, 0xc8, 0xa0, 0x31, 0x34, + 0x01, 0xa1, 0x06, 0xa3, 0x2e, 0x73, 0x93, 0xf9, 0xd0, 0xc0, 0xd7, 0xb3, + 0xd5, 0x99, 0x31, 0xcd, 0x48, 0x1b, 0xb6, 0xba, 0xac, 0x72, 0xae, 0xce, + 0xe6, 0x80, 0x2d, 0xa6, 0xd2, 0x48, 0x20, 0x0a, 0x00, 0x71, 0x5e, 0x38, + 0xed, 0x40, 0x02, 0x06, 0xdf, 0xc9, 0x34, 0x9e, 0xc2, 0x24, 0xc0, 0x3d, + 0x45, 0x45, 0x85, 0x60, 0xda, 0x28, 0xb0, 0xd1, 0x05, 0xc2, 0x1c, 0x8c, + 0x74, 0xaa, 0x48, 0xa4, 0x53, 0xbb, 0x42, 0x23, 0x24, 0xd5, 0xc5, 0x58, + 0x99, 0x1e, 0x6f, 0xe2, 0xd3, 0xb4, 0xb0, 0xce, 0x2b, 0x48, 0xea, 0x73, + 0xcc, 0xf2, 0x8d, 0x6b, 0xe6, 0x95, 0x8f, 0x5a, 0xe9, 0x81, 0xe7, 0x55, + 0x47, 0x27, 0x76, 0x83, 0x71, 0x18, 0xad, 0x56, 0xe7, 0x1c, 0x96, 0xa5, + 0x29, 0x17, 0x1c, 0x72, 0x2b, 0x58, 0xa2, 0x46, 0xf3, 0x8c, 0x1a, 0xa0, + 0x23, 0x65, 0xc7, 0x6f, 0xfe, 0xbd, 0x4f, 0x50, 0x1a, 0x55, 0x8f, 0x19, + 0xc0, 0xa0, 0x04, 0x48, 0x8e, 0x47, 0xef, 0x78, 0xab, 0x5a, 0x01, 0x3b, + 0xc6, 0x55, 0x73, 0xe6, 0x0e, 0x2a, 0x64, 0xc6, 0xd7, 0x61, 0x60, 0x6e, + 0xc1, 0xc6, 0x7b, 0x56, 0x32, 0x61, 0x14, 0xdb, 0x3a, 0xdf, 0x0d, 0xdb, + 0x99, 0x65, 0x50, 0xc7, 0x70, 0x26, 0xb9, 0x2a, 0xbd, 0x0e, 0xca, 0x31, + 0x3b, 0xf4, 0xd3, 0xa0, 0xda, 0x3f, 0x74, 0x3a, 0x0a, 0xe4, 0x3a, 0x39, + 0x4f, 0xaa, 0xb5, 0x7f, 0x82, 0x72, 0x68, 0xce, 0x35, 0x75, 0xba, 0x8a, + 0x44, 0x72, 0x06, 0x16, 0xbc, 0xb4, 0xac, 0x7e, 0x79, 0x13, 0xa6, 0xf0, + 0xb2, 0x69, 0x9a, 0x7c, 0x6b, 0x0d, 0xc9, 0x4c, 0x8f, 0x53, 0x5d, 0x14, + 0xb5, 0x67, 0x6d, 0x13, 0xd6, 0x7c, 0x09, 0x25, 0x93, 0xdf, 0xc5, 0xf6, + 0x52, 0xbc, 0x9e, 0xc6, 0xbd, 0x3a, 0x29, 0x1e, 0x8c, 0x19, 0xf5, 0x57, + 0x82, 0x23, 0x9b, 0xec, 0x2b, 0xb7, 0x3d, 0x07, 0x6a, 0xee, 0x81, 0xd3, + 0x17, 0x73, 0xb7, 0x8b, 0x28, 0x99, 0x91, 0xbb, 0x56, 0xac, 0x6d, 0x5f, + 0x43, 0x23, 0x5d, 0xd7, 0xad, 0x6c, 0x22, 0x25, 0xa5, 0x5e, 0x38, 0xeb, + 0x4a, 0xe6, 0xf4, 0xa0, 0x78, 0x97, 0xc4, 0x3f, 0x1a, 0x45, 0x3a, 0x3a, + 0xa4, 0x99, 0xc9, 0xf5, 0xac, 0x64, 0xce, 0xea, 0x70, 0x3c, 0x4b, 0x57, + 0xd5, 0xc4, 0xcc, 0xc4, 0xb7, 0x73, 0x5c, 0xd3, 0x67, 0x64, 0x20, 0x73, + 0x3a, 0x96, 0xa0, 0x9e, 0x5b, 0x62, 0xb2, 0x3a, 0xa1, 0x16, 0x73, 0xf3, + 0x5d, 0x83, 0x93, 0xb8, 0x56, 0x77, 0x35, 0xb1, 0x9b, 0x3d, 0xda, 0xe7, + 0xa8, 0xe3, 0xde, 0x93, 0x97, 0x60, 0xb1, 0x4e, 0x4b, 0xbe, 0x0f, 0x35, + 0x0e, 0x4c, 0xa4, 0x53, 0x17, 0x6d, 0xb8, 0xf3, 0x4a, 0xec, 0xa4, 0x87, + 0x9b, 0xad, 0xaa, 0x72, 0x71, 0x50, 0xd9, 0x49, 0xd8, 0xa7, 0x25, 0xf8, + 0xde, 0x41, 0x23, 0xf3, 0xab, 0x8b, 0xb9, 0x13, 0x39, 0xdd, 0x6f, 0x5a, + 0x10, 0x02, 0x55, 0xba, 0x7b, 0xd3, 0x31, 0x67, 0x03, 0xae, 0xf8, 0xba, + 0x65, 0x0c, 0x15, 0xcd, 0x34, 0x4d, 0xce, 0x1a, 0xff, 0x00, 0xc4, 0x77, + 0x77, 0x6c, 0xcb, 0xb9, 0xb8, 0xaa, 0x03, 0x9c, 0xbc, 0xbd, 0xbc, 0x99, + 0xf6, 0x8d, 0xdf, 0x95, 0x52, 0x02, 0x5b, 0x3d, 0x0a, 0xea, 0xff, 0x00, + 0x19, 0x53, 0xcf, 0xb5, 0x32, 0x6e, 0x74, 0x7a, 0x57, 0x81, 0x25, 0x30, + 0xe5, 0xd3, 0x3c, 0xfa, 0x55, 0x1a, 0x47, 0x63, 0x72, 0xd3, 0xc0, 0x98, + 0x23, 0x28, 0x3f, 0x2a, 0x06, 0x6a, 0xc5, 0xe0, 0x90, 0x38, 0xda, 0x3f, + 0x2a, 0x00, 0xd7, 0xb6, 0xf0, 0x8a, 0x2c, 0x2a, 0xa5, 0x06, 0x47, 0xb5, + 0x00, 0x24, 0xbe, 0x13, 0x88, 0x0f, 0xb8, 0x28, 0x02, 0x9c, 0x9e, 0x1c, + 0x08, 0x7e, 0x55, 0xa0, 0x05, 0x4d, 0x10, 0xa7, 0x6a, 0x18, 0x0e, 0xfe, + 0xcd, 0x28, 0x6a, 0x40, 0xb9, 0x6b, 0x09, 0x88, 0x87, 0xf4, 0xa0, 0x0d, + 0x78, 0x6e, 0x72, 0x68, 0x02, 0xea, 0x49, 0xb8, 0x62, 0x80, 0x25, 0x4e, + 0x5b, 0x38, 0xa0, 0x07, 0xe3, 0xd8, 0xd2, 0xb2, 0x06, 0x80, 0x0f, 0x63, + 0x45, 0x90, 0x24, 0x35, 0x94, 0x36, 0x2a, 0x92, 0x2d, 0x22, 0xb5, 0xe4, + 0x63, 0xc9, 0x27, 0xda, 0x9a, 0xdc, 0x99, 0xa3, 0xcc, 0x3c, 0x63, 0x11, + 0xdc, 0xf8, 0xad, 0x62, 0x91, 0xcb, 0x33, 0xc9, 0xf5, 0x74, 0xfd, 0xe1, + 0xdc, 0x0d, 0x6f, 0x03, 0xce, 0xad, 0xb9, 0xcb, 0x5e, 0x21, 0xcf, 0x15, + 0xaa, 0x38, 0xe5, 0xb9, 0x42, 0x44, 0xce, 0x49, 0xad, 0x62, 0x49, 0x1e, + 0x01, 0x1f, 0xfd, 0x7a, 0xa1, 0xa4, 0x34, 0xa6, 0x7b, 0x7e, 0xb5, 0x23, + 0xb0, 0x18, 0xb2, 0x38, 0xa4, 0x49, 0x1a, 0xc4, 0xea, 0xd9, 0x2c, 0x29, + 0xdd, 0x8d, 0x0f, 0x9f, 0x76, 0xcc, 0x13, 0xda, 0x8b, 0x9b, 0x28, 0x5c, + 0x2c, 0xe2, 0x95, 0xdf, 0x80, 0x4f, 0xa0, 0xac, 0x26, 0xcb, 0x8c, 0x35, + 0x3b, 0x8f, 0x0b, 0xc7, 0x2a, 0x4c, 0xa1, 0x90, 0x8e, 0x7b, 0x8a, 0xe2, + 0xab, 0xa9, 0xdb, 0x4a, 0x1d, 0x4f, 0x47, 0x42, 0xdb, 0x17, 0xe5, 0xec, + 0x2b, 0x97, 0x98, 0xdb, 0x94, 0xfa, 0x6a, 0x2f, 0x89, 0x5a, 0xac, 0xfa, + 0x72, 0xd9, 0xea, 0x33, 0x86, 0x55, 0xe8, 0x31, 0xde, 0xb8, 0x12, 0xbb, + 0x3f, 0x34, 0x89, 0xce, 0x4f, 0xad, 0x5c, 0x5e, 0x5d, 0x83, 0x14, 0xe0, + 0x64, 0xfa, 0xd7, 0x4d, 0x35, 0x66, 0x75, 0x52, 0x95, 0x99, 0xf4, 0x07, + 0xc0, 0xdb, 0x5b, 0x99, 0xae, 0xa0, 0x92, 0x47, 0x0d, 0xcf, 0xae, 0x6b, + 0xd2, 0xa2, 0x7a, 0x34, 0x9d, 0xcf, 0xb5, 0xbc, 0x25, 0x7b, 0x0d, 0x8e, + 0x96, 0x3c, 0xce, 0x30, 0xa3, 0xad, 0x76, 0x43, 0x43, 0xb6, 0x2a, 0xe6, + 0x2f, 0x8b, 0x7e, 0x25, 0x41, 0xa6, 0xa3, 0xa4, 0x77, 0x0a, 0x0f, 0x3d, + 0xea, 0xdc, 0xcd, 0xe1, 0x03, 0xc3, 0xfc, 0x63, 0xf1, 0x6e, 0x5b, 0x8d, + 0xc9, 0xf6, 0x9e, 0xfe, 0xb5, 0x12, 0x9f, 0x63, 0xaa, 0x10, 0x3c, 0xa7, + 0x5e, 0xf8, 0x82, 0x92, 0x44, 0x7c, 0xcb, 0x90, 0x4e, 0x7f, 0xbd, 0x59, + 0x4a, 0x47, 0x64, 0x22, 0x71, 0x1a, 0x87, 0x8f, 0x6d, 0xc0, 0x38, 0x9c, + 0x13, 0x93, 0xde, 0xb9, 0xa7, 0x33, 0xb2, 0x9a, 0xd0, 0xcc, 0xff, 0x00, + 0x84, 0xc2, 0x1b, 0xa5, 0x20, 0xc9, 0x9c, 0xf6, 0xac, 0xa5, 0x23, 0x72, + 0x29, 0x35, 0x35, 0x91, 0x77, 0x2c, 0x80, 0xe7, 0xb6, 0x6b, 0x3b, 0x81, + 0x9f, 0x35, 0xf3, 0x12, 0x7e, 0x6a, 0x96, 0x05, 0x7f, 0xb6, 0xb9, 0x38, + 0xc9, 0xe6, 0x90, 0xd1, 0x38, 0x3e, 0xf9, 0xa9, 0x65, 0x5c, 0x64, 0xf2, + 0x32, 0xa1, 0x1e, 0x94, 0x8a, 0x52, 0x47, 0x3d, 0xa9, 0x5f, 0x98, 0x55, + 0x98, 0x37, 0x34, 0xe2, 0x43, 0x38, 0x9d, 0x6b, 0x53, 0x92, 0x62, 0x46, + 0x49, 0xad, 0x08, 0x4a, 0xe7, 0x35, 0x3d, 0x93, 0x5d, 0xe7, 0x20, 0xf3, + 0xed, 0x4d, 0x12, 0xe3, 0xa9, 0x55, 0x3c, 0x39, 0xf3, 0xb6, 0x53, 0xad, + 0x51, 0x36, 0xb1, 0x7a, 0xcf, 0xc1, 0xd1, 0x4a, 0xe0, 0x94, 0x15, 0x48, + 0x0e, 0xa7, 0x4e, 0xf0, 0xe5, 0xad, 0x9a, 0x83, 0x95, 0x18, 0xf7, 0xa6, + 0x06, 0xf5, 0x95, 0xbd, 0xba, 0x44, 0x46, 0x57, 0x8a, 0xa2, 0xa3, 0xb1, + 0x37, 0x9b, 0x04, 0x7c, 0x06, 0x5a, 0x76, 0xb8, 0x37, 0x62, 0xcc, 0x37, + 0x76, 0xe7, 0xac, 0x89, 0xf9, 0x8a, 0x39, 0x58, 0xb9, 0x91, 0x23, 0x5e, + 0x5b, 0xa9, 0xff, 0x00, 0x5a, 0x9f, 0x9d, 0x3e, 0x46, 0x1c, 0xe8, 0x85, + 0xaf, 0x60, 0x6c, 0x81, 0x2a, 0x1f, 0xc6, 0x95, 0xac, 0x1c, 0xe3, 0x1b, + 0xca, 0x93, 0xa3, 0x2d, 0x21, 0x5c, 0x8c, 0xc2, 0x9f, 0xc3, 0x8a, 0x19, + 0x65, 0x59, 0xe1, 0xc1, 0xcd, 0x48, 0x0c, 0xf2, 0xb0, 0xbd, 0x3b, 0x50, + 0x04, 0x96, 0xd1, 0x9c, 0x8c, 0x8a, 0x00, 0xd7, 0xb6, 0x84, 0x9c, 0x71, + 0x40, 0x16, 0x9a, 0x12, 0x80, 0x1d, 0xbd, 0x68, 0x0d, 0xb5, 0x13, 0xeb, + 0x9a, 0x01, 0x48, 0x4f, 0xc6, 0x82, 0xd0, 0xc7, 0x6c, 0x11, 0xd6, 0xa9, + 0x14, 0x41, 0x72, 0x33, 0x13, 0x7d, 0x2a, 0xa2, 0x67, 0x23, 0xcd, 0xfc, + 0x5f, 0x1e, 0x77, 0xd6, 0xc8, 0xe5, 0x91, 0xe4, 0xba, 0xda, 0x6d, 0x99, + 0x86, 0x2b, 0x68, 0x9c, 0x15, 0x55, 0xd9, 0xc9, 0x5e, 0x80, 0x1b, 0xeb, + 0x56, 0xb7, 0x39, 0x25, 0x1b, 0x32, 0x8c, 0x83, 0xa9, 0xad, 0xa2, 0x66, + 0xca, 0xc4, 0xe3, 0x3f, 0x5a, 0x1b, 0x1a, 0x1c, 0x00, 0x3c, 0xd2, 0xba, + 0x02, 0x40, 0x84, 0x83, 0xb4, 0x12, 0x6a, 0x39, 0x87, 0xcb, 0xd8, 0x60, + 0xb7, 0x9e, 0x57, 0xda, 0xa8, 0x7f, 0x2a, 0x5c, 0xe8, 0x23, 0x09, 0x37, + 0x66, 0x6e, 0xe9, 0x9e, 0x11, 0xb8, 0xbf, 0xc6, 0xe4, 0xe0, 0xfa, 0x8a, + 0x5c, 0xe7, 0x5c, 0x29, 0x33, 0xbb, 0xd0, 0x3e, 0x17, 0xa6, 0xe4, 0x9a, + 0x4d, 0x9f, 0x9d, 0x63, 0x29, 0x9d, 0x31, 0xa2, 0xce, 0x89, 0x7c, 0x1c, + 0x96, 0x32, 0x6e, 0x58, 0xf1, 0x8a, 0xe4, 0xa8, 0xee, 0xee, 0x75, 0x42, + 0x93, 0x34, 0x16, 0xcc, 0x05, 0x03, 0x6f, 0x41, 0x5c, 0x8c, 0xd7, 0x90, + 0xfa, 0x3b, 0x52, 0xf8, 0x4b, 0xa8, 0x5b, 0x59, 0xac, 0xd7, 0x1b, 0x41, + 0x27, 0x1c, 0x3d, 0x62, 0x95, 0xcf, 0xca, 0xe4, 0xca, 0x1a, 0x77, 0xc2, + 0x3d, 0x52, 0x79, 0x95, 0xe1, 0x52, 0x46, 0x7f, 0xbd, 0x5b, 0x41, 0x7b, + 0xda, 0x0e, 0x9c, 0xb5, 0x3e, 0x89, 0xf8, 0x33, 0xe1, 0x4d, 0x53, 0xc3, + 0xe6, 0x36, 0x9d, 0x00, 0xda, 0x7b, 0xd7, 0x7d, 0x3d, 0xcf, 0x63, 0x0c, + 0xee, 0x7b, 0x2e, 0xbd, 0xe3, 0xaf, 0xec, 0xad, 0x35, 0xa2, 0x69, 0x14, + 0x1d, 0xbd, 0xab, 0x57, 0x33, 0xdd, 0xc3, 0xd2, 0xba, 0x3e, 0x6d, 0xf1, + 0xff, 0x00, 0xc5, 0x07, 0xfb, 0x44, 0xa7, 0xed, 0x0d, 0x8c, 0x9e, 0xf4, + 0xb9, 0xce, 0xd8, 0x51, 0x3c, 0x37, 0xc5, 0xbf, 0x15, 0x99, 0x59, 0xbf, + 0x7c, 0x7a, 0xd6, 0x52, 0x99, 0xd7, 0x0a, 0x5a, 0x1e, 0x63, 0xac, 0xfc, + 0x55, 0xba, 0x94, 0x11, 0x1c, 0xac, 0x46, 0x6b, 0x09, 0x48, 0xd1, 0x53, + 0xb1, 0xcf, 0x45, 0xe3, 0xbb, 0xc9, 0xa4, 0xcb, 0x48, 0xc4, 0x67, 0xd4, + 0xd6, 0x32, 0x93, 0x2e, 0x2a, 0xc6, 0xfe, 0x9b, 0xe2, 0xf9, 0x0e, 0x37, + 0x39, 0xfc, 0x6b, 0x2b, 0x96, 0x74, 0x7a, 0x6f, 0x8a, 0x4c, 0x8c, 0x01, + 0x7a, 0xbb, 0x15, 0x74, 0x6d, 0x45, 0xaa, 0xbc, 0xec, 0x08, 0x61, 0x56, + 0x86, 0x9a, 0x35, 0x6c, 0xd2, 0x6b, 0x8d, 0xa4, 0x28, 0xc1, 0xf6, 0xab, + 0x51, 0xb8, 0xd9, 0xbb, 0x6f, 0xa7, 0xc8, 0x10, 0x65, 0x7b, 0x75, 0xa1, + 0xc5, 0x10, 0xd9, 0x52, 0xfa, 0xc1, 0xc8, 0x20, 0x7a, 0x54, 0xec, 0x41, + 0xc8, 0x6a, 0xda, 0x63, 0x9d, 0xc0, 0xe7, 0x1f, 0x5a, 0x90, 0x89, 0xcd, + 0x5c, 0xe9, 0x44, 0xbf, 0x2a, 0x2a, 0x8d, 0x6d, 0x71, 0x63, 0xd3, 0x92, + 0x31, 0x92, 0x05, 0x01, 0xca, 0x88, 0xe6, 0x85, 0x10, 0xe5, 0x71, 0x40, + 0x9a, 0x4c, 0x89, 0x6f, 0x96, 0xdb, 0x2c, 0x48, 0x18, 0xf4, 0xa0, 0x5b, + 0x19, 0x57, 0xbe, 0x2a, 0x8e, 0x39, 0x08, 0xdf, 0xfa, 0xd0, 0x4d, 0x91, + 0x52, 0x7f, 0x1a, 0xc9, 0x11, 0x09, 0x1b, 0x13, 0x91, 0x9a, 0xd6, 0x04, + 0xde, 0xc5, 0x59, 0x3c, 0x59, 0xa8, 0xc8, 0x32, 0xa1, 0xbf, 0x23, 0x5d, + 0x31, 0x8a, 0x33, 0x94, 0xcc, 0xab, 0xcf, 0x1e, 0x5f, 0xda, 0x1e, 0x59, + 0x81, 0xad, 0xd4, 0x74, 0x39, 0xa5, 0x52, 0xc6, 0x6b, 0x7c, 0x47, 0xbe, + 0x90, 0xf1, 0x21, 0xfd, 0x68, 0xe5, 0x21, 0xd4, 0xb9, 0x66, 0xd7, 0xe2, + 0x1d, 0xd2, 0x30, 0xf3, 0x24, 0x6a, 0x89, 0x45, 0x17, 0x09, 0x1d, 0x0d, + 0x87, 0xc4, 0x35, 0x91, 0x40, 0x69, 0x39, 0xae, 0x79, 0x23, 0x78, 0xc8, + 0xe8, 0x34, 0xef, 0x1b, 0xc1, 0x33, 0x05, 0x32, 0x0f, 0xce, 0xa1, 0x9a, + 0x6e, 0x74, 0x76, 0xda, 0xad, 0xb5, 0xd2, 0xf0, 0xe0, 0xfe, 0x34, 0x20, + 0xb1, 0x71, 0x11, 0x1f, 0xe6, 0x52, 0x31, 0x43, 0x1d, 0x99, 0x6a, 0x08, + 0xc6, 0x78, 0x02, 0x90, 0xac, 0xcd, 0x6b, 0x44, 0xe0, 0x0c, 0x0a, 0xa0, + 0xb3, 0x2e, 0xf9, 0x40, 0xa5, 0x40, 0x14, 0xae, 0x23, 0xda, 0x7a, 0x54, + 0x81, 0x5c, 0x8e, 0x3a, 0x8e, 0x29, 0x5e, 0xc6, 0xb1, 0x1a, 0x23, 0xdc, + 0x7a, 0x74, 0xaa, 0x4e, 0xe5, 0x5c, 0x6d, 0xdc, 0x58, 0x84, 0xf3, 0xda, + 0xad, 0x19, 0xcc, 0xf3, 0x6f, 0x15, 0x80, 0x37, 0x02, 0x7a, 0x56, 0xd0, + 0x39, 0xa6, 0x8f, 0x31, 0xd6, 0xa1, 0x57, 0x76, 0x23, 0x1d, 0x2b, 0x78, + 0x1c, 0xb5, 0x19, 0xc5, 0x6a, 0x76, 0xc7, 0x71, 0xc5, 0x6a, 0x8e, 0x56, + 0x65, 0xbc, 0x18, 0xef, 0x56, 0x8c, 0x1a, 0xd4, 0x89, 0xad, 0xf7, 0x1a, + 0x52, 0xd5, 0x0a, 0xc5, 0xab, 0x7d, 0x34, 0xb5, 0x63, 0x26, 0xd6, 0x86, + 0x90, 0x89, 0xbf, 0xa4, 0xe8, 0x66, 0x62, 0xaa, 0x17, 0xef, 0x71, 0x58, + 0xb9, 0x9d, 0x10, 0x81, 0xdb, 0x69, 0x9e, 0x02, 0x0c, 0xea, 0xde, 0x50, + 0x3d, 0xea, 0x79, 0x8e, 0xb8, 0x52, 0x47, 0x75, 0xa4, 0xf8, 0x28, 0x45, + 0x1a, 0xe6, 0x30, 0x3f, 0x0a, 0x99, 0x4e, 0xe7, 0x5c, 0x29, 0x23, 0x6a, + 0xd7, 0xc3, 0xed, 0x6d, 0x32, 0xb0, 0xe8, 0x3b, 0x56, 0x72, 0x96, 0x87, + 0x4c, 0x69, 0x2b, 0x97, 0x6e, 0x2c, 0x37, 0x29, 0xf9, 0x07, 0xe5, 0x58, + 0x4a, 0x4e, 0xc6, 0xfc, 0x89, 0x23, 0x34, 0xe9, 0xcd, 0x9f, 0xb8, 0x2b, + 0x23, 0x9d, 0xee, 0x7b, 0xa6, 0xa1, 0xe2, 0x1d, 0x6e, 0xe2, 0xde, 0x39, + 0x1d, 0x72, 0xbb, 0xc7, 0xf1, 0x54, 0xd8, 0xfc, 0x7d, 0xc8, 0xf4, 0xdf, + 0x87, 0x1a, 0x90, 0x68, 0x63, 0x37, 0x51, 0xa6, 0x7d, 0xc6, 0x6b, 0x5a, + 0x4a, 0xce, 0xe5, 0xd2, 0xd6, 0x47, 0xa9, 0x2e, 0xb9, 0x05, 0xb5, 0xa9, + 0x30, 0x04, 0x04, 0x0e, 0xc2, 0xbb, 0xa0, 0xcf, 0x7b, 0x07, 0x1b, 0x9e, + 0x57, 0xe3, 0x9f, 0x1b, 0xca, 0x8c, 0xf1, 0x4b, 0x26, 0x37, 0x67, 0x18, + 0x34, 0x4e, 0x49, 0x1f, 0x4f, 0x85, 0x86, 0x87, 0x86, 0x78, 0x86, 0xf9, + 0xf5, 0x29, 0x9f, 0x0e, 0x4e, 0x4f, 0xad, 0x64, 0xe4, 0x7a, 0x31, 0xa6, + 0x9e, 0xc7, 0x9f, 0x6b, 0xbe, 0x13, 0xb9, 0xbe, 0x24, 0x82, 0xdc, 0xfb, + 0xd4, 0xb7, 0x73, 0x6e, 0x43, 0x0b, 0xfe, 0x15, 0xdc, 0xc6, 0x3c, 0x3a, + 0xb1, 0x35, 0x0c, 0x86, 0xbb, 0x11, 0x9f, 0x00, 0x34, 0x0a, 0x5b, 0x61, + 0xac, 0xec, 0x22, 0x05, 0xf0, 0xcd, 0xc4, 0x6f, 0x80, 0x0f, 0x14, 0xb9, + 0x47, 0x74, 0x58, 0xb6, 0xd3, 0xae, 0x6d, 0xa4, 0xe5, 0x5b, 0xf3, 0xaa, + 0xb0, 0xee, 0x74, 0xda, 0x74, 0xd2, 0x21, 0x5d, 0xc2, 0x9c, 0x53, 0xb8, + 0x5c, 0xf5, 0x1f, 0x07, 0x5b, 0x1b, 0xc4, 0x51, 0xb0, 0x1c, 0xf7, 0xad, + 0x52, 0xb0, 0x5d, 0x9d, 0xcb, 0x68, 0xa2, 0x28, 0xf2, 0x57, 0xa0, 0xa1, + 0xa2, 0x59, 0x85, 0xa8, 0x5a, 0x22, 0x92, 0x08, 0xac, 0xde, 0xe0, 0x72, + 0x9a, 0xa5, 0xa2, 0xb8, 0x20, 0x2f, 0x35, 0x36, 0x1c, 0x0e, 0x5e, 0xfa, + 0xc0, 0xa9, 0x27, 0x1d, 0x29, 0x9b, 0x9c, 0xfe, 0xa3, 0xe6, 0x42, 0xac, + 0x40, 0xe9, 0x40, 0x9a, 0x39, 0x4b, 0xfd, 0x69, 0xed, 0x98, 0x87, 0xef, + 0xc5, 0x04, 0x98, 0xb7, 0x9a, 0xdb, 0xce, 0x84, 0x2d, 0x04, 0xb3, 0x0d, + 0x6d, 0xee, 0x6f, 0xee, 0x70, 0xb9, 0x39, 0xf7, 0xa0, 0x47, 0x79, 0xe1, + 0x2f, 0x87, 0xf2, 0x6a, 0x73, 0x21, 0x9d, 0x5b, 0x19, 0xc5, 0x6d, 0x03, + 0x19, 0xb3, 0xd5, 0x6e, 0xbe, 0x15, 0xe9, 0x96, 0x1a, 0x41, 0x9d, 0xd3, + 0x90, 0xa0, 0xf2, 0x2b, 0xa5, 0x1c, 0xf2, 0x7a, 0x1f, 0x3b, 0xfc, 0x41, + 0x8e, 0xc3, 0x4f, 0xbb, 0x92, 0x28, 0xf1, 0xc1, 0x23, 0xa5, 0x6d, 0x16, + 0x8c, 0x24, 0x8e, 0x26, 0xc6, 0xe2, 0xda, 0x59, 0x76, 0x8f, 0xe5, 0x43, + 0x68, 0x4a, 0x3a, 0x9a, 0xf2, 0x69, 0xab, 0x71, 0x18, 0x68, 0xbf, 0x4a, + 0x99, 0x33, 0x55, 0x1d, 0x4a, 0xc9, 0xa4, 0x5f, 0xc6, 0x70, 0xa1, 0x80, + 0xed, 0xcd, 0x73, 0xcb, 0x53, 0x78, 0xa6, 0x69, 0x58, 0x58, 0x6a, 0xb0, + 0xb8, 0x23, 0x7e, 0x3e, 0xa6, 0xb3, 0x66, 0xeb, 0x44, 0x76, 0x9a, 0x1c, + 0xda, 0x92, 0x15, 0x0f, 0xbb, 0x8f, 0x53, 0x48, 0x2e, 0x77, 0xda, 0x3c, + 0xd3, 0x38, 0x50, 0xc3, 0xf5, 0xa0, 0x2e, 0x74, 0x90, 0x8c, 0x71, 0x8a, + 0x02, 0xe6, 0xb5, 0xa8, 0x1c, 0x50, 0x33, 0x40, 0x28, 0x20, 0x8f, 0xe9, + 0x49, 0x93, 0x62, 0x85, 0xda, 0x84, 0xe6, 0xa1, 0x82, 0x57, 0x29, 0xb6, + 0x3b, 0x54, 0x9a, 0xa2, 0x09, 0x26, 0xd8, 0x78, 0xef, 0x54, 0x81, 0x94, + 0xf5, 0x0b, 0xc6, 0x58, 0x1b, 0xe9, 0x5a, 0x47, 0xb9, 0x9c, 0xb5, 0xd0, + 0xf2, 0xaf, 0x18, 0x6a, 0x64, 0x33, 0x0f, 0x7a, 0xd6, 0x0c, 0xca, 0x4a, + 0xe7, 0x9e, 0x5e, 0x6a, 0x21, 0xc1, 0xdc, 0x79, 0xae, 0xa8, 0xa3, 0x8a, + 0xaa, 0xd4, 0xe7, 0x2f, 0x67, 0x0e, 0xc7, 0x18, 0xad, 0x11, 0xcc, 0xd6, + 0xa6, 0x64, 0xae, 0x3d, 0x2a, 0x8c, 0x6c, 0xc2, 0xda, 0x33, 0x2c, 0x80, + 0x0e, 0x79, 0xa4, 0xdd, 0x8a, 0x8c, 0x75, 0x3a, 0x8d, 0x3f, 0x4b, 0x2e, + 0xab, 0xf2, 0xd6, 0x13, 0x77, 0x3a, 0x61, 0x03, 0xba, 0xf0, 0xd7, 0x87, + 0xd9, 0xf6, 0x48, 0x63, 0xe9, 0xed, 0x5c, 0xe7, 0x54, 0x29, 0x9d, 0xfd, + 0x85, 0xb7, 0x96, 0xc0, 0x14, 0x18, 0x14, 0xae, 0x75, 0x46, 0x27, 0x55, + 0xa7, 0xed, 0xda, 0x30, 0x07, 0xe5, 0x52, 0x74, 0x28, 0xf6, 0x2e, 0x18, + 0x41, 0x39, 0xc0, 0xa8, 0x93, 0xba, 0x36, 0x8a, 0x06, 0xb6, 0x46, 0x07, + 0x8e, 0xbe, 0xd5, 0x83, 0xdc, 0xb6, 0xf4, 0xb1, 0x07, 0xd8, 0x17, 0xd2, + 0xa0, 0xe6, 0x6c, 0xee, 0xb4, 0xdf, 0x11, 0x47, 0xe2, 0x49, 0x7f, 0xb3, + 0xed, 0x6d, 0x63, 0x08, 0x9f, 0x30, 0x65, 0xa0, 0xfc, 0x66, 0xec, 0xf4, + 0x0d, 0x09, 0xd3, 0x4e, 0x8d, 0x56, 0xe2, 0x53, 0x19, 0xf4, 0xab, 0x83, + 0xb1, 0xd1, 0x43, 0xe2, 0xb1, 0xd4, 0x0b, 0x89, 0xda, 0xd4, 0xba, 0xca, + 0xc5, 0x7d, 0x73, 0x5d, 0x70, 0x68, 0xfa, 0x5c, 0x09, 0xe7, 0x1e, 0x2b, + 0xb7, 0x92, 0xf6, 0x56, 0x2e, 0xe7, 0xbe, 0x2a, 0x6a, 0x3b, 0x9f, 0x53, + 0x85, 0xb5, 0x8e, 0x43, 0xfb, 0x20, 0x24, 0xa4, 0xb9, 0x38, 0xcf, 0x7a, + 0xca, 0xc7, 0xa0, 0x9a, 0x43, 0x6e, 0xe1, 0xb5, 0xb7, 0x5c, 0xca, 0x00, + 0x1e, 0xb4, 0xec, 0xc7, 0xcc, 0x72, 0xda, 0xb7, 0x88, 0xb4, 0xcb, 0x49, + 0x99, 0x04, 0x88, 0x40, 0xa6, 0x91, 0x84, 0xa4, 0x72, 0xfa, 0xaf, 0x8e, + 0x34, 0xe8, 0xd0, 0x84, 0x91, 0x3a, 0x55, 0x28, 0x98, 0x39, 0x1c, 0x84, + 0xbe, 0x3e, 0x80, 0x4c, 0x76, 0x95, 0xeb, 0x47, 0x28, 0x73, 0x0b, 0x37, + 0x8d, 0xed, 0x9b, 0x6e, 0x19, 0x72, 0x47, 0xad, 0x2b, 0x16, 0x9b, 0x66, + 0x86, 0x9b, 0xe2, 0xa8, 0x24, 0x95, 0x01, 0x75, 0x19, 0x34, 0xf9, 0x47, + 0xaa, 0x3e, 0x91, 0xf8, 0x45, 0x17, 0xf6, 0x8d, 0xbc, 0x72, 0x24, 0x7b, + 0x81, 0x00, 0xe6, 0x9d, 0x81, 0x36, 0xcf, 0x50, 0xd5, 0xad, 0xe1, 0xb6, + 0x8c, 0x89, 0x3e, 0x43, 0x8a, 0x45, 0xc4, 0xf3, 0xbd, 0x72, 0x44, 0x0c, + 0xdb, 0x1b, 0x35, 0x9b, 0x5a, 0x94, 0xa3, 0x73, 0x8c, 0xbe, 0x9f, 0x0c, + 0x4e, 0x6a, 0x4d, 0x63, 0x13, 0x26, 0xe1, 0x83, 0xa9, 0xe2, 0x82, 0xd4, + 0x4e, 0x77, 0x58, 0x89, 0x0c, 0x64, 0xfb, 0x50, 0x37, 0x1b, 0x1c, 0x1e, + 0xb1, 0xa7, 0xac, 0xef, 0xdf, 0x83, 0x41, 0x9b, 0x46, 0x2c, 0xba, 0x3c, + 0xa4, 0x11, 0x1a, 0x96, 0x34, 0x13, 0x62, 0xd6, 0x89, 0xa5, 0x5d, 0xc1, + 0x70, 0x1e, 0x4b, 0x62, 0x07, 0xa9, 0xa0, 0x39, 0x4f, 0x53, 0xf0, 0xf6, + 0xb3, 0x69, 0xa7, 0xaa, 0x6e, 0x2a, 0xa4, 0x75, 0xad, 0x62, 0xec, 0x73, + 0xce, 0x0c, 0xdc, 0xd6, 0xbc, 0x63, 0xf6, 0xdb, 0x13, 0x6d, 0x1c, 0xdd, + 0x57, 0x1c, 0x1a, 0xd1, 0x48, 0xcb, 0x91, 0x9e, 0x25, 0xe2, 0x9f, 0x08, + 0xdc, 0xeb, 0x77, 0x2f, 0x2a, 0xa3, 0x36, 0xe3, 0x9c, 0x8a, 0xb5, 0x3b, + 0x07, 0xb3, 0x6c, 0xce, 0xb0, 0xf8, 0x59, 0x74, 0x81, 0x64, 0xf2, 0x5b, + 0x27, 0xda, 0x87, 0x50, 0x15, 0x26, 0x75, 0x5a, 0x67, 0x80, 0xa6, 0x85, + 0x40, 0x9a, 0x06, 0xf7, 0xe2, 0x93, 0x9d, 0xcd, 0x63, 0x49, 0x9b, 0x71, + 0xf8, 0x2e, 0xdf, 0x1c, 0xc4, 0x3f, 0x2a, 0xce, 0xe6, 0xca, 0x9d, 0x8b, + 0x56, 0xde, 0x0e, 0x88, 0x1c, 0x34, 0x00, 0x7a, 0x71, 0x45, 0xc6, 0x68, + 0xc7, 0xe1, 0x7b, 0x68, 0x40, 0x21, 0x17, 0xf2, 0xa4, 0x22, 0xdc, 0x5a, + 0x72, 0xc2, 0x30, 0x80, 0x1f, 0x4a, 0x04, 0x5c, 0x86, 0x09, 0x41, 0xe6, + 0x33, 0x40, 0x1a, 0x56, 0xca, 0xcb, 0x8d, 0xc3, 0x1f, 0x8d, 0x01, 0x62, + 0xfc, 0x52, 0x00, 0x3a, 0xf6, 0xa0, 0x2c, 0x53, 0xbb, 0x20, 0x9e, 0x29, + 0x58, 0x94, 0xac, 0x50, 0x94, 0x37, 0x5c, 0x62, 0x94, 0x91, 0xa2, 0x2b, + 0x4a, 0x37, 0x1e, 0x4d, 0x25, 0xa0, 0x33, 0x33, 0x54, 0x5c, 0xc0, 0xc0, + 0x7a, 0x56, 0x91, 0xd8, 0xcd, 0xab, 0xb3, 0xc8, 0xfc, 0x63, 0x6f, 0x33, + 0x3b, 0xed, 0x42, 0x79, 0xf5, 0xaa, 0x4e, 0xc4, 0xb3, 0xcd, 0x35, 0x08, + 0xee, 0xa2, 0x63, 0xb9, 0x08, 0x15, 0xd3, 0x06, 0x70, 0xd5, 0x5d, 0x4c, + 0x49, 0x2e, 0x10, 0x36, 0x24, 0x60, 0x2b, 0x64, 0xd1, 0xcc, 0xd3, 0x23, + 0xdf, 0x1c, 0x9c, 0x29, 0xc9, 0xaa, 0xb9, 0x2a, 0x24, 0xfa, 0x68, 0x97, + 0xcf, 0xc0, 0x43, 0x80, 0x6a, 0x64, 0xcd, 0x23, 0x13, 0xb9, 0xd2, 0xa7, + 0x89, 0x76, 0x23, 0xb0, 0x07, 0xde, 0xb9, 0xe4, 0xce, 0xb8, 0x40, 0xf5, + 0x6f, 0x07, 0x45, 0x1c, 0x88, 0xa7, 0x00, 0xe4, 0x56, 0x17, 0x3a, 0xe3, + 0x03, 0xb2, 0x3a, 0x4c, 0x87, 0x06, 0x38, 0xf3, 0x48, 0xe8, 0x84, 0x4b, + 0x56, 0xd6, 0x57, 0x51, 0x91, 0xfb, 0xa3, 0x8a, 0x57, 0x35, 0xb5, 0x8d, + 0x02, 0xb2, 0x04, 0xfb, 0x87, 0x35, 0x9b, 0xd3, 0x40, 0x4e, 0xda, 0x10, + 0xe5, 0xb7, 0x01, 0xd6, 0xb2, 0x7b, 0x8e, 0x45, 0x81, 0x13, 0xe3, 0xa5, + 0x4f, 0x29, 0xc8, 0xdb, 0xb9, 0xa1, 0xa5, 0xba, 0x78, 0x6e, 0xf9, 0xd2, + 0x38, 0xb6, 0xb0, 0x1d, 0x45, 0x60, 0xe4, 0x91, 0xf8, 0xed, 0x8d, 0x93, + 0xae, 0xdf, 0xdf, 0x48, 0xae, 0xa1, 0xc8, 0x06, 0xaa, 0x32, 0x37, 0xa2, + 0xed, 0x23, 0xd4, 0x3c, 0x25, 0xaa, 0x35, 0xf5, 0x8f, 0xd9, 0xa5, 0x1c, + 0xf4, 0xe6, 0xba, 0xa1, 0x23, 0xe8, 0xf0, 0x72, 0xb1, 0x4b, 0x5d, 0xd3, + 0x41, 0x2d, 0x27, 0x97, 0xd0, 0xd5, 0xb7, 0x73, 0xe9, 0xb0, 0xd2, 0xb1, + 0xe6, 0x5e, 0x27, 0xd5, 0x53, 0x4c, 0x57, 0x66, 0xe3, 0x6e, 0x68, 0x3b, + 0xd4, 0xae, 0x8f, 0x1a, 0xf1, 0x37, 0xc4, 0x4b, 0x99, 0xe7, 0x6b, 0x6b, + 0x6d, 0xcd, 0xce, 0x38, 0x35, 0x49, 0x05, 0xcc, 0xcb, 0x0d, 0x1b, 0x5b, + 0xd7, 0x94, 0xce, 0x63, 0x94, 0x02, 0x33, 0xc8, 0xad, 0x11, 0x8c, 0x99, + 0x89, 0xe2, 0xdf, 0x0c, 0xde, 0x69, 0x91, 0xb1, 0x97, 0x70, 0x3e, 0xe2, + 0xaa, 0x2a, 0xee, 0xc6, 0x57, 0x3c, 0xd2, 0xec, 0x5c, 0x47, 0x29, 0x21, + 0x8f, 0x06, 0xab, 0x95, 0x06, 0xa3, 0x61, 0xd4, 0x98, 0xc8, 0xaa, 0x49, + 0x24, 0x70, 0x6b, 0x36, 0x6d, 0x16, 0x76, 0xfe, 0x0f, 0xb6, 0x9b, 0x53, + 0xd4, 0x20, 0x8d, 0x54, 0x9c, 0xb0, 0xa9, 0x1b, 0x67, 0xde, 0xbf, 0x04, + 0x7c, 0x31, 0x25, 0x96, 0x82, 0x93, 0xc9, 0x19, 0x1b, 0x62, 0xcf, 0x4a, + 0x01, 0x33, 0x4f, 0xc6, 0x1a, 0x9a, 0x31, 0x61, 0x91, 0x45, 0x8d, 0xa2, + 0x8f, 0x31, 0xd5, 0xef, 0xd4, 0xe7, 0x04, 0x54, 0x34, 0x6f, 0x04, 0x72, + 0x97, 0x97, 0x01, 0xc1, 0x23, 0x1d, 0x6b, 0x36, 0x6c, 0x93, 0x45, 0x23, + 0x23, 0x15, 0xc1, 0xa4, 0x55, 0x8c, 0x9d, 0x46, 0x13, 0x20, 0x3d, 0x28, + 0x13, 0x4c, 0xc3, 0x6d, 0x31, 0x5d, 0x9b, 0xcc, 0x03, 0x1e, 0xf4, 0x13, + 0xca, 0xc4, 0x5d, 0x36, 0x14, 0x39, 0x20, 0x50, 0x27, 0x16, 0x5a, 0x5b, + 0x7b, 0x74, 0x5c, 0x70, 0x28, 0x15, 0x98, 0xd1, 0x6f, 0x04, 0x8d, 0xf2, + 0x11, 0x4e, 0xe4, 0x38, 0xdc, 0xbd, 0x0d, 0x94, 0x64, 0x60, 0xe2, 0x9a, + 0x62, 0x50, 0x2e, 0xdb, 0xe9, 0xf1, 0xb1, 0xce, 0x05, 0x3b, 0x8f, 0x91, + 0x17, 0xa1, 0x8a, 0x38, 0xce, 0xd1, 0x8e, 0x0d, 0x17, 0x1a, 0x81, 0x79, + 0x63, 0x8d, 0x86, 0x0e, 0x3d, 0x29, 0x39, 0x32, 0xd4, 0x52, 0x1c, 0x2d, + 0x62, 0x3e, 0x94, 0x27, 0xa8, 0xec, 0x87, 0xac, 0x5c, 0xe0, 0xe3, 0x8a, + 0xd0, 0xca, 0x5d, 0x87, 0x1b, 0x70, 0xc2, 0x82, 0x2c, 0x33, 0xec, 0xb8, + 0x70, 0xd8, 0xa0, 0x64, 0xa1, 0x30, 0x3a, 0xd0, 0x04, 0x80, 0x1c, 0x50, + 0x3b, 0x8e, 0x5c, 0xfb, 0x1c, 0xd3, 0xb1, 0x3c, 0xa5, 0x79, 0xbe, 0xf7, + 0x3c, 0x50, 0xc3, 0x94, 0xab, 0x36, 0x48, 0x39, 0x15, 0x2c, 0x4d, 0x58, + 0xae, 0x15, 0x4b, 0x10, 0x7f, 0x5a, 0x91, 0x15, 0xef, 0x2d, 0xe3, 0x74, + 0x20, 0x01, 0x56, 0x9d, 0x89, 0x67, 0x1b, 0xae, 0x68, 0x29, 0x72, 0xc7, + 0x0a, 0x3a, 0xd5, 0x0a, 0xc7, 0x9f, 0xf8, 0x87, 0xc2, 0xbb, 0x4b, 0x28, + 0x4f, 0xd2, 0xb6, 0x83, 0x47, 0x1d, 0x48, 0xea, 0x70, 0x37, 0xfe, 0x15, + 0xc3, 0x93, 0xb3, 0x8f, 0xa5, 0x6a, 0x9a, 0x30, 0x94, 0x74, 0x33, 0x93, + 0x46, 0x10, 0xb6, 0x36, 0xf4, 0xf6, 0xaa, 0x52, 0xb1, 0x29, 0x34, 0x5f, + 0xb2, 0xd2, 0xe4, 0x8d, 0xb7, 0x85, 0x38, 0x34, 0x9c, 0x8d, 0xe3, 0x13, + 0xb4, 0xf0, 0xd6, 0x81, 0xf6, 0xb9, 0xd1, 0xa4, 0x41, 0xd4, 0x75, 0x15, + 0xcf, 0x39, 0x23, 0xb2, 0x94, 0x53, 0x3d, 0x8f, 0x41, 0xb4, 0xd3, 0xf4, + 0xa8, 0x50, 0x39, 0x40, 0x47, 0xad, 0x65, 0xcc, 0x75, 0x45, 0x1d, 0x8e, + 0x9b, 0x7d, 0xa7, 0xce, 0x42, 0x87, 0x4a, 0x4d, 0xe8, 0x6a, 0x95, 0x8d, + 0xb3, 0x6d, 0x6e, 0xd1, 0xee, 0x42, 0xa6, 0xa1, 0xc9, 0x83, 0x32, 0x6f, + 0x22, 0xf2, 0x89, 0xc0, 0xa9, 0x6e, 0xe4, 0x5a, 0xe6, 0x5e, 0x4f, 0x9a, + 0x3e, 0xbe, 0x95, 0x0f, 0x72, 0x9e, 0xc5, 0xf1, 0xd3, 0xb5, 0x07, 0x33, + 0x4e, 0xe7, 0x59, 0xe2, 0x0b, 0x3d, 0x30, 0xcc, 0xf2, 0x05, 0x5d, 0xff, + 0x00, 0x5a, 0xf3, 0x79, 0xcf, 0xc7, 0xf9, 0x6e, 0x62, 0x5a, 0x6b, 0x96, + 0x5a, 0x7b, 0xf9, 0x2d, 0x1f, 0x7f, 0x5a, 0x71, 0x9e, 0xa5, 0xc1, 0x59, + 0x9e, 0xa3, 0xf0, 0xf2, 0xfa, 0xca, 0xe1, 0xd5, 0xb2, 0xa3, 0x71, 0xfe, + 0xf5, 0x75, 0x42, 0x67, 0xb9, 0x83, 0x99, 0xd7, 0xf8, 0x86, 0xca, 0x11, + 0x6e, 0x59, 0x13, 0xef, 0x0c, 0xf1, 0x5d, 0x11, 0x6d, 0xee, 0x7d, 0x36, + 0x16, 0x57, 0x3e, 0x68, 0xf8, 0xbd, 0xe7, 0xc7, 0x1c, 0xa9, 0x14, 0x4d, + 0xd0, 0xf4, 0x15, 0xaa, 0x3d, 0x48, 0x9e, 0x37, 0xe0, 0xed, 0x06, 0x6d, + 0x43, 0x5b, 0xdd, 0x77, 0x03, 0x95, 0x2c, 0x0f, 0x22, 0xad, 0x1a, 0xf2, + 0x9f, 0x4b, 0x68, 0x5e, 0x1f, 0xd2, 0xac, 0x34, 0xe0, 0xcb, 0x12, 0xae, + 0x17, 0xfa, 0x55, 0x19, 0xca, 0x07, 0x8c, 0x7c, 0x66, 0x8d, 0xe4, 0x32, + 0x2d, 0xa2, 0x92, 0x3d, 0x00, 0xaa, 0x4e, 0xc4, 0x7b, 0x26, 0x78, 0x34, + 0x9a, 0x3e, 0xa3, 0x34, 0x87, 0x74, 0x4f, 0xd7, 0xfb, 0xb5, 0x77, 0xb8, + 0xfd, 0x93, 0x27, 0xb0, 0xf0, 0x5d, 0xe3, 0xca, 0x1c, 0xc4, 0x73, 0x9c, + 0xf4, 0xe9, 0x4a, 0xc8, 0x39, 0x5a, 0x3d, 0xd7, 0xe0, 0x8f, 0xc3, 0xc9, + 0x2e, 0xb5, 0x8b, 0x71, 0x24, 0x3d, 0x1c, 0x76, 0xa5, 0xca, 0x84, 0xcf, + 0xbc, 0x74, 0xed, 0x36, 0xdb, 0xc3, 0x5e, 0x15, 0xf2, 0x88, 0x0a, 0x4c, + 0x45, 0x69, 0x34, 0x81, 0x6e, 0x78, 0xa7, 0x89, 0xae, 0x4b, 0x97, 0x25, + 0xbb, 0x9a, 0x4d, 0x68, 0x6f, 0x13, 0xcf, 0x75, 0x37, 0x24, 0xb1, 0xdd, + 0x59, 0xb3, 0xb2, 0x99, 0x92, 0xc8, 0x19, 0x72, 0x7d, 0x6b, 0x23, 0xa3, + 0x94, 0x81, 0xf6, 0x8f, 0x4a, 0x43, 0xe5, 0x64, 0x2d, 0x1a, 0x3f, 0xe3, + 0x40, 0x72, 0x95, 0xee, 0x6c, 0x83, 0x28, 0x08, 0x28, 0x25, 0xc5, 0x94, + 0x1f, 0x4f, 0x94, 0xb7, 0x5a, 0x09, 0x71, 0x62, 0x49, 0xa5, 0xcc, 0x41, + 0xc7, 0x3f, 0x85, 0x04, 0x95, 0x4d, 0x9d, 0xc4, 0x12, 0x6d, 0xda, 0x7f, + 0x2a, 0xb8, 0xa4, 0xc1, 0xa2, 0xdc, 0x4b, 0x70, 0x3b, 0x1f, 0xca, 0x9b, + 0x49, 0x13, 0x62, 0xec, 0x0d, 0x32, 0xf6, 0x6a, 0x40, 0x69, 0xdb, 0xdb, + 0x4d, 0x22, 0x89, 0x0e, 0x79, 0xf5, 0x14, 0x75, 0x0e, 0x6b, 0x16, 0xd2, + 0xde, 0x45, 0xeb, 0x55, 0xca, 0x89, 0x72, 0x2d, 0xdb, 0xdb, 0x48, 0xc3, + 0xa5, 0x16, 0x44, 0xf3, 0x92, 0x0b, 0x72, 0x0e, 0x48, 0xa6, 0x4b, 0xd7, + 0x72, 0x65, 0x88, 0x81, 0x82, 0x28, 0x41, 0x61, 0x0a, 0x64, 0xfd, 0xda, + 0x6c, 0x2c, 0x34, 0xc7, 0x8e, 0xd4, 0x82, 0xc8, 0x40, 0x32, 0x39, 0xa0, + 0x2c, 0x84, 0x50, 0x09, 0xfc, 0x2a, 0x82, 0xc5, 0x69, 0xc7, 0x53, 0x40, + 0x9a, 0xb1, 0x59, 0xfa, 0x1e, 0xf5, 0x2d, 0x10, 0xca, 0x6e, 0x70, 0xc7, + 0x1d, 0x6a, 0x58, 0x86, 0x32, 0xb3, 0x0c, 0x93, 0x91, 0x4d, 0x05, 0x8a, + 0x72, 0xc2, 0x87, 0xef, 0x62, 0x9d, 0xc2, 0xc7, 0x2d, 0xe2, 0x2b, 0x74, + 0x2e, 0x48, 0x1d, 0xaa, 0xe2, 0xec, 0x73, 0xcd, 0x5c, 0xe0, 0xf5, 0x2b, + 0x64, 0x3b, 0x80, 0x1c, 0xd6, 0x8a, 0x48, 0xc9, 0xc0, 0xe6, 0x2e, 0x6c, + 0xcf, 0x98, 0x78, 0xab, 0x4e, 0xe6, 0x6a, 0x27, 0x47, 0xa4, 0x68, 0x62, + 0xea, 0x28, 0x80, 0x8f, 0x27, 0x03, 0xb5, 0x4c, 0x9a, 0x46, 0x91, 0xd0, + 0xee, 0xb4, 0x4d, 0x05, 0x6c, 0x94, 0x36, 0xdc, 0x10, 0x2b, 0x9e, 0x52, + 0x3b, 0x21, 0xa1, 0x5b, 0xc4, 0x73, 0xde, 0xa0, 0x22, 0x02, 0xd8, 0x1c, + 0xf0, 0x2b, 0x2e, 0x64, 0x75, 0xc7, 0x62, 0x87, 0x87, 0xfc, 0x43, 0xa9, + 0x45, 0x30, 0x12, 0x3b, 0x70, 0x7d, 0x28, 0xbb, 0x12, 0x7a, 0x9e, 0xb3, + 0xe1, 0xff, 0x00, 0x10, 0x35, 0xc4, 0x6a, 0xae, 0xfd, 0x7d, 0x68, 0xb8, + 0xd9, 0xd0, 0x4f, 0x1a, 0xcd, 0x6e, 0xd2, 0x03, 0x93, 0xd6, 0xa5, 0xb2, + 0x4c, 0x27, 0x88, 0x89, 0x73, 0xef, 0x48, 0xab, 0x5c, 0xb0, 0x1c, 0xe3, + 0xa0, 0xa0, 0xc1, 0xa5, 0x73, 0x5b, 0x5d, 0xbc, 0x86, 0xee, 0xe0, 0x8b, + 0x40, 0x41, 0xcf, 0x39, 0xf4, 0xaf, 0x21, 0x9f, 0x8f, 0x49, 0xd9, 0x18, + 0x5a, 0x9e, 0x9f, 0x11, 0x21, 0xb6, 0x9d, 0xdc, 0x73, 0x44, 0x77, 0x22, + 0x13, 0xd4, 0xec, 0x3c, 0x03, 0x75, 0x35, 0xbd, 0xec, 0x51, 0x2b, 0x60, + 0x66, 0xbb, 0x29, 0x1e, 0xb6, 0x16, 0xad, 0x8f, 0xa4, 0x62, 0xd0, 0xff, + 0x00, 0xb4, 0x74, 0x98, 0x5c, 0x26, 0xec, 0xc6, 0x2b, 0xba, 0x10, 0x3e, + 0x9b, 0x05, 0x54, 0xf3, 0xbf, 0x13, 0xfc, 0x16, 0xba, 0xf1, 0x1c, 0xc4, + 0x47, 0x08, 0xc1, 0x27, 0xa8, 0xad, 0x39, 0x0f, 0x5e, 0x15, 0x8e, 0x5e, + 0x6f, 0xd9, 0xf6, 0xe7, 0xc3, 0x6a, 0x6e, 0x9a, 0x14, 0x07, 0xaf, 0x02, + 0x9d, 0xac, 0x75, 0x46, 0xa5, 0xcc, 0x1d, 0x56, 0xda, 0xfe, 0xc5, 0x0c, + 0x0a, 0x70, 0xa3, 0x8e, 0x94, 0x6c, 0x6b, 0x17, 0x73, 0x81, 0xd6, 0xf4, + 0xc4, 0xbe, 0x2c, 0x2e, 0x53, 0x71, 0xa3, 0x99, 0x15, 0xc9, 0x73, 0x9d, + 0x5f, 0x0f, 0xe9, 0x50, 0xb9, 0xdd, 0x01, 0xa7, 0xed, 0x0b, 0xe4, 0x1f, + 0x06, 0x95, 0x60, 0xb2, 0x84, 0x58, 0x4f, 0xcc, 0x78, 0xc0, 0xad, 0x63, + 0x3d, 0x0c, 0x67, 0x03, 0xe8, 0xff, 0x00, 0x80, 0xde, 0x02, 0x95, 0xa7, + 0x4d, 0x4b, 0x62, 0xac, 0x6b, 0xb5, 0xce, 0x6a, 0xb9, 0xae, 0x60, 0xe3, + 0x66, 0x7a, 0x77, 0xc5, 0x0d, 0x55, 0x20, 0xb5, 0x16, 0x90, 0x36, 0xd3, + 0x19, 0xe6, 0x93, 0x04, 0xae, 0xcf, 0x02, 0xd6, 0xef, 0xcc, 0x85, 0x8e, + 0x73, 0x50, 0xf6, 0x3a, 0xe9, 0xc0, 0xe3, 0x75, 0x09, 0x9d, 0xd8, 0xe3, + 0xeb, 0x59, 0x9d, 0x90, 0x81, 0x4b, 0xcf, 0xe3, 0x69, 0x3c, 0xd6, 0x27, + 0x4d, 0x88, 0x66, 0x24, 0xf7, 0xa0, 0x4f, 0x62, 0x25, 0x63, 0x1f, 0x24, + 0xd0, 0x49, 0x34, 0x52, 0x89, 0x32, 0x9d, 0x28, 0x25, 0x96, 0x23, 0x84, + 0x9e, 0x4d, 0x04, 0x3d, 0xcb, 0x29, 0x6e, 0xb8, 0xe9, 0x40, 0x80, 0x69, + 0xb1, 0x4a, 0x77, 0x3a, 0xe7, 0x1d, 0xeb, 0x58, 0x92, 0xe2, 0x4e, 0xba, + 0x5c, 0x18, 0xe1, 0x69, 0x99, 0xf2, 0xb2, 0x44, 0xd2, 0xa2, 0x07, 0x81, + 0x40, 0xed, 0x62, 0xe2, 0x5b, 0x46, 0x88, 0x10, 0x0e, 0x94, 0x22, 0x5a, + 0x1d, 0xe4, 0x03, 0xd2, 0xa9, 0x19, 0x3b, 0xdc, 0x9e, 0x24, 0xda, 0xbd, + 0x28, 0x17, 0x28, 0xf1, 0x0a, 0xe7, 0x38, 0xeb, 0xcd, 0x26, 0x69, 0x18, + 0xe8, 0x23, 0x28, 0x1d, 0xba, 0x7b, 0xd2, 0x1f, 0x29, 0x0b, 0xa0, 0x07, + 0xa5, 0x02, 0x6a, 0xc3, 0x0a, 0xf1, 0xc5, 0x21, 0x11, 0x32, 0x91, 0x4c, + 0x08, 0xcb, 0x10, 0xdd, 0x2a, 0x84, 0xdd, 0x8a, 0xd7, 0x07, 0xd6, 0x86, + 0x43, 0x91, 0x4a, 0x49, 0xd5, 0x46, 0x2b, 0x39, 0x10, 0xdd, 0xca, 0x4e, + 0xfb, 0xcf, 0xca, 0x7a, 0x75, 0xa5, 0x71, 0x08, 0xd3, 0x61, 0x69, 0x73, + 0x58, 0x0c, 0xeb, 0xd9, 0x9c, 0x13, 0xb5, 0xaa, 0xc3, 0x99, 0x23, 0x07, + 0x51, 0x6f, 0x36, 0x33, 0x9e, 0x4d, 0x33, 0x19, 0x4f, 0x53, 0x8b, 0xd5, + 0x54, 0x21, 0x6d, 0xdf, 0x85, 0x52, 0x76, 0x25, 0xcb, 0x9b, 0x43, 0x1e, + 0x0b, 0x43, 0x75, 0x2e, 0x15, 0x7b, 0xf7, 0xab, 0x52, 0x17, 0x29, 0xe8, + 0x7e, 0x16, 0xd3, 0x16, 0x25, 0x4f, 0x31, 0x7d, 0x29, 0x4a, 0x5a, 0x17, + 0x18, 0x1d, 0x5d, 0xd5, 0xb3, 0x2c, 0x5f, 0xba, 0x5e, 0x2b, 0x29, 0x6a, + 0x74, 0x42, 0x06, 0x44, 0xd6, 0x02, 0x50, 0xcb, 0x22, 0x83, 0x9a, 0xcf, + 0x94, 0xe9, 0x89, 0x8f, 0x36, 0x88, 0x2d, 0x9b, 0x7a, 0xaf, 0x7a, 0x45, + 0x1a, 0x7a, 0x2d, 0xcb, 0xc1, 0x28, 0x1b, 0xb0, 0x33, 0x49, 0x85, 0xae, + 0x7a, 0x1e, 0x97, 0x7d, 0xe7, 0xc4, 0x22, 0xce, 0x77, 0x0a, 0x42, 0xe5, + 0x1b, 0x77, 0x6e, 0x52, 0x4c, 0xd2, 0x14, 0xb4, 0xd0, 0x68, 0x53, 0x81, + 0x41, 0x8f, 0x39, 0x8f, 0x61, 0xaf, 0xfd, 0xb6, 0xe0, 0x01, 0xd0, 0x9f, + 0x4a, 0xf2, 0x59, 0xf8, 0xf4, 0x91, 0xd5, 0x4f, 0xe4, 0x49, 0x6e, 0x19, + 0x87, 0x38, 0xa9, 0x5b, 0x98, 0xa5, 0xa9, 0x27, 0x86, 0x75, 0x08, 0xd7, + 0x59, 0x86, 0x24, 0x3d, 0xeb, 0xbf, 0x0e, 0x8f, 0x43, 0x0c, 0x7d, 0xb7, + 0xf0, 0xd6, 0xc1, 0x6e, 0xf4, 0x48, 0x0c, 0xab, 0x9c, 0xc6, 0xa7, 0xa5, + 0x7a, 0xd0, 0x8d, 0xcf, 0xa5, 0xc1, 0xa6, 0x91, 0xde, 0x47, 0xa1, 0x69, + 0xd6, 0xe9, 0xe6, 0xba, 0x2e, 0x71, 0x9e, 0x95, 0xab, 0x8e, 0x87, 0xa9, + 0x04, 0x79, 0xcf, 0xc4, 0xbd, 0x47, 0x4c, 0xb7, 0xb7, 0x74, 0x5c, 0x64, + 0x02, 0x31, 0x81, 0x58, 0xb4, 0xd3, 0x3b, 0xe9, 0xb3, 0xe6, 0x8f, 0x13, + 0xdd, 0x59, 0xcd, 0x2c, 0x8c, 0xa3, 0x8c, 0x9e, 0xd5, 0x2d, 0x5c, 0xeb, + 0x83, 0x3c, 0xef, 0x54, 0x68, 0x89, 0x62, 0x83, 0xd7, 0xb5, 0x2e, 0x54, + 0x74, 0x26, 0x73, 0xef, 0x6e, 0x66, 0x7f, 0x95, 0x7a, 0xd1, 0xca, 0x3e, + 0x73, 0xa5, 0xf0, 0x57, 0x83, 0xe7, 0xd5, 0xaf, 0x97, 0x7c, 0x44, 0x8d, + 0xd8, 0xe9, 0x5a, 0x28, 0xab, 0x18, 0xce, 0x67, 0xd6, 0x5e, 0x05, 0xd1, + 0x23, 0xf0, 0xe6, 0x8a, 0x72, 0xbb, 0x7e, 0x41, 0x4e, 0x29, 0xa6, 0x73, + 0x39, 0x5c, 0xf3, 0x4f, 0x88, 0xda, 0xab, 0xdc, 0x5e, 0xc8, 0xa0, 0xf0, + 0x5a, 0xa9, 0x97, 0x08, 0xdd, 0xea, 0x79, 0x66, 0xa7, 0xc8, 0x22, 0xa1, + 0xec, 0x7a, 0x14, 0xe2, 0x91, 0xcc, 0x5e, 0xaf, 0x27, 0x23, 0xf5, 0xac, + 0x24, 0x75, 0xc5, 0xa4, 0x66, 0x4b, 0x85, 0x39, 0xcd, 0x64, 0x69, 0x71, + 0x82, 0x40, 0x7b, 0xd5, 0x13, 0x61, 0xdb, 0x43, 0xd0, 0x26, 0x87, 0xc7, + 0x19, 0x56, 0xc8, 0x14, 0x0a, 0xcc, 0xb9, 0x08, 0x3c, 0x02, 0x28, 0x21, + 0xde, 0xe5, 0xc4, 0x43, 0xc6, 0x28, 0x26, 0xc8, 0x9a, 0x35, 0xc0, 0x20, + 0xf7, 0xab, 0x26, 0xd6, 0x2c, 0x44, 0x01, 0xe9, 0xeb, 0x40, 0x99, 0x61, + 0x13, 0x23, 0xa5, 0x34, 0x22, 0x50, 0x98, 0x1d, 0x2a, 0xd1, 0x2c, 0x72, + 0xa1, 0xc7, 0xdd, 0xa6, 0x4b, 0x5a, 0x92, 0x6c, 0x1e, 0x94, 0x99, 0x23, + 0x4b, 0x73, 0x81, 0x52, 0xf6, 0x2c, 0x85, 0xdb, 0x1e, 0x99, 0x35, 0x20, + 0x46, 0x5b, 0x3d, 0x31, 0x40, 0xa4, 0x34, 0x1e, 0x30, 0x45, 0x04, 0x8c, + 0x7e, 0xb4, 0x12, 0xca, 0xe7, 0x83, 0x93, 0x56, 0x67, 0x2d, 0x4a, 0xd7, + 0x07, 0x3d, 0xf8, 0xa1, 0xb3, 0x33, 0x32, 0xe4, 0xe0, 0xd4, 0x48, 0x0a, + 0x80, 0xe0, 0x9e, 0x95, 0x02, 0x6d, 0x21, 0xa7, 0x1f, 0x95, 0x3b, 0x5c, + 0x2e, 0x8a, 0x97, 0x2a, 0xbc, 0xe7, 0xf9, 0xd6, 0xa4, 0xb3, 0x9a, 0xd6, + 0x26, 0x10, 0x29, 0xe6, 0x8b, 0x18, 0x48, 0xe3, 0xa7, 0x73, 0x75, 0x31, + 0x5c, 0xf7, 0xa6, 0x90, 0x93, 0x35, 0xf4, 0x6d, 0x18, 0x31, 0x0d, 0x8a, + 0x66, 0x91, 0xdc, 0xef, 0x74, 0xab, 0x01, 0x1a, 0xa7, 0x1d, 0x2a, 0x59, + 0xb2, 0x3a, 0x44, 0xb1, 0x12, 0x45, 0xd3, 0x3c, 0x52, 0xb9, 0xbc, 0x19, + 0x99, 0x79, 0x62, 0x23, 0x63, 0x81, 0x52, 0xcd, 0x13, 0x32, 0x2f, 0xad, + 0x72, 0xa5, 0xb1, 0x50, 0x55, 0xd1, 0x80, 0x26, 0x30, 0x5c, 0x6d, 0xcd, + 0x26, 0x34, 0xd1, 0xdc, 0x78, 0x72, 0xe5, 0x98, 0x23, 0x7d, 0x29, 0x15, + 0x73, 0x72, 0xf1, 0xb7, 0x10, 0x6a, 0x59, 0x8d, 0x42, 0x31, 0xb7, 0x03, + 0x24, 0xf4, 0xf5, 0xa9, 0x39, 0x99, 0x67, 0x4b, 0xf0, 0x03, 0xd9, 0xda, + 0x25, 0xc6, 0xd6, 0xdc, 0x4d, 0x79, 0x8c, 0xfc, 0x9a, 0x51, 0xb0, 0xcd, + 0x6d, 0x1e, 0xce, 0x33, 0x17, 0x4c, 0x76, 0xa9, 0x8f, 0xbc, 0xcc, 0x92, + 0xbb, 0x2a, 0x78, 0x19, 0x1a, 0x6f, 0x12, 0xdb, 0xef, 0x24, 0x82, 0xdf, + 0xd6, 0xbd, 0x3c, 0x34, 0x59, 0xe8, 0xe1, 0xa2, 0x7e, 0x8d, 0xfc, 0x32, + 0xb2, 0x8a, 0x2f, 0x0d, 0xdb, 0x30, 0xff, 0x00, 0x9e, 0x4b, 0x5e, 0xcd, + 0x28, 0xe8, 0x7d, 0x16, 0x19, 0xf4, 0x2f, 0xf8, 0x92, 0xf9, 0xe1, 0x81, + 0x92, 0x3f, 0x4c, 0x0a, 0xd5, 0xad, 0x0f, 0x52, 0x07, 0x84, 0x78, 0xfa, + 0x2b, 0xeb, 0xfd, 0xe0, 0x06, 0x39, 0xcf, 0x7a, 0xc9, 0xc4, 0xeb, 0x81, + 0xe3, 0x9a, 0xa7, 0x85, 0xef, 0xdc, 0x96, 0xd8, 0xdc, 0xfb, 0xd6, 0x5c, + 0x87, 0x4c, 0x4e, 0x7a, 0x5f, 0x06, 0xdd, 0x33, 0xfc, 0xd1, 0xb7, 0x5a, + 0xa5, 0x13, 0x45, 0x33, 0x5b, 0x45, 0xf8, 0x78, 0xf3, 0xba, 0xee, 0x88, + 0xe7, 0x3e, 0x94, 0x72, 0x90, 0xea, 0x24, 0x7b, 0x4f, 0x81, 0xbe, 0x1a, + 0xa6, 0x99, 0x1a, 0xdc, 0xb4, 0x18, 0xef, 0x9c, 0x55, 0x5a, 0xc6, 0x6e, + 0x77, 0x3a, 0x0f, 0x10, 0x6a, 0x02, 0xc6, 0xd1, 0xed, 0xa3, 0xc0, 0xc0, + 0xc7, 0x14, 0x35, 0x71, 0x6e, 0x78, 0x9f, 0x89, 0x26, 0x13, 0xcf, 0x2b, + 0xb3, 0x73, 0xd6, 0xa5, 0x9d, 0x34, 0xe2, 0xce, 0x0e, 0xfe, 0x40, 0xd9, + 0x39, 0xac, 0x64, 0xec, 0x8e, 0xe8, 0xab, 0x1c, 0xdd, 0xf3, 0x0e, 0x48, + 0x23, 0xd2, 0xb1, 0x6f, 0x43, 0x74, 0x62, 0x5c, 0xc9, 0x83, 0x81, 0x59, + 0x96, 0x9d, 0xc8, 0x91, 0xcf, 0xd2, 0xa8, 0xb2, 0xc4, 0x72, 0x83, 0xdf, + 0xbf, 0x6a, 0x04, 0xd5, 0xc9, 0x52, 0x61, 0x9e, 0x4d, 0x02, 0xb1, 0x76, + 0xde, 0x54, 0x27, 0x92, 0x28, 0x0e, 0x53, 0x42, 0x36, 0x5a, 0x03, 0x94, + 0x1e, 0x60, 0xad, 0x81, 0xde, 0xaa, 0xe6, 0x52, 0x8b, 0x26, 0x86, 0x4f, + 0xa5, 0x17, 0x22, 0xd6, 0x2e, 0xc4, 0xd9, 0xe3, 0x02, 0xa9, 0x32, 0x59, + 0x3a, 0x9e, 0x07, 0x15, 0x44, 0x34, 0x3c, 0x73, 0xce, 0x3a, 0xd3, 0x4c, + 0x36, 0x17, 0x3c, 0x67, 0x14, 0x5e, 0xe6, 0x65, 0x66, 0x73, 0xb8, 0x8a, + 0x97, 0xb1, 0x64, 0x2c, 0xc7, 0x19, 0x19, 0xcd, 0x48, 0x11, 0x96, 0x24, + 0x67, 0xb5, 0x02, 0x60, 0xac, 0x7f, 0xa5, 0x04, 0x8a, 0xc3, 0x34, 0x12, + 0xc8, 0x65, 0xe0, 0x64, 0x0a, 0xab, 0x90, 0xd6, 0x85, 0x29, 0x89, 0xc7, + 0x34, 0x9b, 0x33, 0x66, 0x5d, 0xc9, 0xea, 0x79, 0x15, 0x2c, 0x45, 0x60, + 0x3a, 0xfb, 0xd4, 0x92, 0xf7, 0x21, 0x91, 0xb6, 0x9e, 0x07, 0x7a, 0xb4, + 0xae, 0x84, 0x8a, 0x17, 0x73, 0xe0, 0x1e, 0x6b, 0x4b, 0x09, 0xb3, 0x95, + 0xd7, 0x25, 0x32, 0xab, 0x0c, 0xf5, 0xa6, 0x61, 0x36, 0x60, 0xd8, 0xdb, + 0x93, 0x28, 0x27, 0xa6, 0x68, 0x25, 0x3b, 0x9d, 0xa6, 0x8e, 0x11, 0x14, + 0x0c, 0x52, 0x66, 0x91, 0x76, 0x67, 0x57, 0xa7, 0x7c, 0xe4, 0x01, 0x53, + 0x73, 0x74, 0xf5, 0x3a, 0x48, 0x90, 0xc7, 0x16, 0x4f, 0xa5, 0x49, 0xaa, + 0x92, 0x45, 0x0b, 0xd8, 0xcb, 0xe5, 0xb1, 0x49, 0xb3, 0x4b, 0xa3, 0x99, + 0xd4, 0xa6, 0x08, 0x84, 0x1a, 0x92, 0x93, 0x39, 0x9f, 0x2c, 0xcf, 0x72, + 0x08, 0x3d, 0x7a, 0x52, 0x65, 0x26, 0x77, 0x5a, 0x0d, 0xb1, 0x8e, 0x15, + 0x6c, 0x1a, 0x41, 0xcc, 0x8d, 0xb9, 0x13, 0x7a, 0x83, 0x9a, 0x86, 0x67, + 0x39, 0xa1, 0x04, 0x6b, 0x81, 0xd6, 0x83, 0x9d, 0xb3, 0xb8, 0xba, 0xf1, + 0x2c, 0x36, 0xda, 0x69, 0x3e, 0x4a, 0x16, 0x19, 0x3b, 0x6b, 0xc9, 0x93, + 0x3f, 0x2a, 0x9a, 0xb9, 0xe5, 0xfa, 0xbf, 0x8a, 0xa4, 0xd5, 0xee, 0x99, + 0x1a, 0xdc, 0x46, 0x3a, 0x70, 0x69, 0xd3, 0x5a, 0x98, 0xad, 0xcd, 0xaf, + 0x86, 0xd0, 0x1b, 0x9f, 0x12, 0x5b, 0x28, 0xcf, 0xde, 0xfe, 0xb5, 0xeb, + 0xe1, 0xa2, 0x7a, 0x58, 0x64, 0x7e, 0x90, 0xfc, 0x31, 0xb4, 0x73, 0xe1, + 0xeb, 0x78, 0x8f, 0x3f, 0xbb, 0x5e, 0x6b, 0xdb, 0xa5, 0xb1, 0xee, 0xd0, + 0xd0, 0xd7, 0xf1, 0x0f, 0x87, 0xe3, 0x10, 0xf9, 0x86, 0x42, 0x4e, 0x3a, + 0x55, 0xee, 0x77, 0x42, 0x4c, 0xf2, 0xcd, 0x76, 0xc2, 0xd8, 0xb3, 0x21, + 0x89, 0x4f, 0x63, 0x91, 0x51, 0x24, 0x8e, 0xe8, 0x3d, 0x2e, 0x71, 0x5a, + 0x9e, 0x95, 0x6c, 0x85, 0x80, 0x89, 0x6b, 0x36, 0x6e, 0xa4, 0xcc, 0x3f, + 0xec, 0x28, 0xa7, 0x93, 0x68, 0x88, 0x0e, 0x7d, 0x2a, 0x6c, 0x29, 0x37, + 0xb9, 0xdc, 0xf8, 0x47, 0xc0, 0x30, 0xdd, 0x15, 0x62, 0xf8, 0xe7, 0xd2, + 0x9f, 0x29, 0x0e, 0x77, 0x3d, 0x17, 0x55, 0xb1, 0xb4, 0xd0, 0xf4, 0xb5, + 0x48, 0xc0, 0x62, 0x13, 0x9a, 0xad, 0x02, 0x2d, 0xb3, 0xc3, 0xbc, 0x65, + 0xa9, 0xef, 0x92, 0x43, 0xd3, 0x9a, 0x4e, 0xc7, 0x4d, 0x35, 0x73, 0xc8, + 0x75, 0xcb, 0xbd, 0xcf, 0x21, 0xdd, 0x58, 0x49, 0xa3, 0xba, 0x9c, 0x6e, + 0x71, 0xf7, 0x32, 0xb3, 0xe7, 0x3d, 0x2b, 0x09, 0x3d, 0x0e, 0x85, 0xb9, + 0x89, 0x7c, 0xa3, 0x07, 0x9f, 0xd2, 0xb0, 0x6e, 0xe6, 0xb7, 0x39, 0xf9, + 0x49, 0x69, 0x82, 0x9e, 0xf4, 0x91, 0x50, 0x14, 0x44, 0x7d, 0x7b, 0x55, + 0x1a, 0x8e, 0x11, 0x9c, 0x8e, 0x68, 0x01, 0x26, 0xdd, 0x18, 0x18, 0xef, + 0x40, 0xd2, 0xb8, 0xf8, 0x6e, 0x9e, 0x33, 0xcd, 0x01, 0x62, 0xe4, 0x7a, + 0x8b, 0xfa, 0x0a, 0x02, 0xc5, 0x91, 0x76, 0x64, 0x61, 0xc6, 0x28, 0x22, + 0x4a, 0xe8, 0xd1, 0xb5, 0x3b, 0xf9, 0xa6, 0x64, 0xd6, 0x86, 0x82, 0x70, + 0x07, 0x35, 0x49, 0xdc, 0xcd, 0xa2, 0x41, 0x2e, 0x3b, 0xd3, 0x4c, 0x91, + 0xe9, 0x37, 0x7c, 0x53, 0x25, 0xa2, 0x4c, 0x86, 0x1d, 0x48, 0xa6, 0x4d, + 0x88, 0x4a, 0x1e, 0x4e, 0x6a, 0x5b, 0x19, 0x0c, 0x8a, 0x4f, 0x3c, 0xd2, + 0x02, 0x20, 0xbf, 0x36, 0x32, 0x46, 0x4d, 0x02, 0x90, 0xbe, 0x59, 0x52, + 0x79, 0xcd, 0x04, 0x86, 0xec, 0x7f, 0xfa, 0xe8, 0x24, 0x86, 0x72, 0x02, + 0x75, 0xef, 0x41, 0x0d, 0xe8, 0x67, 0xdc, 0x36, 0x07, 0x34, 0x99, 0x9b, + 0x33, 0x66, 0x70, 0x73, 0x9a, 0x44, 0xb7, 0x62, 0xb3, 0x38, 0x51, 0x9c, + 0xe6, 0x90, 0x9b, 0xb9, 0x5a, 0x59, 0x43, 0x67, 0xb5, 0x69, 0x1e, 0xc6, + 0x6e, 0x56, 0xd0, 0xc8, 0xd4, 0x9c, 0x28, 0xce, 0x6b, 0x42, 0x19, 0xcd, + 0x5e, 0xc8, 0x92, 0x64, 0xb3, 0x50, 0x63, 0x39, 0x19, 0xf1, 0xdc, 0x2c, + 0x4d, 0x95, 0x50, 0x79, 0xa6, 0xd0, 0xa2, 0xf5, 0x37, 0xb4, 0xab, 0xfd, + 0xec, 0x07, 0x4e, 0xd5, 0x2c, 0xd1, 0x4b, 0x53, 0xb8, 0xd0, 0x24, 0x12, + 0x48, 0x32, 0x78, 0xa8, 0x66, 0xf1, 0x7a, 0x9d, 0x0e, 0xa3, 0x7e, 0x96, + 0x70, 0xf0, 0x33, 0x81, 0x53, 0x73, 0x55, 0xa9, 0x80, 0xde, 0x23, 0x89, + 0x83, 0x29, 0x03, 0xa5, 0x45, 0xcb, 0xb9, 0xcc, 0xea, 0x57, 0x73, 0xdc, + 0x31, 0x58, 0xe3, 0xeb, 0x4c, 0x2e, 0x5f, 0xd0, 0x34, 0x06, 0xb8, 0x90, + 0x49, 0x33, 0x15, 0xa4, 0xc7, 0xcc, 0xce, 0xd1, 0x6d, 0xe0, 0xb1, 0xb4, + 0x20, 0x49, 0x92, 0x07, 0x7a, 0x43, 0x52, 0x2b, 0xc7, 0x7e, 0xf2, 0x10, + 0xab, 0x1e, 0x40, 0xe3, 0x35, 0x0c, 0x89, 0xc8, 0xb5, 0xba, 0x83, 0x9d, + 0xcd, 0x93, 0x78, 0xca, 0xce, 0xf3, 0x49, 0xb4, 0x32, 0xb9, 0x6c, 0x31, + 0xc6, 0x0d, 0x78, 0xe7, 0xe5, 0xed, 0xe8, 0x70, 0x7a, 0x74, 0x12, 0x4b, + 0x39, 0x72, 0x0f, 0x24, 0xd6, 0xb4, 0xb7, 0x32, 0x5b, 0x9e, 0xc5, 0xf0, + 0x53, 0x40, 0x7b, 0xaf, 0x10, 0xdb, 0xb9, 0x4e, 0x8d, 0xe9, 0xef, 0x5e, + 0xde, 0x11, 0x26, 0x7a, 0x78, 0x45, 0x73, 0xf4, 0x73, 0xc0, 0xda, 0x68, + 0xb4, 0xd1, 0x2d, 0xc6, 0x3a, 0x46, 0xb5, 0xeb, 0x41, 0x58, 0xf6, 0xa8, + 0x91, 0xf8, 0xbe, 0xf0, 0x43, 0x6e, 0xc3, 0xd8, 0xd5, 0x33, 0xb6, 0x07, + 0x8b, 0xeb, 0x5a, 0x81, 0x69, 0xdb, 0x18, 0xeb, 0x59, 0xc9, 0x9e, 0x85, + 0x35, 0x74, 0x73, 0x17, 0x77, 0x06, 0x59, 0x0b, 0x63, 0x8a, 0x86, 0x6e, + 0x90, 0x96, 0x8f, 0x12, 0x48, 0x0b, 0x00, 0x39, 0x14, 0x89, 0x92, 0x67, + 0xa7, 0xf8, 0x27, 0x50, 0xb6, 0x50, 0xbc, 0xad, 0x3b, 0x98, 0x72, 0xb3, + 0x13, 0xc7, 0x9e, 0x2a, 0x4c, 0x4b, 0x10, 0x93, 0xa6, 0x47, 0x5a, 0x47, + 0x4d, 0x28, 0x1e, 0x13, 0xe2, 0x4d, 0x5f, 0xed, 0x0c, 0xf8, 0x6e, 0xbe, + 0xf5, 0x94, 0xa4, 0x91, 0xdd, 0x08, 0x1e, 0x75, 0xa9, 0x3b, 0x3c, 0x8d, + 0xc9, 0x35, 0xcf, 0x29, 0x6a, 0x75, 0x45, 0x58, 0xc8, 0x96, 0x30, 0x3a, + 0x9a, 0xcd, 0xc9, 0x6c, 0x52, 0x76, 0x33, 0xae, 0xed, 0xc3, 0x03, 0x8a, + 0xcd, 0x96, 0x9b, 0x66, 0x1d, 0xc5, 0x9e, 0xd7, 0xdf, 0x8c, 0xe2, 0x84, + 0x6a, 0xb4, 0x23, 0x08, 0x7f, 0xba, 0x6a, 0x8b, 0xb8, 0xd6, 0x0c, 0x39, + 0xdb, 0x40, 0xd1, 0x04, 0xc3, 0xcc, 0xc0, 0x20, 0x8e, 0x68, 0x19, 0x0c, + 0x8d, 0xb0, 0x60, 0x1a, 0x0a, 0x44, 0x4b, 0x73, 0xcd, 0x31, 0x97, 0xed, + 0x26, 0xdc, 0xb9, 0x34, 0xa5, 0xa1, 0x9c, 0x8d, 0x8b, 0x5b, 0x8d, 0xb8, + 0xe6, 0x92, 0x66, 0x46, 0x82, 0xdd, 0x02, 0x3a, 0xd5, 0x5e, 0xc2, 0x69, + 0x12, 0xab, 0xee, 0x19, 0xcd, 0x34, 0x67, 0x25, 0x66, 0x58, 0x88, 0x1f, + 0x5a, 0xab, 0x92, 0x59, 0x5c, 0xe3, 0xa5, 0x17, 0x15, 0x90, 0xc6, 0x3d, + 0x69, 0x12, 0x44, 0xc3, 0x39, 0xff, 0x00, 0x1a, 0x00, 0x42, 0xbc, 0x83, + 0x40, 0x98, 0x8e, 0x40, 0xa0, 0x92, 0xa4, 0xf2, 0x00, 0x3a, 0xd0, 0x4b, + 0x2a, 0x89, 0x8b, 0xbe, 0xc3, 0xd2, 0x82, 0x5a, 0xd0, 0x82, 0xe5, 0x4f, + 0x27, 0x35, 0x0d, 0x99, 0xb3, 0x16, 0xec, 0x95, 0xcf, 0x27, 0x8a, 0x48, + 0xcd, 0x99, 0xef, 0x70, 0x40, 0x3b, 0x8d, 0x5a, 0x44, 0xb7, 0x63, 0x3e, + 0x6b, 0xfd, 0xb9, 0xe6, 0xb4, 0x8a, 0x48, 0xc5, 0xb7, 0x73, 0x17, 0x54, + 0xd4, 0x41, 0x5f, 0xbd, 0x56, 0x26, 0xce, 0x52, 0xf7, 0x52, 0x01, 0xca, + 0x96, 0xc5, 0x3b, 0x1c, 0xf2, 0x7a, 0x90, 0x45, 0x7c, 0x8d, 0xfc, 0x74, + 0x31, 0x26, 0xd3, 0x36, 0x34, 0xab, 0xc0, 0x1b, 0x86, 0xef, 0x50, 0xcd, + 0xa2, 0xee, 0x7a, 0x5f, 0x85, 0xdc, 0x38, 0x42, 0x0f, 0x5a, 0x86, 0x6c, + 0x9e, 0xa7, 0x47, 0xac, 0x69, 0xb3, 0x5c, 0xc1, 0xf2, 0xe7, 0x38, 0xac, + 0x9b, 0xd4, 0xda, 0x2f, 0x53, 0x8f, 0xff, 0x00, 0x84, 0x67, 0x50, 0x33, + 0xf0, 0x18, 0xa9, 0x3c, 0xf1, 0x49, 0x15, 0x73, 0xa4, 0xb0, 0xf0, 0xb0, + 0xe1, 0xa5, 0x4e, 0x83, 0xd2, 0xa8, 0x5c, 0xcc, 0xbb, 0x30, 0xb7, 0xd3, + 0x90, 0xaa, 0x00, 0x0d, 0x26, 0x35, 0x26, 0x64, 0x4f, 0x79, 0x71, 0x78, + 0xc6, 0x14, 0xce, 0x0d, 0x21, 0xf3, 0x33, 0x56, 0xce, 0xdc, 0x5b, 0x5b, + 0xee, 0x9b, 0x93, 0x8e, 0xf5, 0x2c, 0x89, 0xb1, 0x0d, 0xda, 0x67, 0xa8, + 0xa4, 0x73, 0x36, 0xcd, 0x7f, 0x19, 0xea, 0xad, 0xaf, 0x4c, 0x6c, 0xd5, + 0x4e, 0xc5, 0x39, 0xaf, 0x1c, 0xfc, 0xc5, 0xb3, 0x37, 0x4d, 0xd0, 0x56, + 0x35, 0x52, 0x57, 0x9c, 0xd6, 0xb4, 0xb7, 0x12, 0xdc, 0xfa, 0x17, 0xf6, + 0x7e, 0xf0, 0xec, 0x6f, 0xa9, 0xc5, 0x29, 0x51, 0x90, 0xfd, 0x6b, 0xdd, + 0xc2, 0x23, 0xd4, 0xc3, 0x68, 0x7d, 0xc7, 0xa2, 0xaa, 0x5b, 0xe9, 0x71, + 0xa9, 0xc0, 0xda, 0xa2, 0xbd, 0x6d, 0x8f, 0x62, 0x91, 0xc0, 0xfc, 0x40, + 0xd4, 0xd2, 0x34, 0x75, 0x07, 0xd6, 0x93, 0xd8, 0xf4, 0x29, 0xc4, 0xf1, + 0x6d, 0x4e, 0xfd, 0x1e, 0x56, 0x39, 0xac, 0x24, 0xd9, 0xe9, 0x52, 0x86, + 0x86, 0x3c, 0xf7, 0xd1, 0x2e, 0x49, 0x35, 0x37, 0x3a, 0x94, 0x0c, 0x3d, + 0x43, 0xc4, 0x49, 0x6c, 0xdc, 0x35, 0x4b, 0x95, 0x99, 0x33, 0x81, 0xd1, + 0xf8, 0x3b, 0xc6, 0x27, 0x78, 0x01, 0xcf, 0x5f, 0x5a, 0x5c, 0xe6, 0x3c, + 0x87, 0x3b, 0xe3, 0x3d, 0x7a, 0x59, 0x65, 0x98, 0xef, 0x3c, 0x93, 0x52, + 0xe4, 0xee, 0x76, 0x52, 0x81, 0xe7, 0x37, 0xba, 0x91, 0x62, 0xdb, 0x9a, + 0xb2, 0x94, 0x8e, 0xb8, 0xc6, 0xc7, 0x3d, 0x79, 0x7c, 0x85, 0xcf, 0x35, + 0xcf, 0x27, 0x76, 0x59, 0x9f, 0x35, 0xd2, 0xe7, 0x8c, 0x52, 0x02, 0xb3, + 0xcc, 0xac, 0x30, 0x4d, 0x34, 0x54, 0x77, 0x2a, 0xb8, 0x49, 0x09, 0x04, + 0x75, 0xab, 0xe5, 0x3a, 0x2c, 0x2a, 0xd9, 0xc4, 0x47, 0xe1, 0x52, 0x24, + 0x56, 0xb8, 0xb7, 0x89, 0x47, 0x34, 0x0c, 0xcd, 0xb8, 0x44, 0x1d, 0x28, + 0x29, 0x19, 0x97, 0x67, 0x03, 0x8a, 0x65, 0x22, 0xa4, 0x78, 0x2f, 0x8a, + 0x43, 0x34, 0x61, 0x25, 0x17, 0x93, 0xda, 0x89, 0x19, 0xc8, 0xb5, 0x0d, + 0xc9, 0x07, 0xad, 0x49, 0x05, 0xf8, 0x6e, 0x09, 0xea, 0x69, 0xa2, 0x59, + 0xa5, 0x04, 0xff, 0x00, 0x20, 0xab, 0x46, 0x72, 0xdc, 0xbb, 0x0c, 0xc0, + 0xe3, 0x8a, 0x64, 0x97, 0x52, 0x50, 0x46, 0x28, 0x02, 0xb1, 0x90, 0xee, + 0x3c, 0xd0, 0x40, 0x6f, 0x63, 0xc8, 0xa0, 0x05, 0xdf, 0xef, 0x40, 0xa4, + 0x57, 0xb9, 0x93, 0x60, 0xa0, 0x93, 0x36, 0x49, 0xcb, 0x9c, 0x75, 0xa0, + 0x90, 0x40, 0x55, 0xc4, 0x87, 0xa5, 0x27, 0xb0, 0x9e, 0xc2, 0xcc, 0xea, + 0x54, 0xe6, 0xb3, 0x33, 0x91, 0x87, 0x7f, 0xc1, 0x3d, 0xfa, 0xd3, 0x44, + 0x5a, 0xe6, 0x0d, 0xe3, 0xed, 0x07, 0x9a, 0xb4, 0x64, 0xf6, 0x39, 0xfb, + 0xdb, 0x82, 0xa4, 0xe0, 0xd6, 0x91, 0x31, 0x39, 0xed, 0x4e, 0xec, 0xed, + 0xce, 0x6b, 0x5b, 0x12, 0xce, 0x3b, 0x54, 0xba, 0x90, 0x4c, 0x70, 0xdc, + 0x62, 0xad, 0x46, 0xc8, 0xc2, 0x45, 0x58, 0x6f, 0xa6, 0xdd, 0x8c, 0x9a, + 0x96, 0x23, 0xa4, 0xd1, 0xae, 0x25, 0x76, 0x1c, 0x9e, 0xb5, 0x12, 0x36, + 0x89, 0xeb, 0xde, 0x12, 0x79, 0x51, 0x22, 0x24, 0x9a, 0xc5, 0x9a, 0xc5, + 0x9e, 0x8d, 0x6b, 0x79, 0x19, 0x88, 0x2b, 0x8c, 0xd4, 0x48, 0xdd, 0x17, + 0x20, 0xfb, 0x21, 0x19, 0x20, 0x56, 0x68, 0x07, 0x4d, 0x71, 0x10, 0x8c, + 0x84, 0xeb, 0x5a, 0x2d, 0x80, 0xe4, 0x75, 0x68, 0xa6, 0xb9, 0x98, 0xed, + 0xce, 0x29, 0x30, 0x2d, 0x69, 0x3a, 0x50, 0x89, 0x84, 0xf2, 0xaf, 0x0b, + 0xd6, 0x90, 0x5c, 0xaf, 0xae, 0x6a, 0x01, 0x5f, 0xca, 0x89, 0x87, 0xa5, + 0x43, 0x26, 0x4f, 0x43, 0x3d, 0x5a, 0x42, 0xa0, 0xf3, 0xd2, 0x83, 0x9d, + 0x9e, 0xe3, 0x69, 0xf0, 0xde, 0xd3, 0x69, 0xb9, 0x9e, 0x1f, 0x9b, 0x1d, + 0x6b, 0xcb, 0x4a, 0xec, 0xfc, 0x9d, 0xd5, 0x66, 0x64, 0xfa, 0x55, 0x8d, + 0x9d, 0xd8, 0xb6, 0x20, 0x05, 0xcf, 0xaf, 0xbd, 0x75, 0xd1, 0xa7, 0x77, + 0x73, 0x7a, 0x0d, 0xc9, 0x9f, 0x46, 0xfc, 0x0c, 0xd0, 0xf4, 0xf8, 0x84, + 0x53, 0x41, 0x1e, 0x1b, 0x23, 0x9a, 0xf6, 0xb0, 0xf1, 0xb1, 0xf4, 0x18, + 0x68, 0x5c, 0xfa, 0x26, 0xe6, 0xf0, 0x58, 0xe9, 0xb8, 0x67, 0x00, 0x85, + 0xe2, 0xba, 0xdb, 0xb2, 0x3d, 0xca, 0x14, 0x8f, 0x11, 0xf1, 0xc6, 0xbf, + 0x2c, 0xd3, 0x48, 0xad, 0x20, 0x23, 0x27, 0x8a, 0xc9, 0xc8, 0xf4, 0x69, + 0xd3, 0x48, 0xf2, 0x9d, 0x5b, 0x54, 0x11, 0x33, 0x10, 0xd8, 0xfc, 0x6b, + 0x09, 0x4c, 0xec, 0x84, 0x0e, 0x5b, 0x51, 0xf1, 0x13, 0xa6, 0x40, 0x92, + 0xb3, 0x73, 0x3a, 0xe3, 0x15, 0x63, 0x91, 0xd5, 0xf5, 0xc9, 0x24, 0x90, + 0x05, 0x93, 0xa9, 0xa3, 0x9c, 0x72, 0x85, 0xd1, 0xe8, 0x3f, 0x0e, 0xa1, + 0x8e, 0xe6, 0x31, 0x24, 0x87, 0x2d, 0xf5, 0xaa, 0xe6, 0x23, 0xd9, 0x22, + 0xbf, 0x8c, 0xad, 0x65, 0x88, 0xca, 0x47, 0x4e, 0x69, 0x33, 0x45, 0xa2, + 0x3c, 0xbb, 0x51, 0xbb, 0x92, 0x36, 0x65, 0xe6, 0xa1, 0x9b, 0x46, 0x46, + 0x43, 0x48, 0xd2, 0x36, 0xee, 0x6b, 0x39, 0x22, 0xaf, 0x72, 0xad, 0xd5, + 0xdc, 0x16, 0xcb, 0xfb, 0xf2, 0x0d, 0x40, 0xf9, 0x6e, 0x73, 0xba, 0x8f, + 0x8a, 0xed, 0x60, 0x24, 0x45, 0xbb, 0x3e, 0xd5, 0x48, 0xd1, 0x2b, 0x2b, + 0x18, 0xaf, 0xe3, 0x97, 0x47, 0xc8, 0x0f, 0x81, 0xed, 0x57, 0x72, 0xa3, + 0x2b, 0x8e, 0xb5, 0xf8, 0x81, 0xe6, 0xcc, 0x23, 0x91, 0x98, 0x02, 0x68, + 0xb9, 0x67, 0x47, 0x16, 0xb3, 0x67, 0x77, 0x08, 0x20, 0xfc, 0xc4, 0x7a, + 0xd0, 0x34, 0x92, 0x33, 0xef, 0x2f, 0x12, 0x2f, 0x98, 0xb0, 0x20, 0xfa, + 0x1a, 0x01, 0x95, 0x44, 0xab, 0x71, 0xc2, 0x9a, 0x05, 0x72, 0x78, 0x2c, + 0x3b, 0x81, 0x40, 0x73, 0x16, 0x1e, 0x0d, 0xa4, 0x0c, 0x54, 0x09, 0xca, + 0xe8, 0x89, 0xc3, 0xa7, 0xdd, 0xe2, 0x83, 0x30, 0x8a, 0xee, 0x55, 0xe1, + 0x9a, 0x80, 0x34, 0xe0, 0xbc, 0x62, 0x83, 0xe6, 0xa0, 0x4c, 0xbf, 0x6f, + 0x74, 0x7f, 0xbd, 0x54, 0x85, 0x62, 0xe2, 0x5d, 0xb6, 0xdf, 0xbd, 0x4d, + 0x30, 0xe5, 0x15, 0x65, 0x27, 0x19, 0xab, 0x32, 0x7b, 0x8f, 0xf3, 0x48, + 0x18, 0xa0, 0xa1, 0x8d, 0x70, 0xc3, 0x90, 0x79, 0x15, 0x2c, 0x5c, 0xa9, + 0x94, 0x2f, 0x6f, 0x5c, 0xe7, 0x2d, 0x48, 0x97, 0x14, 0x8c, 0xdf, 0xb6, + 0x10, 0xd9, 0x26, 0x8b, 0x99, 0x3d, 0xc9, 0x5a, 0xff, 0x00, 0x31, 0xe0, + 0xb5, 0x04, 0x15, 0x53, 0x51, 0xde, 0xc4, 0x17, 0xa8, 0xb5, 0xc4, 0xcc, + 0xcb, 0xeb, 0xf1, 0xb8, 0xae, 0x78, 0xaa, 0x51, 0x32, 0x32, 0x27, 0xb9, + 0x12, 0x86, 0x00, 0xf4, 0xab, 0x4a, 0xc6, 0x52, 0x68, 0xc0, 0xd4, 0x99, + 0x46, 0x6a, 0xd1, 0x83, 0x7a, 0x9c, 0xbe, 0xa5, 0x3a, 0x64, 0xe4, 0xd5, + 0xa3, 0x36, 0xce, 0x76, 0xf0, 0xc4, 0xc0, 0x9a, 0xda, 0x3b, 0x18, 0x4a, + 0x5a, 0xea, 0x67, 0xc2, 0x47, 0x99, 0x8e, 0x7a, 0xd4, 0x30, 0x47, 0x59, + 0xa2, 0x6c, 0x55, 0x52, 0x3a, 0x8a, 0xc9, 0x9b, 0xc4, 0xf5, 0x3f, 0x0c, + 0x5c, 0xcc, 0xeb, 0x1a, 0x93, 0xc7, 0xd2, 0xb1, 0x3a, 0x23, 0xb9, 0xde, + 0xc0, 0x1c, 0xc2, 0x0f, 0xb5, 0x66, 0xf7, 0x36, 0x2c, 0x44, 0xcc, 0x01, + 0x19, 0xed, 0x48, 0x01, 0x5a, 0x4d, 0xa7, 0x04, 0xe6, 0x80, 0x1b, 0x1c, + 0x4c, 0xc7, 0x7c, 0xb8, 0xc0, 0xa9, 0x64, 0xc9, 0xd8, 0xcf, 0xd6, 0x7c, + 0x4b, 0x1d, 0xa4, 0x2f, 0x6d, 0x0c, 0x80, 0x39, 0x18, 0x14, 0x89, 0xe7, + 0x67, 0x27, 0x16, 0xa3, 0x25, 0xe5, 0xd0, 0xf3, 0x5f, 0x3c, 0xd0, 0x67, + 0x39, 0x9d, 0x00, 0xf2, 0xb0, 0x3e, 0x5a, 0x2c, 0x73, 0xf3, 0x1f, 0x45, + 0x78, 0xd7, 0xe2, 0x05, 0x8e, 0x8d, 0xa5, 0xec, 0x46, 0x40, 0xdd, 0x3a, + 0x0a, 0xf2, 0xd3, 0xb1, 0xf9, 0x6b, 0x85, 0xd9, 0xe1, 0xe7, 0xc7, 0x8d, + 0xab, 0xeb, 0x8a, 0xb1, 0xc9, 0xc1, 0x61, 0xfc, 0xeb, 0xba, 0x8c, 0x91, + 0xd9, 0x87, 0x85, 0xa4, 0x7d, 0x9b, 0xf0, 0x2e, 0xed, 0xa0, 0xd3, 0x22, + 0x9d, 0xfd, 0x8e, 0x6b, 0xd6, 0xa2, 0xd9, 0xf4, 0xb8, 0x4a, 0x67, 0xa3, + 0x78, 0xab, 0xc5, 0x7e, 0x6c, 0x02, 0x34, 0x93, 0xee, 0x8c, 0x71, 0x5b, + 0x49, 0xb6, 0x7b, 0xb4, 0xa2, 0x78, 0xaf, 0x89, 0x75, 0x56, 0x96, 0x59, + 0x18, 0xbf, 0xeb, 0x59, 0xb6, 0xec, 0x77, 0x53, 0x8e, 0xa7, 0x9a, 0x6b, + 0xda, 0x8b, 0x16, 0x20, 0x37, 0xeb, 0x5c, 0xf2, 0x95, 0xb7, 0x3b, 0x21, + 0x13, 0x89, 0xd5, 0xef, 0xe5, 0x00, 0x9c, 0x9f, 0xce, 0xb3, 0xe6, 0x47, + 0x4a, 0x8d, 0x8e, 0x6a, 0x6d, 0x45, 0xfc, 0xd1, 0x92, 0x71, 0x9f, 0x5a, + 0x39, 0x95, 0xca, 0xb1, 0xeb, 0x3f, 0x0f, 0xbc, 0x44, 0x96, 0x96, 0xca, + 0x59, 0xbd, 0xeb, 0x44, 0xd3, 0x33, 0x96, 0x85, 0x1f, 0x14, 0x7c, 0x40, + 0x49, 0xe6, 0x96, 0x0c, 0x67, 0x04, 0x8f, 0xbb, 0x54, 0xd9, 0x27, 0x09, + 0x79, 0xa8, 0xc7, 0x76, 0x4b, 0x60, 0xf3, 0xed, 0x50, 0xd9, 0x68, 0xaa, + 0xa3, 0xe4, 0x62, 0xa7, 0xb5, 0x4b, 0x91, 0xb2, 0x39, 0x4d, 0x7c, 0x5c, + 0xc9, 0x90, 0x3a, 0x66, 0xb3, 0x2d, 0x18, 0x76, 0xba, 0x3a, 0x4f, 0x26, + 0x6e, 0x0b, 0x1e, 0x6a, 0x96, 0xc5, 0x24, 0x69, 0x4f, 0xe1, 0xbd, 0x29, + 0xad, 0x8f, 0xf7, 0xbe, 0xa2, 0x80, 0x8a, 0xb1, 0xcc, 0x5d, 0x78, 0x6e, + 0x04, 0x9f, 0x74, 0x45, 0xb3, 0x9f, 0x5a, 0x0d, 0x2e, 0x8b, 0x30, 0x58, + 0xdd, 0x40, 0x02, 0xa3, 0x1f, 0xcc, 0xd0, 0x17, 0x45, 0xb4, 0xb2, 0xbb, + 0x98, 0x0d, 0xf9, 0xc0, 0xf7, 0xa0, 0x4d, 0xa4, 0x68, 0x59, 0x5b, 0x98, + 0x0f, 0xce, 0x0d, 0x52, 0x76, 0x25, 0xb3, 0x6a, 0xde, 0x48, 0xf1, 0x8e, + 0x05, 0x20, 0xba, 0x25, 0x78, 0xd6, 0x46, 0x04, 0x52, 0x33, 0xe6, 0x43, + 0x27, 0xb3, 0x4d, 0x84, 0xf7, 0xa2, 0xe1, 0xcc, 0x8c, 0x79, 0xe3, 0x28, + 0xc7, 0x14, 0xae, 0x3e, 0x64, 0x3e, 0xde, 0x62, 0x88, 0x01, 0xa7, 0x71, + 0x73, 0x22, 0xdc, 0x57, 0x7c, 0xf5, 0xa2, 0xe8, 0x39, 0x91, 0x7e, 0x1b, + 0x90, 0x40, 0xe6, 0x84, 0xc3, 0x99, 0x16, 0x96, 0x7c, 0xe3, 0x06, 0xad, + 0x34, 0x41, 0x21, 0x9b, 0xe5, 0xeb, 0x43, 0x92, 0x02, 0x27, 0x9b, 0x83, + 0xcd, 0x2b, 0xa0, 0x33, 0x2f, 0x25, 0x34, 0x5d, 0x11, 0x26, 0x63, 0xcb, + 0x3b, 0x29, 0x38, 0x3f, 0xad, 0x23, 0x12, 0x17, 0xbc, 0x7c, 0x15, 0xc9, + 0xa0, 0x86, 0xec, 0x52, 0x8e, 0xf5, 0x83, 0x13, 0xbb, 0xbd, 0x34, 0x89, + 0xb9, 0x9f, 0x75, 0x76, 0xc6, 0x53, 0x86, 0xcd, 0x5a, 0x46, 0x6c, 0xa9, + 0xf6, 0xbd, 0x9b, 0xf2, 0x7a, 0xd5, 0xa3, 0x9e, 0x4c, 0xc7, 0xd4, 0x6e, + 0xf7, 0x67, 0x06, 0x9d, 0x8c, 0x64, 0xf4, 0x39, 0x7d, 0x44, 0xb3, 0x93, + 0xcf, 0xeb, 0x57, 0x66, 0x67, 0x73, 0x0e, 0x60, 0x43, 0x6d, 0xad, 0x63, + 0xb1, 0x8c, 0x88, 0xe3, 0x85, 0x83, 0xe7, 0x15, 0x0f, 0x71, 0xc4, 0xe9, + 0x74, 0x96, 0xc0, 0x19, 0x3d, 0x31, 0x59, 0x33, 0xa2, 0x27, 0xa8, 0xf8, + 0x57, 0x50, 0xb5, 0x41, 0x1a, 0x96, 0xe4, 0x56, 0x2c, 0xe8, 0x89, 0xe9, + 0xda, 0x74, 0xb6, 0xb7, 0x10, 0x80, 0xac, 0x3a, 0x7a, 0xd6, 0x4f, 0x73, + 0x62, 0xda, 0x5a, 0x21, 0x20, 0x29, 0xeb, 0xd6, 0x80, 0x25, 0xb8, 0x82, + 0x0b, 0x74, 0xdc, 0x4e, 0x38, 0xf5, 0xad, 0x14, 0x6e, 0x26, 0x72, 0x1e, + 0x22, 0xf1, 0x5d, 0xb6, 0x9f, 0x1b, 0xa2, 0xc8, 0x01, 0xfc, 0x29, 0x38, + 0x10, 0xcf, 0x29, 0xbe, 0xd7, 0xe7, 0xbf, 0xd5, 0x15, 0xd2, 0x42, 0x53, + 0x27, 0xbd, 0x2e, 0x43, 0x39, 0x3b, 0x1b, 0xba, 0x44, 0xd9, 0x98, 0x31, + 0xcf, 0x5a, 0x5c, 0x86, 0x73, 0xd4, 0xeb, 0x04, 0xe3, 0x03, 0x91, 0xf9, + 0xd5, 0x72, 0xa3, 0x0b, 0x9a, 0x8b, 0xfd, 0xb9, 0xe2, 0xc8, 0x5a, 0xe2, + 0xe0, 0x38, 0x88, 0x8c, 0x8c, 0x37, 0x7a, 0xf1, 0x11, 0xf9, 0xad, 0xb5, + 0x32, 0x74, 0x2d, 0x1e, 0x4b, 0x1d, 0x7d, 0x0c, 0x84, 0xf0, 0x47, 0x53, + 0xef, 0x5d, 0x94, 0x4e, 0xdc, 0x32, 0x5c, 0xc7, 0xdc, 0x3f, 0x0a, 0x2f, + 0x96, 0x2d, 0x09, 0x14, 0x76, 0x55, 0xaf, 0x4a, 0x94, 0xac, 0x7d, 0x2e, + 0x11, 0x17, 0x7c, 0x43, 0xaa, 0x3a, 0xb3, 0x06, 0x6e, 0xb9, 0xef, 0x5d, + 0x3c, 0xc7, 0xbf, 0x45, 0x68, 0x79, 0xbe, 0xb9, 0xa9, 0x64, 0xb9, 0xdd, + 0x58, 0xca, 0x4f, 0x63, 0xb6, 0x16, 0x3c, 0xff, 0x00, 0x56, 0xbd, 0xde, + 0xe7, 0x26, 0xb9, 0xe5, 0x23, 0xb6, 0x9c, 0x7a, 0x9c, 0x7e, 0xb9, 0x7a, + 0x10, 0x94, 0xcd, 0x45, 0xcd, 0xec, 0x62, 0x44, 0x7c, 0xf7, 0x18, 0xc7, + 0x5a, 0x14, 0x89, 0x67, 0x6d, 0xa1, 0xbc, 0x90, 0x5b, 0xf0, 0x6b, 0x68, + 0x18, 0xcc, 0xe8, 0x2d, 0xf4, 0x1d, 0x3b, 0x54, 0xc0, 0x62, 0x4b, 0xb7, + 0x5e, 0x3b, 0xd5, 0xbd, 0x8e, 0x76, 0xec, 0x1a, 0x9f, 0xc3, 0xaf, 0x26, + 0xd8, 0xcd, 0x0a, 0xb6, 0x31, 0x9a, 0x86, 0x69, 0x09, 0x1c, 0x06, 0xa9, + 0x6f, 0x26, 0x98, 0xee, 0x8c, 0x08, 0xdb, 0xeb, 0x50, 0xce, 0x98, 0xc8, + 0xe6, 0xae, 0x6f, 0xa1, 0xb8, 0x07, 0x76, 0x0d, 0x22, 0xf9, 0xac, 0x64, + 0xdd, 0xde, 0x45, 0x06, 0x4a, 0x9c, 0x53, 0xb9, 0x4a, 0x7a, 0x18, 0xf7, + 0x3a, 0xcb, 0xe4, 0x81, 0x21, 0xfc, 0xe9, 0x8f, 0x98, 0xca, 0x93, 0x5c, + 0x64, 0x93, 0x96, 0xa0, 0x39, 0x89, 0xa1, 0xf1, 0x30, 0x04, 0x03, 0x8a, + 0x04, 0xe5, 0x73, 0x76, 0xc7, 0x5c, 0x49, 0x57, 0x2c, 0x17, 0x18, 0xf4, + 0xa0, 0x96, 0xcb, 0x89, 0x76, 0x26, 0x3c, 0x60, 0xe6, 0x81, 0x5d, 0x96, + 0xa3, 0x90, 0xa8, 0xcd, 0x01, 0x76, 0x5b, 0x86, 0xeb, 0x1d, 0x4d, 0x2b, + 0x88, 0x99, 0xee, 0xc3, 0x2e, 0x33, 0x48, 0x0a, 0x12, 0x61, 0xda, 0x80, + 0x29, 0xca, 0xc5, 0x58, 0x8c, 0xf7, 0xa0, 0x04, 0x8e, 0x5c, 0x37, 0x5e, + 0xf4, 0x01, 0xa7, 0x6e, 0xe4, 0x8a, 0x00, 0xb8, 0xb2, 0x1e, 0x9c, 0x71, + 0x4f, 0x98, 0x09, 0x0c, 0x87, 0x14, 0x73, 0x01, 0x0c, 0xb2, 0x90, 0x09, + 0xcd, 0x17, 0x15, 0xcc, 0xbb, 0x8b, 0x8d, 0xc3, 0x93, 0x4d, 0x6a, 0x44, + 0xd9, 0x97, 0x3c, 0xc0, 0x13, 0xcd, 0x06, 0x37, 0x28, 0xdc, 0x4e, 0x51, + 0x0b, 0x7a, 0xd5, 0x28, 0xdc, 0xca, 0x6c, 0xc8, 0x1a, 0x81, 0x0e, 0xdf, + 0x5a, 0xd1, 0x46, 0xc6, 0x6e, 0x45, 0x29, 0xaf, 0xb3, 0x29, 0xc9, 0xaa, + 0x4a, 0xc6, 0x72, 0x77, 0x45, 0x79, 0x6e, 0x37, 0x83, 0x86, 0xe6, 0x9d, + 0x8c, 0x65, 0xa2, 0x31, 0xef, 0x27, 0x20, 0x9e, 0x6a, 0x92, 0xd0, 0xce, + 0xd7, 0x31, 0x2f, 0x6e, 0xf1, 0x91, 0x9a, 0xd2, 0xc6, 0x46, 0x6f, 0x98, + 0x25, 0x90, 0x13, 0xde, 0xae, 0x2b, 0x43, 0x39, 0x96, 0x1b, 0x0a, 0xbf, + 0x85, 0x43, 0xdc, 0x71, 0x2e, 0x69, 0xd7, 0x5b, 0x18, 0x73, 0x58, 0xb3, + 0xa2, 0x26, 0xfe, 0x99, 0x2d, 0xe4, 0x53, 0x09, 0x54, 0xb0, 0x52, 0x72, + 0x39, 0xac, 0x59, 0xd1, 0x13, 0xbf, 0xd1, 0xbc, 0x53, 0x3d, 0xaa, 0x28, + 0x77, 0xe9, 0xef, 0x59, 0x3d, 0xcd, 0x8d, 0xd5, 0xf1, 0xfa, 0xa2, 0xe0, + 0xb8, 0xcd, 0x00, 0x62, 0xf8, 0x83, 0xe2, 0x51, 0x48, 0xd9, 0x56, 0x41, + 0xcf, 0xa1, 0xad, 0xe2, 0xb4, 0x33, 0x9c, 0xba, 0x1e, 0x53, 0xe2, 0x2f, + 0x17, 0xdc, 0xdf, 0xcc, 0x76, 0xc8, 0x79, 0xf4, 0x34, 0xec, 0x62, 0xe4, + 0x5b, 0xd0, 0x26, 0xf3, 0x57, 0x7b, 0x75, 0xa7, 0x62, 0x79, 0x8e, 0xcb, + 0x4e, 0x97, 0xcb, 0xc3, 0x66, 0x8b, 0x12, 0xe4, 0x9e, 0x86, 0xe2, 0xea, + 0x1f, 0x28, 0xe7, 0xb5, 0x16, 0x33, 0x3b, 0x0b, 0x4d, 0x71, 0xac, 0x2d, + 0x9e, 0xdb, 0x68, 0x8c, 0x00, 0x7a, 0x57, 0xcf, 0x2b, 0x9f, 0x9b, 0x35, + 0x66, 0x63, 0x78, 0x76, 0xea, 0x5b, 0xef, 0x11, 0xa1, 0x2e, 0x48, 0x2d, + 0xfd, 0x6b, 0xa6, 0x1d, 0xce, 0xcc, 0x3e, 0xf7, 0x3e, 0xe7, 0xf8, 0x63, + 0x6f, 0x1a, 0xf8, 0x7e, 0x3c, 0x80, 0x0e, 0xd5, 0xfe, 0x55, 0xe8, 0x51, + 0x68, 0xfa, 0x3c, 0x23, 0x2a, 0x78, 0xa5, 0x0a, 0x4a, 0xc3, 0x77, 0xad, + 0x74, 0x9e, 0xfd, 0x17, 0xa1, 0xe6, 0xda, 0xd3, 0x61, 0x9b, 0xde, 0xb3, + 0x93, 0xd4, 0xee, 0xa6, 0xae, 0x8e, 0x1b, 0x5a, 0x99, 0x57, 0x38, 0x3c, + 0xd7, 0x3c, 0x99, 0xe8, 0x53, 0xd1, 0x1c, 0x3e, 0xb3, 0x26, 0xf5, 0x2f, + 0xbb, 0x26, 0xb2, 0x6f, 0x53, 0x67, 0xa9, 0x57, 0x43, 0x7f, 0x32, 0x60, + 0x08, 0xcf, 0x35, 0x49, 0xd8, 0xcd, 0xbe, 0xa7, 0xa3, 0x69, 0x96, 0xae, + 0xf1, 0xae, 0x13, 0x8a, 0xd6, 0x27, 0x3c, 0xe4, 0x76, 0x9a, 0x56, 0x96, + 0xd1, 0x18, 0xdc, 0x71, 0x91, 0x9a, 0xd9, 0xbb, 0x9c, 0x92, 0x7a, 0x9e, + 0x8f, 0xa7, 0xe9, 0x51, 0x5c, 0x69, 0xac, 0x25, 0xe7, 0x0b, 0xde, 0xb3, + 0x6d, 0x97, 0x13, 0xc2, 0xbe, 0x2b, 0xe9, 0x91, 0x5a, 0xcd, 0x30, 0x89, + 0x40, 0xfa, 0x54, 0x36, 0x6f, 0x06, 0x78, 0x84, 0xe5, 0xd0, 0x1c, 0xb1, + 0x14, 0xae, 0xce, 0x85, 0xb1, 0x93, 0x73, 0x27, 0xca, 0x41, 0x6c, 0xd1, + 0x72, 0xd1, 0xcd, 0x5f, 0xcd, 0x27, 0x9b, 0xb4, 0x31, 0x15, 0x77, 0x03, + 0x2a, 0x69, 0x1c, 0xb6, 0x58, 0x9a, 0x2e, 0x0c, 0x89, 0x25, 0x7f, 0x30, + 0x7c, 0xdd, 0xfa, 0x51, 0x72, 0x5e, 0xa7, 0x51, 0xa5, 0x5e, 0x08, 0xa3, + 0x05, 0xf1, 0xd3, 0xbd, 0x17, 0x11, 0xb3, 0x0e, 0xa6, 0xa7, 0xa6, 0x07, + 0xd2, 0x8b, 0x92, 0xc9, 0xce, 0xa2, 0xc4, 0x7d, 0xe3, 0x4a, 0xe3, 0xb9, + 0x24, 0x1a, 0x93, 0x01, 0xf3, 0x3f, 0x7a, 0x5b, 0x05, 0xc9, 0x97, 0x54, + 0xee, 0x5e, 0x8b, 0xa0, 0xb8, 0xe1, 0xaa, 0xa1, 0xea, 0xd4, 0xae, 0x17, + 0x1c, 0xba, 0x8c, 0x52, 0x36, 0x38, 0xcd, 0x17, 0x0b, 0x89, 0x29, 0xdc, + 0x72, 0x9c, 0x7d, 0x28, 0xb8, 0x5c, 0xb9, 0xa7, 0xac, 0xa7, 0x19, 0x62, + 0x68, 0xb8, 0x5c, 0xd1, 0xf9, 0x86, 0x09, 0xa5, 0x7b, 0x87, 0x32, 0x1a, + 0xf2, 0x10, 0x3e, 0xf7, 0x14, 0xd0, 0x73, 0x22, 0x9d, 0xc5, 0xc9, 0x08, + 0xc7, 0x75, 0x5a, 0x57, 0x26, 0x6d, 0x1c, 0xfd, 0xed, 0xe9, 0x0c, 0x70, + 0xc4, 0x55, 0x24, 0x61, 0x29, 0x22, 0xaf, 0xf6, 0x80, 0x0a, 0x43, 0x11, + 0xd3, 0xbd, 0x16, 0x32, 0x6e, 0xc6, 0x66, 0xa1, 0xaa, 0x47, 0x82, 0x01, + 0x15, 0xa2, 0x56, 0x30, 0x9c, 0xee, 0x66, 0xbd, 0xd2, 0xc8, 0x0e, 0xde, + 0xb5, 0x66, 0x6d, 0xa2, 0x9c, 0xd2, 0x73, 0x9a, 0x08, 0x6c, 0xa3, 0x3d, + 0xc3, 0x07, 0x18, 0x72, 0x2b, 0x44, 0x9a, 0x33, 0x94, 0x9e, 0xc4, 0x77, + 0x52, 0xab, 0x43, 0x9e, 0xe4, 0x55, 0xa4, 0x45, 0xd9, 0xcd, 0x5d, 0xb3, + 0x34, 0x87, 0x92, 0x6a, 0xac, 0x2b, 0x89, 0x0a, 0x80, 0x33, 0x54, 0xb6, + 0x32, 0x96, 0xa5, 0x87, 0x61, 0xb7, 0x24, 0x76, 0xac, 0xe5, 0xb9, 0x48, + 0x96, 0xd0, 0x0d, 0xdc, 0x77, 0xac, 0x59, 0xd1, 0x13, 0xb5, 0xd2, 0xa2, + 0xdd, 0x0a, 0x8d, 0xb9, 0xe2, 0xb1, 0x3a, 0x22, 0x69, 0x8b, 0x77, 0x04, + 0x61, 0x71, 0xcd, 0x64, 0xf7, 0x36, 0x16, 0x48, 0x19, 0x57, 0x3b, 0x3a, + 0x51, 0x1d, 0x40, 0xc2, 0xd5, 0xe2, 0x57, 0xce, 0x56, 0xba, 0xa2, 0xac, + 0x61, 0x26, 0x73, 0x17, 0x76, 0x71, 0x7f, 0xcf, 0x31, 0x9a, 0xd1, 0x6a, + 0x73, 0xca, 0x56, 0x63, 0xed, 0x4b, 0xda, 0xa1, 0x75, 0x90, 0x80, 0x3d, + 0x29, 0xa8, 0x90, 0xe4, 0x99, 0xbb, 0xa7, 0x6a, 0xe5, 0x8a, 0x86, 0x94, + 0xfe, 0x74, 0x58, 0x5b, 0x9d, 0x3a, 0x5e, 0xa1, 0x45, 0x3b, 0xbb, 0x0a, + 0x86, 0x91, 0x07, 0xa9, 0x0f, 0x06, 0x6a, 0x9a, 0x8d, 0xc3, 0x4a, 0x23, + 0x7f, 0x2d, 0x87, 0x1c, 0x71, 0x5e, 0x02, 0x4a, 0xe7, 0xe7, 0xce, 0x3a, + 0x9b, 0xfe, 0x0e, 0xf8, 0x71, 0x71, 0x6b, 0xa9, 0xa4, 0xf2, 0x21, 0xe0, + 0xe7, 0x91, 0x5b, 0xc5, 0x1d, 0x54, 0x55, 0x99, 0xf5, 0x77, 0x82, 0xd4, + 0xd9, 0xe9, 0x8b, 0x06, 0x7a, 0x28, 0x15, 0xd5, 0x0d, 0x0f, 0x7f, 0x0c, + 0xec, 0x43, 0xe2, 0x48, 0x24, 0x62, 0x18, 0x8c, 0xe6, 0xba, 0xa2, 0xee, + 0x7b, 0x94, 0x64, 0xec, 0x79, 0x97, 0x89, 0x23, 0x68, 0x83, 0xf1, 0x51, + 0x33, 0xd1, 0xa5, 0x2d, 0x0f, 0x2a, 0xf1, 0x05, 0xd1, 0x57, 0x61, 0xcd, + 0x73, 0xb3, 0xbe, 0x0d, 0x9c, 0x55, 0xed, 0xeb, 0x4b, 0x37, 0x90, 0x33, + 0xd6, 0xa2, 0xc6, 0xf7, 0xd0, 0xe8, 0x7c, 0x2f, 0xa6, 0xe5, 0xd6, 0x47, + 0x5a, 0x0c, 0x25, 0x3b, 0x68, 0x7a, 0x9e, 0x8b, 0x6f, 0x16, 0xd5, 0x5c, + 0x01, 0x5a, 0xad, 0x0e, 0x39, 0xcc, 0xea, 0xed, 0xa1, 0x70, 0x10, 0x80, + 0x70, 0x05, 0x6c, 0xb6, 0x32, 0xb1, 0xa1, 0x3f, 0x89, 0x1f, 0x4d, 0xb6, + 0x64, 0xde, 0x47, 0x18, 0xeb, 0x59, 0xb3, 0x68, 0xab, 0xa3, 0xc7, 0x7c, + 0x77, 0xa9, 0xff, 0x00, 0x6a, 0xbc, 0xae, 0x4f, 0x02, 0xb3, 0x91, 0xd1, + 0x15, 0x63, 0xc5, 0xf5, 0xc9, 0xd6, 0x30, 0x42, 0xe3, 0x39, 0xa4, 0x8e, + 0x88, 0xab, 0x98, 0x30, 0x48, 0xf7, 0x24, 0x8c, 0x13, 0xd7, 0xa5, 0x33, + 0x4e, 0x56, 0x56, 0xbc, 0xd3, 0x1c, 0xbe, 0xed, 0x86, 0xac, 0x25, 0x16, + 0x8c, 0x2b, 0xcb, 0x37, 0x59, 0x0f, 0xca, 0x68, 0x21, 0x95, 0x45, 0xb4, + 0x81, 0x81, 0xda, 0x68, 0x11, 0xaf, 0x65, 0x0b, 0xb8, 0xda, 0x41, 0x18, + 0x14, 0x01, 0xad, 0x6d, 0x6c, 0xc0, 0x77, 0xa0, 0x96, 0x4a, 0xe1, 0x90, + 0x72, 0x29, 0x08, 0x88, 0x33, 0x91, 0xf2, 0x83, 0x52, 0x04, 0x72, 0x4d, + 0x2a, 0xfa, 0xd2, 0xb0, 0x15, 0x9e, 0xf2, 0x55, 0xf5, 0xa6, 0x04, 0x96, + 0xb7, 0xd2, 0x07, 0x1c, 0xd0, 0x07, 0x4b, 0xa7, 0xcd, 0xe6, 0xa8, 0xcd, + 0x00, 0x6e, 0xdb, 0x32, 0x80, 0x30, 0x40, 0xa0, 0x0b, 0x0e, 0xe0, 0x0e, + 0x31, 0x41, 0x05, 0x0b, 0x9b, 0x80, 0xb9, 0xe6, 0xaa, 0xc2, 0x66, 0x4d, + 0xd5, 0xe0, 0xda, 0xca, 0x0f, 0x5a, 0xa4, 0x44, 0x99, 0x96, 0xc0, 0x4a, + 0x3e, 0x66, 0xf7, 0xad, 0x62, 0xae, 0x8e, 0x79, 0x4b, 0x43, 0x33, 0x52, + 0x64, 0x85, 0x0e, 0xd6, 0x19, 0xab, 0xb1, 0x84, 0xa6, 0x72, 0x97, 0x37, + 0x6e, 0xf2, 0xec, 0xcf, 0x14, 0xec, 0x64, 0xe4, 0x87, 0xc5, 0x31, 0x51, + 0xc9, 0xc5, 0x04, 0xb9, 0x76, 0x2b, 0x5e, 0x5f, 0x6d, 0x04, 0x66, 0xb4, + 0x4b, 0xa9, 0x0e, 0x4c, 0xce, 0x4b, 0x96, 0x9d, 0x8f, 0xfb, 0x35, 0xa2, + 0x23, 0x71, 0xf3, 0x4c, 0x76, 0x95, 0xaa, 0x25, 0x99, 0x53, 0x90, 0x58, + 0xe7, 0x15, 0x76, 0x61, 0x71, 0xa9, 0x22, 0x82, 0x40, 0xa5, 0x6b, 0x23, + 0x39, 0x12, 0x33, 0xe4, 0x75, 0xed, 0x59, 0x4b, 0x72, 0xd1, 0x76, 0xc1, + 0x0b, 0x30, 0xfa, 0xd6, 0x2c, 0xe8, 0x89, 0xe9, 0x9e, 0x1d, 0xb5, 0x49, + 0x20, 0x8f, 0x20, 0x72, 0x2b, 0x13, 0xa2, 0x27, 0x52, 0x9a, 0x52, 0x32, + 0xee, 0xda, 0x2b, 0x27, 0xb9, 0xb1, 0x52, 0xfe, 0xc5, 0x23, 0x56, 0xe3, + 0xa0, 0xa2, 0x3a, 0x31, 0x3d, 0x8e, 0x2f, 0x59, 0x8c, 0x26, 0xe3, 0x5d, + 0x6b, 0x63, 0x9a, 0x6d, 0x9c, 0x6e, 0xa5, 0x76, 0xb1, 0x13, 0xd2, 0xb5, + 0x89, 0xcb, 0x27, 0xae, 0xa5, 0x04, 0xd4, 0x44, 0xa8, 0x62, 0x2d, 0xd6, + 0xb4, 0x44, 0xdd, 0x13, 0x45, 0x3b, 0xc5, 0x2c, 0x60, 0x31, 0xe6, 0xa6, + 0x48, 0x77, 0x3a, 0xe8, 0xae, 0x5c, 0xc4, 0x87, 0x07, 0xee, 0x8f, 0xe5, + 0x51, 0x64, 0x07, 0xdf, 0x91, 0x78, 0x76, 0xdb, 0x4a, 0xb1, 0x45, 0x2c, + 0x8e, 0xdf, 0xdd, 0x5e, 0xb5, 0xe0, 0xa3, 0xe1, 0x9c, 0x48, 0x3c, 0xd8, + 0xed, 0x0e, 0xe5, 0x81, 0x81, 0x15, 0xa4, 0x77, 0x36, 0xa3, 0x0d, 0x4e, + 0x8f, 0x42, 0xf1, 0x3c, 0xa8, 0xeb, 0x1b, 0x2b, 0x28, 0xf7, 0xae, 0x98, + 0x9e, 0xe6, 0x1f, 0x43, 0xac, 0x9e, 0x68, 0x6f, 0xa0, 0x57, 0x69, 0x06, + 0x71, 0xde, 0xba, 0x60, 0x7a, 0xf4, 0x4e, 0x0b, 0xc5, 0xd6, 0x23, 0xca, + 0x76, 0x45, 0xc8, 0xc7, 0x6a, 0x52, 0xdc, 0xf4, 0x69, 0x3b, 0x33, 0xc3, + 0xfc, 0x49, 0x6b, 0x21, 0x95, 0x80, 0x8c, 0x9e, 0x6b, 0x09, 0x1d, 0xb0, + 0x99, 0x97, 0xa4, 0xf8, 0x52, 0xe2, 0xf6, 0x71, 0x39, 0xb7, 0x6c, 0x1e, + 0xe4, 0x56, 0x6c, 0xdd, 0xcd, 0x58, 0xef, 0x2c, 0xfc, 0x3c, 0xd6, 0x70, + 0x29, 0x58, 0x8e, 0x46, 0x3a, 0x0a, 0x47, 0x34, 0xdd, 0xce, 0x8b, 0x40, + 0xb3, 0x99, 0xa5, 0x01, 0xd0, 0x81, 0x9e, 0xe2, 0xb5, 0x47, 0x2c, 0xf7, + 0x3b, 0x06, 0x65, 0xb6, 0x80, 0x64, 0x63, 0x03, 0x14, 0xd4, 0xcd, 0x23, + 0x0d, 0x0e, 0x1b, 0xc5, 0x9a, 0xac, 0x7b, 0x58, 0x6f, 0x1c, 0x7b, 0xd1, + 0x29, 0x5d, 0x1d, 0x10, 0x81, 0xe4, 0xfa, 0xde, 0xb3, 0xfe, 0xb2, 0x3d, + 0xd9, 0xdc, 0x31, 0x50, 0x75, 0x46, 0x07, 0x11, 0x73, 0xa7, 0xbd, 0xe3, + 0x72, 0xb9, 0xe7, 0x35, 0x2c, 0xe8, 0x8c, 0x0d, 0x8d, 0x17, 0xc2, 0x90, + 0xed, 0xdf, 0x20, 0x55, 0xfa, 0xd5, 0x23, 0x5e, 0x41, 0x75, 0x2d, 0x1a, + 0xce, 0x17, 0xc7, 0x98, 0x9c, 0x0f, 0x5a, 0x35, 0x14, 0xe0, 0x72, 0x7a, + 0x8e, 0x93, 0x09, 0x94, 0x94, 0xc1, 0x1e, 0xd4, 0x6a, 0x61, 0xc8, 0x51, + 0xfe, 0xc9, 0x40, 0x39, 0x5a, 0x04, 0xe0, 0x59, 0xb4, 0xd3, 0xd5, 0x4e, + 0x31, 0x46, 0xa4, 0xb8, 0x9b, 0x16, 0x9a, 0x72, 0x37, 0x5c, 0x51, 0x61, + 0x72, 0x13, 0x4f, 0xa3, 0xa3, 0x29, 0xc6, 0xda, 0x2c, 0x4f, 0x21, 0x45, + 0xf4, 0xc4, 0x8c, 0x11, 0xc0, 0xa0, 0x97, 0x1b, 0x33, 0x3e, 0xea, 0x1b, + 0x74, 0x07, 0x74, 0x8a, 0x3f, 0x1a, 0x04, 0xcc, 0xe7, 0x86, 0x29, 0x0f, + 0xee, 0xd8, 0x1f, 0xa1, 0xa0, 0x5a, 0x88, 0x90, 0x6c, 0x3c, 0x7f, 0x2a, + 0x05, 0x73, 0x56, 0xc2, 0x6f, 0x2f, 0x00, 0xb6, 0x28, 0x0e, 0x63, 0x72, + 0x1b, 0x8c, 0xa8, 0xc3, 0x66, 0x80, 0xe7, 0x2f, 0x3c, 0x9f, 0x20, 0xc9, + 0xed, 0x4d, 0x10, 0xdd, 0x91, 0x8f, 0x7f, 0x38, 0x19, 0xcb, 0x01, 0x5a, + 0x45, 0x5c, 0x87, 0x33, 0x06, 0xe2, 0xed, 0x03, 0x9f, 0xde, 0x0a, 0xd1, + 0x44, 0xce, 0x53, 0x33, 0x2f, 0x75, 0x64, 0xb7, 0x53, 0xfb, 0xc1, 0xf9, + 0xd6, 0x91, 0x86, 0x87, 0x3c, 0xa6, 0x8e, 0x67, 0x50, 0xd7, 0xde, 0x66, + 0x28, 0x1b, 0x3f, 0x43, 0x5a, 0x72, 0x1c, 0xf3, 0x99, 0x43, 0xce, 0x24, + 0x99, 0x1a, 0x8e, 0x43, 0x2e, 0x71, 0xad, 0x76, 0xa3, 0x83, 0x20, 0xfc, + 0xe8, 0x51, 0xb0, 0x73, 0x95, 0x65, 0x95, 0x64, 0xfe, 0x30, 0x6a, 0xd0, + 0x9c, 0xae, 0x3e, 0xc5, 0x11, 0x77, 0x9d, 0xc2, 0xad, 0x00, 0x93, 0xb2, + 0xff, 0x00, 0x78, 0x53, 0x25, 0x94, 0x26, 0x65, 0xeb, 0xb8, 0x1a, 0xab, + 0x93, 0x72, 0x93, 0xc9, 0x89, 0x30, 0x28, 0x26, 0x44, 0xa9, 0x30, 0xc8, + 0xcb, 0x0a, 0xca, 0x45, 0x44, 0xe8, 0x74, 0x55, 0x47, 0xc1, 0x04, 0x1e, + 0x6b, 0x06, 0x74, 0xc4, 0xf4, 0xef, 0x0b, 0xaa, 0x9d, 0x8b, 0xb8, 0x56, + 0x12, 0x95, 0x8e, 0x88, 0x9d, 0xdc, 0x50, 0xc7, 0xe5, 0x8f, 0x99, 0x6b, + 0x2b, 0x9b, 0x18, 0xda, 0xd2, 0x22, 0xab, 0x10, 0xc3, 0x8a, 0x68, 0x97, + 0x2d, 0x0f, 0x37, 0xd7, 0xa6, 0xfb, 0xdc, 0xe0, 0x66, 0xba, 0x22, 0xce, + 0x79, 0x9e, 0x7f, 0xac, 0x39, 0x72, 0x76, 0x90, 0x6b, 0x78, 0x9c, 0x92, + 0x31, 0x43, 0xbc, 0x00, 0xc8, 0x78, 0xc1, 0xad, 0x8c, 0xd1, 0xaf, 0x65, + 0x74, 0x97, 0x0d, 0x0e, 0x5c, 0x66, 0xa6, 0x5b, 0x16, 0x8e, 0xee, 0x15, + 0x4f, 0x29, 0x3e, 0x6f, 0xe1, 0x1f, 0xca, 0xb3, 0x03, 0xf4, 0x0b, 0x45, + 0x9c, 0x5f, 0x4e, 0x6e, 0x67, 0x56, 0x28, 0xcb, 0xc6, 0x6b, 0xc2, 0x47, + 0xc5, 0xf2, 0xdd, 0x93, 0xea, 0x76, 0x88, 0x5b, 0x31, 0x21, 0x3f, 0x4a, + 0xd2, 0x99, 0xd7, 0x4a, 0x16, 0x33, 0xe4, 0xb9, 0xfb, 0x1b, 0x82, 0xea, + 0xc0, 0x7b, 0x0a, 0xda, 0xe7, 0xab, 0x46, 0x2c, 0xde, 0xb0, 0xd6, 0x6d, + 0x6e, 0x62, 0x55, 0x62, 0x41, 0x03, 0xb9, 0xad, 0x20, 0x7a, 0xd4, 0x15, + 0x89, 0xf5, 0x58, 0xd6, 0xe6, 0xc4, 0x88, 0xb9, 0xca, 0xd5, 0xca, 0x5a, + 0x1d, 0x89, 0xe8, 0x70, 0xc9, 0xe0, 0x99, 0x75, 0x0b, 0x96, 0x67, 0x40, + 0x01, 0xf5, 0x15, 0x06, 0xd1, 0x93, 0x36, 0xa2, 0xd0, 0x2d, 0xf4, 0x6b, + 0x61, 0x0b, 0x04, 0x1b, 0x7e, 0x95, 0x2d, 0x1a, 0x26, 0xcc, 0xf9, 0xb5, + 0x4b, 0x38, 0x9f, 0x61, 0x2a, 0x3f, 0x2a, 0x43, 0x2c, 0x5b, 0x6b, 0xba, + 0x6c, 0x43, 0x25, 0xd7, 0xf3, 0x14, 0x0e, 0xc8, 0xc8, 0xd5, 0x7c, 0x64, + 0xa5, 0x24, 0x44, 0x98, 0x60, 0x1e, 0x39, 0xa4, 0xce, 0x98, 0x45, 0x23, + 0xca, 0xfc, 0x53, 0xe2, 0x27, 0x9a, 0x46, 0xfd, 0xfa, 0xf2, 0x7d, 0x68, + 0x48, 0xe9, 0x84, 0x51, 0xc2, 0xdf, 0xdf, 0xa9, 0x26, 0x46, 0x99, 0x4e, + 0x39, 0xeb, 0x4e, 0xc7, 0x4c, 0x62, 0x8a, 0x31, 0x78, 0xa6, 0xd6, 0x36, + 0xdc, 0x1a, 0xa9, 0x26, 0x6e, 0xa2, 0x8b, 0x87, 0xc7, 0xb0, 0xac, 0x7b, + 0x03, 0x1e, 0x9d, 0xab, 0x4b, 0x15, 0x63, 0x12, 0xfb, 0xc4, 0xe9, 0x72, + 0xc5, 0xd4, 0xb7, 0x34, 0x58, 0x9e, 0x54, 0x51, 0x7d, 0x7f, 0x1d, 0x8d, + 0x22, 0x9d, 0x25, 0x62, 0xac, 0xbe, 0x22, 0x61, 0xc0, 0x53, 0xf9, 0x50, + 0x43, 0xa6, 0x96, 0xc4, 0x71, 0xf8, 0x8e, 0x75, 0x62, 0x54, 0x9f, 0xca, + 0x82, 0x1c, 0x07, 0x9f, 0x1a, 0x5d, 0x43, 0xea, 0x3f, 0x0a, 0x64, 0x38, + 0x10, 0xc9, 0xf1, 0x06, 0xf0, 0x70, 0x0b, 0x7e, 0x54, 0x89, 0xe5, 0x32, + 0xf5, 0x0f, 0x88, 0x1a, 0xab, 0x48, 0x11, 0x37, 0xe0, 0x8f, 0xee, 0xd0, + 0xf6, 0x32, 0x9c, 0x51, 0x9a, 0xfa, 0xbe, 0xaf, 0xa8, 0x37, 0xcd, 0xbf, + 0x9f, 0xf6, 0x4d, 0x43, 0x32, 0x37, 0x34, 0x58, 0xaf, 0xb7, 0x03, 0x20, + 0x3c, 0xfb, 0x54, 0x91, 0x26, 0x8e, 0x85, 0x61, 0x7d, 0xbb, 0x9c, 0x72, + 0x69, 0x34, 0x73, 0xbb, 0x11, 0xbe, 0x54, 0xe3, 0x9c, 0xd0, 0x8c, 0x9c, + 0xb5, 0x34, 0xf4, 0xfb, 0x8d, 0x98, 0xab, 0x23, 0x9b, 0x53, 0x4a, 0xe2, + 0xeb, 0x09, 0x9c, 0x9e, 0x94, 0x92, 0x66, 0x9c, 0xcc, 0xe6, 0x35, 0x7d, + 0x40, 0xa8, 0x3c, 0xd7, 0x44, 0x51, 0x94, 0xa4, 0xd1, 0xc8, 0xde, 0xea, + 0x6c, 0xae, 0x48, 0x6a, 0xde, 0x31, 0x47, 0x34, 0xe4, 0x73, 0x1a, 0xc6, + 0xae, 0xed, 0x91, 0xb8, 0xd6, 0xdc, 0xa8, 0xe7, 0x94, 0xf4, 0x31, 0xe1, + 0xd4, 0x1b, 0x7f, 0x27, 0xad, 0x57, 0x29, 0x8f, 0x39, 0xa5, 0xf6, 0xe2, + 0xf1, 0x63, 0x34, 0x72, 0x87, 0x39, 0x56, 0x59, 0x77, 0x77, 0xfd, 0x69, + 0xf2, 0x87, 0x38, 0x45, 0x92, 0x46, 0x07, 0xeb, 0x4b, 0x96, 0xc0, 0xe5, + 0x72, 0xc6, 0xff, 0x00, 0x2c, 0x0e, 0x4f, 0x34, 0x58, 0x57, 0x21, 0x92, + 0x5e, 0xb4, 0x58, 0x2e, 0x8a, 0xae, 0xdb, 0xa8, 0xb0, 0x5d, 0x10, 0xb3, + 0xe3, 0x83, 0xd6, 0xb4, 0x49, 0x83, 0x69, 0x95, 0xf7, 0x96, 0x7e, 0xb5, + 0x9c, 0x90, 0x91, 0xd6, 0x78, 0x77, 0x8c, 0x66, 0xb9, 0x6a, 0x68, 0x6f, + 0x17, 0xd8, 0xf5, 0x4f, 0x0a, 0x40, 0x32, 0xad, 0x5c, 0x73, 0x77, 0x3a, + 0xe1, 0xaa, 0x3b, 0x56, 0x3b, 0x14, 0x00, 0x6b, 0x23, 0x63, 0x03, 0x58, + 0x0c, 0xd9, 0xad, 0x22, 0x64, 0xde, 0x87, 0x15, 0xae, 0x5a, 0x09, 0x23, + 0x61, 0xeb, 0x5b, 0x44, 0xcd, 0x9c, 0x25, 0xdd, 0x88, 0x8e, 0x46, 0x63, + 0x5d, 0x10, 0x68, 0xc5, 0x9c, 0xee, 0xb0, 0x42, 0x21, 0x00, 0x57, 0x45, + 0xd1, 0x8b, 0x4c, 0x82, 0xc9, 0xfc, 0xb6, 0x8a, 0x52, 0x48, 0xc7, 0xbd, + 0x4c, 0x9a, 0x0b, 0x1d, 0xcc, 0x3a, 0xdc, 0x42, 0x24, 0x1b, 0x87, 0x0a, + 0x3b, 0xfb, 0x56, 0x0e, 0x41, 0x63, 0xf4, 0x6e, 0xf2, 0xed, 0xf4, 0x9b, + 0x18, 0xec, 0xa3, 0x8b, 0x0e, 0x8c, 0x33, 0xf2, 0xf3, 0x5e, 0x2a, 0x3e, + 0x59, 0x43, 0x52, 0xcd, 0x8e, 0xbb, 0xc0, 0x13, 0xa7, 0xfe, 0x3b, 0x5a, + 0x41, 0xd8, 0xeb, 0xa5, 0x0d, 0x4a, 0x3e, 0x22, 0xd5, 0x60, 0x91, 0x3e, + 0x45, 0xe7, 0x1e, 0x95, 0xb3, 0x3d, 0x2a, 0x51, 0x47, 0x3d, 0x16, 0xa4, + 0xe8, 0xeb, 0x82, 0x45, 0x69, 0x06, 0x7a, 0x34, 0xf4, 0x47, 0x77, 0xa0, + 0xea, 0x02, 0x78, 0x15, 0x64, 0xe7, 0x8e, 0xe2, 0xa9, 0x9d, 0x11, 0x66, + 0xd5, 0xc1, 0xfb, 0x3d, 0xa9, 0x96, 0x15, 0x5c, 0xe3, 0x39, 0xc5, 0x23, + 0x78, 0x9e, 0x77, 0xe2, 0x3d, 0x6e, 0xe1, 0xc3, 0x82, 0x40, 0x3c, 0xd2, + 0x37, 0x8a, 0x3c, 0xb3, 0x5a, 0xd7, 0x2e, 0xa2, 0x91, 0x8a, 0xc8, 0x46, + 0x33, 0xde, 0xa5, 0x9a, 0x72, 0x9c, 0xbd, 0xf7, 0x8b, 0xb5, 0x14, 0xc8, + 0x59, 0x0f, 0xe6, 0x68, 0x29, 0x45, 0x1c, 0xfe, 0xa1, 0xe3, 0xbd, 0x46, + 0x34, 0x65, 0x0d, 0x93, 0x42, 0xd4, 0xd1, 0x68, 0x73, 0x2f, 0xab, 0xf8, + 0x8b, 0x5b, 0x9f, 0x64, 0x11, 0x16, 0xc9, 0xf4, 0x35, 0x6a, 0x3d, 0xcd, + 0xa3, 0x22, 0xec, 0x7e, 0x07, 0xf1, 0x7d, 0xee, 0x09, 0x80, 0x85, 0x6e, + 0xbd, 0x69, 0xf2, 0x9d, 0x11, 0x91, 0x7e, 0x1f, 0x85, 0x1a, 0xb1, 0x1f, + 0x3c, 0x6c, 0x3f, 0x13, 0x54, 0x91, 0xaf, 0x31, 0x29, 0xf8, 0x49, 0xa8, + 0x67, 0x2c, 0xad, 0xff, 0x00, 0x7d, 0x1a, 0xa2, 0x94, 0xc7, 0xff, 0x00, + 0xc2, 0xb3, 0x9a, 0xd9, 0x77, 0xca, 0xa4, 0x01, 0xd7, 0x9a, 0x18, 0xf9, + 0x91, 0x52, 0xe3, 0xc1, 0x91, 0x47, 0xd4, 0x1c, 0xfd, 0x6a, 0x0b, 0xf6, + 0x96, 0x56, 0x28, 0x4b, 0xe1, 0x78, 0x41, 0x3f, 0x2b, 0x50, 0x43, 0xa8, + 0x30, 0x78, 0x6a, 0x31, 0x9d, 0xa8, 0x73, 0x40, 0xb9, 0xd0, 0x1f, 0x08, + 0x09, 0x8f, 0x28, 0x68, 0x25, 0xc9, 0x16, 0x20, 0xf8, 0x78, 0x92, 0x72, + 0xd1, 0x9e, 0x68, 0x23, 0x99, 0x12, 0xbf, 0xc3, 0xb8, 0x23, 0x71, 0x98, + 0xb3, 0xf8, 0x50, 0xcc, 0x6a, 0x49, 0x16, 0xed, 0xbc, 0x1b, 0x6b, 0x17, + 0x48, 0xb9, 0x1e, 0xd5, 0x0c, 0xc2, 0xe4, 0xf2, 0x68, 0xa9, 0x6e, 0x3e, + 0x48, 0xfa, 0x7b, 0x54, 0x98, 0xca, 0x56, 0x21, 0x9a, 0xd5, 0x51, 0x37, + 0x11, 0x83, 0x41, 0x8c, 0x99, 0x8d, 0x32, 0x8d, 0xf9, 0xa7, 0x63, 0x26, + 0xc7, 0xc7, 0x26, 0xce, 0x73, 0x55, 0x63, 0x3b, 0x8f, 0xbb, 0xd4, 0x55, + 0x63, 0xc1, 0x23, 0xa5, 0x52, 0x8b, 0xb8, 0xd3, 0x67, 0x1d, 0xac, 0xea, + 0x7f, 0x7b, 0x9a, 0xda, 0x28, 0xce, 0x72, 0x39, 0x2b, 0xfb, 0xfd, 0xc1, + 0xb0, 0x6b, 0x74, 0x8e, 0x59, 0x4a, 0xe7, 0x37, 0x7b, 0x3e, 0xe3, 0x92, + 0x6b, 0x64, 0xb4, 0x31, 0x94, 0xac, 0x8a, 0xd6, 0xf2, 0x2a, 0xb0, 0x26, + 0xa8, 0xc7, 0x98, 0xba, 0x2e, 0x77, 0x2e, 0x14, 0x8a, 0x63, 0xb8, 0xe4, + 0x6c, 0x9c, 0x1a, 0x06, 0x5a, 0x8d, 0x80, 0xc6, 0x68, 0x01, 0x2e, 0x5c, + 0xf0, 0x07, 0x6a, 0x00, 0xaa, 0xf2, 0x1c, 0x1a, 0x00, 0x8d, 0xa6, 0x14, + 0x01, 0x04, 0x8e, 0x5d, 0xc5, 0x68, 0x95, 0xf5, 0x15, 0xd0, 0x8b, 0xc3, + 0x56, 0x72, 0x8b, 0x1a, 0x67, 0x4f, 0xa0, 0x4c, 0x06, 0x2b, 0x96, 0xa2, + 0xd0, 0xde, 0x07, 0xab, 0x78, 0x56, 0xf0, 0x15, 0x50, 0x3a, 0xe2, 0xb8, + 0x67, 0x13, 0xae, 0x0c, 0xec, 0xc4, 0x85, 0xc5, 0x65, 0x63, 0x5b, 0x99, + 0xfa, 0x9a, 0xa6, 0xd2, 0x4f, 0xe7, 0x5a, 0x46, 0x2d, 0x19, 0x9c, 0x86, + 0xa6, 0x81, 0xe2, 0x6c, 0x73, 0xd6, 0xb4, 0x44, 0xd8, 0xe2, 0x2f, 0xed, + 0x1d, 0xe4, 0x60, 0x05, 0x6d, 0x16, 0x67, 0x28, 0x33, 0x12, 0xf7, 0x40, + 0x79, 0x94, 0x92, 0xa7, 0x35, 0xd0, 0x99, 0x8b, 0x31, 0xb5, 0x0d, 0x3a, + 0x4b, 0x68, 0x82, 0xae, 0x72, 0x05, 0x43, 0x92, 0xb8, 0xac, 0x57, 0x4f, + 0xb6, 0x04, 0x51, 0x93, 0xd0, 0x77, 0xa8, 0x03, 0xf6, 0xce, 0xeb, 0xc1, + 0x11, 0x6a, 0x13, 0x19, 0x5a, 0xd9, 0x79, 0xf6, 0xaf, 0x15, 0x1f, 0x3f, + 0xc9, 0xa9, 0x15, 0xd7, 0xc3, 0x64, 0x44, 0xf3, 0x16, 0x00, 0x00, 0xf6, + 0xad, 0x22, 0xba, 0x9d, 0x34, 0xe2, 0x70, 0xfe, 0x24, 0xf0, 0x99, 0x5c, + 0xac, 0x70, 0xe7, 0x1e, 0xa2, 0xb4, 0xb9, 0xe8, 0x52, 0x8d, 0xb5, 0x39, + 0x36, 0xf0, 0xfe, 0xfb, 0x84, 0xf3, 0x13, 0x68, 0x4e, 0xb8, 0xad, 0x20, + 0x75, 0xc0, 0xeb, 0x74, 0xfb, 0x7d, 0x22, 0xd2, 0xd8, 0x01, 0x3f, 0xce, + 0x07, 0x4c, 0x56, 0xac, 0xda, 0x05, 0x7d, 0x57, 0x5b, 0x86, 0x3b, 0x66, + 0x89, 0x18, 0x1e, 0x38, 0xa9, 0x3a, 0x22, 0x79, 0x5e, 0xbf, 0x79, 0x23, + 0xbc, 0x87, 0x6e, 0x33, 0x9a, 0x0e, 0x98, 0x9e, 0x69, 0xaf, 0xcc, 0xfb, + 0x88, 0xf7, 0xa9, 0x7b, 0x9d, 0x09, 0x68, 0x65, 0xda, 0x58, 0x0b, 0xd6, + 0x0b, 0xb7, 0x39, 0x38, 0xa4, 0x3b, 0x23, 0xa8, 0xd3, 0xfe, 0x1b, 0x5b, + 0xea, 0x5b, 0x31, 0x16, 0x49, 0x1c, 0xf1, 0x5b, 0xc6, 0x26, 0x12, 0x97, + 0x43, 0xd3, 0xfc, 0x19, 0xf0, 0x8f, 0x49, 0xb0, 0x0b, 0x35, 0xd5, 0xb2, + 0x71, 0x83, 0xca, 0xd5, 0xd8, 0xa8, 0xcf, 0xa1, 0xd4, 0x6a, 0xba, 0x66, + 0x8d, 0xa7, 0x46, 0x52, 0x1b, 0x48, 0x76, 0x8e, 0xa7, 0x60, 0xe9, 0x45, + 0x91, 0xa7, 0xb5, 0x38, 0xad, 0x56, 0xfb, 0x49, 0x8b, 0x3e, 0x52, 0xa7, + 0xfd, 0xf3, 0x49, 0x9a, 0xaa, 0xa7, 0x37, 0x75, 0xab, 0xc6, 0x41, 0xd9, + 0x12, 0x7e, 0x54, 0x8b, 0x53, 0x39, 0xdd, 0x47, 0x51, 0x9a, 0xe0, 0x98, + 0x44, 0x4b, 0x83, 0xdc, 0x50, 0xcb, 0xf6, 0xa8, 0xc5, 0x9e, 0xda, 0x69, + 0x0f, 0xdd, 0x35, 0x06, 0x7e, 0xd8, 0x8e, 0x3d, 0x0a, 0x59, 0xb9, 0x2a, + 0x79, 0xa0, 0x4e, 0xab, 0x2f, 0x5b, 0x78, 0x68, 0xa7, 0x2c, 0x86, 0x81, + 0x7b, 0x56, 0x68, 0xc1, 0xa2, 0x42, 0x9c, 0xb2, 0xfe, 0x94, 0x12, 0xea, + 0xb2, 0xe2, 0x58, 0xdb, 0xc6, 0x30, 0x00, 0xfc, 0xa8, 0x27, 0xda, 0x5c, + 0x6c, 0xf6, 0x48, 0xe3, 0xe5, 0x40, 0x48, 0xa1, 0x83, 0x9d, 0xcc, 0xd9, + 0x6d, 0x64, 0x43, 0xfe, 0xa8, 0x60, 0x56, 0x6c, 0x4e, 0x56, 0x33, 0xae, + 0xa3, 0x07, 0xaa, 0x81, 0xf8, 0x52, 0x30, 0x94, 0xae, 0x73, 0x7a, 0x99, + 0x39, 0x65, 0x51, 0xd2, 0x83, 0x26, 0xd7, 0x53, 0x9a, 0xb9, 0x95, 0xa3, + 0x72, 0x5b, 0xa5, 0x5c, 0x55, 0xcc, 0x9b, 0xd4, 0x80, 0xdd, 0xa3, 0x74, + 0x35, 0xb7, 0x29, 0x9d, 0xc8, 0x2f, 0x18, 0xc8, 0x87, 0x61, 0xa7, 0x66, + 0x4b, 0x95, 0x8e, 0x4b, 0x56, 0x46, 0x05, 0xb7, 0x12, 0x2b, 0x48, 0xa3, + 0x19, 0xc8, 0xe6, 0x6f, 0x0c, 0x60, 0x32, 0x93, 0xcd, 0x6f, 0x18, 0xdc, + 0xe6, 0x94, 0xac, 0x62, 0x4e, 0x8a, 0x4d, 0x6c, 0xa2, 0x61, 0x27, 0x72, + 0x25, 0x8c, 0x01, 0xc1, 0xa7, 0x62, 0x2e, 0x49, 0x11, 0x26, 0x5c, 0x52, + 0x34, 0x4e, 0xe5, 0xb8, 0xd8, 0x03, 0xcd, 0x3b, 0x15, 0x72, 0x7d, 0xe0, + 0x0c, 0xd1, 0x60, 0xb8, 0xd7, 0x90, 0x37, 0x43, 0xc0, 0xa2, 0xc1, 0x72, + 0x9c, 0xd3, 0x2f, 0x4e, 0xf4, 0x58, 0x2e, 0x56, 0x79, 0x0b, 0x0c, 0x83, + 0x45, 0x82, 0xe3, 0xa2, 0x6d, 0xab, 0x96, 0xad, 0x21, 0xaa, 0x33, 0x93, + 0xb8, 0x34, 0xa8, 0x0e, 0x49, 0xa9, 0x98, 0x24, 0x6e, 0xe8, 0x72, 0x19, + 0x08, 0x11, 0xf3, 0xcd, 0x71, 0x54, 0x3a, 0x29, 0xbd, 0x4f, 0x55, 0xf0, + 0xa2, 0xb4, 0x4a, 0x8d, 0x28, 0xc0, 0x22, 0xb8, 0xea, 0x1d, 0xd0, 0x3b, + 0x8f, 0xb4, 0x46, 0x23, 0xc8, 0x6a, 0xc8, 0xda, 0xc6, 0x26, 0xb1, 0x78, + 0xc5, 0x58, 0x21, 0xcd, 0x6a, 0x47, 0x2b, 0x39, 0x53, 0x75, 0x23, 0x02, + 0x24, 0xa4, 0x9d, 0xd8, 0x58, 0xa3, 0x22, 0xc6, 0xcf, 0x9c, 0x56, 0xaa, + 0x42, 0xb1, 0x1d, 0xc2, 0x20, 0x8c, 0x9d, 0xa3, 0x8a, 0xd3, 0x9a, 0xe4, + 0x3a, 0x67, 0x2b, 0x7b, 0x65, 0x35, 0xc4, 0xff, 0x00, 0x2a, 0x02, 0xa4, + 0xd2, 0xe6, 0x44, 0xf2, 0x0e, 0x1a, 0x24, 0xb8, 0x1f, 0xbb, 0xa3, 0x99, + 0x13, 0x63, 0xf7, 0x46, 0x75, 0x86, 0xdd, 0x46, 0xd0, 0x3a, 0xd7, 0x8e, + 0x8f, 0x0b, 0x95, 0x0e, 0xdf, 0x1c, 0xd6, 0xec, 0xbb, 0x41, 0xad, 0x13, + 0xd0, 0xd6, 0x07, 0x9e, 0x78, 0x96, 0xdd, 0x11, 0xdc, 0xec, 0x00, 0x55, + 0x1d, 0x90, 0x67, 0x98, 0x6a, 0xaf, 0xb2, 0x77, 0xd8, 0xb8, 0x19, 0xed, + 0x5b, 0xc0, 0xea, 0x89, 0x93, 0x25, 0xd9, 0x52, 0x6b, 0x47, 0xb1, 0xb4, + 0x0c, 0x9d, 0x52, 0xf3, 0x72, 0xf5, 0xed, 0xeb, 0x52, 0x74, 0x44, 0xe3, + 0xf5, 0x87, 0x2c, 0x18, 0xe4, 0x73, 0x41, 0xd3, 0x1b, 0x1e, 0x79, 0xad, + 0x36, 0xe7, 0x20, 0x9a, 0x87, 0xb9, 0xb7, 0x32, 0x45, 0x9f, 0x0d, 0xda, + 0x99, 0x24, 0x18, 0xf5, 0xa0, 0x6e, 0x67, 0xb3, 0xf8, 0x5a, 0xc1, 0x63, + 0x11, 0x36, 0x3a, 0x01, 0x5d, 0x31, 0x38, 0x67, 0x26, 0x99, 0xdf, 0xdb, + 0xb0, 0x48, 0x70, 0x0d, 0x50, 0xb9, 0xac, 0x73, 0xde, 0x21, 0x46, 0x91, + 0x5b, 0x1d, 0xe9, 0x37, 0x60, 0x53, 0x3c, 0xd3, 0x59, 0xb2, 0x70, 0x49, + 0xda, 0x6a, 0x4d, 0x79, 0xcc, 0x23, 0x6a, 0xe4, 0x72, 0x28, 0x35, 0x8d, + 0x42, 0xa3, 0xd9, 0x6d, 0x97, 0x73, 0x11, 0x81, 0x53, 0x72, 0xee, 0x38, + 0x5a, 0xa1, 0x39, 0x18, 0xc7, 0x5a, 0x41, 0x72, 0x48, 0xd1, 0x10, 0xf6, + 0xa0, 0x0b, 0x41, 0xd5, 0x94, 0x63, 0xb5, 0x00, 0x21, 0x3e, 0xb4, 0x13, + 0x61, 0x87, 0x03, 0xbd, 0x01, 0x61, 0xa6, 0x4d, 0xa3, 0x8e, 0xf4, 0x4b, + 0x47, 0x61, 0xda, 0xda, 0x94, 0xee, 0xd8, 0xec, 0x3c, 0x54, 0x6e, 0x43, + 0x9b, 0x7a, 0x33, 0x9d, 0xbe, 0x98, 0xa9, 0xc5, 0x16, 0x32, 0xbd, 0x8e, + 0x6f, 0x50, 0x9d, 0x37, 0x3e, 0x48, 0xcd, 0x54, 0x7b, 0x18, 0xca, 0x57, + 0x67, 0x29, 0xaa, 0x5c, 0xa9, 0x24, 0x06, 0x15, 0xa4, 0x52, 0xb9, 0x9c, + 0xa5, 0x63, 0x0d, 0xef, 0x4a, 0x1c, 0x66, 0xb5, 0xb1, 0x9f, 0x33, 0x1e, + 0xd7, 0xe7, 0x60, 0x19, 0x3f, 0x9d, 0x52, 0xd5, 0xd8, 0x86, 0xee, 0x73, + 0x5a, 0xd5, 0xeb, 0x6d, 0x38, 0xad, 0x52, 0x4f, 0x43, 0x16, 0xce, 0x4a, + 0xe6, 0xe9, 0x9a, 0x43, 0x93, 0xd6, 0xb5, 0x8a, 0x39, 0xe7, 0xa1, 0x52, + 0x67, 0x25, 0xba, 0x56, 0x86, 0x57, 0x1a, 0x84, 0x91, 0xde, 0x81, 0x12, + 0xdb, 0x7f, 0xae, 0x34, 0xac, 0x54, 0x19, 0x6b, 0x3f, 0x4e, 0x3a, 0x53, + 0x34, 0x06, 0x93, 0x0b, 0x40, 0x15, 0x5a, 0xe0, 0x28, 0x39, 0x34, 0x01, + 0x51, 0xe5, 0xde, 0xd4, 0x01, 0x22, 0x90, 0x46, 0x33, 0x4e, 0xc0, 0x23, + 0x3e, 0x38, 0xaa, 0x8e, 0x84, 0x4b, 0x72, 0xbc, 0x8f, 0x9e, 0x99, 0xa8, + 0x9b, 0xb8, 0xd6, 0xe7, 0x49, 0xe1, 0x62, 0x4c, 0xa3, 0xaf, 0x5a, 0xe3, + 0xaa, 0x74, 0xd3, 0x5a, 0x9e, 0xc1, 0xa3, 0x1d, 0xb0, 0x46, 0x71, 0xda, + 0xb8, 0xe6, 0x77, 0xc6, 0x26, 0xc4, 0xd7, 0x82, 0x38, 0xc8, 0x26, 0xb0, + 0xb9, 0xb7, 0x2b, 0x30, 0x6f, 0xb5, 0x2c, 0x96, 0x19, 0xeb, 0xef, 0x5a, + 0xb9, 0x21, 0xd9, 0x99, 0x06, 0x46, 0x7e, 0x95, 0x37, 0x15, 0x91, 0x24, + 0x76, 0xe5, 0xcd, 0x34, 0xc4, 0xd7, 0x62, 0xd1, 0xb0, 0x0d, 0x1e, 0x0f, + 0x7f, 0x51, 0x56, 0x9f, 0x71, 0x72, 0xb2, 0x05, 0xd1, 0xe3, 0x0e, 0x0e, + 0x3f, 0x4a, 0x77, 0x21, 0xa6, 0x99, 0x70, 0x69, 0x2b, 0x81, 0xc2, 0xd1, + 0x72, 0x2c, 0x7e, 0xcc, 0xb6, 0x9c, 0xee, 0xd9, 0x7e, 0x45, 0x79, 0xa8, + 0xf9, 0xe6, 0x5a, 0xb0, 0xb3, 0x84, 0xa9, 0x42, 0x05, 0x51, 0x50, 0x39, + 0x1f, 0x16, 0x69, 0xf6, 0xf8, 0x73, 0x81, 0x54, 0x99, 0xd5, 0x09, 0x74, + 0x3c, 0x6b, 0xc4, 0xf6, 0xb1, 0xc1, 0x37, 0xc8, 0x00, 0xce, 0x6b, 0x7a, + 0x5a, 0x9d, 0xb4, 0xf6, 0x38, 0x8d, 0x42, 0x75, 0x88, 0x9e, 0x7b, 0xd6, + 0xcc, 0xe8, 0x81, 0xcf, 0x6a, 0x3a, 0x82, 0x7f, 0x7a, 0xa4, 0xda, 0x27, + 0x31, 0xab, 0x6a, 0x09, 0xe5, 0x9c, 0x35, 0x4b, 0x35, 0x47, 0x03, 0xaa, + 0x5e, 0xab, 0x4a, 0x46, 0x41, 0xe6, 0x91, 0x69, 0x9d, 0x3f, 0x83, 0x76, + 0x3b, 0xaf, 0x4e, 0xb4, 0x07, 0x31, 0xec, 0x9a, 0x03, 0x60, 0x20, 0xfa, + 0x0a, 0xe9, 0x89, 0x84, 0xf5, 0x67, 0x63, 0x6c, 0x0b, 0x27, 0x3d, 0x2a, + 0x89, 0x65, 0x4d, 0x46, 0xdd, 0x0e, 0x73, 0x49, 0x92, 0x71, 0x9a, 0xe5, + 0x8c, 0x44, 0x9e, 0x05, 0x43, 0x29, 0x6e, 0x72, 0x17, 0x6b, 0x14, 0x3b, + 0x8e, 0x3e, 0xb4, 0xae, 0x6f, 0xb1, 0xcd, 0xea, 0x5a, 0x8c, 0x2b, 0x95, + 0xdc, 0x05, 0x41, 0x77, 0x62, 0xd9, 0x4c, 0xb2, 0xa7, 0x50, 0x6a, 0x86, + 0x9b, 0x1c, 0xf8, 0x0f, 0xf7, 0x87, 0x5a, 0x07, 0x7b, 0x12, 0xa1, 0x20, + 0x03, 0x40, 0xf9, 0x87, 0x16, 0xe0, 0x9a, 0x06, 0x9d, 0xc4, 0x24, 0xe6, + 0x81, 0x91, 0x6e, 0x07, 0xad, 0x13, 0xdc, 0x89, 0x95, 0xae, 0x98, 0x04, + 0x24, 0x90, 0x6a, 0x4c, 0x5b, 0x67, 0x2b, 0xa9, 0xca, 0x14, 0xb6, 0x28, + 0x21, 0xec, 0x70, 0xba, 0xed, 0xeb, 0x44, 0xee, 0x54, 0xf0, 0x2a, 0xe2, + 0x8c, 0x59, 0xc5, 0x5e, 0x6b, 0x19, 0x72, 0xa5, 0xab, 0x58, 0x19, 0x4b, + 0x56, 0x52, 0x7b, 0xd5, 0x6e, 0x41, 0xaa, 0x46, 0x6d, 0x92, 0x8b, 0xa5, + 0x2a, 0x32, 0x7b, 0x56, 0xd1, 0x48, 0x8d, 0x8c, 0x9d, 0x53, 0x12, 0x02, + 0x01, 0xab, 0x46, 0x72, 0x39, 0xd9, 0xed, 0xc0, 0x25, 0xbd, 0x2b, 0x64, + 0x8c, 0x67, 0xb1, 0x4a, 0x4d, 0xa4, 0xf5, 0xab, 0x46, 0x68, 0x58, 0xd0, + 0x11, 0x49, 0x85, 0x91, 0x22, 0x81, 0x1b, 0x07, 0xcd, 0x08, 0x69, 0x58, + 0x0c, 0xa0, 0xb7, 0x15, 0x45, 0x89, 0x23, 0xfc, 0xa4, 0x9a, 0x00, 0xa3, + 0x2b, 0x1c, 0xe0, 0x1a, 0x00, 0x88, 0x2e, 0x18, 0x1c, 0x8e, 0xb4, 0x01, + 0x60, 0x36, 0x07, 0x5a, 0x00, 0x89, 0xdb, 0x73, 0x1c, 0x13, 0x41, 0x0b, + 0x56, 0x3d, 0x20, 0xf3, 0x31, 0xc5, 0x63, 0x2d, 0xcd, 0x12, 0x57, 0x3b, + 0x2f, 0x09, 0x69, 0xcc, 0xee, 0x30, 0xbd, 0xeb, 0x92, 0xa3, 0x3a, 0xa9, + 0x25, 0x73, 0xd5, 0xf4, 0xfb, 0x73, 0x1c, 0x08, 0xbd, 0xc0, 0xae, 0x3a, + 0x8c, 0xf4, 0x29, 0x8b, 0x77, 0x1b, 0x6d, 0xe9, 0x58, 0x9b, 0x98, 0xb2, + 0xda, 0x3b, 0xb6, 0x08, 0x3c, 0xd5, 0x83, 0xd8, 0x74, 0x5a, 0x6b, 0x67, + 0x95, 0x38, 0xa0, 0xcd, 0x17, 0xa0, 0xb3, 0xd8, 0x06, 0xe1, 0x45, 0xca, + 0xb1, 0x33, 0x08, 0xc2, 0x60, 0x75, 0xa3, 0x50, 0xe5, 0x16, 0x28, 0xd5, + 0x8e, 0x72, 0x29, 0xdd, 0x91, 0x28, 0xb2, 0xd0, 0x80, 0x63, 0xbd, 0x55, + 0xcc, 0x79, 0x59, 0xfb, 0x22, 0x2f, 0x21, 0x9c, 0x79, 0x66, 0x32, 0xbe, + 0xe7, 0xa5, 0x70, 0x9f, 0x35, 0xcc, 0x49, 0x6b, 0x68, 0xa8, 0xa6, 0x4f, + 0x35, 0x70, 0x73, 0xde, 0xa9, 0x17, 0x19, 0x68, 0x71, 0xde, 0x28, 0x1e, + 0x7b, 0xb2, 0x2e, 0x0f, 0x6e, 0x29, 0x9a, 0xc2, 0x56, 0x3c, 0x73, 0xc7, + 0x16, 0x92, 0x41, 0xfb, 0xc3, 0xc7, 0x04, 0xd5, 0xc6, 0x76, 0x3a, 0xe8, + 0xcc, 0xf2, 0x0d, 0x6a, 0xed, 0x83, 0xb7, 0x27, 0x8a, 0xaf, 0x6b, 0x7d, + 0x0e, 0xe8, 0xca, 0xe7, 0x1b, 0xa9, 0x6a, 0x27, 0xe6, 0x39, 0x3c, 0x53, + 0x53, 0x3a, 0x21, 0x1b, 0x9c, 0xe6, 0xa5, 0xa8, 0x33, 0x5b, 0x17, 0xc9, + 0x1d, 0x78, 0xa7, 0x7b, 0x9a, 0xa8, 0x1c, 0x05, 0xfe, 0xac, 0x0d, 0xc9, + 0x03, 0x3d, 0x69, 0x83, 0x56, 0x3b, 0xdf, 0x87, 0x97, 0x9e, 0x7c, 0xc8, + 0xa3, 0x3c, 0x9a, 0x69, 0x36, 0x67, 0x39, 0x1e, 0xf1, 0xe1, 0xfc, 0x6d, + 0x4f, 0xa0, 0xae, 0x88, 0x19, 0xb9, 0x9d, 0x84, 0x13, 0x04, 0x41, 0xc6, + 0x73, 0xda, 0xad, 0xab, 0x8a, 0xf7, 0x29, 0x6a, 0x33, 0x96, 0xc9, 0xc1, + 0x15, 0x3c, 0xa0, 0x72, 0x3a, 0xdd, 0xc7, 0x07, 0x35, 0x12, 0x86, 0xa6, + 0x90, 0x57, 0x3c, 0xf3, 0xc4, 0x17, 0xcd, 0x12, 0xb6, 0xd5, 0x24, 0xfb, + 0x56, 0x6d, 0x58, 0xde, 0x31, 0xd4, 0xf3, 0xbb, 0xfb, 0xcb, 0x99, 0x66, + 0x27, 0x0c, 0x06, 0x7b, 0x8a, 0x0b, 0x71, 0xb2, 0x37, 0x74, 0x69, 0x26, + 0x31, 0x02, 0x4d, 0x55, 0xcc, 0x8d, 0x06, 0x67, 0xde, 0x30, 0x68, 0x1a, + 0x2c, 0x45, 0x31, 0xfb, 0xa4, 0x13, 0x8e, 0xf5, 0x48, 0x64, 0xa0, 0x17, + 0x3c, 0x0a, 0x60, 0x29, 0x85, 0x8f, 0x34, 0x15, 0x72, 0x09, 0x62, 0x70, + 0xd9, 0xcf, 0x4a, 0x89, 0x13, 0xd0, 0xcd, 0xbf, 0xba, 0x11, 0x21, 0x04, + 0x13, 0xc5, 0x49, 0x2c, 0xe3, 0xf5, 0x5b, 0xd5, 0x66, 0x3d, 0x6a, 0xa3, + 0x1b, 0x98, 0x33, 0x8c, 0xd7, 0xb1, 0x2c, 0x6c, 0x53, 0xaf, 0x35, 0xaf, + 0x26, 0xa6, 0x32, 0x95, 0x8f, 0x32, 0xd5, 0x7c, 0xd8, 0x27, 0x66, 0x2d, + 0xdf, 0xb5, 0x6d, 0x18, 0x18, 0x39, 0xea, 0x51, 0x5b, 0xf2, 0x38, 0xc1, + 0xeb, 0x57, 0xc8, 0x67, 0xce, 0x5c, 0x5b, 0xed, 0x8b, 0x93, 0x9a, 0xd1, + 0x46, 0xc4, 0x39, 0xa2, 0xad, 0xcd, 0xf8, 0x6e, 0xc6, 0xa9, 0x11, 0x29, + 0xe8, 0x66, 0xdc, 0xdc, 0x8d, 0x87, 0x8a, 0xb4, 0xec, 0x66, 0xdd, 0xcc, + 0xb7, 0x7c, 0x8d, 0xd5, 0x4a, 0x62, 0x24, 0x82, 0x42, 0x46, 0x3d, 0x29, + 0x5e, 0xe0, 0x3d, 0x99, 0x98, 0xe3, 0x3e, 0xd4, 0x73, 0x88, 0x4d, 0xa4, + 0x60, 0x93, 0x4d, 0x4a, 0xe2, 0xb8, 0xd6, 0x98, 0x28, 0x23, 0x19, 0xaa, + 0x28, 0xaf, 0x24, 0x81, 0xb3, 0xc5, 0x02, 0x18, 0x1d, 0x73, 0x9c, 0x50, + 0x2b, 0xd8, 0x90, 0xb8, 0x6e, 0x05, 0x17, 0x17, 0x30, 0x91, 0xa7, 0x3c, + 0x9c, 0x8a, 0xca, 0x53, 0xd4, 0xd6, 0x0b, 0xb9, 0x7a, 0xdb, 0x68, 0x60, + 0x31, 0x9a, 0xc6, 0x52, 0x35, 0x8c, 0x75, 0x3d, 0x23, 0xc1, 0x76, 0xb9, + 0x2a, 0x4a, 0xd7, 0x34, 0x9d, 0xce, 0xaa, 0x6a, 0xc7, 0xa6, 0x5a, 0xd8, + 0x33, 0x46, 0x31, 0x8e, 0x95, 0xcd, 0x33, 0xae, 0x0e, 0xc1, 0x35, 0x81, + 0x6f, 0x97, 0x22, 0xb2, 0xb1, 0xd0, 0xa4, 0x55, 0x7d, 0x3c, 0x23, 0x72, + 0x01, 0xe6, 0x9b, 0xd8, 0x1b, 0xb2, 0x25, 0x16, 0x40, 0x0e, 0x05, 0x49, + 0x2a, 0x44, 0x72, 0xda, 0x31, 0x1c, 0x1a, 0x07, 0xcc, 0x50, 0xb8, 0xb2, + 0x94, 0x29, 0x3b, 0xa9, 0x94, 0x9d, 0xc6, 0xc1, 0x04, 0xa0, 0x72, 0xd4, + 0xd1, 0x9c, 0xb7, 0x2e, 0x08, 0xe4, 0xc7, 0xde, 0xab, 0x11, 0xfa, 0xe9, + 0x1d, 0xfc, 0x93, 0x1f, 0x2c, 0x67, 0x23, 0x9a, 0xe2, 0x3e, 0x41, 0x12, + 0x0b, 0xab, 0x95, 0x88, 0x85, 0x26, 0x9a, 0x66, 0xb1, 0xd8, 0xc2, 0x96, + 0x49, 0x1a, 0x52, 0x65, 0x5c, 0xe4, 0xd5, 0x1a, 0xa3, 0x82, 0xf8, 0x8f, + 0x6a, 0x2e, 0x22, 0x57, 0x40, 0x70, 0xab, 0xcf, 0x14, 0xae, 0x74, 0x51, + 0x3c, 0x03, 0xc4, 0xb1, 0x88, 0xcc, 0x8a, 0x28, 0x49, 0xdc, 0xef, 0x83, + 0x38, 0x49, 0xa2, 0x2e, 0xcd, 0xb8, 0xf1, 0x56, 0x91, 0xdd, 0x0d, 0x52, + 0x39, 0x3f, 0x10, 0xdc, 0xac, 0x05, 0xe1, 0x43, 0xd0, 0x55, 0xa4, 0xd1, + 0xbc, 0x53, 0xb1, 0xe6, 0x97, 0xd3, 0xb1, 0xbb, 0x27, 0x9a, 0xd6, 0x29, + 0x6e, 0xc9, 0x9a, 0x3d, 0x2b, 0xe1, 0x6b, 0xb3, 0x5d, 0x47, 0x93, 0xde, + 0xb4, 0x48, 0xc2, 0x7b, 0x1f, 0x48, 0xf8, 0x76, 0xdd, 0x8a, 0x46, 0x47, + 0x42, 0x01, 0xad, 0x62, 0x8e, 0x69, 0x6e, 0x75, 0x91, 0xc3, 0xb1, 0x40, + 0x61, 0x54, 0x09, 0xdd, 0x90, 0xdd, 0x5a, 0xf9, 0x8a, 0x40, 0x14, 0x16, + 0x99, 0xc5, 0x78, 0x92, 0xc2, 0x44, 0xdd, 0xed, 0x4a, 0x46, 0xd1, 0x67, + 0x9d, 0xeb, 0x56, 0xe4, 0x67, 0x72, 0xe4, 0x56, 0x32, 0xec, 0x74, 0xc5, + 0xa3, 0x94, 0xbf, 0x82, 0x06, 0x56, 0x50, 0x30, 0x73, 0x59, 0x95, 0x37, + 0x7d, 0x89, 0xac, 0x88, 0x86, 0x2e, 0xd8, 0xc5, 0x0a, 0x48, 0xc6, 0xc5, + 0xcb, 0x67, 0x59, 0x1b, 0x9a, 0xa4, 0xd3, 0x1a, 0x45, 0xe5, 0x45, 0x5f, + 0xc6, 0xaa, 0xe9, 0x0c, 0x9d, 0x08, 0x03, 0x24, 0x66, 0x9d, 0xd3, 0x02, + 0x39, 0xae, 0x15, 0x45, 0x17, 0x40, 0x53, 0x9e, 0xee, 0x33, 0x93, 0xc5, + 0x4c, 0xb5, 0x07, 0xa1, 0xcd, 0x6b, 0x37, 0xe8, 0xaa, 0x7e, 0x61, 0x49, + 0x22, 0x1b, 0xb2, 0x3c, 0xff, 0x00, 0x56, 0xd5, 0x95, 0x58, 0xfc, 0xc2, + 0xb7, 0x48, 0xe7, 0x93, 0xb9, 0xcf, 0x6a, 0x1a, 0x9a, 0x3c, 0x44, 0x96, + 0x1c, 0x8a, 0xd5, 0x27, 0x73, 0x9e, 0x6c, 0xe0, 0xf5, 0x9b, 0x85, 0x67, + 0x24, 0x1a, 0xd5, 0x2b, 0xe8, 0x62, 0xdd, 0xcc, 0x4f, 0x35, 0x41, 0xc9, + 0xed, 0x5b, 0x24, 0xcc, 0x9b, 0xb1, 0x2b, 0x5d, 0x82, 0x38, 0xa7, 0x63, + 0x16, 0xee, 0x57, 0x96, 0x72, 0x73, 0x45, 0x84, 0x54, 0x9a, 0x42, 0x54, + 0xd1, 0x60, 0x2b, 0x6e, 0xca, 0xe0, 0x8e, 0xd4, 0x58, 0x09, 0xad, 0x31, + 0x9e, 0xd4, 0x58, 0x09, 0xd8, 0x0d, 0xdc, 0x63, 0xde, 0x95, 0x88, 0x06, + 0x1c, 0x73, 0xfa, 0x53, 0x4b, 0x51, 0x15, 0xa4, 0x00, 0x0e, 0xf5, 0x69, + 0x1a, 0xf4, 0x45, 0x67, 0x38, 0xa6, 0x43, 0x23, 0x07, 0xa7, 0xa7, 0x5e, + 0x94, 0x12, 0xc9, 0x55, 0xb8, 0xe2, 0xa0, 0x48, 0x72, 0x16, 0x32, 0x6d, + 0x15, 0x9c, 0xf4, 0x3a, 0x61, 0xae, 0xe7, 0x41, 0xa4, 0x69, 0xed, 0x71, + 0x2a, 0xfc, 0xa6, 0xb9, 0xdb, 0x37, 0x4b, 0xb1, 0xeb, 0xbe, 0x10, 0xd1, + 0xca, 0x22, 0x1c, 0x7a, 0x56, 0x2d, 0xa3, 0xa6, 0x07, 0x7f, 0x69, 0x6f, + 0xb5, 0x70, 0x47, 0x41, 0x58, 0x37, 0x76, 0x74, 0x24, 0xf7, 0x29, 0xdd, + 0x00, 0xaf, 0x81, 0xeb, 0x50, 0xd1, 0xa0, 0xb1, 0x5b, 0x79, 0xb8, 0x38, + 0xa5, 0x66, 0x53, 0x65, 0x89, 0x2d, 0x55, 0x17, 0xa8, 0xe9, 0x53, 0x62, + 0x4c, 0xcb, 0x96, 0x45, 0x24, 0x66, 0x9a, 0x42, 0xbf, 0x63, 0x3d, 0xa4, + 0x56, 0x6d, 0x87, 0xbd, 0x3b, 0x0d, 0x49, 0x8f, 0x44, 0x40, 0x06, 0x08, + 0xaa, 0x49, 0x81, 0x26, 0xef, 0x42, 0xb4, 0xec, 0x07, 0xeb, 0xb5, 0xbd, + 0xb4, 0x44, 0xee, 0x51, 0xcd, 0x79, 0xe9, 0x9f, 0x20, 0x9d, 0x8d, 0x0b, + 0x38, 0xad, 0xf6, 0x95, 0x7a, 0xa2, 0xe3, 0x2d, 0x0a, 0xb7, 0x1a, 0x5d, + 0xa4, 0xa4, 0xec, 0xeb, 0x4f, 0x9a, 0xc6, 0xaa, 0x5a, 0x1c, 0x27, 0x8d, + 0xb4, 0x3f, 0xf4, 0x19, 0xb6, 0xa9, 0x27, 0x14, 0x91, 0xd1, 0x49, 0xd8, + 0xf9, 0x7f, 0xc6, 0x56, 0x17, 0x11, 0x5d, 0x4a, 0x36, 0xe0, 0x03, 0x5a, + 0x23, 0xba, 0x0c, 0xf3, 0xbd, 0x52, 0x46, 0x85, 0x18, 0x0e, 0xa0, 0x55, + 0xa3, 0xbe, 0x9b, 0x56, 0x38, 0x8d, 0x42, 0xd2, 0x5b, 0xc7, 0x79, 0x18, + 0x67, 0x35, 0xa1, 0xd4, 0x9e, 0x87, 0x23, 0x7f, 0xa3, 0x98, 0xe5, 0x2e, + 0x56, 0xad, 0x2d, 0x09, 0x96, 0xa7, 0x6d, 0xf0, 0xd5, 0x96, 0x0b, 0xc4, + 0x07, 0xd6, 0xb5, 0x46, 0x13, 0x47, 0xd3, 0x1e, 0x15, 0xba, 0x8d, 0xe3, + 0x8c, 0x67, 0xb0, 0xad, 0x23, 0xb1, 0xcb, 0x23, 0xb1, 0xda, 0x24, 0xc6, + 0x3b, 0xd3, 0x25, 0x3b, 0x16, 0x53, 0x4f, 0x69, 0x17, 0x76, 0xde, 0x28, + 0x29, 0x3b, 0x9c, 0x8f, 0x8a, 0xe3, 0x8d, 0x37, 0x06, 0xa4, 0xcd, 0xe3, + 0xa3, 0x3c, 0xcf, 0x5d, 0x48, 0x1d, 0x1b, 0x15, 0x8c, 0xb4, 0x66, 0xf1, + 0x91, 0xc0, 0xdf, 0x44, 0x8b, 0x21, 0x2a, 0x6b, 0x26, 0xcb, 0xb9, 0x5d, + 0xd8, 0x85, 0xc0, 0xe3, 0x15, 0x37, 0x0b, 0x16, 0xac, 0x49, 0xc9, 0xe6, + 0x84, 0xc4, 0x69, 0x2c, 0xe0, 0x1c, 0x31, 0xe2, 0xa9, 0x01, 0x3a, 0xdc, + 0x47, 0x8c, 0xee, 0xad, 0x16, 0xc0, 0x67, 0x5f, 0xdd, 0xa2, 0x83, 0x83, + 0x40, 0x5c, 0xe6, 0xb5, 0x4d, 0x6c, 0x40, 0xdb, 0x03, 0x8c, 0x11, 0x4e, + 0x3a, 0x99, 0x4d, 0x9c, 0x7e, 0xb3, 0xae, 0x12, 0xad, 0xf3, 0xf6, 0xad, + 0x2d, 0x73, 0x36, 0xce, 0x07, 0x56, 0xd5, 0x59, 0x99, 0xbe, 0x6c, 0xd5, + 0xa4, 0x64, 0xd9, 0x81, 0x75, 0xa8, 0xbb, 0x02, 0x33, 0x5b, 0x46, 0x27, + 0x3c, 0x9a, 0x39, 0xeb, 0xf9, 0xcb, 0x92, 0x49, 0xad, 0xa3, 0x1d, 0x4c, + 0x5b, 0xb1, 0x96, 0xf3, 0x30, 0xcf, 0x06, 0xb4, 0x32, 0x93, 0xb8, 0xab, + 0x3f, 0x4e, 0x68, 0x33, 0x03, 0x20, 0x3d, 0x4d, 0x00, 0x23, 0x29, 0x60, + 0x40, 0x14, 0x01, 0x1b, 0x40, 0x42, 0xd0, 0x03, 0xad, 0x95, 0x94, 0xe0, + 0x0c, 0xd0, 0x04, 0xce, 0xc4, 0x37, 0x23, 0xaf, 0x5a, 0x09, 0xb5, 0x84, + 0x2f, 0x91, 0x81, 0x4d, 0x02, 0x2b, 0xca, 0xfd, 0x47, 0xad, 0x51, 0x45, + 0x66, 0x39, 0x3c, 0xd0, 0x4b, 0x19, 0xcf, 0x5a, 0x4d, 0xd8, 0x9b, 0x0e, + 0x42, 0x78, 0x19, 0xa8, 0xb9, 0x6b, 0x53, 0x53, 0x4d, 0xb3, 0xfb, 0x43, + 0x07, 0xc7, 0x71, 0x5c, 0xf3, 0x67, 0x4c, 0x16, 0x87, 0xa4, 0xf8, 0x53, + 0x46, 0x0e, 0xc8, 0x59, 0x6b, 0x26, 0xec, 0x6e, 0x95, 0xcf, 0x5c, 0xd0, + 0xb4, 0xe4, 0x86, 0x25, 0xe3, 0x1c, 0x56, 0x12, 0x37, 0x8c, 0x59, 0xa9, + 0x21, 0x10, 0x83, 0xc5, 0x64, 0x74, 0x47, 0x63, 0x31, 0xd0, 0x4d, 0x2e, + 0x7d, 0xe8, 0x28, 0xb6, 0x00, 0xb7, 0x8f, 0x3f, 0xad, 0x2d, 0xc0, 0xce, + 0xbc, 0xbf, 0x20, 0x10, 0x0d, 0x2b, 0x13, 0x73, 0x06, 0xea, 0xf1, 0x99, + 0x8e, 0x0d, 0x16, 0x11, 0x5c, 0x4a, 0xdb, 0xc3, 0x03, 0x54, 0x90, 0x73, + 0x58, 0x98, 0x5c, 0x13, 0xce, 0x6a, 0x92, 0xb0, 0x73, 0x8e, 0xf3, 0x8f, + 0xf7, 0xa9, 0xd9, 0x95, 0x73, 0xf6, 0x4e, 0x3b, 0x19, 0x2d, 0xe4, 0x3b, + 0x41, 0x23, 0x15, 0xe4, 0xa6, 0x7c, 0x77, 0x30, 0xc7, 0xb3, 0x9b, 0x39, + 0x04, 0x8f, 0xc6, 0xab, 0x98, 0xa4, 0xc8, 0x45, 0xb4, 0xd1, 0x9c, 0x8d, + 0xc7, 0xf1, 0xa7, 0xb9, 0xa2, 0x96, 0x85, 0x3d, 0x4f, 0x4b, 0x92, 0xfa, + 0xd9, 0xe2, 0x64, 0xe1, 0xba, 0xd5, 0x23, 0xa2, 0x13, 0x3e, 0x7f, 0xf8, + 0xa3, 0xe0, 0xf6, 0xb4, 0x59, 0x24, 0x48, 0xc9, 0x27, 0x26, 0xb4, 0x47, + 0x55, 0x3a, 0x89, 0x9f, 0x39, 0xeb, 0xb6, 0xf3, 0xc7, 0x33, 0xa4, 0x91, + 0xe0, 0x74, 0xab, 0x47, 0xa3, 0x4e, 0x47, 0x3b, 0x76, 0x12, 0xd6, 0x1d, + 0xe1, 0x46, 0x4f, 0x63, 0x56, 0x8e, 0xd8, 0xbb, 0x23, 0x91, 0xd5, 0x27, + 0x69, 0x89, 0xdb, 0x18, 0xfc, 0xaa, 0xd3, 0xd0, 0x77, 0xb9, 0x7f, 0xc1, + 0x8b, 0x77, 0x1d, 0xda, 0xb2, 0xc6, 0x7e, 0xf5, 0x68, 0x99, 0x94, 0xda, + 0x3e, 0x8f, 0xf0, 0xa4, 0x57, 0x11, 0x47, 0x6e, 0xee, 0x0f, 0xce, 0xa0, + 0x9a, 0xd6, 0xf6, 0x39, 0x64, 0xb5, 0x3d, 0x2b, 0x4e, 0x48, 0x5d, 0x53, + 0x7b, 0x90, 0x69, 0xdc, 0x9b, 0x1a, 0xd7, 0x37, 0xd0, 0x58, 0xdb, 0x12, + 0xa4, 0x1e, 0x0f, 0x5a, 0x2e, 0x52, 0x47, 0x8b, 0xf8, 0xff, 0x00, 0xc5, + 0x92, 0x2c, 0xee, 0x91, 0xa2, 0xe3, 0x35, 0x2e, 0x46, 0x91, 0xd5, 0x9e, + 0x6b, 0x79, 0xac, 0x4d, 0x72, 0xc5, 0x4e, 0x01, 0x3e, 0x95, 0x94, 0xd9, + 0xb2, 0xd0, 0xc8, 0x96, 0xd9, 0x9e, 0x50, 0xcc, 0x4e, 0x0f, 0xbd, 0x60, + 0xd9, 0xa2, 0x77, 0x22, 0x91, 0x11, 0x4e, 0x2a, 0x6e, 0x55, 0xc9, 0xa0, + 0x65, 0x89, 0x72, 0x0f, 0x6f, 0x4a, 0x69, 0x89, 0xb1, 0x93, 0xdd, 0x82, + 0xd8, 0xce, 0x2b, 0x48, 0xea, 0x2b, 0x94, 0xee, 0xb5, 0x76, 0xb7, 0x07, + 0x04, 0x56, 0x8b, 0x60, 0xb9, 0x83, 0xa8, 0xf8, 0x80, 0x95, 0x27, 0x22, + 0xad, 0x44, 0x87, 0x24, 0x71, 0x3a, 0xe7, 0x89, 0xf6, 0xcb, 0x82, 0xc3, + 0xa5, 0x69, 0x04, 0x61, 0x36, 0x73, 0x57, 0x9a, 0xf7, 0x9c, 0x1b, 0x91, + 0x5a, 0x72, 0x99, 0xf3, 0x5c, 0xe6, 0x6f, 0x75, 0x0f, 0x36, 0x42, 0x33, + 0xde, 0xae, 0x11, 0x46, 0x12, 0x95, 0xb6, 0x33, 0x67, 0x9d, 0x40, 0x3f, + 0x35, 0x6a, 0x96, 0xa6, 0x2c, 0xca, 0xba, 0x99, 0x48, 0xe0, 0xe6, 0xb4, + 0x8e, 0xe6, 0x53, 0xb1, 0x9e, 0xf2, 0x65, 0xba, 0x55, 0xd8, 0x8b, 0x80, + 0x3b, 0x57, 0x34, 0x58, 0x42, 0x89, 0x33, 0xc6, 0x3b, 0x51, 0x60, 0x27, + 0x88, 0xf4, 0xcd, 0x16, 0x02, 0x49, 0xe5, 0x0a, 0x31, 0xc5, 0x16, 0x02, + 0x38, 0x64, 0x00, 0xf4, 0xa2, 0xc0, 0x3a, 0x7c, 0x11, 0xbb, 0x34, 0x58, + 0x4c, 0x81, 0xdb, 0x68, 0xcf, 0x4a, 0x2d, 0x61, 0x22, 0xac, 0xb2, 0x13, + 0xfd, 0x29, 0x8d, 0xbb, 0x11, 0x72, 0x49, 0xe6, 0x82, 0x5b, 0x11, 0x98, + 0x0f, 0x4a, 0x97, 0xb8, 0x2d, 0x49, 0xed, 0x62, 0x12, 0x9c, 0x03, 0x59, + 0x36, 0x74, 0x42, 0x27, 0x65, 0xe1, 0xad, 0x29, 0xa5, 0xda, 0xaa, 0x09, + 0xe6, 0xb9, 0xe7, 0x2b, 0x9d, 0x74, 0xe3, 0x74, 0x7b, 0x2f, 0x85, 0x3c, + 0x30, 0x52, 0x35, 0x91, 0x83, 0x0a, 0xc6, 0x4e, 0xc6, 0xf1, 0x5d, 0x0e, + 0xd6, 0x30, 0xb6, 0x88, 0x17, 0x8e, 0x2b, 0x29, 0x33, 0x78, 0xa2, 0xac, + 0xf7, 0x02, 0x52, 0x46, 0x40, 0xa8, 0x28, 0xac, 0x0a, 0x40, 0x4b, 0x83, + 0x93, 0x40, 0x15, 0xae, 0xf5, 0x62, 0xc0, 0xae, 0x00, 0xa0, 0x19, 0x85, + 0x7b, 0x7d, 0x80, 0x70, 0x69, 0xd8, 0x83, 0x37, 0xcf, 0x0e, 0xdc, 0x9a, + 0x2c, 0x0f, 0x42, 0x60, 0xe0, 0x0e, 0xb5, 0x49, 0x10, 0xd8, 0xa6, 0x45, + 0xaa, 0x51, 0x15, 0xc9, 0x39, 0x35, 0x76, 0x45, 0x73, 0x1f, 0xb5, 0x36, + 0xd7, 0xb1, 0x49, 0x29, 0x0f, 0x8e, 0x95, 0xe0, 0xa6, 0x7c, 0x5f, 0x32, + 0x16, 0x6b, 0x98, 0x33, 0x85, 0x02, 0x9d, 0xca, 0x8c, 0xfa, 0x11, 0x89, + 0xed, 0xdb, 0x19, 0xdb, 0x54, 0x9b, 0x34, 0xe6, 0x26, 0x5b, 0x8b, 0x40, + 0x36, 0x9d, 0xbc, 0xd5, 0x45, 0xb6, 0x35, 0x52, 0xc7, 0x9f, 0x7c, 0x42, + 0xd1, 0x2d, 0x75, 0x0b, 0x79, 0x0a, 0x22, 0x9c, 0x83, 0xda, 0xb4, 0xbd, + 0x8e, 0xaa, 0x55, 0x16, 0xe7, 0xca, 0x9f, 0x10, 0x7c, 0x29, 0xf6, 0x69, + 0x64, 0x65, 0x8f, 0x1c, 0x9e, 0xd4, 0xd4, 0x99, 0xe9, 0xd1, 0xa8, 0xd9, + 0xe3, 0xba, 0xbd, 0x84, 0x85, 0x8c, 0x5c, 0xf5, 0xad, 0x93, 0x3b, 0xd5, + 0x41, 0x34, 0xaf, 0x05, 0x9b, 0xd1, 0xb9, 0x97, 0x20, 0x9f, 0x4a, 0xb4, + 0xcd, 0x39, 0x91, 0xe8, 0x1e, 0x10, 0xf0, 0x04, 0x31, 0x4c, 0xac, 0xf1, + 0x8c, 0x83, 0xfd, 0xda, 0xb4, 0xc8, 0x72, 0x4c, 0xf4, 0xcf, 0x2a, 0xde, + 0xc1, 0x23, 0x8c, 0x6d, 0x1b, 0x06, 0x2b, 0x4e, 0x6b, 0x91, 0xbe, 0xe3, + 0x93, 0x5b, 0x0b, 0x22, 0x85, 0x6e, 0xfe, 0xb5, 0x57, 0x1b, 0x88, 0xed, + 0x53, 0x58, 0x66, 0xb5, 0x3b, 0xa4, 0x3d, 0x3d, 0x69, 0x39, 0x58, 0x49, + 0x1e, 0x3f, 0xe2, 0xe9, 0xd6, 0x59, 0x1d, 0xc4, 0x99, 0x35, 0x12, 0x92, + 0x7a, 0x9a, 0x24, 0x79, 0xad, 0xee, 0xb2, 0x2d, 0xee, 0xb6, 0x6e, 0xe8, + 0x6b, 0x26, 0xd9, 0xa1, 0x7a, 0x1d, 0x6a, 0x39, 0x95, 0x41, 0x23, 0xa5, + 0x65, 0x72, 0xd1, 0x56, 0xeb, 0x51, 0x45, 0x6f, 0xbd, 0xdf, 0xd6, 0x84, + 0x53, 0x23, 0x5d, 0x59, 0x42, 0x63, 0x77, 0x4a, 0xa4, 0x88, 0x6d, 0x95, + 0xe4, 0xd4, 0xd4, 0xe4, 0xe6, 0xb5, 0x4b, 0xb1, 0x3c, 0xd6, 0xdc, 0xe7, + 0xb5, 0xcd, 0x67, 0xcb, 0x52, 0x77, 0x7e, 0xb5, 0xba, 0x8a, 0xb6, 0xa4, + 0xca, 0x48, 0xe2, 0xb5, 0x1f, 0x10, 0xb1, 0x04, 0x07, 0x35, 0x69, 0x23, + 0x2e, 0x63, 0x90, 0xd5, 0x2f, 0xa6, 0xb9, 0x9f, 0x70, 0x63, 0x81, 0xef, + 0x5a, 0xc0, 0xc6, 0x72, 0x56, 0x20, 0x4d, 0xc5, 0x0e, 0x58, 0xf3, 0x5a, + 0xfa, 0x98, 0xb9, 0x99, 0x97, 0x59, 0x12, 0x67, 0x7f, 0x4a, 0xa5, 0x1e, + 0xc4, 0x39, 0x23, 0x22, 0xea, 0xed, 0x84, 0x85, 0x41, 0xe9, 0x57, 0x18, + 0xdb, 0x73, 0x29, 0x4a, 0xfa, 0x94, 0x64, 0x95, 0xd8, 0xf7, 0xad, 0x12, + 0x5b, 0x98, 0xb7, 0x72, 0x3c, 0x31, 0x39, 0x3e, 0xb4, 0xc4, 0x99, 0x6d, + 0x63, 0x3b, 0x46, 0x01, 0xe9, 0x41, 0x41, 0xe5, 0x1c, 0x8c, 0xd0, 0x04, + 0xc9, 0x1e, 0x07, 0x5a, 0x00, 0x8a, 0x60, 0x49, 0xe2, 0x80, 0x12, 0x30, + 0xdd, 0xc7, 0x4a, 0x00, 0x1c, 0xe1, 0x72, 0x73, 0xd6, 0x80, 0x2b, 0xbb, + 0xf5, 0xc8, 0xa6, 0x84, 0x41, 0x23, 0x7b, 0xd3, 0xb0, 0x32, 0x31, 0x20, + 0x04, 0xe6, 0x93, 0x21, 0x91, 0x19, 0x37, 0xb0, 0x1e, 0xf5, 0x9c, 0xb4, + 0x2a, 0x29, 0x1d, 0x06, 0x87, 0x64, 0xf7, 0x18, 0x21, 0x4f, 0x35, 0x93, + 0x3b, 0x20, 0x7b, 0x07, 0x80, 0xbc, 0x38, 0x4c, 0x49, 0x23, 0xa7, 0x7e, + 0xf5, 0xc9, 0x36, 0x77, 0x53, 0x8b, 0xb1, 0xec, 0x36, 0x91, 0x41, 0x61, + 0x66, 0x0e, 0xd5, 0x04, 0x0a, 0xc9, 0xb6, 0x6e, 0xa2, 0x60, 0x6a, 0x5a, + 0xa1, 0x69, 0x48, 0x4e, 0x99, 0xac, 0xe4, 0x52, 0x5d, 0xcc, 0xc3, 0x7f, + 0x20, 0x63, 0xcf, 0xeb, 0x50, 0xd8, 0x32, 0xbd, 0xd6, 0xaa, 0xca, 0x87, + 0x9e, 0x69, 0xa1, 0x1c, 0xfd, 0xd6, 0xb1, 0x21, 0x93, 0xf1, 0xf5, 0xab, + 0x49, 0x12, 0x41, 0x71, 0xa8, 0x96, 0x18, 0xcd, 0x55, 0x84, 0xf6, 0x21, + 0x8a, 0xe5, 0x89, 0xcd, 0x16, 0x21, 0xb2, 0xd4, 0x77, 0x27, 0xb9, 0xaa, + 0x48, 0x92, 0x41, 0x3e, 0x7b, 0xd5, 0xa4, 0x43, 0x6e, 0xe4, 0xa2, 0xe4, + 0xe3, 0xef, 0x53, 0xb1, 0x37, 0x67, 0xed, 0x3c, 0xf6, 0xd2, 0x40, 0xd9, + 0x5e, 0xf5, 0xf3, 0x89, 0x9f, 0x1d, 0xcc, 0x35, 0x6d, 0xe6, 0x93, 0xb9, + 0xa6, 0x52, 0x7a, 0x0a, 0xd6, 0xb2, 0xa7, 0xad, 0x51, 0x5c, 0xd6, 0x1a, + 0x96, 0x93, 0xce, 0xd9, 0x5c, 0xe0, 0x71, 0x4d, 0x3b, 0x13, 0x29, 0x10, + 0x6a, 0x3a, 0x3c, 0xb3, 0xc2, 0x55, 0xc6, 0x78, 0xab, 0x52, 0xbb, 0x3a, + 0x69, 0x48, 0xf1, 0x5f, 0x89, 0x3e, 0x14, 0x42, 0x8e, 0xdb, 0x3d, 0x7b, + 0x55, 0x5e, 0xc7, 0xa5, 0x4e, 0x67, 0xcd, 0x1e, 0x28, 0xd1, 0xfe, 0xcb, + 0xa8, 0xb8, 0xdb, 0xc0, 0x3e, 0x98, 0xad, 0x94, 0xcf, 0x46, 0x13, 0x2f, + 0x78, 0x7a, 0x48, 0x61, 0x88, 0x6e, 0x51, 0xc7, 0xad, 0x69, 0x19, 0x5c, + 0xd1, 0xcf, 0x53, 0xab, 0xd2, 0xb5, 0x64, 0x8a, 0x50, 0x17, 0xbf, 0xa5, + 0x5d, 0xc4, 0x9b, 0x2b, 0x6a, 0xda, 0xc3, 0xf9, 0x87, 0xe6, 0xeb, 0x4d, + 0x48, 0xe8, 0x89, 0x99, 0x1e, 0xb0, 0xcb, 0x22, 0xb1, 0x7a, 0xae, 0x71, + 0xb2, 0x1d, 0x6f, 0xc5, 0x42, 0x3b, 0x62, 0x9b, 0xf9, 0xc1, 0xc7, 0x34, + 0x73, 0x5c, 0x11, 0xe7, 0x1a, 0xae, 0xb1, 0x2c, 0xea, 0xf9, 0x63, 0x8c, + 0x1a, 0x89, 0x14, 0xb7, 0x3c, 0xfb, 0x51, 0x9c, 0xc9, 0x7b, 0x92, 0x6b, + 0x22, 0x99, 0x21, 0xbc, 0xf2, 0x0a, 0xe1, 0xbb, 0x50, 0x69, 0xd0, 0xce, + 0xbd, 0xd6, 0x5f, 0x71, 0xc3, 0x1f, 0xce, 0x84, 0x67, 0x72, 0x38, 0x75, + 0x56, 0x60, 0x3e, 0x6a, 0xb4, 0x0d, 0x8e, 0xfb, 0x7b, 0x00, 0x7e, 0x6a, + 0xe9, 0x89, 0x89, 0xcb, 0x78, 0x8b, 0x53, 0xc0, 0x61, 0xba, 0xb5, 0x8e, + 0xc4, 0x49, 0xea, 0x71, 0xd7, 0x57, 0x6d, 0x20, 0x3c, 0xd5, 0x72, 0x92, + 0x66, 0x49, 0x75, 0xe5, 0xe4, 0x66, 0xb6, 0x84, 0x0e, 0x79, 0x91, 0x7f, + 0x69, 0xed, 0x04, 0x67, 0xf5, 0xad, 0x94, 0x6c, 0xcc, 0x8c, 0x9b, 0xab, + 0xe7, 0x79, 0x38, 0x27, 0x9a, 0xb2, 0x64, 0x52, 0x97, 0x96, 0xdc, 0x6a, + 0x91, 0x83, 0x21, 0x24, 0x60, 0xd3, 0x10, 0xaa, 0xc0, 0x8c, 0xd0, 0x49, + 0x64, 0x4c, 0x00, 0xc6, 0x68, 0x2d, 0x00, 0x9c, 0x74, 0xdd, 0xd6, 0x81, + 0x92, 0x89, 0xc6, 0xda, 0x00, 0x89, 0xdc, 0x12, 0x4e, 0x68, 0x01, 0xe8, + 0xc0, 0x03, 0x40, 0x10, 0xcf, 0x27, 0x1c, 0x7a, 0xd0, 0x80, 0xaa, 0xe7, + 0x8c, 0x1a, 0xa0, 0x2b, 0x3b, 0x64, 0xd3, 0x13, 0x19, 0xd4, 0x91, 0x8e, + 0xf5, 0x32, 0x21, 0x92, 0xd9, 0xdb, 0x99, 0x67, 0x51, 0xd7, 0x26, 0xb1, + 0x93, 0xd0, 0xd6, 0x08, 0xf5, 0xaf, 0x01, 0xf8, 0x6c, 0x5c, 0xec, 0x25, + 0x3d, 0x3b, 0x56, 0x67, 0x6c, 0x0f, 0x6a, 0xd1, 0xb4, 0xe8, 0x74, 0xab, + 0x45, 0x42, 0xa3, 0x23, 0x9a, 0xe4, 0xaa, 0x77, 0x53, 0xd8, 0x66, 0xab, + 0xac, 0x28, 0x52, 0x8a, 0xfd, 0xab, 0x9d, 0x9a, 0xa3, 0x09, 0x67, 0x12, + 0x49, 0x93, 0xc9, 0x26, 0xa2, 0x4c, 0xa1, 0x2e, 0x3c, 0xb4, 0xcb, 0x52, + 0x25, 0x98, 0x97, 0x97, 0x0b, 0x92, 0x33, 0x54, 0x84, 0x66, 0x4c, 0x88, + 0xe0, 0xb7, 0xe3, 0x5a, 0x2d, 0xcc, 0x8a, 0x4e, 0xc4, 0x9c, 0x55, 0x01, + 0x3c, 0x08, 0x4f, 0x4e, 0xf4, 0xd1, 0x2c, 0xb4, 0x17, 0x04, 0x67, 0xb5, + 0x5a, 0x21, 0x88, 0x58, 0xf6, 0xe3, 0x1d, 0xa9, 0x99, 0xcb, 0x71, 0xfb, + 0x8f, 0xad, 0x04, 0xdc, 0xfd, 0xb6, 0xbb, 0xd4, 0x55, 0x9f, 0x19, 0xe2, + 0xbe, 0x71, 0xe8, 0x7c, 0x6d, 0x86, 0x26, 0xa3, 0xb7, 0xa1, 0xa2, 0xe8, + 0x69, 0xb4, 0x4a, 0x35, 0x15, 0x6f, 0xbc, 0x72, 0x29, 0xad, 0x47, 0xcc, + 0xc9, 0xad, 0xef, 0x70, 0x48, 0x8c, 0xe3, 0x3d, 0x6a, 0x82, 0xec, 0x74, + 0xf7, 0x6c, 0xca, 0x41, 0x6c, 0xd1, 0xb1, 0x71, 0x9b, 0x47, 0x0b, 0xe2, + 0xfb, 0x5b, 0x7b, 0xa8, 0x8f, 0x99, 0x1e, 0x7a, 0xd3, 0x52, 0x68, 0xea, + 0xa5, 0x51, 0xdc, 0xf9, 0x83, 0xe2, 0x6e, 0x8b, 0x1c, 0x3a, 0x84, 0xb2, + 0xc3, 0x18, 0x55, 0xaa, 0x52, 0xd4, 0xf6, 0x28, 0xcd, 0xb3, 0x85, 0xb0, + 0xca, 0x36, 0xc3, 0xeb, 0x5b, 0x46, 0x4e, 0xe7, 0x72, 0xd4, 0xdd, 0x43, + 0x15, 0xbc, 0x5e, 0x68, 0xc0, 0x38, 0xeb, 0x56, 0x9b, 0x41, 0x66, 0x73, + 0x7a, 0xae, 0xa7, 0x34, 0x72, 0x92, 0xf2, 0x7c, 0xa6, 0xab, 0x9c, 0xe9, + 0x8a, 0x33, 0xbf, 0xb6, 0xe2, 0x62, 0x00, 0x3c, 0xd0, 0xa4, 0xd8, 0xda, + 0x66, 0x3f, 0x88, 0xaf, 0x5d, 0xe2, 0xde, 0x8d, 0xd3, 0x9a, 0x77, 0xee, + 0x49, 0xc4, 0x5d, 0xea, 0x97, 0x21, 0x0f, 0xef, 0x69, 0x87, 0x35, 0x8e, + 0x7e, 0x6b, 0xcd, 0xd2, 0x97, 0x73, 0xf3, 0x53, 0xb2, 0x63, 0xe6, 0x65, + 0x1b, 0xbd, 0x40, 0xb3, 0x61, 0x5f, 0x9f, 0xad, 0x3e, 0x54, 0x57, 0x33, + 0x33, 0x67, 0xbb, 0xf9, 0xb2, 0xed, 0x9a, 0xa5, 0x02, 0x86, 0xc5, 0xa8, + 0x2a, 0x9e, 0x1b, 0xf5, 0xad, 0x23, 0x02, 0x24, 0xc7, 0x5c, 0x5f, 0xb7, + 0x97, 0x94, 0x6a, 0xd9, 0x45, 0x19, 0x36, 0x72, 0xda, 0xc5, 0xd4, 0x92, + 0x93, 0xb9, 0xb3, 0x5a, 0xc2, 0x06, 0x72, 0x77, 0x47, 0x39, 0x73, 0x3b, + 0x27, 0x47, 0xad, 0x39, 0x0c, 0xf9, 0xcc, 0xab, 0xb9, 0xa4, 0x7c, 0x95, + 0x6a, 0xd6, 0x3a, 0x1c, 0xf3, 0x91, 0x5d, 0x0b, 0x90, 0x4b, 0x1e, 0x6a, + 0xd1, 0x91, 0x46, 0x59, 0x19, 0x65, 0xc6, 0x4f, 0x5a, 0x60, 0x2f, 0x9a, + 0xad, 0xf2, 0x97, 0x19, 0xaa, 0x40, 0x00, 0x0e, 0xc4, 0x1a, 0x64, 0xb8, + 0xdc, 0x66, 0xe1, 0xdc, 0x74, 0xa0, 0x39, 0x47, 0xaf, 0xcd, 0xd5, 0x78, + 0xa0, 0xa0, 0x6c, 0x03, 0x80, 0xbd, 0x7d, 0xa8, 0x17, 0x32, 0x1c, 0xac, + 0x76, 0xe7, 0x34, 0x09, 0xbb, 0x8a, 0xa4, 0x93, 0xce, 0x29, 0xd8, 0x43, + 0xd9, 0xf0, 0x29, 0x58, 0x0a, 0xb3, 0x4a, 0x01, 0xce, 0x4d, 0x3b, 0x01, + 0x12, 0xce, 0x1c, 0xe0, 0xd2, 0x13, 0x44, 0x13, 0xfc, 0xbc, 0xd0, 0x21, + 0x23, 0x65, 0xc8, 0x18, 0xeb, 0x53, 0x29, 0x5b, 0x41, 0xc5, 0x5d, 0x9d, + 0x3f, 0x87, 0x34, 0x93, 0x75, 0x70, 0x84, 0xc6, 0x48, 0xcf, 0xa5, 0x73, + 0x4a, 0x67, 0x65, 0x38, 0x2e, 0xa7, 0xbe, 0xf8, 0x2b, 0x4b, 0x8e, 0xce, + 0xdd, 0x1c, 0x47, 0x83, 0x58, 0x39, 0x1d, 0xd4, 0xa9, 0xa4, 0x74, 0x9a, + 0x85, 0xd3, 0x74, 0x0f, 0xda, 0xb0, 0x9c, 0xae, 0x6c, 0xd7, 0x26, 0xc6, + 0x43, 0x40, 0x27, 0x7f, 0xde, 0x02, 0x6b, 0x26, 0x25, 0x2b, 0x8c, 0x92, + 0xd6, 0x18, 0x32, 0x55, 0x71, 0x50, 0xcd, 0x13, 0xb1, 0x9d, 0x79, 0x27, + 0x18, 0x04, 0xd4, 0x8e, 0xf7, 0x39, 0xfb, 0xe6, 0x00, 0xe7, 0x38, 0x35, + 0x48, 0x9b, 0x22, 0x94, 0x73, 0xb9, 0xc8, 0x0f, 0x5a, 0x47, 0x4d, 0xc3, + 0x94, 0x68, 0x52, 0x32, 0x4f, 0x35, 0xa2, 0x69, 0x8b, 0x96, 0xda, 0x96, + 0x13, 0x70, 0xe5, 0x78, 0xaa, 0x4c, 0xc5, 0x92, 0x99, 0x8e, 0xdd, 0xbb, + 0x80, 0x27, 0xb9, 0xaa, 0x4b, 0x53, 0x9e, 0x72, 0xb1, 0x56, 0x59, 0x9d, + 0x0e, 0x41, 0xdd, 0xf4, 0xae, 0x88, 0x42, 0xfa, 0x9c, 0xd2, 0xa8, 0x86, + 0x0b, 0x9b, 0x83, 0xff, 0x00, 0x2c, 0xdf, 0xf2, 0xad, 0xfd, 0x91, 0xcc, + 0xea, 0x9f, 0xb6, 0x37, 0x4c, 0x19, 0xc8, 0x43, 0xcd, 0x7c, 0x7c, 0xb5, + 0x3e, 0x7c, 0x88, 0x24, 0x84, 0xe0, 0x66, 0xa4, 0x09, 0x84, 0x53, 0x60, + 0x62, 0xaa, 0x3a, 0x01, 0x72, 0xcc, 0x34, 0x79, 0xde, 0x4e, 0x4f, 0x4a, + 0xb6, 0xec, 0x34, 0xae, 0x4a, 0xf2, 0x8f, 0x43, 0x4a, 0xe1, 0x6b, 0x18, + 0x3a, 0xec, 0x3e, 0x6c, 0x47, 0xf1, 0xa1, 0x3b, 0x9b, 0x41, 0xea, 0x7c, + 0xfd, 0xf1, 0x56, 0xcc, 0xa2, 0xc8, 0xc1, 0x7b, 0xfa, 0x56, 0x91, 0xb7, + 0x53, 0xd6, 0xa3, 0x33, 0xc3, 0xa2, 0xb9, 0x91, 0x6e, 0x0a, 0x91, 0xde, + 0xb7, 0x8a, 0xd4, 0xf5, 0x69, 0xbb, 0x9a, 0x17, 0xfa, 0x87, 0x97, 0x6b, + 0xd7, 0x9c, 0x56, 0xa9, 0x5c, 0xdd, 0x24, 0xce, 0x2b, 0x5c, 0xd6, 0x56, + 0x50, 0x11, 0x5c, 0x64, 0x55, 0x72, 0x9a, 0x44, 0xc3, 0x82, 0x77, 0xf3, + 0x43, 0x16, 0xe3, 0x34, 0x72, 0x94, 0xc8, 0x35, 0xed, 0x58, 0x24, 0x3b, + 0x4b, 0xf5, 0xe2, 0x9a, 0x44, 0x49, 0xd8, 0xe4, 0x27, 0xb9, 0x2c, 0xa7, + 0xe6, 0xab, 0x51, 0x33, 0x6c, 0xc3, 0xbb, 0x9c, 0xa1, 0x27, 0x35, 0x4a, + 0x02, 0xb9, 0x81, 0x71, 0xa8, 0x94, 0xb9, 0xce, 0x78, 0x15, 0x4a, 0x03, + 0xe6, 0x33, 0xae, 0xf5, 0x72, 0xef, 0x80, 0xd5, 0xa7, 0x2a, 0x1f, 0x38, + 0x5a, 0xdd, 0x3b, 0x8c, 0xe7, 0xad, 0x52, 0x44, 0x4a, 0x45, 0x86, 0xbc, + 0x2a, 0xa7, 0x73, 0x74, 0xad, 0x23, 0x1e, 0xe6, 0x52, 0x9d, 0xcc, 0x4d, + 0x4a, 0xf1, 0x79, 0x25, 0xab, 0x68, 0xc6, 0xfa, 0xa3, 0x27, 0x2e, 0x87, + 0x39, 0x7b, 0x74, 0x0e, 0x70, 0x6a, 0xec, 0x67, 0xcc, 0x66, 0xfd, 0xa1, + 0xcb, 0x6d, 0x02, 0xaa, 0xc4, 0xcc, 0xb7, 0x04, 0x52, 0x38, 0xc6, 0x3a, + 0xd3, 0x5b, 0x90, 0x12, 0x69, 0x0e, 0xc4, 0xb0, 0x1e, 0xf4, 0xc0, 0x84, + 0x78, 0x6a, 0xe2, 0x46, 0x32, 0x06, 0x18, 0x3e, 0xf5, 0x48, 0x09, 0xce, + 0x8c, 0xd0, 0x2e, 0x5c, 0x8e, 0x9e, 0xb4, 0xc0, 0xa1, 0x74, 0xb1, 0xc4, + 0xd8, 0xa0, 0x06, 0xc6, 0xc3, 0x1d, 0x28, 0x25, 0xbb, 0x88, 0xed, 0xc8, + 0xf9, 0x69, 0xd8, 0x42, 0xa3, 0x0c, 0x7e, 0x14, 0xd0, 0x0e, 0x67, 0x51, + 0x4c, 0x08, 0x9e, 0x4c, 0x8e, 0x3b, 0xd2, 0xb8, 0x11, 0xec, 0x12, 0x70, + 0x4d, 0x0c, 0x08, 0xd6, 0x1d, 0xaf, 0x93, 0x9c, 0x54, 0x8a, 0xe1, 0x70, + 0x11, 0xb8, 0x1e, 0x94, 0x9b, 0xb1, 0x49, 0x5c, 0x93, 0x4b, 0xd3, 0x65, + 0xbc, 0xb8, 0x50, 0x8a, 0x4e, 0x0f, 0xa5, 0x65, 0x3d, 0x4d, 0x61, 0x4f, + 0x5b, 0x9e, 0xd1, 0xe0, 0x9f, 0x0b, 0x84, 0x8d, 0x24, 0x91, 0x39, 0xf7, + 0xae, 0x69, 0xb4, 0x8e, 0xe8, 0x44, 0xf4, 0xfb, 0x68, 0xa3, 0xb5, 0x80, + 0x2a, 0x8c, 0x62, 0xb9, 0xa7, 0x23, 0xa6, 0x2a, 0xc5, 0x77, 0x76, 0x95, + 0xb2, 0x2a, 0x19, 0xae, 0xe8, 0x9e, 0x18, 0x70, 0x32, 0x45, 0x43, 0x44, + 0xd9, 0x14, 0x6f, 0xd8, 0x8e, 0xf5, 0x2d, 0x11, 0x37, 0x63, 0x06, 0xe8, + 0x93, 0x9e, 0xb5, 0x36, 0x1c, 0x5e, 0x86, 0x3d, 0xea, 0x31, 0x5c, 0xe3, + 0xb5, 0x52, 0x57, 0x2d, 0x2b, 0x99, 0xd1, 0x29, 0x2f, 0xde, 0xb4, 0xb1, + 0x76, 0x35, 0x22, 0xb7, 0x05, 0x72, 0xfd, 0x28, 0x8e, 0xe4, 0xcb, 0x42, + 0xb5, 0xcd, 0xd2, 0x44, 0x7c, 0xb4, 0x19, 0x3f, 0x4c, 0xd6, 0xf1, 0x8b, + 0x67, 0x1d, 0x49, 0xa8, 0x8e, 0xb3, 0xd1, 0xb5, 0x1d, 0x56, 0x65, 0x48, + 0x23, 0x62, 0x5f, 0xd8, 0xd7, 0x65, 0x3a, 0x27, 0x9b, 0x56, 0xb1, 0xe9, + 0x5e, 0x10, 0xf8, 0x33, 0xa8, 0x6a, 0x4c, 0x0d, 0xcc, 0x1f, 0x5c, 0x8a, + 0xee, 0xa7, 0x40, 0xf3, 0xea, 0x57, 0xb1, 0xe8, 0xe9, 0xfb, 0x3f, 0x5b, + 0x6d, 0x19, 0x81, 0x73, 0x8f, 0x5a, 0xe9, 0x54, 0x19, 0xcf, 0xed, 0x91, + 0xfa, 0x30, 0xd6, 0x8f, 0x1c, 0xc5, 0xd8, 0x64, 0x57, 0xe7, 0xf2, 0x38, + 0xcb, 0x50, 0x44, 0x18, 0xf4, 0xac, 0xf7, 0x03, 0x4e, 0xde, 0xcd, 0x5f, + 0x1f, 0x2f, 0x5a, 0x69, 0x68, 0x05, 0x87, 0xd3, 0x43, 0x60, 0x80, 0x28, + 0x91, 0x71, 0x2b, 0x3e, 0x96, 0x4b, 0x0c, 0x01, 0xf9, 0xd4, 0xb6, 0x29, + 0x68, 0x55, 0xd4, 0x74, 0x4d, 0xf0, 0xf3, 0xc9, 0xfa, 0xd1, 0x17, 0x66, + 0x38, 0xb3, 0xca, 0x7e, 0x24, 0x78, 0x28, 0x5c, 0xe9, 0xed, 0x2f, 0x97, + 0x9c, 0xe7, 0xa5, 0x6d, 0x13, 0xba, 0x8c, 0xec, 0xcf, 0x9a, 0x35, 0xef, + 0x0d, 0x36, 0x9f, 0x70, 0xec, 0x10, 0x8c, 0x13, 0xda, 0xba, 0x60, 0xd1, + 0xec, 0x50, 0x9d, 0xce, 0x1b, 0xc4, 0xb7, 0x6f, 0x6f, 0x0b, 0x20, 0x6a, + 0xda, 0x27, 0xa5, 0x03, 0xcd, 0x6e, 0x35, 0x37, 0x37, 0x2c, 0x58, 0xf0, + 0x1a, 0xa9, 0x2b, 0x9b, 0x11, 0xdc, 0x6b, 0x86, 0x2c, 0x00, 0x71, 0x5a, + 0x28, 0xd9, 0x92, 0xf6, 0x30, 0xf5, 0x8d, 0x51, 0xae, 0x42, 0xb6, 0xfe, + 0xfe, 0xb5, 0x69, 0x18, 0xb7, 0x73, 0x39, 0x6e, 0xcb, 0x47, 0x9e, 0x79, + 0xab, 0x4a, 0xe6, 0x53, 0x76, 0x66, 0x5d, 0xf4, 0xdc, 0x13, 0x9a, 0xb5, + 0x1e, 0x86, 0x5c, 0xcc, 0xe5, 0x6e, 0x66, 0x2d, 0x75, 0x80, 0x7f, 0x5a, + 0xbe, 0x50, 0xe6, 0x2a, 0x49, 0x19, 0x69, 0x45, 0x3b, 0x0e, 0xe6, 0x94, + 0x08, 0x23, 0x8b, 0x3c, 0x0a, 0xb8, 0xc4, 0x96, 0xca, 0x37, 0x97, 0x78, + 0xdc, 0x03, 0x74, 0xad, 0x14, 0x49, 0xd8, 0xe5, 0x75, 0x3d, 0x41, 0x83, + 0x9c, 0x35, 0x5a, 0x5a, 0x10, 0xf5, 0x66, 0x67, 0x9e, 0xd2, 0x9e, 0x4d, + 0x57, 0x29, 0x2d, 0x1a, 0x5a, 0x55, 0x90, 0x9b, 0xe7, 0x61, 0xde, 0x94, + 0x9d, 0xb4, 0x21, 0xbb, 0x9b, 0x2c, 0x91, 0x5b, 0x01, 0x9c, 0x0a, 0x10, + 0x8a, 0xb7, 0x9a, 0xac, 0x51, 0x47, 0xc6, 0x3a, 0x7a, 0x53, 0x02, 0x9c, + 0x7a, 0xb4, 0xee, 0xa1, 0x93, 0x1b, 0x4f, 0x4e, 0x2a, 0x90, 0x11, 0xcf, + 0x7f, 0x71, 0x20, 0x20, 0xe2, 0x98, 0x19, 0x93, 0xa3, 0x4a, 0xc4, 0x9a, + 0x04, 0x45, 0x1b, 0x10, 0x71, 0x9a, 0xab, 0x12, 0x12, 0x48, 0x72, 0x72, + 0x7a, 0x53, 0x00, 0x59, 0x4e, 0xd3, 0x93, 0x49, 0xbb, 0x00, 0xc3, 0x31, + 0x3d, 0xe9, 0x5c, 0x07, 0xc7, 0x96, 0xeb, 0x9f, 0xca, 0x90, 0xed, 0x72, + 0x5d, 0xa5, 0x54, 0x11, 0x4e, 0xe2, 0x92, 0xb0, 0xab, 0x6e, 0x5f, 0x91, + 0x49, 0xbb, 0x12, 0x93, 0x1d, 0x6f, 0xa6, 0xbd, 0xc4, 0xe1, 0x00, 0xce, + 0x4d, 0x65, 0x29, 0x5c, 0xe8, 0x84, 0x4f, 0x50, 0xf0, 0x0f, 0x83, 0x95, + 0xb2, 0xf2, 0x44, 0x7f, 0x2a, 0xc2, 0x52, 0x3b, 0x21, 0x4c, 0xf5, 0x9b, + 0x4d, 0x3a, 0x3d, 0x3e, 0xdc, 0x60, 0x01, 0x81, 0x5c, 0xf2, 0x67, 0x4c, + 0x63, 0x62, 0x3f, 0xb5, 0x33, 0xb1, 0x4c, 0xd6, 0x0f, 0x53, 0x4b, 0x96, + 0xad, 0x21, 0x56, 0x19, 0xc5, 0x03, 0x4f, 0x4b, 0x13, 0x4c, 0x44, 0x48, + 0x4f, 0x02, 0x93, 0x03, 0x0e, 0xf6, 0x4d, 0xcc, 0x46, 0x6a, 0x6c, 0x26, + 0x8c, 0xc9, 0x23, 0xdc, 0x69, 0x72, 0x89, 0xab, 0x2b, 0x94, 0xee, 0xe1, + 0x5d, 0x84, 0x91, 0xda, 0xae, 0x31, 0x77, 0x13, 0x95, 0x91, 0x96, 0x91, + 0x05, 0x93, 0x26, 0xb4, 0x50, 0x6c, 0x25, 0x55, 0x23, 0x4a, 0x18, 0x9e, + 0xec, 0x88, 0xa3, 0x56, 0x39, 0xe3, 0x81, 0x5d, 0x14, 0xe8, 0xb7, 0xa9, + 0xcb, 0x2a, 0xe7, 0x63, 0xe1, 0x7f, 0x85, 0x17, 0x1a, 0xcc, 0xc9, 0x24, + 0x91, 0x36, 0x0f, 0xd4, 0x57, 0x65, 0x3a, 0x27, 0x9d, 0x5b, 0x10, 0x7b, + 0x77, 0x83, 0xfe, 0x11, 0xda, 0xe9, 0xb2, 0x45, 0x24, 0xb0, 0xe4, 0x8c, + 0x76, 0xcd, 0x7a, 0x14, 0xe8, 0xd8, 0xf2, 0xea, 0xd7, 0xb9, 0xe9, 0xb6, + 0x1a, 0x4d, 0xb6, 0x9b, 0xc2, 0x44, 0xa0, 0xfd, 0x2b, 0xba, 0x9d, 0x23, + 0x82, 0xa5, 0x5b, 0xe8, 0x6a, 0x79, 0xbf, 0xec, 0xaf, 0xe5, 0x5b, 0x72, + 0xa3, 0x1f, 0x68, 0xcf, 0xac, 0xa2, 0x95, 0x5e, 0x10, 0x19, 0x01, 0x3e, + 0xb8, 0xaf, 0xcb, 0x1b, 0x37, 0xb3, 0x17, 0xc9, 0x07, 0xe6, 0x03, 0x15, + 0x9d, 0xec, 0x2d, 0x47, 0x25, 0xea, 0xc2, 0x71, 0x8a, 0xa4, 0xf4, 0x1e, + 0xa3, 0x6e, 0x75, 0x53, 0x81, 0xb7, 0x20, 0x7b, 0x51, 0x23, 0x48, 0x10, + 0xc3, 0x7e, 0xf2, 0x1c, 0x64, 0xd6, 0x6c, 0x4d, 0x75, 0x24, 0x64, 0x92, + 0x53, 0x82, 0xed, 0xcf, 0xbd, 0x0a, 0xe2, 0xb1, 0x9d, 0xaa, 0xe9, 0x22, + 0x58, 0x58, 0xbe, 0x18, 0x10, 0x78, 0x35, 0xa2, 0x6c, 0xd6, 0x9c, 0xac, + 0xec, 0x78, 0x4f, 0xc4, 0x9f, 0x07, 0x8b, 0xa1, 0x21, 0x86, 0x24, 0x5e, + 0xbd, 0x0e, 0x2b, 0x68, 0x48, 0xf5, 0x70, 0xf5, 0x6c, 0xcf, 0x9a, 0x3c, + 0x6b, 0xe1, 0xcb, 0x8d, 0x3a, 0x57, 0x2e, 0x43, 0x0e, 0x78, 0xdd, 0x9a, + 0xda, 0x12, 0x3d, 0x6a, 0x55, 0x6e, 0x79, 0x0e, 0xaf, 0x00, 0x13, 0x37, + 0x63, 0x9e, 0xd5, 0xd3, 0x07, 0xa9, 0xd6, 0xa5, 0x74, 0x64, 0xdd, 0x4f, + 0x14, 0x30, 0x1d, 0xdc, 0x9c, 0x75, 0x22, 0xb6, 0x4d, 0x22, 0x5c, 0xb4, + 0x39, 0x6b, 0xa9, 0x85, 0xc4, 0xc4, 0x09, 0x1b, 0x1d, 0xab, 0x54, 0xc8, + 0x66, 0xd5, 0x95, 0xb4, 0x69, 0xa7, 0x65, 0xb9, 0x38, 0x3c, 0xe2, 0xb4, + 0x5b, 0x98, 0xc9, 0xdc, 0xe7, 0x35, 0x5d, 0xa2, 0x16, 0x21, 0x8f, 0x53, + 0x5b, 0x24, 0x64, 0x71, 0xa8, 0xb9, 0x95, 0x9c, 0x3b, 0x13, 0x93, 0x40, + 0xc9, 0x04, 0x7b, 0x0f, 0x98, 0x5c, 0x93, 0xe9, 0x4c, 0xa1, 0x2e, 0xae, + 0xe6, 0xf2, 0x8a, 0xaf, 0x03, 0x1e, 0xb4, 0xd3, 0x25, 0xab, 0x1c, 0xfd, + 0xd5, 0xc5, 0xd1, 0x76, 0x54, 0xc1, 0x27, 0xd4, 0xd5, 0x21, 0x58, 0xaf, + 0x6f, 0xa5, 0x5d, 0xdd, 0x3e, 0x5c, 0x2f, 0x3f, 0xed, 0x55, 0xa6, 0xba, + 0x90, 0xd1, 0x7f, 0xfe, 0x11, 0xd7, 0x83, 0xf7, 0x8f, 0x8c, 0x0f, 0x7a, + 0xae, 0x64, 0x2b, 0x12, 0x1b, 0xa4, 0xb6, 0x5f, 0x25, 0x14, 0x02, 0x3b, + 0x81, 0x52, 0xf5, 0xd4, 0xc9, 0xab, 0x19, 0x77, 0x73, 0x19, 0x49, 0x26, + 0x46, 0xa1, 0x08, 0xa4, 0x64, 0x0b, 0xc1, 0x25, 0xbe, 0xb4, 0xc0, 0x91, + 0x01, 0x6c, 0x32, 0x9c, 0x0f, 0x4a, 0xa5, 0xb0, 0x0f, 0x00, 0xf7, 0xc9, + 0xa6, 0x03, 0x8a, 0x0f, 0xee, 0x8a, 0x04, 0x40, 0x61, 0x5e, 0x45, 0x3b, + 0x92, 0x47, 0x24, 0x23, 0x1c, 0x75, 0xa7, 0x70, 0x4a, 0xe5, 0x57, 0x80, + 0xb1, 0x20, 0x1e, 0xb5, 0x2d, 0xf7, 0x2b, 0x96, 0xe3, 0xad, 0xad, 0x5d, + 0x64, 0x19, 0x39, 0xfa, 0xd4, 0xb9, 0x58, 0xb5, 0x1d, 0x0d, 0x66, 0x8c, + 0xac, 0x43, 0x08, 0xb4, 0xb9, 0xc3, 0x94, 0xcf, 0xb9, 0x59, 0x18, 0x63, + 0x81, 0xcf, 0x6a, 0x8e, 0x60, 0x71, 0xb9, 0x2d, 0xb0, 0x67, 0x01, 0x41, + 0xeb, 0x50, 0xe4, 0x38, 0xc1, 0x26, 0x76, 0x9e, 0x14, 0xd0, 0xcc, 0xf3, + 0xa3, 0xc8, 0x01, 0x19, 0xa8, 0x72, 0x3a, 0xa9, 0xc1, 0x1e, 0xcf, 0xa0, + 0xc1, 0x16, 0x99, 0x6b, 0x8d, 0x8b, 0x96, 0x1d, 0x85, 0x73, 0xc9, 0xdc, + 0xeb, 0x8a, 0x2c, 0xcb, 0x3b, 0x4a, 0xd8, 0xde, 0x71, 0xe9, 0x50, 0xfb, + 0x14, 0x3a, 0x28, 0x00, 0xe4, 0x8a, 0x8b, 0x01, 0x68, 0x32, 0xa4, 0x64, + 0x12, 0x47, 0xd2, 0x8b, 0x12, 0xb4, 0x33, 0x6f, 0xae, 0x76, 0x82, 0x11, + 0x89, 0xe2, 0x87, 0x12, 0xd4, 0xae, 0x66, 0x19, 0x04, 0xc7, 0xe7, 0x26, + 0x85, 0x0b, 0x95, 0xcc, 0x91, 0x04, 0xd7, 0x71, 0xc6, 0x36, 0x27, 0x51, + 0xea, 0x2b, 0x55, 0x4e, 0xc4, 0x4e, 0xa5, 0x91, 0x04, 0x4b, 0x35, 0xfb, + 0xf9, 0x6a, 0x06, 0x09, 0xf5, 0xad, 0x63, 0x48, 0xe2, 0xa9, 0x5e, 0xdb, + 0x1d, 0x4e, 0x87, 0xf0, 0xca, 0x7d, 0x51, 0xe3, 0x67, 0x93, 0x01, 0x88, + 0xcf, 0xcc, 0x2b, 0x5a, 0x74, 0x9d, 0xce, 0x2a, 0x98, 0x8d, 0x0f, 0x68, + 0xf0, 0xc7, 0xc1, 0xfd, 0x37, 0x4b, 0xd8, 0xf2, 0xe1, 0xc8, 0x00, 0x9d, + 0xc0, 0x1a, 0xf4, 0x69, 0x50, 0xb2, 0x38, 0x65, 0x89, 0x67, 0xa0, 0x59, + 0xe8, 0x76, 0xb6, 0x41, 0x63, 0x82, 0x08, 0xd3, 0x18, 0xe8, 0x31, 0x5d, + 0x90, 0xa4, 0x91, 0xc7, 0x52, 0xb1, 0xbd, 0x67, 0x6c, 0xca, 0x37, 0x13, + 0xd3, 0xb5, 0x75, 0xc2, 0x07, 0x0d, 0x49, 0xdc, 0xb8, 0x54, 0x13, 0xc5, + 0x6e, 0x95, 0x8e, 0x76, 0xee, 0x48, 0x20, 0x07, 0x9d, 0xa2, 0xaa, 0xe3, + 0xe6, 0x67, 0xff, 0xd9 +}; +unsigned int errig_jpg_len = 19744; diff --git a/framework/opengl_renderer/src/mm/services/opengl_renderer.cpp b/framework/opengl_renderer/src/mm/services/opengl_renderer.cpp new file mode 100644 index 0000000..4e15094 --- /dev/null +++ b/framework/opengl_renderer/src/mm/services/opengl_renderer.cpp @@ -0,0 +1,175 @@ +#include "./opengl_renderer.hpp" + +#include +#include +#include + +#include +#include +#include +#include +#include "../opengl/res/default_texture.h" // data +#include "../opengl/res/errig_texture.h" // data + +#include +#ifndef MM_OPENGL_3_GLES + #include +#else + #define TracyGpuContext + #define TracyGpuCollect +#endif + + +//#define LOGRS_SDL(x) LOGRS(std::string(SDL_GetError()) + x) +#include +#define LOG_CRIT(...) __LOG_CRIT( "OpenGLRenderer", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("OpenGLRenderer", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "OpenGLRenderer", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "OpenGLRenderer", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("OpenGLRenderer", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("OpenGLRenderer", __VA_ARGS__) + + +namespace MM::Services { + +OpenGLRenderer::OpenGLRenderer(void) { + MM::Logger::initSectionLogger("OpenGL"); + MM::Logger::initSectionLogger("OpenGLRenderer"); +} + +OpenGLRenderer::~OpenGLRenderer(void) { +} + +bool OpenGLRenderer::enable(Engine& engine) { + if (!engine.tryService()) { + LOG_ERROR("OpenGLRenderer requires SDLService"); + return false; + } + + auto& sdl_s = engine.getService(); + + if (!sdl_s.win) { + if (!sdl_s.createGLWindow("MushMachine (OpenGLRenderer)", 800, 600)) { + LOG_ERROR("couldn't create window with gl context"); + return false; + } + } else if (!sdl_s.gl_context) { + if (!sdl_s.createGLContext()) { + LOG_ERROR("couldn't create gl context"); + return false; + } + } + + // "creating" display fbo + { + targets["display"].reset(new OpenGL::FrameBufferObject); + targets["display"]->_fboID = 0; + targets["display"]->_resize = false; // its done for us + } + + _render_handle = engine.addUpdate([this](Engine& e){ this->render(e); }); + if (_render_handle.expired()) { + LOG_ERROR("couldn't add update function!"); + return false; + } + + { + auto tmp_lock = _render_handle.lock(); + tmp_lock->priority = -10; + tmp_lock->name = "render"; + } + + _sdl_event_handle = sdl_s.addEventHandler([this, &engine](const SDL_Event& e) -> bool { + if (e.type == SDL_WINDOWEVENT) { + if (e.window.event == SDL_WINDOWEVENT_RESIZED || e.window.event == SDL_WINDOWEVENT_SIZE_CHANGED) { + auto& sdl_s = engine.getService(); + auto new_window_size = sdl_s.getWindowSize(); + glViewport(0, 0, new_window_size.first, new_window_size.second); + + // TODO: recreate fbos, dirvers seem to have problems otherwise + //std::vector>> new_fbos; + + for (auto& map_entry : targets) { + if (map_entry.second->_resize) { + auto& fbo = map_entry.second; + float new_width = fbo->_resize_factor_width * new_window_size.first; + float new_height = fbo->_resize_factor_height * new_window_size.second; + + for (auto& tex : fbo->_texAttachments) { + if (tex->height == new_height && tex->width == new_width) { + continue; + } + + tex->resize(static_cast(new_width), static_cast(new_height)); + } + + //auto new_fbo = std::make_shared(); + //auto new_fbo = OpenGL::FBOBuilder::start(). + //new_fbos.emplace_back(map_entry.first, new_fbo); + } + } + + //if (!new_fbos.empty()) { + //} + } + } + return false; + }); + + if (!_sdl_event_handle) { + LOG_ERROR("couldn't add sdl event function!"); + return false; + } + + { // default texures + auto& rm_t = MM::ResourceManager::ref(); + if (!rm_t.contains("default"_hs)) { + if (!rm_t.load("default", default_png, default_png_len)) { + LOG_WARN("couldn't load 'default' texture!"); + } + } + if (!rm_t.contains("errig"_hs)) { + if (!rm_t.load("errig", errig_jpg, errig_jpg_len)) { + LOG_WARN("couldn't load 'errig' texture!"); + } + } + } + + return true; +} + +void OpenGLRenderer::disable(Engine& engine) { + if (!_render_handle.expired()) { + engine.removeUpdate(_render_handle); + _render_handle.reset(); + } + + // TODO: do we need this?? + targets.clear(); + render_tasks.clear(); + + // TODO: reallly? + MM::ResourceManager::ref().clear(); +} + +void OpenGLRenderer::render(Engine& engine) { + ZoneScopedN("MM::Services::OpenGLRenderer::render"); + + glEnable(GL_BLEND); + glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); + + //targets["display"]->bind(FrameBufferObject::RW); + //glClearColor(0.1f, 0.1f, 0.1f, 1.0f); + //glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); + targets["display"]->clear(0.1f, 0.1f, 0.1f, 1.0f, GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); + + for (auto& r : render_tasks) { + r->render(*this, engine); + } + + SDL_GL_SwapWindow(engine.getService().win); + TracyGpuCollect; +} + +} // namespace MM::Services + diff --git a/framework/opengl_renderer/src/mm/services/opengl_renderer.hpp b/framework/opengl_renderer/src/mm/services/opengl_renderer.hpp new file mode 100644 index 0000000..21756dc --- /dev/null +++ b/framework/opengl_renderer/src/mm/services/opengl_renderer.hpp @@ -0,0 +1,45 @@ +#pragma once + +#include +#include + +#include +#include + +#include +#include + +namespace MM::Services { + + class OpenGLRenderer : public Service { + public: + OpenGLRenderer(void); + ~OpenGLRenderer(void); + + public: + std::vector> render_tasks; + std::unordered_map> targets; + + // add rendertask helper + // TODO: forward args + template + RT_T& addRenderTask(::MM::Engine& engine) { + return *(RT_T*)render_tasks.emplace_back(std::make_unique(engine)).get(); + } + + private: + Engine::FunctionDataHandle _render_handle; + SDLService::EventHandlerHandle _sdl_event_handle = nullptr; + + public: + bool enable(Engine& engine) override; + void disable(Engine& engine) override; + + const char* name(void) override { return "OpenGLRendererService"; } + + private: + void render(Engine& engine); + }; + +} // namespace MM::Services + diff --git a/framework/opengl_renderer/test/CMakeLists.txt b/framework/opengl_renderer/test/CMakeLists.txt new file mode 100644 index 0000000..e35c8bb --- /dev/null +++ b/framework/opengl_renderer/test/CMakeLists.txt @@ -0,0 +1,154 @@ +add_executable(opengl_renderer_s_test ./opengl_renderer_s_test.cpp) + +target_include_directories(opengl_renderer_s_test PRIVATE ".") + +target_link_libraries(opengl_renderer_s_test + opengl_renderer_s + gtest_main +) + +add_test(NAME opengl_renderer_s_test COMMAND opengl_renderer_s_test) + +################# + +add_executable(imgui_render_task_test imgui_render_task_test.cpp) + +target_include_directories(imgui_render_task_test PRIVATE ".") + +target_link_libraries(imgui_render_task_test + opengl_renderer_s + imgui_service + imgui_render_task + gtest_main +) + +add_test(NAME imgui_render_task_test COMMAND imgui_render_task_test) + +################# simple rect render task + +add_executable(simple_rect_render_task_test simple_rect_render_task_test.cpp) + +target_include_directories(simple_rect_render_task_test PRIVATE ".") + +target_link_libraries(simple_rect_render_task_test + opengl_renderer_s + simple_scene + simple_rect_render_task + + simple_velocity_system + + gtest_main +) + +add_test(NAME simple_rect_render_task_test COMMAND simple_rect_render_task_test) + +################# simple sprite render task + +add_executable(simple_sprite_render_task_test simple_sprite_render_task_test.cpp) + +target_include_directories(simple_sprite_render_task_test PRIVATE ".") + +target_link_libraries(simple_sprite_render_task_test + opengl_renderer_s + simple_scene + simple_sprite_render_task + + simple_velocity_system + + gtest_main +) + +add_test(NAME simple_sprite_render_task_test COMMAND simple_sprite_render_task_test) + +################# simple spritesheet render task + +add_executable(simple_spritesheet_render_task_test simple_spritesheet_render_task_test.cpp) + +target_include_directories(simple_spritesheet_render_task_test PRIVATE ".") + +target_link_libraries(simple_spritesheet_render_task_test + opengl_renderer_s + simple_scene + simple_spritesheet_render_task + + #simple_velocity_system + + gtest_main +) + +add_test(NAME simple_spritesheet_render_task_test COMMAND simple_spritesheet_render_task_test) + +################# batched spritesheet render task + +add_executable(batched_spritesheet_render_task_test batched_spritesheet_render_task_test.cpp) + +target_include_directories(batched_spritesheet_render_task_test PRIVATE ".") + +target_link_libraries(batched_spritesheet_render_task_test + opengl_renderer_s + simple_scene + batched_spritesheet_render_task + + #simple_velocity_system + + gtest_main +) + +add_test(NAME batched_spritesheet_render_task_test COMMAND batched_spritesheet_render_task_test) + +################# + +add_executable(blur_render_task_test blur_render_task_test.cpp) + +target_include_directories(blur_render_task_test PRIVATE ".") + +target_link_libraries(blur_render_task_test + opengl_renderer_s + simple_scene + simple_rect_render_task + blur_render_task + imgui_service + imgui_render_task + + simple_velocity_system + + gtest_main +) + +add_test(NAME blur_render_task_test COMMAND blur_render_task_test) + +################# tilemap render task + +add_executable(tilemap_render_task_test tilemap_render_task_test.cpp) + +target_include_directories(tilemap_render_task_test PRIVATE ".") + +target_link_libraries(tilemap_render_task_test + opengl_renderer_s + simple_scene + imgui_service + tilemap_render_task + + gtest_main +) + +add_test(NAME tilemap_render_task_test COMMAND tilemap_render_task_test) + +################# fast sky render task + +add_executable(fast_sky_render_task_test fast_sky_render_task_test.cpp) + +target_include_directories(fast_sky_render_task_test PRIVATE ".") + +target_link_libraries(fast_sky_render_task_test + opengl_renderer_s + simple_scene + #imgui_service + fast_sky_render_task + fast_sky_sun_system + + gtest_main +) + +add_test(NAME fast_sky_render_task_test COMMAND fast_sky_render_task_test) + diff --git a/framework/opengl_renderer/test/batched_spritesheet_render_task_test.cpp b/framework/opengl_renderer/test/batched_spritesheet_render_task_test.cpp new file mode 100644 index 0000000..9f2a16c --- /dev/null +++ b/framework/opengl_renderer/test/batched_spritesheet_render_task_test.cpp @@ -0,0 +1,111 @@ +#include + +#include + +#include +#include +#include +#include + +#include + +#include + +#include + +#include +#include +#include + +#include +#include "res/textures.zip.h" + +const char* argv0; + +TEST(batched_spritesheet_render_task, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("batched_spritesheet_render_task_test", 1280, 720); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + auto& scene = engine.tryService()->getScene(); + + engine.addService(argv0, "batched_spritesheet_render_task_test"); + ASSERT_TRUE(engine.enableService()); + + ASSERT_TRUE(PHYSFS_mountMemory(textures_zip, textures_zip_len, NULL, "", NULL, 0)); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto& cam = scene.set(); + cam.horizontalViewPortSize = 5; + cam.setOrthographic(); + cam.updateView(); + + rs.addRenderTask(engine); + + float accu = 0.f; + MM::AddSystemToScene(scene, [&accu](auto& scene, float delta) { + accu += delta; + + if (accu >= 1.f/10) { + accu -= 1.f/10; + scene.template view() + .each([](auto, auto& spr) { + spr.tile_index = (spr.tile_index+spr.sp.tile_count.x) % (spr.sp.tile_count.x*spr.sp.tile_count.y); + } + ); + } + }); + + auto& rm_t = MM::ResourceManager::ref(); + ASSERT_TRUE(rm_t.load("anim_run", engine, "/textures/animation_running-1_ea_0.3.png")); + ASSERT_TRUE(rm_t.load("anim_idle", engine, "/textures/animation_standing-1_ea_0.1.png")); + + { + auto e = scene.create(); + auto& t = scene.emplace(e); + t.position.x = -1.f; + t.scale.x = 1.5f; + t.scale.y = 2.f; + + auto& spr = scene.emplace(e); + spr.sp.tex = rm_t.get("anim_run"_hs); + spr.sp.tile_count.x = 8; + spr.sp.tile_count.y = 8; + spr.tile_index = 2; + } + + { + auto e = scene.create(); + auto& t = scene.emplace(e); + t.position.x = 1.f; + t.scale.x = 1.5f; + t.scale.y = 2.f; + + auto& spr = scene.emplace(e); + spr.sp.tex = rm_t.get("anim_idle"_hs); + spr.sp.tile_count.x = 8; + spr.sp.tile_count.y = 4; + spr.tile_index = 0; + } + + engine.run(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/opengl_renderer/test/blur_render_task_test.cpp b/framework/opengl_renderer/test/blur_render_task_test.cpp new file mode 100644 index 0000000..a36fda1 --- /dev/null +++ b/framework/opengl_renderer/test/blur_render_task_test.cpp @@ -0,0 +1,120 @@ +#include + +#include + +#include +#include +#include +#include +#include + +#include + +#include +#include +#include + +#include +#include + +#include + +#include + +#include + +#include + +const char* argv0; + +TEST(blur_render_task, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("blur_render_task_test", 1280, 720); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + auto& scene = engine.tryService()->getScene(); + + engine.addService(argv0, "blur_render_task_test"); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine).target_fbo = "game_view"; + + MM::OpenGL::RenderTasks::SimpleRect* bsrr_rend_ptr = &rs.addRenderTask(engine); + bsrr_rend_ptr->target_fbo = "blur_in"; + + MM::OpenGL::RenderTasks::Blur* blur_rend_ptr = &rs.addRenderTask(engine); + blur_rend_ptr->target_fbo = "display"; + + rs.addRenderTask(engine); + + + { + auto [w, h] = sdl_ss.getWindowSize(); + + rs.targets["game_view"] = MM::OpenGL::FBOBuilder::start() + .attachTexture(MM::OpenGL::Texture::createEmpty(GL_RGB, w, h, GL_RGB, GL_UNSIGNED_BYTE)) + .finish(); + rs.targets["blur_in"] = MM::OpenGL::FBOBuilder::start() + .attachTexture(MM::OpenGL::Texture::createEmpty(GL_RGB, w, h, GL_RGB, GL_UNSIGNED_BYTE)) + .finish(); + rs.targets["blur_out"] = MM::OpenGL::FBOBuilder::start() + .attachTexture(MM::OpenGL::Texture::createEmpty(GL_RGB, w, h, GL_RGB, GL_UNSIGNED_BYTE)) + .finish(); + } + + + // setup v system + MM::AddSystemToScene(scene, MM::Systems::SimpleVelocity); + + std::mt19937 mt(42); + + for (int i = 0; i < 10; i++) { + auto e = scene.create(); + auto& t = scene.emplace(e); + t.position.x = i * 9.f - 40; + t.scale = {5,5}; + + auto& v = scene.emplace(e); + v.rotation = i * 0.3f; + + if (mt() % 2) { + auto& col = scene.emplace(e); + auto rc = [&mt]() -> float { + return (mt() % 1001) / 1000.f ; + }; + col.color = {rc(),rc(),rc(),1}; + } + + } + + engine.addUpdate( + [&](MM::Engine&) { + ImGui::ColorEdit4("rect_col", &bsrr_rend_ptr->default_color[0]); + } + ); + + engine.run(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/opengl_renderer/test/fast_sky_render_task_test.cpp b/framework/opengl_renderer/test/fast_sky_render_task_test.cpp new file mode 100644 index 0000000..9c1fcaa --- /dev/null +++ b/framework/opengl_renderer/test/fast_sky_render_task_test.cpp @@ -0,0 +1,59 @@ +#include "mm/opengl/camera_3d.hpp" +#include + +#include + +#include +#include +#include +#include + +#include + +#include +#include + +const char* argv0; + +TEST(fast_sky_render_task, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("fast_sky_render_task_test", 1280, 720); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + auto& scene = engine.tryService()->getScene(); + + engine.addService(argv0, "fast_sky_render_task_test"); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + MM::AddSystemToScene(scene, MM::Systems::FastSkySun); + + auto& cam = scene.set(); + cam.setPerspective(); + cam.updateView(); + + scene.set(); + + engine.run(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/opengl_renderer/test/imgui_render_task_test.cpp b/framework/opengl_renderer/test/imgui_render_task_test.cpp new file mode 100644 index 0000000..6ccd9a4 --- /dev/null +++ b/framework/opengl_renderer/test/imgui_render_task_test.cpp @@ -0,0 +1,46 @@ +#include + +#include + +#include +#include +#include +#include + +#include + +TEST(imgui_render_task, demowindow) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + // needs a open window (and opengl context) which the OpenGLRenderer creates in this case + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + auto handle = engine.addUpdate([](MM::Engine&) { + ImGui::ShowDemoWindow(); + } + ); + + { + auto tmp_lock = handle.lock(); + tmp_lock->priority = 0; + tmp_lock->name = "imgui demo window"; + } + + engine.run(); +} + +int main(int argc, char** argv) { + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/opengl_renderer/test/opengl_renderer_s_test.cpp b/framework/opengl_renderer/test/opengl_renderer_s_test.cpp new file mode 100644 index 0000000..1b199de --- /dev/null +++ b/framework/opengl_renderer/test/opengl_renderer_s_test.cpp @@ -0,0 +1,26 @@ +#include + +#include +#include +#include + +TEST(opengl_renderer_s, basic) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.update(); +} + +int main(int argc, char** argv) { + //argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/opengl_renderer/test/res/animation_running-1_ea_0.3.png b/framework/opengl_renderer/test/res/animation_running-1_ea_0.3.png new file mode 100644 index 0000000..c92a6b1 Binary files /dev/null and b/framework/opengl_renderer/test/res/animation_running-1_ea_0.3.png differ diff --git a/framework/opengl_renderer/test/res/animation_standing-1_ea_0.1.png b/framework/opengl_renderer/test/res/animation_standing-1_ea_0.1.png new file mode 100644 index 0000000..71d2de1 Binary files /dev/null and b/framework/opengl_renderer/test/res/animation_standing-1_ea_0.1.png differ diff --git a/framework/opengl_renderer/test/res/errig.jpg b/framework/opengl_renderer/test/res/errig.jpg new file mode 100644 index 0000000..feebbd0 Binary files /dev/null and b/framework/opengl_renderer/test/res/errig.jpg differ diff --git a/framework/opengl_renderer/test/res/test.png b/framework/opengl_renderer/test/res/test.png new file mode 100644 index 0000000..361d482 Binary files /dev/null and b/framework/opengl_renderer/test/res/test.png differ diff --git a/framework/opengl_renderer/test/res/textures.zip b/framework/opengl_renderer/test/res/textures.zip new file mode 100644 index 0000000..bce636d Binary files /dev/null and b/framework/opengl_renderer/test/res/textures.zip differ diff --git a/framework/opengl_renderer/test/res/textures.zip.h b/framework/opengl_renderer/test/res/textures.zip.h new file mode 100644 index 0000000..e031709 --- /dev/null +++ b/framework/opengl_renderer/test/res/textures.zip.h @@ -0,0 +1,2627 @@ +unsigned char textures_zip[] = { + 0x50, 0x4b, 0x03, 0x04, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x87, + 0x01, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x09, 0x00, 0x20, 0x00, 0x74, 0x65, 0x78, 0x74, 0x75, 0x72, + 0x65, 0x73, 0x2f, 0x55, 0x54, 0x0d, 0x00, 0x07, 0xda, 0xfd, 0x42, 0x5d, + 0xdb, 0xfd, 0x42, 0x5d, 0xda, 0xfd, 0x42, 0x5d, 0x75, 0x78, 0x0b, 0x00, + 0x01, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x50, + 0x4b, 0x03, 0x04, 0x14, 0x03, 0x00, 0x00, 0x08, 0x00, 0x0f, 0x02, 0x08, + 0x4f, 0x15, 0x44, 0x95, 0x94, 0x72, 0x1b, 0x00, 0x00, 0xf8, 0x23, 0x00, + 0x00, 0x27, 0x00, 0x00, 0x00, 0x74, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, + 0x73, 0x2f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x2d, 0x31, 0x5f, 0x65, 0x61, + 0x5f, 0x30, 0x2e, 0x33, 0x2e, 0x70, 0x6e, 0x67, 0xed, 0x99, 0x77, 0x50, + 0x53, 0x77, 0x00, 0xc7, 0x83, 0x91, 0x00, 0x4a, 0x12, 0x56, 0x05, 0x09, + 0x5b, 0x30, 0xd8, 0x22, 0xd0, 0x32, 0x12, 0x09, 0xc8, 0xac, 0x0c, 0x65, + 0x2a, 0x82, 0xc8, 0x56, 0xca, 0x14, 0x08, 0x65, 0x83, 0x84, 0xc8, 0x06, + 0x59, 0xb2, 0x04, 0x59, 0x01, 0x94, 0x29, 0x43, 0xa0, 0x05, 0x65, 0x13, + 0x44, 0x41, 0x31, 0x65, 0x5a, 0x64, 0x19, 0x86, 0x61, 0x43, 0xd8, 0x10, + 0x48, 0x1f, 0x1d, 0xd7, 0x71, 0xed, 0xb5, 0x77, 0xed, 0x5d, 0xff, 0x68, + 0x7f, 0x77, 0xb9, 0xbc, 0xf7, 0x7e, 0xef, 0x25, 0x77, 0xef, 0xee, 0xfb, + 0xfb, 0x7e, 0xbf, 0x9f, 0x5f, 0x94, 0x81, 0x9e, 0x26, 0xf4, 0x18, 0xef, + 0x31, 0x10, 0x08, 0x04, 0xd5, 0xd6, 0xd2, 0x30, 0x02, 0x81, 0x18, 0x82, + 0x41, 0xa0, 0x23, 0x20, 0x66, 0x30, 0x70, 0xa5, 0x41, 0xf5, 0xe2, 0x0b, + 0xe0, 0xeb, 0xa8, 0xbd, 0xaa, 0xae, 0x2a, 0x08, 0x54, 0x15, 0x7f, 0x9c, + 0x66, 0xc3, 0x08, 0x02, 0x81, 0x41, 0x06, 0x97, 0xae, 0x7c, 0x0e, 0xfa, + 0x7f, 0xfc, 0x3f, 0xfe, 0xc3, 0xa3, 0x5a, 0x7a, 0x3d, 0x12, 0x10, 0x0b, + 0xc8, 0xd3, 0x48, 0xef, 0x32, 0xfd, 0xbf, 0x3d, 0x40, 0x97, 0xb7, 0x98, + 0xc4, 0x80, 0x57, 0xc2, 0xe2, 0xae, 0x75, 0xed, 0x4b, 0x10, 0x08, 0xd6, + 0x76, 0xf8, 0x61, 0xf8, 0x48, 0x5c, 0x27, 0x18, 0xb8, 0x78, 0xd2, 0xf3, + 0x73, 0x53, 0xcf, 0xcb, 0x6e, 0x5f, 0x78, 0xfa, 0xd8, 0x78, 0xd8, 0x81, + 0xdc, 0x6d, 0x1c, 0x5d, 0x3d, 0x25, 0x5d, 0xed, 0x3c, 0x85, 0x64, 0x25, + 0xa5, 0x25, 0x3f, 0xfb, 0x74, 0x55, 0xc8, 0x31, 0x05, 0x04, 0x12, 0xb4, + 0xd0, 0xd6, 0x50, 0xbd, 0xe2, 0x6b, 0xb9, 0x98, 0x89, 0xbf, 0x37, 0x82, + 0x2e, 0x3f, 0xba, 0x45, 0xc7, 0xed, 0x0a, 0x30, 0xdc, 0xb9, 0x57, 0x88, + 0x60, 0xfb, 0x64, 0x43, 0xf4, 0x4b, 0xd7, 0xf8, 0x93, 0x58, 0x75, 0x96, + 0x8f, 0xb9, 0x62, 0xee, 0x04, 0x28, 0x36, 0x55, 0x6e, 0xe5, 0xd0, 0x5d, + 0x52, 0x9f, 0x30, 0x55, 0xde, 0x57, 0x0a, 0xee, 0x58, 0x60, 0x90, 0xf8, + 0x02, 0x6e, 0xfd, 0x69, 0x00, 0x28, 0xe6, 0x5b, 0xb0, 0xe9, 0x2b, 0x81, + 0x16, 0xdb, 0x4d, 0xd0, 0x89, 0xea, 0x1f, 0xa6, 0x24, 0x78, 0x5b, 0x94, + 0xf5, 0x46, 0x98, 0x55, 0xce, 0x31, 0x0e, 0x3f, 0xa3, 0x11, 0xd0, 0xce, + 0x10, 0x52, 0xdf, 0xbc, 0xbd, 0xfb, 0xf4, 0x65, 0xcd, 0x03, 0xc8, 0xb0, + 0xcf, 0xb4, 0x3a, 0xf6, 0xb3, 0xb4, 0xf3, 0xd6, 0x53, 0x6f, 0x78, 0xc3, + 0xaf, 0x2c, 0x32, 0x2b, 0x0d, 0x33, 0x88, 0xe6, 0x6d, 0x12, 0xf2, 0xb1, + 0xe4, 0xdd, 0x90, 0x02, 0x3e, 0xf2, 0x93, 0x69, 0xc4, 0xbc, 0x34, 0xd9, + 0xbb, 0x8b, 0xad, 0x04, 0x6a, 0xaa, 0x0c, 0xcb, 0x95, 0xb3, 0xde, 0x8b, + 0xf7, 0x8a, 0x16, 0xfb, 0x94, 0xbc, 0xc9, 0xa4, 0xbd, 0xca, 0x56, 0x82, + 0xb8, 0x0b, 0x59, 0x6d, 0x28, 0x5c, 0x9d, 0xf7, 0x7f, 0xfc, 0xfe, 0xab, + 0xdb, 0x65, 0x32, 0x92, 0xe3, 0xfa, 0x46, 0x18, 0x9d, 0xb9, 0xe3, 0x4a, + 0x76, 0x95, 0xaa, 0x29, 0xe3, 0x03, 0x31, 0xd0, 0x88, 0xc6, 0x39, 0x7a, + 0x95, 0x1e, 0xda, 0xee, 0x9a, 0xba, 0x51, 0xfe, 0x0e, 0x12, 0x23, 0x4a, + 0xeb, 0x0b, 0xa3, 0xe2, 0x23, 0xf4, 0xbe, 0x82, 0x13, 0xa1, 0xb0, 0x80, + 0x81, 0x71, 0x2f, 0x6c, 0xe4, 0xb9, 0x42, 0x09, 0x67, 0x2d, 0x27, 0xfb, + 0x38, 0x4d, 0x6f, 0x2d, 0xca, 0x38, 0x6c, 0x60, 0x2d, 0x63, 0x11, 0x5d, + 0x4d, 0x14, 0xe6, 0xf4, 0xa1, 0x8c, 0x51, 0x8f, 0x43, 0xc7, 0xc9, 0x01, + 0xbb, 0xa8, 0xc3, 0x1b, 0x9c, 0x0d, 0x93, 0x7d, 0xd0, 0x9e, 0xb6, 0x21, + 0x61, 0x69, 0x6b, 0x28, 0xb5, 0x8b, 0x6b, 0xd2, 0x4a, 0xac, 0x05, 0xdd, + 0x70, 0x8b, 0xe1, 0xc4, 0xa7, 0x9e, 0x5f, 0x2a, 0x91, 0x0c, 0xe6, 0xd2, + 0x3d, 0xdd, 0x3a, 0xdf, 0x1c, 0x5f, 0x13, 0x6a, 0xe4, 0xf4, 0xe1, 0x7d, + 0x1a, 0xc4, 0xbc, 0x16, 0xde, 0x16, 0x06, 0xf1, 0xa8, 0x1d, 0x6b, 0x7d, + 0x85, 0xb8, 0x02, 0x9b, 0x44, 0x04, 0xc6, 0xd4, 0x65, 0xf4, 0x8e, 0xeb, + 0x0a, 0x57, 0x98, 0xfb, 0xf2, 0x25, 0x44, 0x16, 0x2c, 0xaf, 0xcb, 0x10, + 0x63, 0x8f, 0xb2, 0x7f, 0xe9, 0xd3, 0x37, 0x0f, 0x3d, 0xf0, 0x38, 0xe6, + 0x37, 0xad, 0x46, 0xee, 0x5f, 0xfa, 0xa8, 0x8e, 0x90, 0x23, 0x5c, 0x2e, + 0x46, 0x61, 0x70, 0x3d, 0x1a, 0xfd, 0x49, 0xa2, 0x6d, 0x7c, 0x17, 0xe3, + 0x07, 0x4d, 0x6c, 0xae, 0x62, 0x5b, 0xf5, 0x59, 0x5b, 0x63, 0xe9, 0x65, + 0x44, 0x22, 0x59, 0xa7, 0x8d, 0xd6, 0x17, 0x57, 0x30, 0x58, 0xab, 0x77, + 0xe5, 0xb4, 0x2c, 0xbf, 0x01, 0x42, 0x6b, 0x64, 0x7a, 0x52, 0xd3, 0x90, + 0x01, 0xde, 0x17, 0xd5, 0x15, 0x5a, 0xd9, 0x99, 0x7e, 0xd3, 0x3f, 0xb5, + 0xe6, 0x54, 0x71, 0x7a, 0x4f, 0x97, 0x75, 0x84, 0xab, 0xd4, 0xbc, 0x12, + 0x2c, 0x17, 0x29, 0x82, 0x5d, 0xb8, 0x58, 0x76, 0xcc, 0x55, 0x4f, 0x66, + 0xd6, 0x3f, 0xe9, 0x2a, 0xb5, 0xcc, 0xc9, 0xe3, 0x7e, 0x27, 0xd1, 0x1f, + 0xcc, 0xb2, 0x6c, 0x0a, 0x76, 0x5c, 0x45, 0x4b, 0x93, 0x62, 0xb5, 0xb0, + 0xe7, 0x3a, 0x26, 0xb9, 0xe6, 0x6a, 0x16, 0xd6, 0xfc, 0xa5, 0xe2, 0x19, + 0x16, 0x5f, 0x2b, 0x97, 0x8b, 0x2a, 0xc2, 0x28, 0xc1, 0x9b, 0xb2, 0xcd, + 0x9d, 0x2f, 0xb5, 0xe7, 0xb9, 0x77, 0x39, 0x02, 0xef, 0x98, 0x1a, 0x57, + 0x66, 0x67, 0xbd, 0x9f, 0x46, 0x7b, 0xa5, 0x92, 0x5b, 0x9b, 0x6d, 0x40, + 0x58, 0xc2, 0xaa, 0x07, 0xdf, 0xf9, 0x60, 0x53, 0x06, 0x59, 0xa3, 0xb2, + 0x8f, 0xd1, 0xec, 0xce, 0xbe, 0xe7, 0xf4, 0xce, 0x4a, 0x65, 0x93, 0x14, + 0x63, 0x3b, 0x45, 0x1e, 0x8e, 0x6c, 0x6b, 0x3d, 0x2f, 0x59, 0xa5, 0x32, + 0xd5, 0xa5, 0x9a, 0xe8, 0x4f, 0x40, 0xa0, 0xfd, 0x78, 0x5c, 0x52, 0xab, + 0x9f, 0x03, 0xf8, 0x75, 0x3b, 0xcc, 0x20, 0xa6, 0x14, 0x29, 0xab, 0xbc, + 0x90, 0x0b, 0xf6, 0xdd, 0x03, 0x07, 0xfb, 0x6c, 0xdf, 0x06, 0xab, 0xe0, + 0xcd, 0x68, 0x85, 0x30, 0x83, 0x56, 0x38, 0x5b, 0xe9, 0x51, 0x25, 0x95, + 0xb3, 0x92, 0x02, 0x95, 0x43, 0x7d, 0xe6, 0x0e, 0xe0, 0x85, 0xe0, 0x35, + 0xa7, 0x09, 0x15, 0x09, 0xd8, 0x96, 0x94, 0xa5, 0x97, 0x4d, 0xfb, 0x88, + 0x0d, 0x2d, 0xfc, 0xe5, 0x86, 0xc0, 0xde, 0xf4, 0x05, 0x1f, 0x6b, 0x4d, + 0x6b, 0x4c, 0x1d, 0xc7, 0x4c, 0xf1, 0xc2, 0x71, 0xc4, 0x92, 0x2b, 0x71, + 0x34, 0x53, 0x32, 0x05, 0x71, 0x89, 0x79, 0x04, 0xa3, 0x15, 0xef, 0x4d, + 0x51, 0x63, 0xa3, 0xcc, 0x6d, 0x88, 0x0e, 0x24, 0x84, 0x40, 0x79, 0x4f, + 0x43, 0xa2, 0x0e, 0xb6, 0x15, 0x3a, 0x93, 0x72, 0x15, 0x95, 0x70, 0xa7, + 0x96, 0xec, 0x3d, 0x1f, 0x4a, 0xd2, 0x27, 0x4b, 0xef, 0x3c, 0xd8, 0xea, + 0x96, 0xba, 0xb7, 0x2b, 0x3e, 0x8b, 0x90, 0x95, 0x68, 0x18, 0x9b, 0xd0, + 0x59, 0xf1, 0xef, 0xa9, 0xe0, 0x55, 0xdf, 0xed, 0x85, 0x09, 0x6f, 0x39, + 0x87, 0x3d, 0x92, 0x68, 0x4c, 0x3a, 0x9c, 0xe2, 0xb9, 0xc5, 0xd4, 0xd8, + 0x9a, 0xf2, 0x44, 0xb1, 0xad, 0x7b, 0xf9, 0x43, 0xcd, 0x09, 0xcc, 0x0a, + 0x44, 0x32, 0x79, 0x40, 0xf7, 0xda, 0x75, 0x24, 0xfc, 0x82, 0xf6, 0x78, + 0xcb, 0x37, 0xca, 0x2b, 0x36, 0x67, 0xbb, 0x57, 0xf7, 0x08, 0x9a, 0x2d, + 0x88, 0x3a, 0x83, 0xab, 0x56, 0x4d, 0x19, 0x53, 0x2f, 0x81, 0x67, 0x3c, + 0x29, 0xc7, 0xef, 0x78, 0x3c, 0x69, 0x65, 0x73, 0x82, 0xb6, 0x9b, 0x7c, + 0xb5, 0xac, 0x23, 0xd4, 0x9c, 0x70, 0x3a, 0xde, 0x37, 0x1b, 0xc6, 0x1f, + 0xdc, 0x93, 0xd0, 0x7d, 0x4b, 0x98, 0x8b, 0xd3, 0x66, 0x2f, 0x4e, 0x32, + 0x02, 0x8c, 0x26, 0x6f, 0x7d, 0x3e, 0xb3, 0xc1, 0x40, 0x41, 0xdc, 0x0d, + 0x6f, 0x7a, 0xc5, 0xd3, 0xf4, 0xe4, 0xb6, 0x66, 0x1a, 0xfd, 0x31, 0x03, + 0xf1, 0x63, 0xd0, 0x63, 0x4d, 0x21, 0xbf, 0x23, 0xf9, 0x04, 0x29, 0x4e, + 0xd8, 0xf5, 0x01, 0x25, 0x10, 0xf5, 0xb8, 0xe3, 0x26, 0xc5, 0x32, 0x3b, + 0xe2, 0x88, 0xdd, 0x5d, 0x15, 0xba, 0x0c, 0x98, 0xf2, 0x79, 0xc6, 0x87, + 0x74, 0x95, 0x93, 0xc2, 0x43, 0x3e, 0x14, 0x35, 0x63, 0x3a, 0x37, 0xc4, + 0xc0, 0xb9, 0x0f, 0xd9, 0xa8, 0xb5, 0x96, 0xa0, 0x52, 0x15, 0x1d, 0xca, + 0x07, 0x6f, 0x69, 0xee, 0xd9, 0x49, 0x63, 0x05, 0x31, 0x46, 0x1b, 0x8b, + 0x52, 0x29, 0x16, 0xdf, 0x4c, 0x58, 0x31, 0xb6, 0x5d, 0xdb, 0xf2, 0x09, + 0xa6, 0xa9, 0xf9, 0x2f, 0x1b, 0x76, 0xc9, 0xe0, 0x39, 0x9e, 0xef, 0x7d, + 0xf3, 0xcc, 0xda, 0xb3, 0x09, 0xcf, 0xd0, 0xcf, 0xdd, 0x1b, 0x10, 0x6f, + 0x94, 0xcd, 0x92, 0x0c, 0xb2, 0xba, 0x04, 0x46, 0xa1, 0x03, 0x40, 0x8c, + 0x01, 0x20, 0xde, 0x2b, 0x52, 0x6b, 0x17, 0x99, 0x40, 0x75, 0xd2, 0x4d, + 0x5b, 0x94, 0xe5, 0xb6, 0x90, 0x91, 0xbb, 0x4d, 0x64, 0x62, 0xf3, 0xcc, + 0x59, 0x7a, 0xc5, 0x9f, 0x0b, 0xf8, 0xcf, 0xa7, 0x62, 0x20, 0x2b, 0xf1, + 0x9c, 0xa8, 0x23, 0x06, 0x7a, 0xf8, 0x4d, 0x49, 0x9c, 0x78, 0x4f, 0x06, + 0xc3, 0xfa, 0xfa, 0xee, 0x49, 0xf3, 0x9d, 0xfe, 0xc4, 0x66, 0xfc, 0xa6, + 0xc5, 0x8e, 0x41, 0xe6, 0xab, 0x87, 0x70, 0x9e, 0x9d, 0xea, 0x70, 0x61, + 0x63, 0x8c, 0x5a, 0xbc, 0x37, 0x28, 0xaa, 0xe8, 0x36, 0xc5, 0x21, 0xb3, + 0xee, 0x40, 0xe8, 0x4c, 0x44, 0x9d, 0xcb, 0xce, 0x73, 0x85, 0xbb, 0x75, + 0x59, 0x9f, 0x85, 0x3a, 0x81, 0x07, 0xe3, 0xc1, 0x0e, 0xd0, 0xb7, 0x07, + 0x37, 0xb2, 0x6c, 0xb5, 0xef, 0xd6, 0xed, 0xab, 0x1a, 0x29, 0x86, 0xce, + 0x41, 0xf2, 0x55, 0x15, 0x97, 0x1d, 0x69, 0x4f, 0x2d, 0x9d, 0xeb, 0x6e, + 0x09, 0xce, 0xdf, 0xed, 0xde, 0x4a, 0xea, 0x8f, 0xbb, 0xb7, 0xab, 0xa6, + 0x7f, 0xd2, 0xc5, 0x60, 0xda, 0x67, 0xc3, 0xb6, 0xdd, 0xa6, 0x62, 0x17, + 0x57, 0xc6, 0xa9, 0x77, 0x6d, 0x30, 0xa1, 0xdf, 0xe1, 0xe0, 0x25, 0x8c, + 0x65, 0x35, 0x7e, 0x6e, 0x1a, 0x0c, 0xcf, 0x72, 0x11, 0x8c, 0x44, 0xf0, + 0x6d, 0x96, 0x34, 0xcf, 0x4f, 0xd1, 0x3f, 0x6b, 0x39, 0xd3, 0xcd, 0x7b, + 0x6f, 0x38, 0x7d, 0x32, 0x91, 0x9f, 0x63, 0xf7, 0x6b, 0xf5, 0x8d, 0x86, + 0x2f, 0x30, 0x3d, 0x12, 0xd8, 0x17, 0x44, 0xfe, 0xa7, 0xa8, 0x6d, 0xfd, + 0xb3, 0x1a, 0x81, 0x86, 0xb8, 0xae, 0x27, 0xe1, 0x35, 0x27, 0x3e, 0xf7, + 0x8b, 0x50, 0x47, 0xca, 0x9b, 0xfa, 0x9e, 0xc3, 0x9d, 0xaa, 0x91, 0x85, + 0xf7, 0xb5, 0xab, 0x3c, 0xa5, 0x91, 0x1e, 0xf2, 0x17, 0x5f, 0x44, 0x0d, + 0x81, 0xa1, 0x0f, 0xb3, 0xb5, 0xb7, 0xbc, 0x69, 0x0d, 0xd2, 0xf0, 0x5e, + 0x0c, 0xb6, 0x90, 0x30, 0x1f, 0x21, 0xed, 0x26, 0x6e, 0xee, 0x20, 0x64, + 0x32, 0xcf, 0xff, 0xaa, 0x41, 0x75, 0x5a, 0xba, 0xa9, 0xf5, 0xeb, 0xc8, + 0xd2, 0x33, 0xfb, 0xa3, 0x5c, 0xd4, 0xae, 0xb0, 0x4e, 0x86, 0x28, 0xad, + 0x5d, 0x3d, 0x65, 0xf5, 0x11, 0x2d, 0xb6, 0x4f, 0x7d, 0x50, 0x8d, 0x63, + 0x13, 0x52, 0x85, 0x09, 0x26, 0x92, 0xa2, 0x7a, 0x8b, 0x96, 0x78, 0xc4, + 0xee, 0x49, 0xb2, 0xd9, 0x1d, 0x81, 0x89, 0x0b, 0xb9, 0x75, 0x1c, 0x67, + 0x36, 0x8b, 0xcc, 0xdd, 0x83, 0xb8, 0x98, 0xba, 0x4e, 0x29, 0xbe, 0x13, + 0xb9, 0xca, 0xb8, 0xd6, 0xc4, 0x7e, 0xa6, 0x5c, 0xf4, 0x95, 0xf2, 0xa2, + 0x96, 0x93, 0xc5, 0xbc, 0x86, 0x9d, 0x5a, 0x1f, 0x43, 0x2d, 0x9e, 0x68, + 0x71, 0x3e, 0x88, 0xeb, 0xa3, 0x15, 0xe9, 0xac, 0xa2, 0x4b, 0xcc, 0x01, + 0x99, 0xda, 0x8f, 0xec, 0xb5, 0x31, 0xf7, 0x32, 0x66, 0xcb, 0x58, 0xbd, + 0x29, 0x9b, 0x4f, 0xc6, 0x26, 0x41, 0xfe, 0x22, 0x1c, 0x9d, 0x4d, 0xc4, + 0x92, 0x89, 0x19, 0xd9, 0xa4, 0x72, 0x94, 0xa3, 0xd8, 0x9b, 0x92, 0xd3, + 0x11, 0x7e, 0x97, 0xca, 0x50, 0x09, 0x2b, 0x71, 0x72, 0x09, 0x27, 0xe2, + 0xc1, 0xe0, 0xd1, 0x48, 0xae, 0xb4, 0xcb, 0x8a, 0x7a, 0x04, 0xbd, 0xee, + 0xf3, 0x15, 0x5b, 0x54, 0x1e, 0xd2, 0x18, 0x6d, 0x52, 0xa7, 0x6d, 0x32, + 0x18, 0xe6, 0xa0, 0xbf, 0x16, 0x90, 0x99, 0x59, 0x13, 0x44, 0x90, 0x6a, + 0x45, 0x46, 0x1a, 0x33, 0xce, 0x7f, 0x7b, 0xd2, 0x32, 0xee, 0xb2, 0xfd, + 0x19, 0x01, 0x1a, 0x02, 0xc2, 0xc6, 0xcd, 0x2b, 0xd5, 0xf9, 0x1e, 0x1c, + 0xf9, 0x91, 0xca, 0xa9, 0x8e, 0x92, 0x3b, 0x9c, 0x55, 0xe1, 0x69, 0x93, + 0xfd, 0x54, 0x32, 0xcb, 0xeb, 0x3e, 0x5f, 0x09, 0xa3, 0xae, 0xd8, 0xf8, + 0x9b, 0x65, 0xbc, 0x52, 0xb8, 0x60, 0x67, 0xbf, 0x8d, 0xa3, 0xae, 0x24, + 0x6b, 0x7e, 0x37, 0x5c, 0x67, 0x1b, 0x54, 0x16, 0xae, 0xe8, 0x5a, 0x36, + 0x7e, 0x45, 0xdf, 0x21, 0xe8, 0xad, 0x2a, 0x2e, 0x0d, 0x77, 0x28, 0xf1, + 0x60, 0xa6, 0xa2, 0x8e, 0x01, 0xce, 0x8c, 0x1c, 0x7e, 0x10, 0x3d, 0x39, + 0x6c, 0x72, 0x04, 0xad, 0x52, 0x26, 0xb2, 0x12, 0x51, 0x66, 0x64, 0xae, + 0x18, 0x2c, 0x15, 0x49, 0x23, 0x74, 0xbe, 0xcf, 0x01, 0x3d, 0xfa, 0x80, + 0xf4, 0xb5, 0xb0, 0x6a, 0x98, 0x6b, 0x0b, 0xaf, 0x5f, 0xdb, 0x0a, 0x39, + 0x48, 0xbe, 0xb9, 0x79, 0x61, 0x24, 0xaa, 0xe1, 0x19, 0x03, 0x46, 0x25, + 0xff, 0x89, 0x94, 0x4b, 0x1d, 0xa6, 0x6b, 0xbc, 0xe6, 0x66, 0x84, 0xab, + 0xae, 0x4c, 0x47, 0x09, 0x69, 0xff, 0x1a, 0x13, 0xc6, 0x6d, 0x27, 0xe8, + 0x9e, 0x93, 0x09, 0x8a, 0x6c, 0xd9, 0x4a, 0xcc, 0x6d, 0xed, 0xc7, 0x16, + 0x93, 0x6a, 0x73, 0x4f, 0xc1, 0x84, 0x90, 0x6d, 0x88, 0xfb, 0x57, 0xd3, + 0xac, 0x1a, 0xb3, 0x0a, 0x14, 0x75, 0x76, 0x21, 0xb1, 0x33, 0xf0, 0x75, + 0x5d, 0x9d, 0x7e, 0x8b, 0x6e, 0x1a, 0xae, 0x4c, 0xc6, 0x16, 0xfc, 0x15, + 0xd8, 0x28, 0x6d, 0x4c, 0xfb, 0x76, 0x72, 0x0b, 0x44, 0xf7, 0x2e, 0x53, + 0x6e, 0x77, 0x27, 0x48, 0xa5, 0xb3, 0x53, 0xe1, 0xfd, 0x73, 0x88, 0x6e, + 0x49, 0xe9, 0x83, 0x9a, 0x75, 0xbd, 0xb9, 0xfc, 0xa3, 0xf2, 0x0e, 0x94, + 0x9c, 0xad, 0x70, 0x6d, 0x2f, 0x3f, 0xf1, 0x97, 0x7b, 0x3b, 0xa6, 0x48, + 0x56, 0xfb, 0xaf, 0xf0, 0xe5, 0x4d, 0xfe, 0xe7, 0x5e, 0x86, 0x18, 0x1e, + 0x41, 0xc8, 0x8e, 0x09, 0xb6, 0x04, 0xf0, 0x6f, 0xc9, 0x93, 0x06, 0x3c, + 0x41, 0x86, 0x60, 0x04, 0x8f, 0x35, 0x48, 0x92, 0x91, 0x1a, 0xef, 0xa5, + 0x27, 0x3e, 0xa0, 0xb5, 0x25, 0x9f, 0xcb, 0xd4, 0xf3, 0x32, 0x5b, 0x43, + 0x77, 0xcb, 0x27, 0x68, 0x12, 0xb4, 0xfb, 0xd9, 0xf4, 0x18, 0x84, 0xde, + 0x08, 0xa6, 0x08, 0x6a, 0x8d, 0x06, 0x89, 0xb7, 0xc2, 0x94, 0x53, 0x4f, + 0x46, 0x54, 0x2c, 0x2c, 0xeb, 0xac, 0xe8, 0x6e, 0xa9, 0xa5, 0x2b, 0x45, + 0x65, 0xb8, 0x8c, 0x27, 0x4e, 0x6a, 0xb8, 0x8b, 0xa3, 0xa6, 0x34, 0x84, + 0xb9, 0x36, 0x0a, 0x9b, 0x83, 0x20, 0xf4, 0x23, 0x71, 0x7c, 0xdc, 0xe3, + 0x37, 0xf5, 0xf3, 0x1e, 0x3d, 0xf5, 0xe9, 0x97, 0xd5, 0x1d, 0x0a, 0xcb, + 0xdb, 0xcf, 0xf9, 0xca, 0x23, 0x8f, 0xad, 0xe4, 0x3a, 0x71, 0xd8, 0xc0, + 0xca, 0x31, 0x8d, 0xdf, 0x3e, 0x1d, 0x4b, 0xe8, 0x16, 0xd0, 0xd0, 0x5d, + 0x83, 0xf5, 0x4b, 0x14, 0xea, 0x54, 0xd3, 0xdf, 0x7f, 0x8c, 0x3c, 0x46, + 0x28, 0xa2, 0x57, 0x85, 0x0d, 0x7e, 0x59, 0xd4, 0x7f, 0x39, 0xed, 0x69, + 0x99, 0x80, 0xdc, 0x4b, 0x05, 0x69, 0x5c, 0x9e, 0xc9, 0x4e, 0xfa, 0xf5, + 0x31, 0xe1, 0xd0, 0xbc, 0x83, 0x0f, 0x02, 0xd4, 0xd3, 0xc1, 0x33, 0xd7, + 0x76, 0xbe, 0x98, 0xb6, 0x54, 0x57, 0x4d, 0xd8, 0x96, 0xdf, 0x95, 0xa4, + 0x30, 0x5f, 0x6c, 0xb7, 0xb7, 0x4b, 0x3e, 0x70, 0xcb, 0xd3, 0x54, 0xd3, + 0x34, 0xf5, 0xef, 0xb5, 0xda, 0xce, 0x70, 0xb6, 0x3c, 0xf6, 0x8c, 0x69, + 0xa5, 0xf9, 0xaf, 0x28, 0xfa, 0xcf, 0x8d, 0x3c, 0x78, 0xdf, 0xf8, 0x53, + 0xaa, 0x49, 0x6e, 0x6e, 0xe6, 0x91, 0x45, 0x8b, 0x03, 0x83, 0x4c, 0x39, + 0x30, 0x65, 0x76, 0x43, 0xa6, 0x8e, 0x5a, 0x7c, 0x0a, 0x07, 0x5e, 0x7c, + 0x46, 0x25, 0xa0, 0xd3, 0x2f, 0x0a, 0x4a, 0x53, 0xed, 0xa1, 0xea, 0x25, + 0xde, 0xa1, 0x02, 0x8b, 0x20, 0x0e, 0xc3, 0x3d, 0xd2, 0x37, 0x68, 0x2c, + 0x20, 0x65, 0x18, 0xf6, 0x5b, 0x6a, 0xac, 0x17, 0x0f, 0x16, 0x63, 0xc7, + 0x3c, 0x00, 0x29, 0x13, 0x64, 0x22, 0xf1, 0x56, 0xee, 0x77, 0x2a, 0x74, + 0xdc, 0xe3, 0xc1, 0xee, 0x85, 0x14, 0xf8, 0x32, 0x0f, 0x40, 0x2f, 0x84, + 0xf8, 0x8e, 0xf5, 0x6d, 0x7b, 0x35, 0x0e, 0xba, 0xbf, 0x3b, 0x3f, 0x78, + 0x32, 0x6d, 0x19, 0x59, 0xcc, 0x2f, 0xb6, 0x11, 0x96, 0xfd, 0xd9, 0xdb, + 0xdc, 0xae, 0xe5, 0xb9, 0x8e, 0xf0, 0x76, 0xcb, 0x0d, 0xba, 0x29, 0x32, + 0xf3, 0x49, 0x99, 0x70, 0xf1, 0x37, 0xb4, 0x24, 0x7e, 0x0e, 0xf2, 0x38, + 0x57, 0x37, 0x93, 0x80, 0xc2, 0xb7, 0xe7, 0xd9, 0x50, 0xe8, 0x05, 0x63, + 0xdc, 0xd0, 0x4b, 0xba, 0xf4, 0x6e, 0xb2, 0x1d, 0x54, 0x7b, 0xf1, 0xd5, + 0xea, 0x0b, 0x18, 0xcb, 0xfe, 0x3b, 0x82, 0xbf, 0x65, 0x35, 0xbf, 0x7d, + 0x2a, 0xfa, 0x26, 0x19, 0x36, 0x8a, 0xa0, 0x5d, 0x5c, 0x8b, 0x94, 0x9a, + 0xd3, 0x07, 0x16, 0x89, 0xc1, 0x3c, 0xf1, 0x65, 0x77, 0x0a, 0x11, 0x72, + 0x5c, 0xea, 0x83, 0x5b, 0x68, 0xea, 0x8c, 0x8d, 0x3f, 0x8f, 0x56, 0x9a, + 0xe0, 0xd3, 0x9a, 0x53, 0x5e, 0xb3, 0x33, 0xfe, 0xb9, 0x84, 0x7e, 0x99, + 0xd9, 0xb1, 0xb8, 0x1c, 0xee, 0x19, 0x55, 0x7f, 0xe4, 0x92, 0xac, 0xe7, + 0x3e, 0xdb, 0x0c, 0x34, 0xec, 0x38, 0x74, 0xca, 0xa9, 0x31, 0x24, 0x1d, + 0x55, 0xc4, 0xf7, 0x1c, 0xb5, 0x7d, 0x02, 0x2b, 0xf7, 0xb0, 0xf9, 0x81, + 0x9a, 0x65, 0xfd, 0x0a, 0x5a, 0x88, 0x5d, 0x7b, 0x7c, 0xd6, 0x3e, 0x12, + 0xc1, 0x22, 0x32, 0xb3, 0xf4, 0x68, 0x08, 0x41, 0x9b, 0x3e, 0x54, 0x3f, + 0xb1, 0x78, 0xf4, 0x13, 0x77, 0x75, 0x65, 0x75, 0xf3, 0x8b, 0x24, 0xf0, + 0x08, 0x33, 0x97, 0x89, 0x48, 0x87, 0x40, 0xca, 0xf1, 0x9e, 0x78, 0xb2, + 0x8a, 0x5f, 0xa8, 0xfd, 0x75, 0x62, 0x89, 0xf5, 0x18, 0x4a, 0xa4, 0x23, + 0x25, 0x74, 0xa7, 0x90, 0x5f, 0xfb, 0xb1, 0x33, 0xa0, 0x6b, 0x07, 0x85, + 0x5c, 0xf9, 0x84, 0xba, 0xee, 0xce, 0xf8, 0xbc, 0x23, 0x02, 0x8f, 0x38, + 0x53, 0x58, 0x6c, 0xe2, 0x65, 0x5e, 0xae, 0x4b, 0x38, 0x6a, 0x1a, 0xc9, + 0x64, 0xa5, 0xb4, 0xc2, 0x46, 0x2d, 0x07, 0x03, 0xf8, 0x54, 0xf4, 0x35, + 0xc8, 0x6f, 0xd3, 0x4c, 0x3f, 0x1a, 0xc9, 0xfc, 0xa2, 0x77, 0xe3, 0xf4, + 0xe3, 0xa9, 0x6b, 0x03, 0x53, 0xd2, 0xf1, 0x51, 0x1b, 0x10, 0x8e, 0xb1, + 0x2a, 0x48, 0x2f, 0x19, 0x6b, 0x9d, 0x0b, 0x64, 0x03, 0x8f, 0xe8, 0xce, + 0x33, 0xfd, 0x8e, 0xdf, 0x7e, 0xd8, 0xb0, 0x14, 0x00, 0x0f, 0x3f, 0xc0, + 0x99, 0x6b, 0xfb, 0xf2, 0x91, 0x18, 0x16, 0x1d, 0x83, 0xe2, 0x93, 0x92, + 0x06, 0xa5, 0xd6, 0xc5, 0xb6, 0x8f, 0x56, 0x95, 0x58, 0x2b, 0x61, 0xda, + 0xbb, 0xb1, 0x73, 0x12, 0x1d, 0x21, 0xb8, 0x76, 0x10, 0x59, 0x6d, 0x72, + 0x1a, 0x1d, 0x08, 0xaa, 0x3a, 0xe2, 0x50, 0x60, 0x6a, 0xec, 0x2e, 0x32, + 0xb8, 0xe2, 0x91, 0x69, 0x66, 0xa9, 0x48, 0xf0, 0xe3, 0x8d, 0xff, 0x5c, + 0xa7, 0x7e, 0x35, 0xf1, 0xae, 0xf1, 0xe4, 0x34, 0xdc, 0xfd, 0x6c, 0x45, + 0x76, 0x0b, 0x94, 0xb7, 0x6c, 0x72, 0x71, 0xd9, 0xb4, 0x0e, 0x3f, 0x83, + 0xef, 0x8c, 0xdd, 0x78, 0x30, 0xc7, 0xf2, 0x1a, 0x8e, 0xa1, 0x2c, 0x53, + 0xdd, 0x70, 0xa0, 0x15, 0xd8, 0x0a, 0xa8, 0xb6, 0xce, 0x5f, 0x6d, 0xad, + 0x1a, 0x3c, 0x91, 0xf3, 0xc4, 0x3d, 0x13, 0xc1, 0x14, 0x69, 0x7c, 0xf4, + 0x20, 0xc1, 0x38, 0x3a, 0x86, 0x69, 0x85, 0x31, 0x51, 0x79, 0x1d, 0xed, + 0x0b, 0xaa, 0xc1, 0x33, 0xb5, 0x45, 0x91, 0xd5, 0xf2, 0x5f, 0x02, 0x71, + 0x08, 0x52, 0xe8, 0x27, 0x17, 0x54, 0x8d, 0x22, 0xeb, 0x85, 0xbe, 0x70, + 0x73, 0x69, 0xd1, 0xcf, 0x44, 0x71, 0xc9, 0xf7, 0x8f, 0xc6, 0xb3, 0xa1, + 0x8e, 0xac, 0x57, 0x76, 0x72, 0xb7, 0x74, 0x63, 0x48, 0x6b, 0x77, 0xf4, + 0x83, 0x8b, 0xb3, 0xea, 0xb8, 0xdd, 0xcf, 0x7e, 0xd3, 0xd7, 0x1e, 0x27, + 0x25, 0x82, 0x05, 0xd5, 0x33, 0xba, 0x91, 0xfa, 0x17, 0x1a, 0x1e, 0xde, + 0x36, 0xe2, 0x17, 0xab, 0x54, 0x1d, 0x27, 0x58, 0x7d, 0x3c, 0x72, 0x12, + 0xb4, 0x46, 0xaf, 0xef, 0xa1, 0x1c, 0x58, 0x83, 0x9d, 0xf1, 0x7e, 0xc7, + 0xfc, 0x8c, 0x04, 0xc4, 0x2a, 0x5b, 0x07, 0x60, 0x27, 0xcf, 0x2a, 0x79, + 0xf8, 0x7c, 0xea, 0x70, 0x52, 0xa7, 0x0a, 0xbc, 0xf7, 0x8c, 0xe7, 0x85, + 0xae, 0xd9, 0x8b, 0x24, 0xaa, 0x38, 0x1e, 0x5a, 0xee, 0xfd, 0xc2, 0xc1, + 0x68, 0x6a, 0x89, 0x3c, 0x2e, 0x07, 0xfa, 0x76, 0x44, 0xda, 0x51, 0x58, + 0xbf, 0x0b, 0x50, 0xbd, 0xf4, 0x59, 0x3f, 0xe5, 0xd3, 0xf1, 0xce, 0x51, + 0x92, 0x10, 0x44, 0x60, 0x19, 0x67, 0xd1, 0xed, 0xfc, 0xa8, 0x9c, 0x73, + 0xee, 0xc0, 0xef, 0x8c, 0x8e, 0xd7, 0x48, 0xc3, 0x3c, 0xe0, 0x9f, 0xbe, + 0x7d, 0x7f, 0x23, 0x4b, 0x65, 0x11, 0x71, 0xfa, 0x0b, 0x4d, 0x49, 0xa2, + 0xb6, 0x5f, 0xf2, 0xcd, 0x80, 0x15, 0x70, 0xe7, 0x99, 0x94, 0xd1, 0xc6, + 0x42, 0xab, 0x6d, 0x93, 0x30, 0x02, 0x17, 0xa6, 0x2d, 0x68, 0x21, 0x7f, + 0x42, 0x67, 0xbe, 0x85, 0x89, 0x2e, 0x54, 0x1c, 0xcb, 0xe1, 0x7e, 0xa2, + 0x16, 0x27, 0x94, 0x53, 0xbb, 0xb7, 0xd5, 0xdd, 0xc4, 0xcc, 0xfa, 0xf0, + 0xed, 0xa7, 0xb4, 0x37, 0x8f, 0x1f, 0xbd, 0x68, 0x03, 0xef, 0x9d, 0x4e, + 0xdc, 0x46, 0x9e, 0xd7, 0xcc, 0x6c, 0xd2, 0x19, 0x89, 0xcc, 0x5f, 0x91, + 0xa9, 0x6a, 0x7a, 0x49, 0xe1, 0xc0, 0x1c, 0x8c, 0x9c, 0xf2, 0xd3, 0x3c, + 0xe3, 0x7f, 0x3f, 0xd7, 0x41, 0xab, 0xcb, 0x70, 0x17, 0x0a, 0xde, 0x8e, + 0x1a, 0xfb, 0x12, 0x07, 0xfa, 0xac, 0xae, 0x10, 0x38, 0xff, 0x64, 0xd2, + 0xbc, 0x2d, 0x80, 0x18, 0x97, 0x82, 0xd4, 0xfb, 0xe5, 0x21, 0x4e, 0xac, + 0x87, 0x7f, 0xfb, 0xb4, 0x6d, 0x67, 0xd7, 0xba, 0xf6, 0x4e, 0x05, 0xb1, + 0x1e, 0x0c, 0x3f, 0xed, 0x5d, 0xa6, 0xb8, 0x2a, 0xa0, 0x32, 0x99, 0x06, + 0xb5, 0x5e, 0x43, 0x01, 0xca, 0xfc, 0x7b, 0x7a, 0x76, 0x00, 0x6d, 0xa2, + 0x40, 0x2f, 0xad, 0x1a, 0x43, 0x3c, 0x8e, 0xd5, 0xf8, 0xec, 0xa8, 0x63, + 0x07, 0x59, 0x73, 0x0b, 0x87, 0xde, 0x4c, 0x74, 0x15, 0xc6, 0xd1, 0xa0, + 0x35, 0xcb, 0x5d, 0x11, 0xe4, 0x9b, 0x92, 0xb7, 0x5b, 0x5e, 0xe4, 0xc8, + 0xb1, 0x16, 0x0f, 0xb3, 0xfb, 0xd7, 0x80, 0xb5, 0x34, 0x16, 0xd5, 0x35, + 0x27, 0x89, 0x1b, 0x4c, 0xda, 0xe7, 0x88, 0x76, 0xdd, 0xa8, 0x41, 0x1b, + 0xe2, 0x62, 0xb2, 0xf0, 0x15, 0x44, 0x65, 0x10, 0x9f, 0x8a, 0x73, 0xcb, + 0xa6, 0xe0, 0x3c, 0xd7, 0x45, 0x5b, 0xe2, 0x22, 0xfc, 0x1e, 0x59, 0xf8, + 0x0a, 0x8a, 0x07, 0x4a, 0xf6, 0xd3, 0x9f, 0x1c, 0xda, 0x30, 0x6b, 0xbf, + 0xb5, 0x67, 0x6a, 0x6f, 0xde, 0x94, 0x53, 0xe0, 0x9d, 0xdc, 0xcf, 0xed, + 0xdf, 0x65, 0x1d, 0xf2, 0x71, 0x73, 0x29, 0x37, 0x02, 0x08, 0xde, 0xf4, + 0x1b, 0x59, 0xee, 0x80, 0xe7, 0x16, 0x5c, 0x58, 0xd3, 0xf7, 0xd6, 0x8a, + 0xc4, 0x19, 0x9e, 0x12, 0xf4, 0xa5, 0xdc, 0xdc, 0x53, 0x19, 0x99, 0xa8, + 0x34, 0xd9, 0xb7, 0x40, 0xd2, 0xab, 0x73, 0x2f, 0xa7, 0xca, 0x89, 0xd6, + 0xca, 0x74, 0x9e, 0xc2, 0x88, 0xae, 0xbb, 0x45, 0xcc, 0xf9, 0xbd, 0xf6, + 0xce, 0xbc, 0x46, 0x4e, 0x88, 0xc2, 0x78, 0xba, 0xad, 0x2c, 0x97, 0x89, + 0x34, 0x15, 0x29, 0x03, 0x81, 0xde, 0x2c, 0x26, 0xaf, 0xa1, 0x9d, 0xc0, + 0x89, 0x90, 0x68, 0xc8, 0x6c, 0x66, 0x37, 0xcb, 0x88, 0x98, 0xb5, 0x11, + 0xb2, 0x08, 0xa2, 0xf4, 0xc6, 0xf5, 0x3f, 0x7c, 0x30, 0x8f, 0x0f, 0x37, + 0x7a, 0x53, 0x10, 0x80, 0x09, 0xb2, 0xbc, 0xcf, 0x34, 0x9b, 0x55, 0xd7, + 0x47, 0xda, 0x50, 0xbf, 0x8f, 0xe2, 0x92, 0x94, 0x4d, 0x28, 0xdd, 0x80, + 0x7d, 0x31, 0x96, 0xeb, 0xc1, 0x33, 0x3e, 0x71, 0x9d, 0x38, 0x90, 0x7c, + 0xe0, 0x0a, 0x84, 0x6f, 0xc0, 0x12, 0x35, 0x44, 0x6f, 0x17, 0xe6, 0x08, + 0xbb, 0x8a, 0x46, 0xde, 0x7f, 0xf6, 0xc0, 0xd2, 0x6d, 0x25, 0xed, 0xf2, + 0x8b, 0x4f, 0xb8, 0x39, 0x0a, 0xbd, 0x2b, 0x5a, 0xa0, 0xfb, 0xac, 0xd8, + 0xb3, 0xaa, 0x70, 0xf7, 0x53, 0x06, 0xe6, 0x51, 0x5c, 0x01, 0x57, 0x24, + 0xd1, 0xca, 0xd1, 0xe0, 0x69, 0xf6, 0xec, 0x5b, 0xec, 0xa5, 0x77, 0xfc, + 0xc6, 0x23, 0xb9, 0x4c, 0x38, 0x66, 0x72, 0xbc, 0x45, 0x6b, 0xcb, 0xbd, + 0xf2, 0x3e, 0x23, 0xcc, 0x06, 0x0f, 0xab, 0x90, 0x25, 0x05, 0x95, 0xa3, + 0x8f, 0xf9, 0xde, 0x07, 0x22, 0x7a, 0xa8, 0x52, 0x8f, 0x68, 0x5f, 0x75, + 0x01, 0xbf, 0xf6, 0x6b, 0xcf, 0xab, 0x10, 0x8c, 0x67, 0xc0, 0xb5, 0x65, + 0x2c, 0x48, 0x89, 0x3d, 0xea, 0x86, 0x95, 0xad, 0xb1, 0xfb, 0x97, 0x19, + 0xda, 0x43, 0x0f, 0x6a, 0xee, 0xd9, 0x1b, 0x27, 0xb5, 0x2b, 0x9e, 0x1e, + 0x44, 0x68, 0xf9, 0x76, 0xf2, 0x6a, 0xc5, 0x74, 0xe2, 0xf1, 0xae, 0x1a, + 0xd1, 0xdd, 0x67, 0x04, 0x0a, 0x0d, 0x0a, 0xed, 0x72, 0x86, 0x02, 0xfc, + 0x58, 0x1d, 0xdc, 0x0e, 0xb0, 0x62, 0xef, 0xb1, 0x2a, 0x4c, 0x35, 0x85, + 0x3b, 0x4a, 0x7a, 0x7a, 0x66, 0xcd, 0xa4, 0xb4, 0x09, 0x4e, 0x62, 0xc9, + 0x9d, 0x8d, 0x05, 0x56, 0xa9, 0xce, 0xe2, 0x6a, 0x2e, 0xf8, 0x01, 0x14, + 0x1c, 0x79, 0x3c, 0x36, 0x6d, 0x72, 0x85, 0x81, 0x78, 0x2c, 0x37, 0xd1, + 0xd6, 0xb8, 0x35, 0xca, 0x14, 0x90, 0xb8, 0x93, 0xdf, 0x6a, 0xe8, 0x8c, + 0xa3, 0xe2, 0x89, 0x33, 0xd3, 0xcf, 0x35, 0x3f, 0xbb, 0x1a, 0x9b, 0xa6, + 0xdc, 0x52, 0xdb, 0xe0, 0x7f, 0x04, 0xe5, 0x50, 0xa6, 0xa0, 0xca, 0x70, + 0xcb, 0xf4, 0xa3, 0x66, 0x40, 0xb2, 0xed, 0xb0, 0xdd, 0x67, 0xb4, 0x77, + 0x82, 0xa0, 0x06, 0xb0, 0xa2, 0xca, 0xd9, 0xf2, 0x6c, 0x12, 0x6d, 0x01, + 0xb4, 0x5d, 0x28, 0xc1, 0xf7, 0xe1, 0x39, 0x83, 0xed, 0x47, 0x78, 0xe5, + 0x9b, 0x29, 0x64, 0x32, 0x43, 0xa0, 0xea, 0x14, 0x5c, 0x09, 0x26, 0x00, + 0xba, 0x35, 0x81, 0x77, 0xcf, 0xab, 0x23, 0x39, 0x50, 0x1b, 0x08, 0x95, + 0xad, 0x8e, 0x96, 0xb1, 0xe3, 0x0b, 0xb1, 0x75, 0x9c, 0xc2, 0x54, 0x04, + 0x62, 0x85, 0xf3, 0x03, 0x34, 0x0c, 0xea, 0xb9, 0x8c, 0x8c, 0x74, 0x66, + 0xf0, 0x7e, 0xcb, 0xd6, 0x7e, 0xc9, 0x21, 0xe2, 0x20, 0x25, 0xec, 0xc8, + 0x5c, 0xcc, 0x50, 0x52, 0xb2, 0xc5, 0x2d, 0x62, 0xe3, 0x1d, 0x47, 0x55, + 0xb0, 0x0c, 0xdc, 0x9e, 0xd4, 0xbb, 0x86, 0x22, 0x07, 0x5d, 0xd8, 0x8a, + 0x48, 0xf7, 0xac, 0xbf, 0x78, 0xfc, 0x50, 0xb1, 0xb7, 0x43, 0x48, 0x73, + 0x89, 0x6f, 0xaf, 0xa9, 0xc3, 0xfd, 0xc3, 0xaf, 0xdc, 0xc2, 0x06, 0x4c, + 0xb8, 0x91, 0xfa, 0x4e, 0x50, 0x0b, 0xf8, 0xc4, 0xb8, 0x8a, 0x9c, 0xa7, + 0x61, 0xd4, 0xee, 0xce, 0x4f, 0x95, 0x1c, 0x4e, 0x6e, 0x3a, 0xc5, 0xd4, + 0x83, 0x03, 0xc0, 0x7c, 0x84, 0xe3, 0xc0, 0x23, 0x71, 0xf7, 0x16, 0xdc, + 0x48, 0x02, 0x2b, 0x8b, 0x84, 0xbe, 0xa9, 0x02, 0x86, 0x99, 0xfa, 0xd5, + 0xcb, 0x7c, 0xb7, 0xe9, 0xc6, 0xa9, 0x05, 0x81, 0xa3, 0x09, 0x32, 0xfe, + 0xfd, 0x8f, 0x1e, 0xa9, 0x1f, 0x7c, 0xa1, 0xcb, 0x7b, 0x21, 0xbb, 0xe9, + 0x12, 0xa1, 0x99, 0x4f, 0xeb, 0xc0, 0xc6, 0x82, 0x92, 0x44, 0xf5, 0x52, + 0xef, 0x61, 0x2b, 0xd5, 0x5d, 0x18, 0xaa, 0x5e, 0x5b, 0x02, 0x96, 0xba, + 0x0b, 0xca, 0x2d, 0xa4, 0x8f, 0x76, 0x81, 0x7f, 0xf0, 0x02, 0xdb, 0xaf, + 0x17, 0xe9, 0x6e, 0xa7, 0x65, 0x7a, 0x05, 0xa7, 0x26, 0x16, 0x4a, 0xc9, + 0xdc, 0xff, 0x3a, 0xdf, 0x87, 0xd5, 0x86, 0xa0, 0xdf, 0x35, 0x04, 0x3d, + 0x67, 0x51, 0x26, 0x38, 0xf9, 0x1c, 0x6f, 0xa8, 0xaf, 0xd5, 0x01, 0x73, + 0x58, 0xa2, 0x40, 0x09, 0x12, 0xeb, 0xda, 0xe7, 0x74, 0xa8, 0x90, 0xd8, + 0x79, 0xa5, 0xa6, 0x7a, 0x2f, 0xf3, 0x5e, 0x2e, 0xa3, 0xaa, 0x90, 0xa7, + 0x18, 0x7f, 0x75, 0xee, 0x13, 0xbb, 0x05, 0xbc, 0x62, 0x41, 0x96, 0xf5, + 0x93, 0x3d, 0x48, 0x01, 0x46, 0x5e, 0xa3, 0x2a, 0xf0, 0x53, 0x9f, 0x15, + 0x14, 0xc1, 0x3c, 0xfb, 0x8a, 0xa6, 0xf6, 0x86, 0x1b, 0xc8, 0x91, 0x49, + 0x7e, 0x9b, 0xdd, 0x75, 0xca, 0xf0, 0xfa, 0x88, 0xc0, 0x36, 0xc2, 0xc0, + 0x52, 0x4e, 0xd4, 0x78, 0x81, 0x66, 0x7a, 0x3f, 0xfa, 0xc0, 0xd5, 0xf2, + 0xd5, 0xc0, 0xbe, 0x4d, 0x91, 0xa9, 0x1d, 0x35, 0xbc, 0x20, 0x3a, 0xcb, + 0xad, 0xd6, 0xdd, 0xf2, 0x55, 0xad, 0x34, 0xce, 0xe8, 0xf6, 0x6a, 0x2e, + 0x5d, 0xea, 0x87, 0xc3, 0xfd, 0x4f, 0x1c, 0xd1, 0xeb, 0x01, 0x35, 0x84, + 0xaf, 0x46, 0x56, 0x83, 0x22, 0xe9, 0x79, 0x0c, 0x44, 0x9d, 0x84, 0x80, + 0xa0, 0x01, 0x90, 0x3c, 0x2e, 0xe9, 0xef, 0xc7, 0x72, 0x6b, 0x9c, 0x60, + 0x3a, 0xcd, 0xf8, 0xa8, 0x78, 0xa1, 0x4a, 0x40, 0x9a, 0x32, 0x97, 0xfd, + 0x6b, 0x90, 0xbf, 0xff, 0x3e, 0x6b, 0x79, 0xe0, 0xdc, 0x8b, 0x71, 0x95, + 0xbd, 0xf2, 0x40, 0x71, 0xbd, 0x99, 0x5e, 0xa6, 0xbb, 0xb4, 0x6b, 0xed, + 0x09, 0x25, 0xfc, 0x04, 0x4d, 0x4c, 0xb0, 0x46, 0xff, 0x79, 0x4f, 0x59, + 0x3d, 0x73, 0x5c, 0x42, 0xb2, 0xba, 0xf9, 0x57, 0x81, 0x37, 0xf8, 0x2f, + 0x8c, 0xe8, 0x9d, 0x54, 0xab, 0x65, 0x98, 0xef, 0x64, 0xa8, 0x81, 0xb8, + 0x00, 0x5d, 0xba, 0x4a, 0xf4, 0xc2, 0x08, 0x90, 0xda, 0x05, 0xd4, 0xbc, + 0x42, 0xbe, 0x11, 0xca, 0xde, 0x92, 0x0d, 0xb2, 0xa8, 0x90, 0x1b, 0xf9, + 0x2a, 0xde, 0xeb, 0xf9, 0xf4, 0x9e, 0xb6, 0x93, 0xa6, 0xf6, 0x6d, 0x42, + 0x21, 0xab, 0x7c, 0x11, 0xf5, 0x99, 0x7f, 0xd5, 0x7b, 0x40, 0xcb, 0xca, + 0x83, 0x2c, 0xdf, 0xd7, 0x6b, 0x59, 0xfa, 0xcd, 0x88, 0xd0, 0x6d, 0x6e, + 0xd7, 0x5f, 0x75, 0x6f, 0xaa, 0x72, 0x1f, 0xe6, 0xb0, 0x98, 0x63, 0xbe, + 0x54, 0x7c, 0xa2, 0xae, 0x46, 0xf7, 0x2e, 0xca, 0x1e, 0x72, 0xe9, 0x4c, + 0x17, 0x83, 0xa5, 0xd7, 0xa9, 0x6f, 0xa5, 0x5a, 0x39, 0x6c, 0x9f, 0x18, + 0xef, 0x6b, 0x3e, 0xf7, 0xbf, 0xd0, 0xff, 0x0d, 0xa1, 0x3b, 0xa8, 0x97, + 0xf1, 0xbe, 0x1e, 0x8b, 0xc4, 0xb0, 0x8b, 0x34, 0x57, 0x33, 0xc4, 0x5e, + 0x7e, 0xcb, 0x2d, 0x4f, 0x6a, 0xcc, 0x11, 0x2a, 0x67, 0xa4, 0x5c, 0xb3, + 0x80, 0xc9, 0xb0, 0xfb, 0x6d, 0x35, 0x73, 0xea, 0x4c, 0x92, 0x37, 0x44, + 0xed, 0x4c, 0x10, 0xd8, 0x0a, 0x6b, 0x33, 0x52, 0xeb, 0x2b, 0x5d, 0x37, + 0xab, 0xdd, 0xda, 0x3b, 0x9d, 0x80, 0xd6, 0xc3, 0xdf, 0xf5, 0x69, 0x3d, + 0x69, 0xfa, 0x41, 0xeb, 0x7e, 0x21, 0x17, 0x86, 0xba, 0x34, 0x21, 0xb3, + 0x18, 0x5d, 0x7d, 0x33, 0x40, 0xed, 0xf8, 0x4d, 0x08, 0xda, 0x89, 0x1b, + 0x50, 0xbb, 0xa2, 0xce, 0x30, 0x24, 0x2b, 0x5f, 0xd3, 0x59, 0xc1, 0xa8, + 0xd8, 0x14, 0x4c, 0x41, 0x93, 0x89, 0x0a, 0xe0, 0x61, 0xd4, 0x54, 0xb8, + 0xfa, 0x55, 0xc0, 0xb9, 0x0b, 0x4e, 0x4d, 0x53, 0xbe, 0xc9, 0xa0, 0xb5, + 0x10, 0xc7, 0xaf, 0x93, 0x75, 0x26, 0x22, 0x39, 0xe7, 0xef, 0x22, 0x6c, + 0xfa, 0x53, 0x7f, 0x31, 0x95, 0xa1, 0x73, 0x5e, 0x35, 0x78, 0x4a, 0x33, + 0xd3, 0xd4, 0x7e, 0x45, 0x42, 0xb7, 0xa2, 0x96, 0xaf, 0x27, 0x4c, 0xf1, + 0x4c, 0xfc, 0x89, 0x5b, 0x21, 0x3d, 0x37, 0xd3, 0xf4, 0xcd, 0xc3, 0xe1, + 0xfc, 0x26, 0x47, 0x84, 0x53, 0xae, 0xaf, 0x80, 0x68, 0xa5, 0x56, 0xfa, + 0x27, 0x9f, 0xa8, 0x65, 0x27, 0x6b, 0xf2, 0x60, 0xc1, 0xf6, 0x4f, 0xba, + 0x91, 0x4d, 0x8c, 0x4a, 0xb2, 0x09, 0x11, 0x57, 0x5c, 0xeb, 0x65, 0x40, + 0xb5, 0x76, 0x2f, 0x0e, 0xd3, 0x43, 0x0f, 0x19, 0xf2, 0x9c, 0xfd, 0xc2, + 0xfc, 0xac, 0xc7, 0xc6, 0xd1, 0x2c, 0xab, 0x6d, 0x16, 0x92, 0x7f, 0x78, + 0x49, 0x02, 0x72, 0x20, 0xff, 0xd4, 0x55, 0xbc, 0x7a, 0xc9, 0x86, 0xef, + 0x89, 0x40, 0x0a, 0xc2, 0xaf, 0x3f, 0xf5, 0xfa, 0x35, 0x62, 0xb6, 0x7a, + 0x4a, 0x77, 0x52, 0xc9, 0xcc, 0x1e, 0xd2, 0x9e, 0xeb, 0x31, 0x8a, 0x9a, + 0x1f, 0x7b, 0x5f, 0x21, 0x21, 0xc0, 0x21, 0x35, 0x28, 0x38, 0x08, 0xf5, + 0xde, 0x60, 0x7a, 0xb7, 0xa0, 0x68, 0xe7, 0x80, 0x65, 0xd1, 0x5d, 0x29, + 0x30, 0xdf, 0x60, 0x2c, 0x31, 0xc0, 0x35, 0x8c, 0x10, 0x65, 0x74, 0xdb, + 0x88, 0xa8, 0xf9, 0x10, 0xca, 0x9e, 0xe3, 0xdd, 0x71, 0x8c, 0xf4, 0xf5, + 0x36, 0x06, 0xf9, 0x62, 0xdd, 0x69, 0xf1, 0x48, 0xc6, 0x8d, 0x96, 0xe1, + 0xa5, 0x85, 0xbc, 0xaf, 0x55, 0xb6, 0x9e, 0x21, 0xf5, 0x76, 0x3f, 0x2b, + 0x7d, 0xb0, 0x99, 0xbc, 0xf5, 0x86, 0xd5, 0x7f, 0x0c, 0x7e, 0x39, 0xe1, + 0x9a, 0x92, 0x03, 0x9d, 0xcf, 0x47, 0x0d, 0x9f, 0x6d, 0x67, 0x3f, 0x06, + 0xa6, 0xd0, 0x4a, 0x18, 0x5c, 0x0e, 0x44, 0x00, 0x49, 0xff, 0x03, 0x16, + 0x4f, 0x47, 0x63, 0x4f, 0x81, 0xa6, 0xb9, 0x1c, 0x96, 0xa9, 0x11, 0xe4, + 0xb2, 0x93, 0x2a, 0xfa, 0x15, 0x39, 0xad, 0x29, 0xfa, 0xfc, 0x3b, 0x08, + 0x87, 0xf1, 0x14, 0x78, 0xc7, 0x4b, 0xf3, 0xdd, 0xe0, 0x44, 0x65, 0x67, + 0x1e, 0xa3, 0xda, 0x53, 0xeb, 0x0e, 0x4c, 0x09, 0x91, 0xc3, 0x11, 0x71, + 0xcf, 0xa3, 0xe6, 0xe1, 0xf7, 0x3c, 0x22, 0xbb, 0x53, 0xdd, 0xca, 0xda, + 0x23, 0xdf, 0x9d, 0x51, 0x2f, 0x92, 0xb7, 0xde, 0x47, 0x07, 0x0f, 0x06, + 0x2f, 0x2a, 0x0f, 0x9e, 0x49, 0x25, 0x46, 0xbe, 0x13, 0x14, 0xed, 0x50, + 0x2f, 0x72, 0x95, 0xe6, 0x25, 0xae, 0x65, 0x3f, 0xaf, 0x98, 0xaf, 0x0d, + 0x7f, 0xb7, 0x59, 0xd5, 0x53, 0x17, 0xa8, 0xac, 0xbd, 0x28, 0x5e, 0x2c, + 0xb5, 0x9e, 0xdc, 0x0a, 0x31, 0x0e, 0x32, 0x91, 0x92, 0x07, 0x6a, 0x37, + 0x1d, 0xa8, 0x5b, 0x87, 0x61, 0x3c, 0x76, 0x26, 0x67, 0x21, 0x81, 0x8d, + 0x3e, 0xcd, 0xb6, 0xd3, 0xa2, 0x8e, 0x7c, 0xc7, 0x44, 0x86, 0x00, 0x40, + 0x6e, 0xf9, 0xe9, 0x9c, 0x32, 0x8e, 0xda, 0xf1, 0x47, 0x9d, 0xfc, 0x6b, + 0x9a, 0x5a, 0xfb, 0xd7, 0xdb, 0xd9, 0x07, 0xaf, 0x81, 0x1b, 0x7a, 0xcd, + 0xb8, 0xa6, 0xf9, 0x61, 0x59, 0x6f, 0xad, 0xdf, 0x4f, 0xd3, 0x62, 0x49, + 0xbd, 0x8a, 0x97, 0xe0, 0xe0, 0x59, 0xaa, 0x7a, 0x9a, 0x77, 0x81, 0xe4, + 0xa8, 0x39, 0x5c, 0x36, 0xd9, 0xff, 0xf4, 0xe8, 0xbb, 0xd5, 0xb5, 0x36, + 0x45, 0xad, 0x65, 0x62, 0x56, 0x78, 0xb9, 0x60, 0x5b, 0x03, 0xc1, 0x9d, + 0x80, 0x37, 0x7f, 0xec, 0x23, 0xbd, 0x06, 0x49, 0x69, 0xdf, 0x86, 0x8c, + 0x8b, 0x94, 0x3f, 0x5a, 0xf7, 0x39, 0x14, 0xb9, 0x00, 0x93, 0xa8, 0xc8, + 0x2c, 0x06, 0x10, 0xf9, 0x29, 0x55, 0xe2, 0xc8, 0xe8, 0xba, 0x7f, 0x48, + 0x73, 0x26, 0x90, 0xe1, 0x13, 0xd0, 0xb5, 0x01, 0x8c, 0xae, 0x14, 0xfb, + 0x48, 0x67, 0x16, 0xff, 0x60, 0x04, 0x9e, 0xac, 0x53, 0xf0, 0x36, 0xdf, + 0xa3, 0x75, 0xc7, 0x90, 0x4f, 0x3c, 0x7e, 0xc5, 0x25, 0xc6, 0xf4, 0xa3, + 0x57, 0x7b, 0x17, 0x0a, 0xea, 0xee, 0x49, 0xd3, 0x01, 0xb2, 0xe6, 0xf5, + 0x18, 0x48, 0xe7, 0xba, 0x4c, 0xfd, 0x10, 0x0e, 0x9f, 0x9d, 0x6d, 0xc3, + 0x2b, 0x2d, 0xed, 0x9e, 0x79, 0x9f, 0x09, 0x2f, 0x60, 0x4f, 0xa7, 0x67, + 0x8b, 0x01, 0x95, 0xfd, 0x51, 0xf5, 0x67, 0x6f, 0x09, 0xef, 0xba, 0xfd, + 0xe3, 0xc1, 0x94, 0x28, 0x2d, 0xbe, 0x3d, 0x0e, 0x00, 0x3c, 0xf5, 0x5d, + 0x7a, 0x3a, 0x56, 0x90, 0xa2, 0x58, 0x9a, 0xc1, 0x37, 0xf3, 0x69, 0xd5, + 0x98, 0x4a, 0x1b, 0x66, 0x50, 0xc5, 0x4c, 0x11, 0xc6, 0xea, 0x79, 0xca, + 0xc8, 0x5c, 0x6f, 0x15, 0x1d, 0xa6, 0x70, 0x76, 0xaf, 0x61, 0xac, 0xfb, + 0x86, 0x4a, 0xc0, 0x5a, 0xfc, 0x27, 0x2c, 0xf1, 0x60, 0x85, 0x5c, 0xa5, + 0xd7, 0xcb, 0x58, 0x8f, 0xde, 0xdd, 0xb0, 0xa6, 0xa3, 0x39, 0x42, 0x57, + 0x3f, 0x2a, 0xb3, 0xb7, 0x07, 0xe8, 0x5a, 0xd6, 0x43, 0xdf, 0x15, 0x37, + 0x1e, 0x15, 0x73, 0x87, 0x06, 0xbe, 0x08, 0xb8, 0xd0, 0x55, 0x50, 0x2c, + 0x57, 0xe9, 0x31, 0x3d, 0x22, 0x2f, 0x50, 0xd7, 0xbb, 0x63, 0x90, 0xb2, + 0xfa, 0x93, 0x55, 0x5a, 0x67, 0x50, 0xe7, 0xef, 0x55, 0x39, 0x35, 0xd0, + 0x18, 0xca, 0xa7, 0x07, 0x38, 0xeb, 0x54, 0x6f, 0x0c, 0xb0, 0x1c, 0x73, + 0x68, 0x2f, 0xd9, 0x06, 0xea, 0xb7, 0xa0, 0x37, 0x69, 0x7c, 0x7a, 0xfc, + 0x00, 0x34, 0xc1, 0x3f, 0xc1, 0xe0, 0x84, 0xdd, 0x08, 0x9d, 0xb1, 0x67, + 0x6a, 0x51, 0xb6, 0x7b, 0x8f, 0x46, 0xc1, 0xd8, 0x4a, 0x99, 0x69, 0xc2, + 0xa5, 0x5c, 0xdc, 0xf0, 0x89, 0xe3, 0x22, 0x38, 0x0a, 0x76, 0x05, 0xe4, + 0x00, 0x86, 0x87, 0x72, 0x76, 0x84, 0x5d, 0x48, 0x3a, 0x74, 0x74, 0x3d, + 0x75, 0x84, 0xed, 0x80, 0xc3, 0x61, 0x21, 0x67, 0xdb, 0xc9, 0x82, 0x3a, + 0x64, 0xb6, 0x35, 0x55, 0x12, 0x96, 0x82, 0x42, 0xeb, 0xd8, 0xeb, 0xbc, + 0x06, 0xb7, 0x2c, 0x0d, 0xd0, 0xea, 0xb8, 0x1a, 0xd5, 0xcb, 0x1f, 0x76, + 0x0b, 0x9c, 0x9c, 0x90, 0x4b, 0x8c, 0xe6, 0xd1, 0x47, 0x80, 0xe7, 0xd2, + 0x42, 0x1e, 0xa1, 0x83, 0x87, 0xf1, 0xfb, 0x50, 0x91, 0xe5, 0x83, 0xa0, + 0x1d, 0x6d, 0x23, 0xfe, 0x87, 0xf6, 0xf2, 0x5a, 0x78, 0x7b, 0x2f, 0xa5, + 0xf3, 0x2b, 0x82, 0xf3, 0xac, 0x73, 0x6e, 0x13, 0x8a, 0xf5, 0xe7, 0x8b, + 0xe3, 0x38, 0xc6, 0x54, 0xdc, 0x12, 0x70, 0xb7, 0x60, 0x19, 0x02, 0x82, + 0xdb, 0xf1, 0x5e, 0x90, 0x1a, 0xd4, 0x0b, 0xf6, 0xa7, 0xb2, 0x43, 0xc8, + 0x01, 0xc3, 0x5e, 0x14, 0x73, 0xb1, 0x40, 0xf1, 0x6e, 0xb8, 0xa9, 0xad, + 0x9b, 0xb8, 0xe4, 0x47, 0xe1, 0xa9, 0x47, 0xf3, 0xa2, 0x82, 0xfd, 0x4c, + 0x66, 0x76, 0x0b, 0x14, 0x00, 0x03, 0x8e, 0xb8, 0xb2, 0xe4, 0xa0, 0x36, + 0xe1, 0x5a, 0xf9, 0xe6, 0x15, 0x69, 0x0e, 0xbf, 0xbd, 0xc7, 0x34, 0xa3, + 0x9c, 0x0a, 0xbf, 0x37, 0x27, 0x8e, 0xbf, 0x94, 0x76, 0x3d, 0xf0, 0x46, + 0x0f, 0x4a, 0x4f, 0xe2, 0x4b, 0xdf, 0x79, 0x5d, 0x59, 0xdd, 0xbe, 0x6e, + 0x24, 0xb3, 0x85, 0xa4, 0x7e, 0x89, 0xa6, 0xf6, 0x98, 0xb5, 0x46, 0xa2, + 0x88, 0x5c, 0x6d, 0xf7, 0x95, 0xad, 0xf0, 0xda, 0x17, 0x9d, 0xb7, 0xf8, + 0x8c, 0xea, 0x3f, 0x0c, 0xc2, 0x6c, 0xbb, 0xd9, 0xa6, 0xe7, 0x80, 0x10, + 0xca, 0xb5, 0x95, 0xd3, 0xa4, 0xd6, 0x49, 0x18, 0x1c, 0x41, 0x78, 0xf7, + 0x0c, 0x8a, 0xcd, 0xd3, 0x2b, 0x07, 0xb7, 0x78, 0x9e, 0x45, 0xb2, 0x12, + 0x7a, 0xb1, 0x3a, 0x4f, 0xa0, 0x1c, 0xe0, 0xf5, 0xe8, 0x20, 0xb3, 0x1e, + 0x8c, 0x5e, 0x23, 0x79, 0x49, 0xc3, 0xe5, 0x1a, 0x4e, 0x27, 0x69, 0xed, + 0xc4, 0x3a, 0x7f, 0xee, 0x18, 0x9b, 0x59, 0x90, 0x78, 0xd3, 0xba, 0x36, + 0x9d, 0x90, 0x1e, 0x80, 0x53, 0x53, 0xb8, 0x79, 0x8b, 0x19, 0xbf, 0x95, + 0x40, 0xe6, 0xd6, 0xd9, 0xe0, 0x18, 0x1a, 0x9e, 0x9a, 0x35, 0x14, 0x79, + 0x86, 0xde, 0xc5, 0x23, 0xfa, 0xf9, 0x29, 0x3b, 0x2c, 0x96, 0xac, 0x32, + 0x7e, 0x9f, 0x98, 0xc0, 0x1d, 0x3f, 0x1e, 0x54, 0x19, 0xc5, 0x0b, 0x30, + 0xe1, 0x64, 0x5e, 0x69, 0x04, 0xae, 0xb2, 0xed, 0xfb, 0x7b, 0x67, 0xc7, + 0xa4, 0x80, 0xd6, 0xa5, 0x90, 0x6e, 0x8a, 0x3e, 0xbd, 0x31, 0x11, 0xdb, + 0x5c, 0xf0, 0xe7, 0x3a, 0x42, 0xfe, 0x7c, 0xfb, 0xaf, 0xa5, 0x87, 0xc8, + 0xbf, 0x3e, 0xb5, 0xe5, 0xdb, 0x88, 0xfe, 0x60, 0xbb, 0xef, 0x1d, 0x34, + 0x0b, 0x92, 0xcf, 0xfc, 0x27, 0x7c, 0x9f, 0x3d, 0x95, 0xb6, 0xc8, 0xff, + 0xef, 0xfb, 0xfe, 0xd6, 0x85, 0xdf, 0xf8, 0x7e, 0x86, 0xc2, 0x1f, 0xf9, + 0x3e, 0x84, 0x7e, 0xec, 0x2c, 0x39, 0x66, 0x17, 0x88, 0xff, 0x05, 0xb5, + 0xe2, 0x5d, 0x18, 0x3e, 0x85, 0xaa, 0xd6, 0xb6, 0xee, 0x1d, 0x04, 0xe1, + 0xa1, 0xdf, 0x7d, 0x01, 0x48, 0xef, 0x74, 0x84, 0xe4, 0xa2, 0x96, 0xc5, + 0xd3, 0x7a, 0x01, 0x07, 0xf1, 0x8d, 0x4b, 0x4f, 0xbf, 0x9e, 0xfc, 0x10, + 0xe6, 0x97, 0x30, 0x16, 0x85, 0x81, 0x5a, 0x28, 0x87, 0xfa, 0xa9, 0xbf, + 0x57, 0x03, 0xd7, 0x9b, 0x2d, 0x5b, 0xcf, 0x40, 0x3f, 0x8e, 0x58, 0x85, + 0x36, 0x7d, 0x6e, 0xae, 0x3b, 0xbb, 0xfc, 0x08, 0x20, 0x6f, 0x8a, 0x30, + 0x2d, 0x8d, 0x5e, 0x1f, 0x80, 0xbc, 0x5d, 0xb8, 0x13, 0x59, 0xff, 0x6c, + 0x76, 0x03, 0x82, 0x3b, 0x17, 0xd6, 0xe0, 0x21, 0x8c, 0x75, 0xda, 0x3a, + 0x36, 0x42, 0x7a, 0xc3, 0x36, 0xc4, 0xb1, 0x0e, 0x42, 0x1d, 0xe9, 0x48, + 0xd1, 0xaa, 0xd2, 0x9c, 0xbe, 0xb3, 0x96, 0x8f, 0x36, 0x10, 0x78, 0xff, + 0xed, 0x89, 0xaa, 0x8f, 0xef, 0x6f, 0x01, 0x80, 0x5c, 0xcc, 0xe6, 0x00, + 0xa8, 0xe2, 0xf3, 0x66, 0xc8, 0x8f, 0x39, 0x33, 0x60, 0x45, 0x50, 0xd1, + 0x25, 0xea, 0x6a, 0x7e, 0x51, 0x70, 0xc4, 0x2c, 0xc0, 0xe7, 0xde, 0x4e, + 0x5e, 0xfa, 0x4c, 0xe9, 0xe2, 0x70, 0x62, 0xff, 0x25, 0x7b, 0xbb, 0x4a, + 0xf5, 0xaf, 0xd3, 0x36, 0x04, 0x98, 0x48, 0x9c, 0x89, 0xe8, 0x4d, 0xb1, + 0xab, 0x8c, 0xa8, 0xc2, 0x74, 0xcf, 0x46, 0xed, 0x4f, 0xfc, 0xae, 0xca, + 0x9d, 0x7b, 0x75, 0xc3, 0xb6, 0x11, 0x1f, 0xea, 0x53, 0x86, 0xaf, 0xf1, + 0xe5, 0xe3, 0xa1, 0x00, 0x8b, 0x49, 0x26, 0x19, 0x7b, 0xcc, 0xcb, 0x6c, + 0xd3, 0xaf, 0x31, 0xad, 0x33, 0x78, 0x73, 0x46, 0xd0, 0x84, 0x43, 0x80, + 0xc9, 0x53, 0x25, 0x20, 0x63, 0x7c, 0x72, 0xaa, 0x60, 0xe3, 0xf8, 0x6d, + 0x96, 0xf3, 0xaa, 0x65, 0x1f, 0x9b, 0xbe, 0xe9, 0x01, 0xea, 0xb8, 0xc2, + 0xc5, 0xd5, 0x89, 0x71, 0xe9, 0xe0, 0x3a, 0x92, 0xef, 0x39, 0x98, 0xa0, + 0x4a, 0x19, 0x88, 0xf7, 0xcc, 0xd5, 0x8f, 0x32, 0x23, 0xe5, 0x1a, 0xf8, + 0x0a, 0x53, 0xb9, 0xf5, 0x1d, 0xb2, 0x9f, 0xdf, 0x48, 0x34, 0x72, 0x0d, + 0x14, 0xbd, 0x31, 0xe0, 0xbb, 0x03, 0x36, 0xef, 0x2e, 0x45, 0xba, 0x87, + 0x3c, 0x2f, 0xe1, 0xe4, 0x22, 0x85, 0x1b, 0xaf, 0xfe, 0x00, 0xdb, 0x9b, + 0xbb, 0x9b, 0xf7, 0x19, 0x5a, 0x30, 0x2d, 0xe0, 0x7e, 0x32, 0xd0, 0xd9, + 0xdf, 0xc0, 0x82, 0x71, 0x5d, 0x6d, 0x58, 0x57, 0x3e, 0xa1, 0xab, 0xec, + 0xdb, 0xea, 0x57, 0xcf, 0x48, 0x0a, 0xb4, 0x70, 0x6b, 0x1c, 0x90, 0x26, + 0x27, 0x18, 0x48, 0x10, 0x01, 0x66, 0x64, 0xf4, 0xf1, 0xd8, 0xd3, 0x6f, + 0x10, 0xc7, 0x10, 0x99, 0xe1, 0xf2, 0xc4, 0x92, 0x6f, 0x7e, 0x08, 0xf8, + 0x18, 0x04, 0x09, 0x1d, 0x76, 0xdb, 0xa6, 0x7d, 0xd4, 0xf0, 0xe0, 0xba, + 0xfd, 0xc3, 0x74, 0x5b, 0xe3, 0xba, 0x6a, 0x86, 0x5f, 0x82, 0x38, 0x09, + 0x03, 0x73, 0x6d, 0x4f, 0xb9, 0xb5, 0x65, 0xe2, 0xfe, 0xdd, 0x25, 0xb8, + 0x4c, 0xa2, 0x62, 0x6d, 0x80, 0x91, 0xc0, 0x61, 0x4b, 0x17, 0x91, 0x64, + 0x24, 0xd1, 0xf5, 0xfb, 0xdc, 0xe5, 0xa8, 0x40, 0x51, 0xcf, 0x3d, 0x80, + 0x6e, 0xe2, 0xe4, 0x06, 0x96, 0xbe, 0x07, 0x71, 0x69, 0xd7, 0x45, 0x27, + 0x18, 0xee, 0x2b, 0xfd, 0x70, 0x3d, 0xd6, 0x0a, 0x05, 0x3a, 0xc1, 0x9c, + 0x3d, 0xd8, 0x60, 0x25, 0xa8, 0x62, 0x1e, 0xd3, 0xe2, 0xa6, 0xfa, 0x50, + 0xa1, 0x38, 0x9e, 0xe3, 0x22, 0x31, 0xc8, 0xb0, 0x8f, 0x45, 0xf6, 0xdc, + 0x13, 0xba, 0x69, 0xa1, 0x79, 0x03, 0x81, 0xcf, 0x3b, 0x38, 0x66, 0x1d, + 0x00, 0x72, 0x6a, 0x51, 0x14, 0x44, 0xef, 0xda, 0x83, 0x7e, 0x3a, 0xf7, + 0xd6, 0xb1, 0x6d, 0xe6, 0x2a, 0xc6, 0x8b, 0x0f, 0x6f, 0x0c, 0x62, 0x81, + 0x75, 0x46, 0xd0, 0xec, 0x49, 0x48, 0x54, 0x54, 0x76, 0x07, 0xb0, 0xf8, + 0xab, 0x39, 0x6c, 0x64, 0x23, 0xae, 0xb7, 0x28, 0x02, 0x0b, 0xae, 0x26, + 0x74, 0xd1, 0xbd, 0xaa, 0x03, 0xb9, 0x5e, 0x04, 0x73, 0x66, 0x96, 0x73, + 0x24, 0x47, 0xb5, 0x7c, 0x9a, 0x51, 0xde, 0x7b, 0x7a, 0x5a, 0xd8, 0x78, + 0x14, 0x31, 0x96, 0x37, 0x1b, 0xe0, 0x34, 0x31, 0x6a, 0x03, 0x25, 0xa4, + 0x5a, 0x19, 0x4c, 0x5e, 0x15, 0xf1, 0x3a, 0x6a, 0xf1, 0xae, 0x42, 0x59, + 0xab, 0x24, 0xbf, 0xc0, 0x0f, 0x31, 0x7a, 0x7d, 0x48, 0xe6, 0xb1, 0xaa, + 0xa5, 0xdd, 0x8d, 0x22, 0x55, 0xee, 0x11, 0x3c, 0x7f, 0x6b, 0xed, 0x0e, + 0x4c, 0x1b, 0x9b, 0x3c, 0xc5, 0xdf, 0x76, 0x6d, 0x10, 0x15, 0x39, 0x18, + 0xbc, 0x2b, 0x4c, 0x3f, 0x9b, 0xf8, 0x54, 0x3e, 0xab, 0x25, 0xec, 0xf5, + 0x5e, 0x94, 0x67, 0x6e, 0xf6, 0x30, 0x22, 0x26, 0x2e, 0x60, 0xd9, 0x10, + 0xb2, 0xcb, 0xaa, 0xee, 0x96, 0x29, 0x76, 0xb5, 0xed, 0x41, 0xa2, 0xe4, + 0xd8, 0xeb, 0x30, 0xe8, 0xa5, 0xd0, 0xa9, 0xfe, 0xbd, 0xd7, 0x12, 0xad, + 0xa5, 0x01, 0xfd, 0xe4, 0xe3, 0x0f, 0xb8, 0xc1, 0x8d, 0xfb, 0x6a, 0xc5, + 0x63, 0x84, 0x74, 0x12, 0xfe, 0xc6, 0xfe, 0x0c, 0xb0, 0x25, 0x14, 0x6d, + 0xcc, 0x60, 0x76, 0x63, 0x6c, 0xd3, 0x27, 0xfb, 0xdc, 0x4a, 0xd8, 0x71, + 0xc5, 0x0e, 0x19, 0xbf, 0xec, 0xf7, 0xb7, 0x70, 0x1f, 0xd2, 0xc1, 0xf4, + 0x94, 0xa2, 0x07, 0x19, 0x7f, 0x4b, 0xf0, 0xdf, 0x80, 0x68, 0x6e, 0x5f, + 0xdd, 0x69, 0x24, 0xfc, 0x08, 0xe5, 0x0a, 0x5d, 0x4c, 0xf3, 0xca, 0x07, + 0x30, 0x3f, 0xd1, 0x77, 0x6d, 0xb2, 0x79, 0x43, 0x76, 0xd9, 0x82, 0xc7, + 0xc2, 0xf8, 0xa1, 0xa7, 0x17, 0xcb, 0x87, 0x0a, 0x68, 0xa8, 0xe1, 0x01, + 0x00, 0xbf, 0x8e, 0x4e, 0x3c, 0x3d, 0x80, 0xec, 0x48, 0x38, 0x01, 0x65, + 0x51, 0x2f, 0x42, 0x05, 0x96, 0xc9, 0xfc, 0xd8, 0xe6, 0x7f, 0xc4, 0xec, + 0xb0, 0xac, 0x06, 0xd5, 0x32, 0x8f, 0xce, 0x51, 0x68, 0xe5, 0x0f, 0xec, + 0x3d, 0xf4, 0xfb, 0x56, 0x9e, 0x2f, 0x7a, 0xe8, 0xe9, 0xd2, 0x37, 0x4b, + 0x68, 0xe5, 0x96, 0x2e, 0x00, 0x79, 0xa3, 0xc7, 0x7b, 0xb5, 0x1d, 0x7a, + 0x39, 0xef, 0x6b, 0xe5, 0x6f, 0x85, 0x85, 0x0f, 0x3a, 0xb2, 0x02, 0x27, + 0x08, 0x49, 0x8b, 0x60, 0x6c, 0x08, 0x00, 0xec, 0x7c, 0xb2, 0x68, 0x6f, + 0x20, 0xfa, 0x87, 0x68, 0xbe, 0x87, 0x6f, 0x0e, 0xd6, 0xd0, 0x1a, 0xfa, + 0xcb, 0x2a, 0xbf, 0x13, 0x16, 0x5e, 0x41, 0x0b, 0x98, 0x12, 0xbe, 0x88, + 0x00, 0x6c, 0x7e, 0x80, 0x7f, 0x49, 0x96, 0x07, 0x2b, 0x83, 0xac, 0x71, + 0x62, 0x8a, 0x95, 0x19, 0xf9, 0xdc, 0xaf, 0x7d, 0xb2, 0x94, 0x3a, 0x8f, + 0xf6, 0xfb, 0xa6, 0x56, 0xc8, 0x60, 0x99, 0x84, 0x58, 0x5f, 0xe7, 0xc7, + 0x48, 0x52, 0xb0, 0x62, 0x87, 0xf4, 0x9d, 0x61, 0xfd, 0x91, 0xc4, 0xb4, + 0xf1, 0x49, 0x88, 0x47, 0xe3, 0x58, 0x0b, 0xb0, 0xbf, 0x16, 0xd7, 0xeb, + 0x79, 0x48, 0xe5, 0x3a, 0x27, 0x7f, 0xc2, 0x6f, 0xae, 0xb2, 0xeb, 0xf4, + 0xd9, 0x4a, 0xb0, 0x81, 0x4f, 0xdf, 0x5a, 0x78, 0x59, 0xbe, 0x87, 0xf0, + 0xd2, 0x17, 0xd0, 0x71, 0x98, 0xee, 0xf8, 0x16, 0xe0, 0xf2, 0x81, 0xc1, + 0x75, 0x57, 0x09, 0xd8, 0x12, 0xa5, 0x8f, 0xb9, 0x53, 0x73, 0x04, 0x18, + 0xa2, 0x10, 0xa3, 0xfc, 0x1b, 0xb9, 0xe0, 0xbb, 0xfc, 0x20, 0x2d, 0xb7, + 0xa5, 0x49, 0xcd, 0x7a, 0xf8, 0xbd, 0x8c, 0x52, 0x8c, 0x61, 0xba, 0xad, + 0x91, 0x90, 0xe6, 0x70, 0xf8, 0xbb, 0xaf, 0x2b, 0xb0, 0x98, 0xfc, 0x97, + 0x4c, 0x86, 0xe9, 0x6c, 0x9b, 0xe8, 0xa4, 0x68, 0xc7, 0x4f, 0x6e, 0x1b, + 0xc9, 0x3d, 0x4c, 0xd1, 0x16, 0x5a, 0x4e, 0xdc, 0x38, 0xcb, 0xba, 0x02, + 0xdb, 0x92, 0x70, 0xc2, 0x3f, 0xbb, 0x1e, 0x3f, 0x4c, 0x3e, 0xa4, 0xef, + 0x5b, 0xb4, 0x30, 0x85, 0x4f, 0x50, 0x8b, 0x9f, 0x6b, 0xc2, 0xfc, 0x0b, + 0xb5, 0x5c, 0x80, 0x0d, 0xb6, 0x4f, 0x1f, 0xef, 0xe7, 0xc5, 0xbc, 0x3b, + 0xd3, 0xdf, 0x8c, 0xe7, 0x95, 0x24, 0x3a, 0x8e, 0x2a, 0x4b, 0x4b, 0xc0, + 0xd1, 0x8f, 0xdb, 0x17, 0x0d, 0x43, 0x3e, 0x30, 0xf1, 0xcf, 0xc7, 0x3d, + 0x38, 0xbf, 0xb2, 0xcd, 0xf6, 0xf3, 0xee, 0x9a, 0x3b, 0xc8, 0x04, 0x2a, + 0x26, 0x6b, 0x74, 0xa8, 0xfc, 0x5f, 0x5a, 0xfb, 0xb9, 0xdf, 0xec, 0xb0, + 0xad, 0xc4, 0x8b, 0x3a, 0xe7, 0x1e, 0xc4, 0xbf, 0xfc, 0xad, 0xd8, 0x69, + 0x62, 0x1a, 0x3f, 0x83, 0xf7, 0x81, 0x01, 0x30, 0x1f, 0xd3, 0x8c, 0xcd, + 0x01, 0x6d, 0xa8, 0x3d, 0xd6, 0x4a, 0xb5, 0x2a, 0x1a, 0x68, 0xe9, 0xbb, + 0x6d, 0x8c, 0x4d, 0x42, 0xd5, 0x11, 0x7e, 0x64, 0xb5, 0xa3, 0xc3, 0xa8, + 0x6d, 0x16, 0xb2, 0x4e, 0x68, 0xf6, 0xd7, 0xc3, 0xb9, 0x95, 0x78, 0x47, + 0x49, 0xf9, 0x17, 0xf5, 0xec, 0x82, 0xcd, 0x04, 0xd3, 0x8f, 0x5c, 0x5d, + 0x40, 0xf1, 0xd7, 0x9f, 0x56, 0x53, 0x19, 0xc5, 0x71, 0x59, 0xc8, 0x87, + 0xce, 0x36, 0x8f, 0x7c, 0x50, 0xd6, 0xc8, 0x3a, 0x36, 0x24, 0xfc, 0xd5, + 0xbb, 0xa8, 0x00, 0x76, 0x2e, 0xf1, 0xd1, 0xba, 0x02, 0xe7, 0x28, 0xba, + 0xd0, 0x92, 0xfd, 0x04, 0xf4, 0x52, 0x0c, 0x95, 0xd8, 0x81, 0x7a, 0x99, + 0x04, 0x50, 0x72, 0x9e, 0x65, 0xb8, 0x8a, 0x1b, 0x00, 0xdd, 0x4e, 0x65, + 0x7a, 0xe1, 0x86, 0x8e, 0xec, 0xb8, 0xf1, 0xb5, 0xc4, 0xd2, 0xfc, 0x3b, + 0x0d, 0xa2, 0xf9, 0x6d, 0x2a, 0xf6, 0x02, 0x98, 0x12, 0x01, 0x77, 0x7c, + 0x09, 0x50, 0xb8, 0xbb, 0xcd, 0xd2, 0xa0, 0x7a, 0x3b, 0xe6, 0x5a, 0x88, + 0xcb, 0x78, 0x6c, 0x54, 0xc3, 0xe0, 0x69, 0xfd, 0x0b, 0x2c, 0x2e, 0x24, + 0x52, 0xf3, 0x7b, 0xf9, 0x8c, 0xe4, 0x17, 0x9a, 0x5c, 0xdf, 0xcf, 0xcc, + 0x8d, 0x55, 0xae, 0xab, 0xe0, 0x56, 0x3d, 0xee, 0x31, 0x1d, 0x62, 0xf9, + 0x4a, 0xfa, 0x1e, 0xff, 0x53, 0x9f, 0xaa, 0xf3, 0xd5, 0xc2, 0xfd, 0xbc, + 0x6d, 0x26, 0xde, 0xa8, 0x0c, 0x1e, 0x8a, 0x94, 0xa5, 0x1e, 0xd5, 0x3a, + 0x93, 0xd3, 0x85, 0x14, 0x0c, 0x26, 0x59, 0x7d, 0x91, 0x1f, 0xa3, 0x7a, + 0x51, 0x7c, 0x00, 0xb6, 0xb0, 0x6c, 0x2b, 0x44, 0xff, 0x04, 0x2c, 0xb4, + 0x93, 0x88, 0xe6, 0x48, 0x8c, 0x23, 0xcd, 0x3d, 0xdb, 0x86, 0xdc, 0x8c, + 0xe8, 0xec, 0x09, 0x78, 0x7f, 0x87, 0x2a, 0x74, 0x2e, 0x90, 0x4e, 0xdb, + 0x68, 0xa1, 0xbc, 0x87, 0xa9, 0x13, 0x58, 0x88, 0xbb, 0xaf, 0xc3, 0x58, + 0xba, 0xd5, 0xa7, 0x56, 0xf6, 0xfb, 0x44, 0x51, 0xbc, 0x7c, 0x19, 0xd1, + 0x99, 0xe8, 0x41, 0x37, 0xc9, 0x4b, 0x0e, 0xd9, 0xa6, 0x8c, 0xb9, 0x32, + 0x83, 0x6b, 0x90, 0x0f, 0x1d, 0xa6, 0xb5, 0xeb, 0x6d, 0x47, 0x67, 0xfc, + 0x44, 0xf5, 0x60, 0x03, 0x3f, 0x9f, 0x7e, 0x33, 0xbd, 0x8e, 0x61, 0xd3, + 0xf5, 0xc8, 0x6f, 0x6d, 0xad, 0x6a, 0x49, 0x3c, 0x54, 0x6f, 0xc8, 0xb4, + 0x9f, 0xa8, 0x2e, 0x4c, 0x80, 0x67, 0x8c, 0xb0, 0x46, 0x96, 0xba, 0x3b, + 0xbc, 0xdb, 0x16, 0xd2, 0xc1, 0xe0, 0xf4, 0xc5, 0xab, 0x0d, 0x1f, 0x85, + 0x4c, 0xee, 0x90, 0x94, 0xde, 0x07, 0x86, 0x74, 0xe5, 0x15, 0x2b, 0x52, + 0x33, 0x00, 0xee, 0xa8, 0x15, 0x7e, 0x27, 0xe9, 0x8f, 0x7f, 0x47, 0xb0, + 0xa9, 0xd4, 0x1c, 0x3a, 0x4d, 0xd0, 0x1f, 0xa7, 0xbf, 0xef, 0xdd, 0xc2, + 0x53, 0x02, 0x02, 0x86, 0xf6, 0xe7, 0x7a, 0x1a, 0xe5, 0x6a, 0xd6, 0x77, + 0xbe, 0x03, 0x50, 0x4b, 0x03, 0x04, 0x14, 0x03, 0x00, 0x00, 0x08, 0x00, + 0xaa, 0x05, 0x08, 0x4f, 0x21, 0x5d, 0x29, 0x69, 0x18, 0x10, 0x00, 0x00, + 0x8d, 0x10, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x74, 0x65, 0x78, 0x74, + 0x75, 0x72, 0x65, 0x73, 0x2f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x2d, + 0x31, 0x5f, 0x65, 0x61, 0x5f, 0x30, 0x2e, 0x31, 0x2e, 0x70, 0x6e, 0x67, + 0x95, 0x97, 0xf7, 0x3b, 0x1b, 0x78, 0x1c, 0xc7, 0x13, 0xd4, 0x28, 0xca, + 0xd1, 0xa6, 0xa5, 0x0d, 0x35, 0x6a, 0xb4, 0x7a, 0x2d, 0x4a, 0xad, 0xd8, + 0x2b, 0xb5, 0xb5, 0x55, 0x35, 0xe2, 0xce, 0x68, 0xac, 0xd4, 0x28, 0x82, + 0x48, 0x69, 0xed, 0xad, 0x38, 0xa3, 0x0d, 0x31, 0xab, 0x3d, 0x55, 0xa7, + 0x46, 0x39, 0x62, 0xab, 0x79, 0x62, 0x56, 0xac, 0x68, 0xad, 0xc4, 0x4c, + 0x11, 0x09, 0x49, 0x70, 0xfe, 0x80, 0xbb, 0xe7, 0xb9, 0xfb, 0x3e, 0xef, + 0xef, 0x2f, 0xdf, 0xef, 0x2f, 0x9f, 0xe7, 0xf3, 0x7c, 0xde, 0x9f, 0xe7, + 0xf5, 0x4e, 0xb4, 0xb6, 0x34, 0xe1, 0x3f, 0x2b, 0x7a, 0x16, 0x00, 0x00, + 0xf0, 0x43, 0x4d, 0x0d, 0x6d, 0x01, 0x00, 0x60, 0xd4, 0xe9, 0x05, 0x70, + 0x73, 0x9e, 0xbe, 0xfc, 0x89, 0x2c, 0x86, 0x03, 0x00, 0x82, 0x0f, 0xa0, + 0x86, 0x7a, 0x0f, 0x42, 0x31, 0x5b, 0xf3, 0x5b, 0x4f, 0xa5, 0xe5, 0x85, + 0x74, 0x6d, 0xe6, 0xd6, 0xe9, 0x91, 0x2b, 0x33, 0xe2, 0xcd, 0xef, 0xcb, + 0x15, 0xad, 0xbd, 0x2e, 0xf7, 0x35, 0x7e, 0x47, 0x95, 0x7d, 0x1d, 0xca, + 0x76, 0x2c, 0x8c, 0x4a, 0x01, 0xec, 0x26, 0x5f, 0x37, 0xca, 0x94, 0x86, + 0xfe, 0xa3, 0xf4, 0x22, 0xb4, 0xc0, 0x51, 0x0d, 0x61, 0xfc, 0xda, 0x15, + 0x57, 0xf6, 0x60, 0xac, 0x6c, 0xc2, 0x5a, 0x1f, 0xda, 0x0a, 0x8f, 0x5a, + 0xeb, 0x85, 0x95, 0xbb, 0x70, 0x97, 0xe2, 0x4b, 0xd7, 0x7a, 0xa0, 0x89, + 0x05, 0x69, 0x73, 0x74, 0x6a, 0x8b, 0xce, 0xd3, 0xfd, 0x0f, 0x6a, 0x1b, + 0xee, 0x33, 0x7c, 0xe6, 0xce, 0x67, 0x9c, 0x03, 0xd2, 0x5d, 0xd1, 0x16, + 0xcf, 0x41, 0x1d, 0x0a, 0xc7, 0x48, 0x44, 0x72, 0x8c, 0x3d, 0x2f, 0xb5, + 0x15, 0xbb, 0xa2, 0x2a, 0x71, 0x3c, 0x58, 0x53, 0x43, 0xc2, 0x77, 0x2e, + 0x4c, 0x72, 0x1e, 0xd9, 0x1c, 0x35, 0x3d, 0xb7, 0xcc, 0x8b, 0x85, 0x07, + 0x08, 0x2d, 0xde, 0x8a, 0x7d, 0xb5, 0xac, 0x5c, 0x7a, 0xc0, 0xb3, 0xf5, + 0xfb, 0x5e, 0x45, 0xd5, 0x0b, 0x06, 0xc5, 0xd0, 0x68, 0x9b, 0x29, 0x72, + 0x8f, 0x55, 0x5b, 0x03, 0x0f, 0x23, 0xb2, 0x9c, 0x8f, 0x78, 0xcd, 0xda, + 0x4a, 0x37, 0xa0, 0x57, 0x3f, 0x69, 0x56, 0x92, 0xc8, 0x37, 0x3c, 0x21, + 0xe9, 0x4e, 0xec, 0xe1, 0xc3, 0x3b, 0x3b, 0xf0, 0x15, 0x11, 0x5d, 0x79, + 0x3a, 0x5b, 0x32, 0x0c, 0x50, 0xab, 0xea, 0x54, 0xd9, 0x44, 0x46, 0x14, + 0x95, 0xd0, 0x37, 0x0a, 0x0e, 0xd6, 0x92, 0xb9, 0x18, 0x8a, 0x49, 0xeb, + 0xa2, 0x84, 0x85, 0x54, 0x1d, 0xb3, 0xaa, 0x42, 0x00, 0xf1, 0x1a, 0x17, + 0xe4, 0x10, 0x6a, 0x7c, 0xb7, 0xab, 0x6e, 0xaa, 0xf9, 0x0a, 0xfd, 0xd2, + 0xa6, 0x07, 0x31, 0xb2, 0x63, 0x9d, 0x47, 0x57, 0x71, 0x28, 0xe9, 0xea, + 0xae, 0xb4, 0x53, 0xaf, 0x71, 0x13, 0x3c, 0xdb, 0x19, 0x75, 0x85, 0xfb, + 0x70, 0x49, 0xda, 0x7f, 0x7c, 0x80, 0xe7, 0xdb, 0xb0, 0x8a, 0x65, 0xa7, + 0xde, 0xd5, 0x6e, 0xb5, 0xf1, 0xcb, 0x86, 0x3c, 0xd1, 0x91, 0x88, 0xf3, + 0xb7, 0xbe, 0x13, 0xe6, 0xfa, 0x4f, 0xfa, 0x7a, 0x8b, 0xe9, 0xb7, 0x4d, + 0x28, 0x7b, 0xef, 0x66, 0xe2, 0x2d, 0xe5, 0xb2, 0xa6, 0xc0, 0x83, 0xe9, + 0x1d, 0x69, 0xe7, 0x44, 0x82, 0xd5, 0x24, 0x0e, 0xcd, 0x9a, 0x90, 0x52, + 0x4f, 0x68, 0x7b, 0xdc, 0x64, 0xa8, 0x55, 0x44, 0xcc, 0xee, 0xd8, 0xa0, + 0xc0, 0xd8, 0xce, 0x55, 0x3a, 0x5a, 0xa0, 0x9c, 0x22, 0x2e, 0x82, 0x0c, + 0x09, 0xe1, 0xde, 0x57, 0x67, 0x98, 0xdd, 0x0a, 0xe0, 0x8e, 0x8e, 0x94, + 0xc7, 0x94, 0x61, 0x25, 0x74, 0x10, 0x46, 0xf8, 0x23, 0xbb, 0x1c, 0xb7, + 0x9f, 0x70, 0xfc, 0x5b, 0x07, 0x9f, 0x20, 0x34, 0x70, 0xfa, 0x0b, 0xd8, + 0xc7, 0x0a, 0x8f, 0x12, 0x24, 0x03, 0x5c, 0x26, 0x3d, 0x50, 0x36, 0x2c, + 0x3e, 0xb0, 0xec, 0x38, 0x40, 0x9a, 0xd4, 0x91, 0x58, 0x1d, 0xf4, 0x15, + 0x1c, 0x83, 0x4d, 0xe5, 0x85, 0x7d, 0xc0, 0x23, 0x2d, 0x01, 0x86, 0xa5, + 0x1b, 0x58, 0x0d, 0x4a, 0xa8, 0x22, 0x59, 0xfc, 0xe7, 0xf0, 0x42, 0xc5, + 0x70, 0x5e, 0xd4, 0xe0, 0x8e, 0x3f, 0x5b, 0x9e, 0x54, 0x95, 0x86, 0x72, + 0xf1, 0x42, 0x42, 0x99, 0x0f, 0x73, 0x56, 0x23, 0xf4, 0x0b, 0x2d, 0xc2, + 0x45, 0x1d, 0x18, 0xe1, 0xc1, 0x8c, 0x21, 0x27, 0x4e, 0xb4, 0x6e, 0x7a, + 0x00, 0x31, 0xe3, 0x1f, 0x83, 0x66, 0xf4, 0xe4, 0x3e, 0x29, 0xa8, 0x58, + 0xbb, 0x34, 0x78, 0xa7, 0xeb, 0x2d, 0x37, 0xd6, 0x5e, 0x5a, 0x19, 0xdc, + 0x15, 0x25, 0xec, 0x88, 0xe9, 0x1e, 0xa9, 0x3a, 0xfa, 0xdd, 0xca, 0xee, + 0xe3, 0x99, 0x40, 0x8d, 0x23, 0xa9, 0x77, 0x4c, 0x1e, 0xc4, 0x5c, 0xa2, + 0xe4, 0x21, 0x2a, 0x04, 0x1f, 0xbe, 0x21, 0xe1, 0x1c, 0x12, 0xd2, 0x08, + 0x14, 0xe4, 0x4f, 0xde, 0x6e, 0xaa, 0x34, 0x05, 0x7c, 0xf1, 0x7d, 0x0a, + 0x70, 0xc4, 0x6e, 0x04, 0x81, 0xc9, 0x6e, 0x54, 0x26, 0x23, 0xc4, 0x4c, + 0xe5, 0xe6, 0xcc, 0x72, 0x34, 0xde, 0x31, 0x0b, 0xcf, 0x23, 0x41, 0x26, + 0x5f, 0x8a, 0x9c, 0x29, 0x40, 0xaa, 0xe5, 0xa3, 0x84, 0x7e, 0x03, 0x3f, + 0x76, 0x9c, 0x7f, 0xff, 0x5d, 0x49, 0x54, 0x93, 0xc1, 0x9f, 0x31, 0xfa, + 0xdb, 0x4c, 0x5e, 0x95, 0x93, 0xd1, 0xa5, 0xe1, 0xca, 0x43, 0x03, 0x13, + 0x3f, 0x2e, 0x75, 0x9a, 0x6d, 0x60, 0xb7, 0x55, 0x15, 0x97, 0x43, 0xcb, + 0xcd, 0x40, 0x96, 0xc9, 0xae, 0x07, 0x29, 0x64, 0x64, 0x79, 0x38, 0xd7, + 0xce, 0xa0, 0x6a, 0x91, 0xaa, 0xb9, 0x49, 0xe4, 0xfb, 0xd9, 0x60, 0x0c, + 0xee, 0x19, 0x5d, 0xe8, 0x76, 0x4c, 0x6e, 0x6e, 0x20, 0xa5, 0x35, 0xbf, + 0xb8, 0xae, 0x84, 0x97, 0xc4, 0x92, 0x14, 0x4d, 0x7d, 0x49, 0x1c, 0xdf, + 0x2e, 0x56, 0x68, 0x25, 0x87, 0xfe, 0xd5, 0x14, 0xdf, 0xfa, 0x52, 0x66, + 0xfe, 0x00, 0x61, 0xb3, 0xf4, 0xd1, 0xe3, 0x7d, 0xf4, 0x4d, 0x2d, 0x76, + 0xeb, 0x07, 0x20, 0xc4, 0x15, 0xb1, 0xe4, 0x32, 0x0c, 0x80, 0x28, 0x25, + 0xa3, 0xa3, 0xb8, 0x2a, 0x26, 0x2e, 0x17, 0x0a, 0x8b, 0xab, 0x8d, 0xb2, + 0xcd, 0x53, 0xaf, 0x83, 0xac, 0x16, 0x08, 0x03, 0x6a, 0xba, 0x6e, 0x51, + 0x21, 0xd6, 0x72, 0x7e, 0xb0, 0xb6, 0xac, 0x15, 0x6a, 0xc1, 0x0c, 0x67, + 0xf8, 0x49, 0xd6, 0xc6, 0x2f, 0x75, 0xe2, 0xe3, 0xb6, 0xda, 0x67, 0xee, + 0x18, 0x83, 0x59, 0x3e, 0xdd, 0x84, 0xcf, 0x5b, 0x11, 0x07, 0x82, 0xe1, + 0xac, 0x8b, 0x0c, 0x77, 0xdd, 0xba, 0x23, 0x3e, 0xc2, 0xbc, 0xee, 0x85, + 0x87, 0x39, 0x2f, 0xb2, 0x86, 0x07, 0xfd, 0x13, 0xb7, 0x88, 0xfc, 0xd9, + 0x8c, 0x7b, 0xb5, 0x56, 0xb7, 0x21, 0xc9, 0x99, 0xb2, 0x52, 0x22, 0xde, + 0xbf, 0xd6, 0xfd, 0x76, 0xe6, 0xf0, 0xbd, 0x8c, 0x8a, 0x1d, 0x16, 0x38, + 0x24, 0x14, 0xad, 0x51, 0xf4, 0xfa, 0x07, 0x23, 0x8d, 0xaf, 0x7e, 0x64, + 0x36, 0x23, 0x45, 0x08, 0x25, 0xff, 0xc1, 0x1e, 0xd5, 0xe0, 0x72, 0x16, + 0x72, 0x74, 0x5e, 0x70, 0x2b, 0x2a, 0x94, 0x71, 0xa3, 0xc6, 0xe6, 0xa2, + 0x9f, 0xc9, 0xb6, 0x5e, 0x21, 0x06, 0xf0, 0x8e, 0xeb, 0xa5, 0x28, 0x52, + 0xde, 0xd2, 0x49, 0x28, 0xdf, 0x51, 0xcf, 0x34, 0x93, 0xe6, 0xcf, 0xd6, + 0x18, 0x1f, 0xb2, 0x75, 0x3f, 0x93, 0x18, 0xc8, 0xd6, 0x87, 0x4f, 0x34, + 0xab, 0xcc, 0x10, 0x4b, 0xe8, 0xcb, 0xa1, 0xf7, 0x5d, 0xec, 0xa0, 0x2a, + 0x0c, 0xd0, 0x47, 0x1a, 0x3e, 0x5d, 0xa8, 0xa6, 0x0a, 0xcf, 0x7a, 0x13, + 0x78, 0x8a, 0xf0, 0x40, 0xb2, 0x7a, 0x7e, 0x5b, 0xb6, 0x13, 0x29, 0x4f, + 0xf9, 0xee, 0x81, 0x8c, 0x3f, 0xb6, 0x7f, 0xef, 0x8a, 0xec, 0xc2, 0x25, + 0xa5, 0x09, 0xdd, 0x38, 0x55, 0xdf, 0x15, 0x91, 0x28, 0xc9, 0x4f, 0xfe, + 0xe5, 0x91, 0xe5, 0xa1, 0x3f, 0x99, 0x67, 0x9e, 0xef, 0x1e, 0xe0, 0x69, + 0x7f, 0xe8, 0xa8, 0x30, 0xb1, 0xa4, 0x97, 0xca, 0xbc, 0xd1, 0x87, 0x28, + 0x73, 0x2e, 0x29, 0xed, 0x41, 0x4d, 0xac, 0x29, 0x03, 0x02, 0x17, 0xcd, + 0x90, 0xf9, 0xa4, 0x9a, 0x50, 0x2d, 0xce, 0x16, 0x8e, 0x20, 0x2c, 0xb4, + 0x6c, 0x61, 0x58, 0x34, 0xe3, 0xd4, 0xc3, 0xff, 0x59, 0x6d, 0x99, 0x2e, + 0xbb, 0x0a, 0xef, 0x69, 0xeb, 0x11, 0xc6, 0xa2, 0xb2, 0xe1, 0x3b, 0xb9, + 0x9d, 0xde, 0xd1, 0xd2, 0x60, 0xfa, 0x75, 0x2c, 0xd7, 0x08, 0x11, 0x6e, + 0x93, 0xea, 0x7a, 0xad, 0xfe, 0xbb, 0x1c, 0xbc, 0xa7, 0xa5, 0xef, 0x86, + 0x04, 0xe3, 0x7a, 0x36, 0x79, 0x7d, 0x0f, 0xa6, 0x83, 0x7f, 0x0e, 0xea, + 0xaf, 0x4c, 0x71, 0x2b, 0xab, 0xfb, 0x1e, 0x58, 0xc6, 0x19, 0x12, 0xf4, + 0xc5, 0xf7, 0x6d, 0x79, 0x90, 0xf6, 0xbc, 0xdc, 0x34, 0x8f, 0xd1, 0x48, + 0xf2, 0x2b, 0x41, 0x64, 0xaa, 0x3d, 0x7b, 0x6d, 0xc7, 0xde, 0x30, 0x5e, + 0xaa, 0x6f, 0x24, 0xce, 0x96, 0x88, 0xad, 0x52, 0xf0, 0xe9, 0x5a, 0x78, + 0xd8, 0x46, 0x8e, 0x9c, 0x69, 0x9f, 0x95, 0x1c, 0xb6, 0xee, 0x1b, 0x75, + 0xc3, 0xee, 0xef, 0x98, 0x24, 0xa2, 0xaf, 0x6b, 0x25, 0x1d, 0x25, 0x69, + 0x86, 0x03, 0xa7, 0xd0, 0xb3, 0x6f, 0xda, 0x3f, 0x46, 0xa6, 0xcf, 0x71, + 0x42, 0x36, 0xe6, 0x2f, 0x35, 0xd5, 0x9d, 0x3b, 0xfe, 0x70, 0x70, 0x0d, + 0x2c, 0x5e, 0xee, 0xd2, 0x9d, 0xdd, 0x8d, 0x75, 0x56, 0x4e, 0xd1, 0x8a, + 0x82, 0xc9, 0x1d, 0xcd, 0x29, 0x27, 0x15, 0x8c, 0xc9, 0x84, 0x6f, 0xe3, + 0x05, 0x03, 0xb1, 0x9b, 0xa2, 0x04, 0x78, 0xd3, 0xa7, 0x3b, 0xe9, 0x21, + 0xe6, 0x00, 0x24, 0x5b, 0x0a, 0xc6, 0x74, 0x9f, 0x6f, 0x8e, 0x79, 0xff, + 0x04, 0xbc, 0x16, 0x28, 0x2b, 0xab, 0x64, 0xce, 0x36, 0x9a, 0xfa, 0x94, + 0xad, 0xd2, 0xad, 0x97, 0xc3, 0x7f, 0x93, 0x31, 0x69, 0x4c, 0x79, 0xf2, + 0x8d, 0x9c, 0x6b, 0x9b, 0xa0, 0x44, 0x25, 0x35, 0xcf, 0xbd, 0xad, 0xaf, + 0x81, 0x08, 0xa7, 0xc1, 0x9a, 0x6b, 0xcf, 0x88, 0x56, 0x51, 0xd2, 0x09, + 0xc1, 0x3c, 0xa6, 0xf8, 0x5a, 0x6e, 0xea, 0xc3, 0x52, 0x54, 0x68, 0x59, + 0xcb, 0x7b, 0xb7, 0xb7, 0x16, 0xbf, 0x20, 0x15, 0x20, 0xa0, 0x4a, 0xd9, + 0x28, 0x4d, 0x1e, 0x83, 0x7b, 0x32, 0xbf, 0x4f, 0x7f, 0x13, 0xaf, 0xe7, + 0x36, 0x16, 0xe0, 0xcb, 0x98, 0xeb, 0x67, 0x92, 0x8f, 0x4e, 0xae, 0xb3, + 0x3a, 0x6a, 0x71, 0xee, 0x66, 0x81, 0x77, 0xe2, 0x43, 0x82, 0x47, 0x9a, + 0x2b, 0x24, 0x24, 0xc5, 0xf3, 0x9a, 0x15, 0x8d, 0x9f, 0xbf, 0x8e, 0x66, + 0x9c, 0x6b, 0xf7, 0x6d, 0x2f, 0x5e, 0x3d, 0x17, 0x2c, 0x88, 0x33, 0x1c, + 0xde, 0xd3, 0xf4, 0x3c, 0x5a, 0x58, 0x1d, 0xf9, 0x7a, 0x80, 0x44, 0x72, + 0xef, 0x28, 0x0e, 0xd8, 0x6e, 0x43, 0x92, 0x54, 0x98, 0x87, 0xe3, 0x9e, + 0x50, 0x17, 0x29, 0x6d, 0x03, 0x97, 0xd2, 0xd5, 0x08, 0xf9, 0xa5, 0x8e, + 0x78, 0xa1, 0x48, 0x81, 0x1a, 0x50, 0xda, 0xcd, 0x6f, 0x96, 0x41, 0xdc, + 0x61, 0x67, 0x46, 0xcd, 0xc4, 0xf4, 0x6d, 0x04, 0xb3, 0x5a, 0x8d, 0x87, + 0xf3, 0x45, 0xab, 0xc0, 0xcb, 0xfd, 0x3e, 0x31, 0x30, 0xde, 0xdc, 0x69, + 0x4d, 0xbb, 0x85, 0x06, 0x86, 0xd1, 0x1f, 0x43, 0x9f, 0xa4, 0x85, 0x8c, + 0x20, 0xa1, 0x42, 0x32, 0xf3, 0x0a, 0x33, 0xda, 0x9f, 0x29, 0xd8, 0xfa, + 0x7d, 0x58, 0x9e, 0x70, 0x3b, 0xdc, 0xf1, 0x89, 0x03, 0x1a, 0x7a, 0xb4, + 0x5a, 0x3d, 0xfc, 0xbb, 0x2c, 0x91, 0x11, 0x00, 0x9f, 0x99, 0xe6, 0x9b, + 0x27, 0xfb, 0xfa, 0x7a, 0x59, 0x6c, 0x12, 0xcf, 0xba, 0xd2, 0xd4, 0xaf, + 0xe5, 0x3b, 0x01, 0x0b, 0x8c, 0xd0, 0xe7, 0x15, 0x0d, 0xb6, 0xe9, 0x9c, + 0x79, 0xe6, 0x94, 0x16, 0x6b, 0x99, 0x1a, 0x9a, 0x77, 0x57, 0x03, 0xf4, + 0xa0, 0xdb, 0x4e, 0x10, 0x67, 0xf2, 0x89, 0x9b, 0xab, 0x98, 0x7e, 0xfe, + 0x5e, 0x8e, 0x7e, 0xc2, 0xfa, 0x30, 0x4c, 0xc3, 0xa6, 0xfe, 0x70, 0xbe, + 0x12, 0x98, 0x14, 0xde, 0x1e, 0x00, 0xa4, 0x62, 0x88, 0x39, 0x92, 0x66, + 0x05, 0x11, 0x02, 0x51, 0x99, 0xa6, 0xb8, 0xbb, 0x68, 0x68, 0xb4, 0x0d, + 0xf5, 0x60, 0xfb, 0x12, 0xc2, 0xfd, 0xa2, 0x73, 0x0e, 0xcb, 0xef, 0x44, + 0x33, 0x7c, 0x48, 0x0a, 0x87, 0x70, 0xe6, 0x9e, 0x41, 0x2a, 0xad, 0xe3, + 0x73, 0x34, 0x6a, 0x2e, 0x0a, 0x06, 0x5f, 0xa8, 0x41, 0xd3, 0x26, 0x65, + 0x71, 0xdd, 0x15, 0x16, 0x9e, 0x38, 0xd5, 0x3a, 0x9d, 0xe4, 0xed, 0xd2, + 0x43, 0x59, 0x91, 0x7a, 0x7e, 0x93, 0x8f, 0x79, 0x98, 0xd0, 0x9f, 0x7c, + 0x49, 0x27, 0x24, 0x8e, 0x40, 0xc7, 0x04, 0x61, 0xca, 0xb5, 0xae, 0xfb, + 0x8f, 0xa8, 0x73, 0x12, 0x3d, 0xb3, 0x06, 0x7e, 0x5d, 0x34, 0x06, 0xa4, + 0x09, 0x7c, 0xe7, 0xc2, 0x16, 0xd1, 0x28, 0x15, 0xe4, 0x77, 0x73, 0xf6, + 0xfa, 0x1d, 0x03, 0xcd, 0x20, 0xe2, 0xd7, 0x16, 0xf5, 0x1a, 0x11, 0x4c, + 0x62, 0xf5, 0x42, 0x52, 0x21, 0xb3, 0x6e, 0xd0, 0x8f, 0x21, 0x89, 0x64, + 0xc7, 0xc5, 0xc3, 0xfa, 0xc6, 0x1e, 0x79, 0xf4, 0x87, 0x61, 0x89, 0x6f, + 0x08, 0x10, 0xa0, 0x7b, 0x78, 0x9c, 0x3d, 0xdc, 0xa3, 0xef, 0x32, 0x43, + 0x85, 0x6c, 0x1b, 0x78, 0x85, 0x8b, 0x3f, 0x94, 0x33, 0xe3, 0x51, 0xdc, + 0x6f, 0x02, 0xe8, 0x1f, 0x65, 0x83, 0x13, 0x27, 0x13, 0x0e, 0x04, 0xd1, + 0xcf, 0xc2, 0x51, 0x92, 0x25, 0x20, 0x1f, 0x19, 0x11, 0x90, 0xa0, 0xca, + 0xa2, 0xbb, 0xea, 0x4c, 0xae, 0x57, 0xfe, 0xbc, 0xb0, 0x6e, 0x0e, 0x47, + 0x49, 0x7d, 0x34, 0xc8, 0x4f, 0xa0, 0xe6, 0x17, 0x94, 0xd2, 0x15, 0xde, + 0x5d, 0x77, 0x5d, 0x7c, 0x69, 0x95, 0x63, 0xf1, 0xc1, 0xf9, 0x91, 0x4b, + 0x61, 0x77, 0x0d, 0x6d, 0x3f, 0x48, 0xe1, 0xfc, 0xca, 0x4b, 0x8a, 0xc5, + 0xb9, 0xc4, 0x5d, 0x2c, 0x86, 0xcd, 0x74, 0x9f, 0x75, 0x77, 0xb4, 0x19, + 0x27, 0xbf, 0x61, 0xa9, 0xc4, 0xe4, 0xdb, 0xa8, 0x2e, 0x0f, 0xfa, 0x9a, + 0xdd, 0xc4, 0x10, 0xf8, 0xb3, 0x59, 0xaa, 0xd2, 0xe0, 0xfa, 0x5f, 0xfa, + 0xd5, 0x33, 0xeb, 0x39, 0x23, 0x4a, 0x28, 0x22, 0x8d, 0x14, 0xf6, 0xbc, + 0x6b, 0x77, 0x6f, 0xbe, 0x50, 0x92, 0x86, 0x20, 0xfe, 0x28, 0xee, 0x99, + 0xcd, 0x7a, 0xcf, 0x49, 0xc5, 0x30, 0xce, 0x72, 0xd0, 0xc4, 0x74, 0x93, + 0xed, 0x01, 0xdd, 0x79, 0xd7, 0x76, 0x10, 0xf3, 0x49, 0x5f, 0x50, 0x00, + 0x4a, 0xd8, 0xd1, 0x7d, 0xdb, 0x7b, 0x56, 0xe6, 0x80, 0xee, 0xfb, 0x11, + 0xae, 0x43, 0x99, 0x4e, 0x8d, 0x16, 0x61, 0x9c, 0xb7, 0xe1, 0xbb, 0xdd, + 0x19, 0x5b, 0x6a, 0xee, 0x3e, 0x56, 0x41, 0x3f, 0x7f, 0xe3, 0x6c, 0xe1, + 0xca, 0x70, 0x8c, 0xeb, 0x96, 0x6d, 0xf8, 0x35, 0x67, 0xa9, 0x9b, 0x36, + 0x21, 0xb7, 0x6f, 0x96, 0xb8, 0x67, 0x53, 0x21, 0x0b, 0x70, 0xd8, 0x1d, + 0x5f, 0x9c, 0xdc, 0x1b, 0xca, 0x57, 0xd3, 0x02, 0xf9, 0x7d, 0xc0, 0x00, + 0xb6, 0x87, 0x1a, 0x87, 0x07, 0x18, 0xe7, 0x78, 0xd5, 0x39, 0xc7, 0x02, + 0xae, 0xf6, 0x30, 0xf2, 0x9c, 0x5d, 0xce, 0x9e, 0x8c, 0xb7, 0x09, 0x03, + 0xaf, 0x0d, 0xfb, 0x3a, 0x49, 0x77, 0xff, 0x72, 0xac, 0xb3, 0x61, 0x0a, + 0x0e, 0x15, 0xb6, 0x7f, 0xa5, 0x46, 0xf6, 0xe4, 0x5a, 0x2f, 0x71, 0x65, + 0x4e, 0x8d, 0x6a, 0x00, 0x4d, 0xc7, 0x6e, 0xd5, 0x07, 0xb2, 0xf9, 0xef, + 0x83, 0x78, 0xf7, 0x43, 0xad, 0x97, 0x8e, 0x93, 0x16, 0x46, 0xbe, 0x98, + 0x6e, 0xfa, 0x1d, 0x71, 0xa3, 0x1d, 0x5d, 0xbd, 0x2e, 0x6c, 0x7c, 0xe3, + 0xa3, 0x00, 0x39, 0x96, 0xae, 0xeb, 0x9f, 0xba, 0xfe, 0xff, 0x68, 0xed, + 0xf3, 0x41, 0xa8, 0x06, 0x00, 0xb1, 0x27, 0x1a, 0x61, 0xa9, 0xbe, 0x8a, + 0x3b, 0x90, 0xaf, 0x19, 0x7f, 0xc5, 0x2c, 0x2c, 0xa4, 0x8f, 0xa5, 0xe3, + 0xee, 0xb5, 0x09, 0x1a, 0x63, 0x4d, 0xc6, 0x93, 0xb3, 0x84, 0x34, 0xc1, + 0x4d, 0x94, 0xb5, 0xb0, 0xc8, 0xb9, 0xf5, 0xc7, 0x01, 0x5f, 0xfb, 0xeb, + 0x44, 0xf2, 0xfe, 0x3c, 0xfb, 0xe7, 0xa2, 0x58, 0x0f, 0xe3, 0x35, 0x4b, + 0xe1, 0xe5, 0x63, 0x16, 0x65, 0x06, 0xc4, 0x53, 0x03, 0x22, 0xa3, 0x75, + 0x06, 0x11, 0xfa, 0xac, 0x5c, 0x37, 0x37, 0x3c, 0x36, 0xb6, 0xad, 0x92, + 0x9f, 0x51, 0xca, 0x78, 0x76, 0x84, 0xb9, 0xcd, 0x8b, 0x5f, 0x94, 0xee, + 0x76, 0x39, 0x2b, 0xd5, 0x0f, 0x37, 0xde, 0x11, 0x9e, 0x79, 0x48, 0xb2, + 0x72, 0x64, 0xdf, 0x5f, 0x48, 0x4c, 0x9a, 0xa3, 0x2b, 0x67, 0x1f, 0xc0, + 0xdd, 0xf0, 0xbb, 0x2d, 0x87, 0xcd, 0x8c, 0x8b, 0x39, 0xcf, 0x4d, 0xa6, + 0xb2, 0x74, 0xdd, 0x91, 0x76, 0xf8, 0xd1, 0x47, 0x23, 0xe1, 0x62, 0x4d, + 0xa7, 0x9d, 0x5f, 0x5a, 0xc2, 0x0f, 0x28, 0x47, 0xd9, 0x6e, 0x9f, 0x01, + 0xe1, 0x00, 0x4f, 0x10, 0x8d, 0x76, 0xcf, 0x46, 0x67, 0x75, 0x8d, 0x28, + 0x53, 0x9a, 0x3b, 0xe3, 0x17, 0x05, 0xa8, 0x6e, 0xe7, 0x27, 0x55, 0xfe, + 0x68, 0xbb, 0x1c, 0x99, 0xe3, 0x00, 0x01, 0xb6, 0x98, 0x9d, 0x0b, 0xdf, + 0xcd, 0x4a, 0x79, 0x1a, 0xe7, 0x55, 0x8d, 0x54, 0xdf, 0x56, 0x24, 0x0c, + 0xb6, 0x9c, 0xbc, 0x9c, 0x14, 0x8e, 0x72, 0xcd, 0xbb, 0xa0, 0xb7, 0x0c, + 0x6d, 0x4c, 0x4b, 0x0d, 0xc4, 0xcb, 0x35, 0xd3, 0xd4, 0x04, 0x77, 0x7b, + 0xa1, 0xdf, 0xde, 0xfe, 0x26, 0xdc, 0x5e, 0xe0, 0x83, 0x89, 0x89, 0xd6, + 0x4d, 0x08, 0x78, 0x7b, 0x37, 0x41, 0x88, 0xf3, 0x64, 0x46, 0x0e, 0xd6, + 0x59, 0xd3, 0x94, 0x75, 0xf2, 0x2a, 0xdd, 0x80, 0xf2, 0x6b, 0x1a, 0x91, + 0x64, 0x53, 0x2f, 0x50, 0x60, 0x2d, 0x53, 0xad, 0x99, 0x23, 0x1e, 0x0d, + 0x06, 0x2b, 0xad, 0xfb, 0xeb, 0xef, 0xe6, 0x06, 0x52, 0x8c, 0x87, 0x36, + 0x49, 0x3f, 0x8d, 0x64, 0x15, 0x1e, 0x70, 0xaf, 0x94, 0xe7, 0x8a, 0x97, + 0x2d, 0xe9, 0x6d, 0x33, 0xc5, 0xee, 0x2d, 0xe8, 0x28, 0x6d, 0x6f, 0x6e, + 0x0a, 0xae, 0x3f, 0xa3, 0xe6, 0xc2, 0x16, 0x05, 0x39, 0x4f, 0x6c, 0xd5, + 0xa0, 0x3a, 0x06, 0xcf, 0x67, 0x4e, 0xe7, 0xbc, 0x4a, 0xa1, 0x57, 0x32, + 0xfc, 0xf2, 0xcc, 0x8e, 0x07, 0x6a, 0x53, 0x53, 0x8c, 0x1d, 0xe7, 0x64, + 0x35, 0x68, 0x48, 0xa1, 0x6a, 0x9a, 0x42, 0xb3, 0xa1, 0x05, 0x3a, 0xd9, + 0xfd, 0x9f, 0xb3, 0xf1, 0x95, 0x91, 0xfa, 0x43, 0xb9, 0xd3, 0x57, 0xcb, + 0x70, 0x1f, 0x15, 0xf7, 0xec, 0xb1, 0x14, 0x0c, 0x20, 0xc1, 0x78, 0x4a, + 0x27, 0x98, 0xb8, 0xe3, 0x3a, 0xa2, 0xe3, 0x44, 0xd5, 0x72, 0xa3, 0x82, + 0x68, 0x39, 0x4b, 0xdf, 0x39, 0x6e, 0x9b, 0x38, 0x04, 0x3f, 0xd1, 0x6f, + 0xfb, 0x09, 0x3a, 0x45, 0xfb, 0x1c, 0xfc, 0x23, 0x65, 0xeb, 0xb0, 0x35, + 0x90, 0xed, 0x60, 0x80, 0xc6, 0x33, 0x2a, 0xfc, 0x1e, 0x3d, 0x3d, 0xc8, + 0xa6, 0x56, 0xe1, 0xbc, 0x56, 0x17, 0x6d, 0xed, 0xfe, 0xd8, 0xbb, 0xa8, + 0xd5, 0x77, 0x52, 0x2c, 0xba, 0x2f, 0x00, 0xae, 0x38, 0x90, 0xbb, 0xa2, + 0xf2, 0xc7, 0x12, 0x24, 0x8a, 0x81, 0x68, 0x20, 0xc2, 0xe4, 0x5e, 0x09, + 0xbf, 0xa3, 0xbf, 0xa5, 0x90, 0xbd, 0xd2, 0xde, 0x71, 0x2b, 0x12, 0x15, + 0x67, 0x2d, 0x25, 0x7e, 0x57, 0xc5, 0xa3, 0xea, 0x05, 0xc1, 0x35, 0x0b, + 0x14, 0xc9, 0x89, 0x2f, 0xbe, 0x9b, 0x8f, 0x0b, 0x0d, 0x2a, 0x88, 0xec, + 0x45, 0x55, 0x45, 0xb3, 0x6a, 0xf2, 0x01, 0xf0, 0x91, 0x59, 0xad, 0x0c, + 0xeb, 0xc6, 0x5c, 0x85, 0x60, 0x6b, 0x3a, 0x44, 0x7e, 0x5b, 0x21, 0x2d, + 0x45, 0xaf, 0x99, 0xc8, 0x4e, 0x2e, 0xf8, 0x28, 0x98, 0x15, 0x4f, 0xe4, + 0x0c, 0xff, 0x9e, 0xe9, 0x67, 0x48, 0x0b, 0x8c, 0x0f, 0xe2, 0x89, 0x9d, + 0xa3, 0x5f, 0xf4, 0x3e, 0x2e, 0xed, 0x2d, 0x78, 0xb4, 0x17, 0x9f, 0x46, + 0x3c, 0x17, 0xb8, 0x59, 0xbe, 0x9c, 0x80, 0x75, 0x10, 0xa8, 0x0b, 0x75, + 0x5c, 0x3e, 0x48, 0x5f, 0x1e, 0x1c, 0xde, 0x2a, 0xea, 0x2f, 0xb8, 0x55, + 0x15, 0xe7, 0xd0, 0xb3, 0x86, 0x24, 0xe0, 0x44, 0x9c, 0xe2, 0xca, 0xf0, + 0x23, 0x9c, 0x90, 0x5e, 0xd6, 0x28, 0x12, 0x81, 0x07, 0x23, 0xd9, 0x1f, + 0xba, 0x17, 0x1a, 0x69, 0xe3, 0xdd, 0x32, 0x08, 0xc3, 0x3c, 0xed, 0xb7, + 0x2c, 0xc3, 0x40, 0x3b, 0xaf, 0x9f, 0x09, 0xa0, 0xcf, 0x58, 0xfc, 0xb9, + 0x33, 0x5b, 0xf2, 0xc5, 0x79, 0xd0, 0x96, 0xcb, 0x31, 0x94, 0xb3, 0xe8, + 0x9d, 0xc2, 0xcc, 0xa9, 0x43, 0xa0, 0xea, 0xc0, 0x16, 0x13, 0xf3, 0xe7, + 0xae, 0x43, 0x10, 0x11, 0xbb, 0xa2, 0xa0, 0xc7, 0x69, 0xc0, 0x1a, 0x99, + 0x86, 0xde, 0x96, 0x67, 0x6c, 0x57, 0x43, 0x0e, 0x62, 0x5b, 0xb9, 0xce, + 0xde, 0x24, 0xbe, 0x52, 0xa8, 0xa0, 0x4c, 0xa8, 0xba, 0xaf, 0x9d, 0xd8, + 0x86, 0xaa, 0x28, 0xce, 0xa4, 0x7b, 0xc9, 0x63, 0xd9, 0x44, 0x4b, 0xcf, + 0x1d, 0x07, 0x4d, 0xb7, 0xf6, 0x24, 0x8a, 0x9d, 0xc4, 0x6a, 0x88, 0x64, + 0x30, 0x23, 0x99, 0x52, 0xfb, 0x30, 0x36, 0xdb, 0x07, 0x38, 0x74, 0x7e, + 0x90, 0x98, 0x87, 0x80, 0x14, 0xba, 0x6b, 0x7b, 0x5e, 0x77, 0xb4, 0xfa, + 0xce, 0x86, 0x22, 0x55, 0xab, 0xdf, 0x9e, 0x77, 0x9f, 0xae, 0x3c, 0xe2, + 0x5a, 0x31, 0xdb, 0x20, 0xe8, 0x70, 0x24, 0xf3, 0x43, 0x41, 0xd1, 0xf4, + 0x86, 0xfa, 0xe7, 0xf6, 0x49, 0x2b, 0x8f, 0xf7, 0xb1, 0xaf, 0xe1, 0xee, + 0xf0, 0x62, 0x3f, 0xb6, 0xa9, 0x77, 0x50, 0x83, 0x85, 0xaf, 0x9d, 0x89, + 0x66, 0xae, 0x1a, 0x81, 0x02, 0x63, 0xa7, 0xc6, 0x1f, 0x95, 0x05, 0x42, + 0xcd, 0xbd, 0x1a, 0x5e, 0x16, 0x55, 0x1b, 0xae, 0xed, 0x8c, 0xab, 0x1f, + 0x16, 0x9a, 0x50, 0x9e, 0x85, 0xb3, 0x4c, 0x4e, 0x6b, 0x26, 0x63, 0x22, + 0xb0, 0x06, 0x14, 0x54, 0x38, 0x6b, 0x56, 0x1d, 0x48, 0xad, 0xaf, 0xe4, + 0xda, 0xf5, 0xee, 0x94, 0xcc, 0x98, 0x58, 0xe1, 0xb8, 0xbd, 0x3a, 0xa5, + 0xff, 0xe5, 0xd5, 0x7b, 0x4a, 0x7f, 0x32, 0x4f, 0xe0, 0xe6, 0xba, 0x3f, + 0x5b, 0xc6, 0xb0, 0x94, 0x95, 0x67, 0x36, 0x41, 0x3e, 0x40, 0x7b, 0xe0, + 0x14, 0x0e, 0x96, 0x47, 0xfd, 0xe0, 0xfc, 0x2c, 0x36, 0x4b, 0xc0, 0x58, + 0xd8, 0xb2, 0x99, 0xfc, 0x32, 0xa1, 0xbf, 0xc1, 0xbc, 0xef, 0x74, 0x4f, + 0x64, 0x99, 0xb4, 0x81, 0xc3, 0x3c, 0x2c, 0xd2, 0x9c, 0x81, 0xd6, 0xb2, + 0x00, 0xef, 0xb9, 0x70, 0xe3, 0xd5, 0x88, 0xe2, 0xfa, 0x54, 0x10, 0x25, + 0x56, 0x14, 0x79, 0x4f, 0x8c, 0x6f, 0xad, 0xed, 0x43, 0xac, 0x72, 0x1a, + 0xb5, 0x96, 0x0e, 0xf8, 0x7f, 0x2e, 0xf7, 0x5a, 0x5c, 0x5a, 0x03, 0xd4, + 0xfd, 0xe5, 0xf3, 0x43, 0x7d, 0x2d, 0x8f, 0x3e, 0xa3, 0x9b, 0xe4, 0x92, + 0x99, 0x86, 0xfa, 0xed, 0xf8, 0x9b, 0x3a, 0x43, 0xab, 0x04, 0xf6, 0xa1, + 0xec, 0xa0, 0xfc, 0x87, 0x93, 0xc5, 0xfe, 0xab, 0x47, 0x85, 0x8f, 0x36, + 0x4b, 0x43, 0x5d, 0xb2, 0xb0, 0x46, 0x8a, 0x3e, 0x5d, 0xcd, 0x34, 0x2f, + 0x7e, 0x6f, 0x7e, 0x77, 0xb5, 0x3d, 0xc8, 0x2a, 0xa5, 0x73, 0x41, 0xc5, + 0x31, 0xdf, 0x46, 0x23, 0xf2, 0x2b, 0x67, 0x67, 0x7b, 0x58, 0x71, 0xb7, + 0xba, 0xb2, 0x77, 0x97, 0xc9, 0x77, 0xcc, 0x19, 0x6b, 0x9f, 0x92, 0xbb, + 0xfd, 0x30, 0xb8, 0x4b, 0x5d, 0x63, 0x35, 0xbe, 0xb4, 0xf7, 0x38, 0xe1, + 0xa1, 0xb0, 0xee, 0x1b, 0x32, 0xae, 0xdb, 0x4b, 0x27, 0x7d, 0x75, 0x78, + 0x60, 0x5a, 0x7a, 0x0c, 0x1c, 0x0c, 0xa9, 0xab, 0xb7, 0x3e, 0x41, 0x75, + 0x3b, 0x89, 0x4e, 0x76, 0xa8, 0xec, 0x18, 0xa7, 0x32, 0xc7, 0x92, 0x53, + 0x4f, 0x41, 0x2b, 0x1e, 0xdf, 0x72, 0xac, 0x70, 0x8c, 0x16, 0x2f, 0xc7, + 0xaa, 0x8d, 0x6a, 0x1e, 0x29, 0x25, 0xef, 0x79, 0x73, 0x79, 0xec, 0x43, + 0x7f, 0x2b, 0x8f, 0xec, 0xaf, 0xbf, 0xad, 0xc9, 0x2c, 0x91, 0xec, 0xd6, + 0x1e, 0x38, 0x42, 0xd0, 0x5b, 0xed, 0x2c, 0x01, 0x48, 0x0d, 0x35, 0xb3, + 0x00, 0xe1, 0x94, 0xa7, 0x6c, 0x3e, 0xd5, 0x9a, 0x68, 0xf3, 0x4b, 0x29, + 0x41, 0x76, 0xe8, 0xd5, 0xc9, 0x53, 0x22, 0x28, 0xf0, 0x38, 0xfd, 0xa4, + 0xbc, 0x54, 0x5e, 0xc3, 0xe7, 0xf3, 0x1f, 0x8f, 0xa6, 0x77, 0x91, 0x77, + 0x25, 0xfa, 0x9b, 0xb5, 0x65, 0x1a, 0xde, 0x1b, 0xa7, 0xeb, 0xbc, 0xde, + 0x18, 0x9b, 0x68, 0xbe, 0x21, 0x38, 0x58, 0xd5, 0xca, 0x61, 0x98, 0x2b, + 0x51, 0x83, 0x62, 0x97, 0xf3, 0xf8, 0x51, 0xfd, 0xd7, 0x53, 0x32, 0x54, + 0xaa, 0xf0, 0xf0, 0x79, 0xc7, 0xef, 0xa7, 0x89, 0x40, 0xfe, 0x1e, 0x35, + 0x3a, 0xa3, 0x98, 0x1f, 0xb2, 0xe5, 0x25, 0xdd, 0xe1, 0x29, 0x54, 0x6a, + 0xee, 0x8e, 0x0c, 0x94, 0x0b, 0xbf, 0xec, 0xbd, 0x95, 0x6f, 0x3f, 0x41, + 0x80, 0xab, 0x98, 0x7f, 0x98, 0xdf, 0xb2, 0x13, 0xef, 0x43, 0x5a, 0xe9, + 0x18, 0x5a, 0x60, 0xec, 0xaa, 0xc1, 0x65, 0xaa, 0x82, 0x49, 0xfb, 0xe7, + 0x3a, 0xef, 0x5f, 0x86, 0x94, 0xf6, 0xca, 0x99, 0x91, 0xf6, 0x3c, 0xb7, + 0x31, 0x61, 0x46, 0x69, 0x6d, 0xe7, 0x89, 0xcd, 0x00, 0xe4, 0x6e, 0xc4, + 0xe0, 0x41, 0x6d, 0xa5, 0xc1, 0xbb, 0x5b, 0xaf, 0x9c, 0x3c, 0x79, 0x26, + 0x24, 0x2f, 0x6c, 0x98, 0xbf, 0xa1, 0x4e, 0x40, 0x0f, 0xf4, 0x13, 0x9a, + 0xcf, 0x9f, 0x72, 0x33, 0x24, 0xc6, 0xa1, 0x71, 0x8f, 0x9b, 0xb1, 0x49, + 0x5a, 0x68, 0xa8, 0x35, 0xf0, 0xac, 0xfc, 0x3c, 0xdd, 0xcc, 0x77, 0x27, + 0xa6, 0xac, 0x2d, 0x59, 0x2b, 0x03, 0xe6, 0x59, 0x3f, 0x62, 0x80, 0x60, + 0x2f, 0x07, 0x19, 0x27, 0x17, 0x30, 0x6a, 0x57, 0xec, 0x5a, 0x79, 0x30, + 0xfc, 0x5e, 0xf5, 0xf9, 0xa3, 0x9e, 0xfa, 0x34, 0x87, 0xed, 0xe7, 0xb5, + 0x1d, 0xa6, 0xa8, 0x89, 0x5b, 0x95, 0xe0, 0x25, 0x8e, 0x1f, 0x8f, 0x99, + 0x9f, 0x72, 0x85, 0x3b, 0xc2, 0xb6, 0xd6, 0x49, 0x93, 0x87, 0x4e, 0x4c, + 0x1b, 0x3b, 0xfc, 0xe3, 0x14, 0x5a, 0xeb, 0x4c, 0xc8, 0x95, 0x10, 0xc4, + 0x19, 0x45, 0xa6, 0x96, 0xb7, 0x64, 0xaa, 0x25, 0x6e, 0xbd, 0x43, 0xd6, + 0x7b, 0xb3, 0xde, 0x3c, 0x7a, 0x99, 0x5c, 0x7f, 0xdc, 0xa7, 0x34, 0xa1, + 0x2f, 0x8f, 0xdd, 0xe8, 0x88, 0x1d, 0x79, 0x6c, 0xb2, 0x1e, 0x4a, 0x3a, + 0xa5, 0x82, 0x5e, 0x01, 0x9e, 0xfe, 0x71, 0x14, 0xda, 0x05, 0x3e, 0x19, + 0x2d, 0x80, 0xd8, 0x5f, 0x58, 0x45, 0x55, 0xcb, 0x70, 0x6f, 0x6f, 0xc2, + 0xcb, 0xf6, 0xc3, 0x73, 0x5f, 0x74, 0x52, 0xce, 0x04, 0x91, 0x0e, 0x1d, + 0xef, 0x2d, 0xe6, 0x8e, 0x89, 0x47, 0xc9, 0xed, 0xf8, 0x45, 0xa2, 0x59, + 0x19, 0xa3, 0x30, 0x0d, 0x0e, 0x6a, 0xf8, 0xd5, 0xc2, 0xb0, 0xf9, 0x9f, + 0x70, 0xa0, 0x27, 0x59, 0xdb, 0x39, 0x3d, 0x5d, 0xc3, 0xb8, 0xa8, 0x84, + 0x68, 0x78, 0x6a, 0xc8, 0xea, 0x98, 0x41, 0x6a, 0x33, 0x6d, 0x94, 0x95, + 0x55, 0xf2, 0x39, 0xc1, 0x33, 0x12, 0xe4, 0x8c, 0xa6, 0x19, 0x7d, 0xf4, + 0x78, 0xed, 0xc6, 0x8b, 0x05, 0xdf, 0x7d, 0x81, 0x0b, 0x90, 0x3e, 0x9a, + 0x22, 0x6b, 0x68, 0xe8, 0x31, 0x6f, 0x73, 0xd4, 0xe4, 0x78, 0x65, 0xd9, + 0x51, 0xa0, 0x45, 0x55, 0x35, 0x58, 0xc2, 0xb9, 0xd7, 0x0a, 0xf7, 0x1d, + 0xa9, 0x5a, 0x0e, 0x68, 0x6b, 0x7c, 0xab, 0x77, 0x1d, 0x21, 0x1d, 0x16, + 0x46, 0x68, 0x12, 0xb9, 0x52, 0xb5, 0x74, 0x41, 0xd8, 0x6b, 0x52, 0xcb, + 0xf5, 0xa6, 0x9c, 0xf4, 0x02, 0x7b, 0xdf, 0x8d, 0xae, 0xf6, 0xb0, 0x00, + 0xc0, 0xa4, 0xdf, 0x33, 0x69, 0x12, 0xb2, 0x00, 0x58, 0x37, 0x75, 0x9a, + 0xb5, 0xfa, 0x32, 0x0d, 0xb2, 0x91, 0xa6, 0xc6, 0x9f, 0xae, 0x70, 0xa9, + 0xb0, 0xb4, 0xa3, 0xd4, 0xbd, 0x17, 0xef, 0x2f, 0x6d, 0x4b, 0x08, 0x60, + 0x44, 0x46, 0x98, 0x58, 0x46, 0xb9, 0xbe, 0x89, 0x1a, 0x30, 0x22, 0xe7, + 0xfb, 0x5f, 0x26, 0xae, 0x43, 0x52, 0x20, 0x7f, 0x3e, 0xb1, 0xe8, 0x98, + 0x10, 0x0b, 0x00, 0xd5, 0x5d, 0x42, 0xe0, 0x58, 0xc5, 0x9b, 0x25, 0xc2, + 0x85, 0x0e, 0x44, 0xbd, 0x0b, 0x7b, 0x50, 0xba, 0xaf, 0x13, 0x78, 0x23, + 0xc1, 0x21, 0xae, 0x6c, 0xb4, 0xd6, 0x33, 0xdd, 0x22, 0x2d, 0x63, 0x36, + 0xc3, 0x43, 0x49, 0x06, 0x1c, 0xed, 0x46, 0x49, 0x0f, 0xe5, 0x21, 0x2b, + 0xdb, 0x96, 0xb8, 0xaf, 0x06, 0x24, 0xc4, 0xab, 0x89, 0x58, 0xef, 0x91, + 0xfb, 0xec, 0x7e, 0xd6, 0x44, 0xb2, 0x97, 0xb7, 0x1e, 0xc3, 0x4a, 0x75, + 0x70, 0xc5, 0x24, 0xf7, 0xdf, 0x79, 0x18, 0xad, 0xb6, 0xa2, 0xf6, 0x87, + 0x62, 0xed, 0x0a, 0xf9, 0x89, 0x89, 0xf7, 0xdb, 0x72, 0x2c, 0xe4, 0x1f, + 0xf4, 0xb8, 0x5a, 0x90, 0x2b, 0x1a, 0xb4, 0x6d, 0x29, 0xd7, 0x8a, 0xd4, + 0x1f, 0x69, 0x8f, 0xb5, 0xc9, 0xb1, 0xeb, 0xe0, 0x9e, 0xec, 0xdc, 0x7d, + 0x51, 0x5b, 0x24, 0xcd, 0xe2, 0xbe, 0x79, 0xac, 0xba, 0xb3, 0x16, 0x6b, + 0x6e, 0x4c, 0x41, 0x39, 0x6c, 0xbb, 0xa4, 0x41, 0x62, 0x43, 0x03, 0xd9, + 0x8a, 0x64, 0xb3, 0x86, 0x8b, 0x9f, 0x0b, 0xb4, 0x3b, 0x97, 0x39, 0xf4, + 0x7d, 0xa5, 0x9f, 0xc7, 0x6d, 0xed, 0xe7, 0x6a, 0xaa, 0x00, 0xf3, 0x0c, + 0xc7, 0xda, 0x3e, 0x24, 0x2a, 0x9b, 0x66, 0x6d, 0x99, 0x1e, 0xf8, 0x71, + 0x64, 0x51, 0x23, 0x45, 0x38, 0x0b, 0xf8, 0x10, 0x8d, 0x6a, 0xd3, 0xe7, + 0xd4, 0x80, 0x72, 0x1a, 0xde, 0x3b, 0xad, 0xc9, 0x6f, 0x6e, 0xb7, 0xdb, + 0x32, 0x61, 0x77, 0xab, 0x30, 0x00, 0x6e, 0x9e, 0x9b, 0x46, 0xba, 0x62, + 0xf6, 0xf2, 0xc1, 0x96, 0xdb, 0x4b, 0x6e, 0x76, 0x91, 0xf2, 0x11, 0xa0, + 0xe9, 0x99, 0x52, 0x7b, 0x6e, 0xfc, 0x28, 0x7e, 0x31, 0x59, 0xac, 0xf9, + 0xe9, 0xae, 0x50, 0x86, 0x74, 0xcf, 0xb3, 0xe5, 0xaa, 0x00, 0x59, 0x00, + 0x34, 0x69, 0x85, 0x20, 0xf2, 0xf5, 0x34, 0x40, 0x8c, 0x77, 0xda, 0xbf, + 0xeb, 0x8d, 0x16, 0xa5, 0x3f, 0x62, 0xc5, 0xa9, 0xde, 0xf3, 0xb2, 0x7e, + 0x1a, 0x01, 0x6d, 0x7e, 0xcc, 0x0b, 0x6f, 0xbc, 0x60, 0x78, 0xf5, 0x23, + 0xe1, 0x5f, 0x16, 0xc3, 0x18, 0xf0, 0x04, 0x68, 0x70, 0x71, 0x3c, 0x20, + 0xe2, 0xad, 0xb3, 0x2d, 0xe0, 0xf4, 0x40, 0x8d, 0x2c, 0x0d, 0x3f, 0xea, + 0xff, 0xf2, 0xf2, 0x6f, 0x50, 0x4b, 0x03, 0x04, 0x14, 0x00, 0x08, 0x00, + 0x08, 0x00, 0x4d, 0x69, 0xcb, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x20, 0x4d, 0x00, 0x00, 0x12, 0x00, 0x20, 0x00, 0x74, 0x65, + 0x78, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, 0x65, 0x72, 0x72, 0x69, 0x67, + 0x2e, 0x6a, 0x70, 0x67, 0x55, 0x54, 0x0d, 0x00, 0x07, 0x23, 0x8c, 0xff, + 0x5c, 0xda, 0xfd, 0x42, 0x5d, 0xda, 0xfd, 0x42, 0x5d, 0x75, 0x78, 0x0b, + 0x00, 0x01, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x04, 0xe8, 0x03, 0x00, 0x00, + 0x9c, 0xbb, 0x65, 0x50, 0x5b, 0x5d, 0x18, 0x2e, 0x1a, 0xdc, 0xdd, 0xb5, + 0x40, 0x70, 0x2b, 0x10, 0x2c, 0x58, 0x71, 0xd7, 0xe0, 0x41, 0x8a, 0x15, + 0xd7, 0x04, 0xa7, 0x02, 0xa5, 0x38, 0x04, 0x82, 0x15, 0x82, 0xbb, 0x53, + 0x1c, 0x02, 0xa5, 0x85, 0xe2, 0xee, 0x2e, 0xc5, 0xa5, 0x58, 0xd1, 0x52, + 0x4a, 0xdb, 0xd3, 0xef, 0xcc, 0x91, 0x3f, 0xf7, 0xc7, 0xbd, 0xf7, 0xd9, + 0x33, 0x6b, 0xd6, 0xcc, 0xb2, 0xfd, 0xbc, 0xba, 0xde, 0x3d, 0xb3, 0xff, + 0x2e, 0xff, 0xdd, 0x02, 0x90, 0x6b, 0xab, 0x6b, 0xa9, 0x03, 0x30, 0x30, + 0x00, 0x00, 0x8c, 0x7f, 0x0f, 0xe0, 0xef, 0x1a, 0x40, 0x05, 0x80, 0x85, + 0xf9, 0x1f, 0xfe, 0x6b, 0xb1, 0xfe, 0x01, 0x1b, 0x17, 0xfb, 0x3f, 0xe0, + 0xe3, 0xe2, 0xe2, 0xe0, 0x12, 0xe0, 0x13, 0x12, 0x12, 0xe0, 0x13, 0x10, + 0x10, 0x12, 0x93, 0x11, 0x13, 0x12, 0x91, 0x12, 0x11, 0x10, 0x90, 0x50, + 0x90, 0x90, 0x92, 0x91, 0x93, 0x53, 0x90, 0x13, 0x12, 0x53, 0x52, 0x51, + 0x92, 0x53, 0xfd, 0xeb, 0x93, 0xff, 0xb7, 0x09, 0xc6, 0x7f, 0x2b, 0xb1, + 0xb0, 0xf1, 0xff, 0x2d, 0x24, 0x27, 0x22, 0x20, 0x22, 0xff, 0xff, 0x8c, + 0xbf, 0x3d, 0x00, 0x0a, 0x7c, 0x0c, 0x1e, 0x8c, 0x50, 0x2c, 0x0c, 0x0a, + 0x00, 0x26, 0x05, 0x06, 0x16, 0x05, 0xc6, 0xdf, 0x7e, 0xc0, 0x93, 0x7f, + 0xef, 0x89, 0x83, 0xf1, 0x3f, 0x01, 0xf8, 0x5f, 0xc0, 0xc0, 0xc4, 0xc2, + 0xc6, 0xc1, 0xc5, 0xc3, 0x27, 0x20, 0x24, 0xfa, 0x37, 0xa1, 0x95, 0x1c, + 0x80, 0xf9, 0xef, 0x6c, 0x4c, 0x6c, 0x2c, 0x1c, 0x1c, 0x6c, 0xec, 0x7f, + 0xa3, 0xaf, 0xfe, 0x8d, 0x03, 0xb0, 0x29, 0x70, 0x28, 0xd9, 0x45, 0x95, + 0x70, 0xa9, 0x8c, 0xec, 0xf1, 0x38, 0xfc, 0xa8, 0xc5, 0x22, 0x90, 0x45, + 0xf8, 0x40, 0xe5, 0xc6, 0x5e, 0x1a, 0xc8, 0xcc, 0x77, 0x4e, 0x90, 0x03, + 0xec, 0x2d, 0x01, 0x21, 0x2d, 0x1d, 0x3d, 0x03, 0x23, 0x17, 0x37, 0x0f, + 0x2f, 0x1f, 0xbf, 0xb8, 0x84, 0xa4, 0x94, 0x34, 0x58, 0x46, 0x45, 0x55, + 0x4d, 0x5d, 0x43, 0x53, 0x4b, 0xdb, 0xd8, 0xc4, 0xd4, 0xcc, 0xdc, 0xc2, + 0x12, 0xea, 0xe8, 0xf4, 0xc2, 0xd9, 0xc5, 0xd5, 0xcd, 0x1d, 0xee, 0x1f, + 0x10, 0x18, 0x14, 0x1c, 0x12, 0x1a, 0xf9, 0x2e, 0x2a, 0x3a, 0x26, 0x36, + 0x2e, 0x3e, 0x35, 0x2d, 0x3d, 0x23, 0xf3, 0x7d, 0x56, 0x36, 0xaa, 0xb8, + 0xa4, 0xb4, 0xac, 0xbc, 0xa2, 0xb2, 0xaa, 0xba, 0xa9, 0xb9, 0xa5, 0xb5, + 0xad, 0xbd, 0x03, 0xdd, 0xf9, 0xa5, 0xaf, 0x7f, 0x60, 0x70, 0x68, 0x78, + 0x64, 0x74, 0x76, 0x6e, 0x7e, 0x61, 0x71, 0x69, 0x79, 0x65, 0x75, 0x7b, + 0x67, 0x77, 0x6f, 0xff, 0xe0, 0xf0, 0xe8, 0xf8, 0xdb, 0xe5, 0xd5, 0xf5, + 0xcd, 0xed, 0xdd, 0x8f, 0xfb, 0x9f, 0x0f, 0xff, 0xf1, 0xc2, 0x00, 0x60, + 0x61, 0xfc, 0x6f, 0xfc, 0x3f, 0xf2, 0xfa, 0x27, 0x04, 0x0c, 0x4c, 0xec, + 0x7f, 0x22, 0xc5, 0xfb, 0x8f, 0x17, 0x06, 0x66, 0xd0, 0x7f, 0x13, 0x28, + 0xb0, 0x71, 0xd8, 0x45, 0x71, 0x29, 0x95, 0x8c, 0xf0, 0xec, 0xfd, 0xa8, + 0x38, 0xc4, 0x22, 0xf0, 0xa9, 0x95, 0x91, 0x45, 0x8d, 0xbd, 0x04, 0x40, + 0x10, 0xe4, 0x3b, 0x8d, 0x03, 0x6c, 0x86, 0x90, 0x96, 0x53, 0x7c, 0x9b, + 0xeb, 0xf2, 0x3f, 0x6a, 0xff, 0x93, 0xd9, 0xff, 0x3b, 0x62, 0x6f, 0xff, + 0x7f, 0x31, 0xfb, 0x3f, 0xc4, 0xfe, 0x2f, 0xaf, 0x55, 0x00, 0x31, 0x16, + 0xc6, 0x3f, 0xe5, 0x61, 0x51, 0x00, 0x9e, 0x01, 0xae, 0x92, 0x40, 0xfa, + 0x7a, 0x61, 0x26, 0x22, 0xba, 0x43, 0x08, 0xbd, 0x97, 0xe2, 0x06, 0x98, + 0xb2, 0xf9, 0x1f, 0xb6, 0x9f, 0x12, 0xbb, 0xdd, 0x51, 0x0e, 0x8e, 0xaa, + 0x9f, 0x22, 0x16, 0xd6, 0xd4, 0x4a, 0xa6, 0x8b, 0x67, 0x6e, 0x2e, 0xfa, + 0x2a, 0x33, 0xec, 0x63, 0x9f, 0x4a, 0x0f, 0x84, 0xb6, 0x40, 0xe5, 0xb5, + 0x85, 0x58, 0xcf, 0xb6, 0x7f, 0x60, 0x4a, 0xd0, 0x0f, 0x31, 0x9b, 0x17, + 0x61, 0x15, 0x1f, 0xea, 0x27, 0x62, 0x46, 0x6e, 0xb6, 0xb0, 0xff, 0x10, + 0xb6, 0xd2, 0x24, 0xdc, 0x89, 0xa4, 0x55, 0xf3, 0x17, 0xd1, 0x02, 0x26, + 0x32, 0x66, 0xce, 0x18, 0x42, 0xf3, 0xdf, 0xec, 0x9c, 0xb4, 0x26, 0x4a, + 0x8a, 0x22, 0x0d, 0x83, 0x94, 0x58, 0x9f, 0xed, 0x08, 0x4c, 0x49, 0x2c, + 0xbb, 0x2c, 0x36, 0xa5, 0xe9, 0x7e, 0x7b, 0x3b, 0xbd, 0x15, 0xa0, 0xd3, + 0x9b, 0x69, 0xb3, 0xf0, 0x0e, 0x91, 0x55, 0x52, 0x90, 0xea, 0xeb, 0x24, + 0x87, 0x68, 0x65, 0x1e, 0x76, 0x18, 0x12, 0x8b, 0x66, 0x18, 0xa2, 0xce, + 0x51, 0xe3, 0x5a, 0xff, 0x7c, 0xd7, 0xa1, 0xf8, 0x0d, 0x8f, 0xba, 0x1e, + 0x12, 0xa7, 0xfc, 0x17, 0x60, 0x98, 0xc8, 0x07, 0x88, 0x57, 0xd1, 0x1e, + 0x92, 0x0a, 0xa9, 0x84, 0xf9, 0xba, 0x73, 0x9b, 0x88, 0x8b, 0x1d, 0x76, + 0x0b, 0xca, 0x2c, 0xf2, 0xa8, 0x38, 0x7b, 0xce, 0xd1, 0x4a, 0x57, 0xab, + 0xa6, 0x34, 0x8b, 0x4e, 0x82, 0x74, 0x75, 0x6b, 0x44, 0xd3, 0xe4, 0x50, + 0x65, 0x8d, 0x52, 0x6a, 0x90, 0x3d, 0x66, 0xda, 0x72, 0x3a, 0x55, 0xd0, + 0x56, 0xdb, 0xe9, 0x4d, 0x35, 0xe3, 0x92, 0x43, 0x97, 0x8d, 0xe0, 0x4b, + 0xaa, 0xdb, 0x42, 0xfc, 0xe7, 0x86, 0x09, 0x79, 0xfd, 0xf0, 0x0b, 0x45, + 0x12, 0x1b, 0x7d, 0xf9, 0xe5, 0x75, 0x5e, 0x4c, 0xbf, 0x00, 0xea, 0x84, + 0x01, 0x80, 0x0a, 0x8f, 0x3c, 0x2f, 0xa6, 0x64, 0x0c, 0x56, 0x37, 0x31, + 0xe1, 0xec, 0x20, 0x1e, 0x0d, 0x9b, 0xb9, 0x1d, 0x68, 0x36, 0x1c, 0xf0, + 0xea, 0x59, 0x06, 0x40, 0xde, 0xea, 0x71, 0x27, 0xfc, 0x09, 0x52, 0x31, + 0xff, 0x0b, 0xeb, 0x57, 0x6d, 0x73, 0x4e, 0xfb, 0x13, 0xb5, 0x9e, 0xa4, + 0x61, 0xa2, 0x09, 0xc8, 0x0b, 0xe0, 0x13, 0x53, 0xc5, 0xcb, 0x36, 0xc0, + 0xb1, 0x39, 0x6d, 0x5c, 0xfe, 0x50, 0x5a, 0xf0, 0xe0, 0x34, 0xf9, 0xfa, + 0xeb, 0x0c, 0x3f, 0xd7, 0xbd, 0xec, 0xbd, 0xce, 0x71, 0x05, 0x9b, 0x5e, + 0x40, 0xd8, 0x92, 0xae, 0xe5, 0xa1, 0xe9, 0xfa, 0xe8, 0x1e, 0xd5, 0x4d, + 0x8d, 0x55, 0xee, 0xa9, 0x1f, 0x98, 0x5e, 0xa2, 0x89, 0xbd, 0x2b, 0x23, + 0xaf, 0xe1, 0x4d, 0x86, 0x68, 0x51, 0xd1, 0x65, 0xda, 0x94, 0x04, 0x8b, + 0x32, 0xb4, 0x58, 0x35, 0x3d, 0x91, 0x91, 0xc0, 0x6d, 0xb9, 0x9b, 0xfa, + 0x37, 0xb8, 0x5c, 0xd5, 0xe1, 0xdc, 0x1a, 0x71, 0x08, 0xac, 0xe3, 0x4e, + 0x5a, 0xec, 0xfb, 0xb3, 0xa8, 0x8e, 0x2f, 0x91, 0x78, 0xcb, 0x27, 0x0b, + 0x2a, 0x9c, 0xbe, 0xc5, 0x25, 0x46, 0x3b, 0xfe, 0x5c, 0xa2, 0x31, 0xf1, + 0x57, 0xca, 0x43, 0xb9, 0xbb, 0x38, 0x3c, 0x1e, 0x16, 0x5e, 0x58, 0x27, + 0x89, 0x9d, 0x86, 0x16, 0xc4, 0x5c, 0x3c, 0x15, 0x12, 0xfe, 0xb4, 0x92, + 0xc9, 0xd4, 0x71, 0x62, 0xab, 0xad, 0xc0, 0xca, 0x53, 0x11, 0x0c, 0x32, + 0xfd, 0xf4, 0xb1, 0x3b, 0x91, 0xd6, 0x01, 0x74, 0x62, 0x93, 0x8e, 0x58, + 0x15, 0x1e, 0x5a, 0x2c, 0x20, 0xb9, 0x90, 0x8b, 0x65, 0x37, 0x97, 0x57, + 0x3c, 0xb1, 0x2d, 0xa3, 0x0d, 0x4d, 0xcf, 0x4b, 0x0e, 0x99, 0x71, 0x36, + 0x66, 0x56, 0x0b, 0x4b, 0x5c, 0x2a, 0xd2, 0xcb, 0xa3, 0xd3, 0xd0, 0xaf, + 0x7f, 0x59, 0x06, 0xde, 0xa5, 0x69, 0x1d, 0x49, 0xeb, 0xe4, 0x6a, 0x4d, + 0x4f, 0x1b, 0x12, 0xcf, 0xe1, 0xb8, 0xa3, 0x33, 0xf9, 0x68, 0x15, 0xe6, + 0xcc, 0x89, 0xc0, 0xa8, 0x7c, 0x35, 0xc1, 0xd6, 0x8a, 0xde, 0xc9, 0x97, + 0xbc, 0x14, 0x23, 0xb0, 0x09, 0x22, 0x1c, 0xd5, 0x3f, 0xf4, 0x92, 0x78, + 0x45, 0x26, 0xb0, 0x70, 0x5b, 0xea, 0xd0, 0xdf, 0x50, 0x29, 0xb3, 0x4d, + 0xeb, 0xdb, 0x99, 0x59, 0xaa, 0x83, 0x9e, 0x82, 0x5b, 0xcf, 0x65, 0x4c, + 0x76, 0xd4, 0x11, 0x83, 0x03, 0x38, 0x48, 0x83, 0x4c, 0xde, 0x8f, 0xc6, + 0x7e, 0x6e, 0xf5, 0xdd, 0x70, 0xed, 0x98, 0x37, 0x02, 0xb9, 0xd7, 0x6b, + 0xe0, 0xdd, 0x96, 0xc1, 0x66, 0xd5, 0x04, 0x6a, 0x96, 0x5e, 0xd7, 0xba, + 0x5b, 0xd1, 0x24, 0xa2, 0x9d, 0xb9, 0x92, 0xc1, 0x55, 0x69, 0x9e, 0xa5, + 0xf1, 0xb3, 0xa2, 0xc0, 0x3a, 0xc5, 0xe1, 0x36, 0x4a, 0x03, 0x4c, 0x14, + 0x5e, 0x61, 0x59, 0x2a, 0x17, 0x27, 0xa2, 0x55, 0x55, 0xd2, 0xf9, 0xeb, + 0xd7, 0x2f, 0xe1, 0xdf, 0xff, 0xe9, 0x33, 0x8b, 0x0e, 0xba, 0xee, 0x97, + 0x5f, 0x9c, 0xc5, 0x20, 0xb5, 0xc9, 0x65, 0x71, 0x1d, 0x4d, 0xa3, 0xa6, + 0xe1, 0x98, 0xdf, 0x7d, 0x69, 0x39, 0xd2, 0x37, 0x2d, 0x96, 0x1a, 0x9c, + 0xbd, 0x7e, 0x75, 0x83, 0x21, 0x73, 0xd2, 0xf4, 0xa4, 0x20, 0xe8, 0x09, + 0x14, 0xd0, 0x88, 0x17, 0xc7, 0xa0, 0x4f, 0x64, 0x88, 0x5b, 0xf7, 0xe9, + 0xf3, 0x47, 0xe2, 0x86, 0x42, 0x22, 0x20, 0x94, 0x6c, 0xd0, 0xd5, 0x4e, + 0x87, 0x65, 0xba, 0xa0, 0x5b, 0x93, 0x92, 0x9a, 0x4b, 0xc7, 0x10, 0x5b, + 0x71, 0xb7, 0x1b, 0x20, 0xc7, 0xea, 0x8a, 0xb1, 0x75, 0x9d, 0x78, 0x18, + 0x6f, 0x60, 0x87, 0x95, 0x1b, 0x8f, 0x70, 0x52, 0xec, 0xcb, 0xfd, 0x0b, + 0xb8, 0xad, 0xec, 0x80, 0xee, 0x81, 0x48, 0x71, 0x20, 0x2f, 0x4a, 0x5d, + 0x36, 0x07, 0xa1, 0x62, 0x7e, 0xcb, 0x0b, 0x03, 0xeb, 0xd9, 0x25, 0x13, + 0x8f, 0x96, 0x5e, 0xa9, 0x8f, 0x66, 0x8d, 0xd3, 0xbb, 0xd9, 0x7b, 0x9f, + 0xd8, 0x5a, 0x9e, 0xb8, 0x3a, 0x22, 0x16, 0x66, 0xb0, 0xa6, 0x6a, 0xd0, + 0xe3, 0xba, 0x39, 0x04, 0x75, 0x46, 0xe3, 0xc3, 0x3a, 0x6f, 0x5a, 0xa1, + 0x03, 0xc8, 0x51, 0xf5, 0x6f, 0xa1, 0x3b, 0x95, 0x1e, 0xca, 0xdc, 0x93, + 0xc1, 0x3b, 0x15, 0x95, 0xcb, 0xc2, 0xaf, 0x42, 0x4a, 0x39, 0x4c, 0x52, + 0x22, 0x13, 0x17, 0xb8, 0x5e, 0x29, 0x71, 0x8c, 0x8e, 0x6b, 0xbc, 0x4e, + 0xd7, 0x72, 0x15, 0x85, 0x98, 0x39, 0x13, 0x9d, 0x58, 0x4c, 0x10, 0x55, + 0x75, 0x95, 0xbd, 0x87, 0xe0, 0x4f, 0xf8, 0xcd, 0xdb, 0xe8, 0x57, 0xfb, + 0xe8, 0xb0, 0xf0, 0x1b, 0x70, 0xcf, 0x5c, 0x07, 0xd6, 0xab, 0x27, 0x25, + 0x97, 0xb0, 0xff, 0xc2, 0xa6, 0x1b, 0x14, 0x47, 0xb2, 0x28, 0xfd, 0x7a, + 0xfb, 0x31, 0xcc, 0xfd, 0x25, 0x27, 0x57, 0xd5, 0xf1, 0x6b, 0xfa, 0x5f, + 0x72, 0xee, 0xa9, 0x6b, 0x6b, 0x00, 0xf8, 0xbc, 0xb9, 0x8d, 0xd0, 0xe4, + 0xaa, 0xee, 0x03, 0xcf, 0xb6, 0x73, 0x2b, 0x76, 0xb9, 0xb4, 0x37, 0x07, + 0x36, 0xe2, 0xdd, 0x52, 0x85, 0xea, 0x4d, 0xd5, 0x98, 0xca, 0xd1, 0x67, + 0xe2, 0x55, 0xf9, 0xd9, 0xd2, 0xd8, 0x3d, 0xde, 0x21, 0x9a, 0x23, 0xc5, + 0xf5, 0x0b, 0xbb, 0xb6, 0x44, 0xc5, 0xea, 0x5d, 0xbf, 0x01, 0x4f, 0x92, + 0x48, 0x65, 0xe4, 0x93, 0x0c, 0x3f, 0xed, 0x01, 0x35, 0xeb, 0xed, 0x8f, + 0x01, 0xd5, 0x63, 0x1e, 0x58, 0x95, 0x30, 0x99, 0x45, 0x58, 0x06, 0xa2, + 0x52, 0xf5, 0xe7, 0x5f, 0xc0, 0x80, 0xcc, 0x74, 0x46, 0x81, 0x5c, 0xee, + 0x92, 0x78, 0xd9, 0xfc, 0x59, 0x05, 0xd5, 0x94, 0x84, 0xd5, 0x31, 0x83, + 0x95, 0x0f, 0x4d, 0x5a, 0x8e, 0xcc, 0x36, 0x55, 0x6e, 0x47, 0xc7, 0xa4, + 0x0a, 0xf3, 0xa2, 0xd7, 0xfa, 0xb1, 0x8e, 0x8a, 0xb0, 0x9b, 0x39, 0x52, + 0x6d, 0x88, 0xc6, 0xd9, 0xd4, 0x2d, 0x1c, 0xcc, 0x5d, 0x0e, 0xcd, 0xf0, + 0x48, 0x0a, 0x1b, 0x4f, 0xf4, 0x2e, 0xcd, 0x8b, 0xd7, 0xee, 0xf7, 0xf2, + 0xb5, 0xa0, 0xfa, 0x2c, 0x9e, 0x63, 0xce, 0x12, 0x0f, 0xd7, 0x57, 0xea, + 0x11, 0xaf, 0xd7, 0x31, 0x63, 0x93, 0xea, 0x25, 0x9b, 0xfc, 0x52, 0x9a, + 0x93, 0x71, 0x21, 0x31, 0x16, 0xec, 0xc8, 0x13, 0x8c, 0x47, 0x3d, 0x9d, + 0x03, 0xd6, 0x7b, 0x3e, 0xc8, 0x07, 0xf8, 0x0b, 0xb0, 0x95, 0x79, 0xb8, + 0xa9, 0x66, 0xdb, 0x6d, 0xf5, 0x61, 0x49, 0x64, 0x36, 0x78, 0x58, 0x60, + 0x93, 0x3e, 0xd3, 0x18, 0x82, 0x60, 0x2e, 0x17, 0xdc, 0x96, 0xe3, 0x92, + 0x4c, 0x25, 0x7c, 0x10, 0xb6, 0x82, 0xe9, 0x2f, 0x3f, 0x2c, 0xd0, 0xb0, + 0xc4, 0xce, 0x59, 0x76, 0xa6, 0x3f, 0x4e, 0x1a, 0xcc, 0x4f, 0x83, 0xcc, + 0x26, 0xff, 0xe8, 0xbe, 0x48, 0x9f, 0xc6, 0xd9, 0xf5, 0xf3, 0x3d, 0x46, + 0x13, 0x61, 0x9c, 0x29, 0x52, 0x08, 0x0d, 0x2c, 0x7b, 0x7f, 0x50, 0x64, + 0xcc, 0x0c, 0x4d, 0x1c, 0x2e, 0x14, 0x15, 0xc7, 0x28, 0xc2, 0x2d, 0x11, + 0x86, 0xa7, 0xfd, 0x9c, 0xee, 0x59, 0x6a, 0x5e, 0xc8, 0x16, 0x9d, 0xd0, + 0x64, 0x6a, 0xeb, 0xac, 0x85, 0xd5, 0x4f, 0x1e, 0x84, 0x0b, 0x95, 0xcf, + 0x6a, 0xb2, 0x11, 0x02, 0xfc, 0x6c, 0xa5, 0xcf, 0x14, 0x31, 0x71, 0xbf, + 0x8e, 0x88, 0xe7, 0x7f, 0xe1, 0xec, 0x91, 0x57, 0x53, 0x8b, 0xb2, 0x5b, + 0xe5, 0x6d, 0x98, 0xc1, 0xf9, 0xc2, 0x9c, 0xe8, 0x5f, 0xad, 0x59, 0x6a, + 0xdc, 0xa5, 0x0c, 0xe4, 0x5c, 0x18, 0xb0, 0xc8, 0x66, 0xf5, 0xd9, 0x99, + 0x6b, 0x69, 0x98, 0x14, 0xd0, 0xfc, 0x06, 0x1f, 0xbf, 0x4a, 0xf2, 0x38, + 0xc8, 0x48, 0x86, 0x1e, 0x47, 0x1c, 0x9a, 0x6a, 0xf0, 0x04, 0x46, 0xfa, + 0xd1, 0xd7, 0x99, 0x1d, 0x32, 0x67, 0x96, 0xf1, 0xd1, 0x31, 0xc3, 0x04, + 0x2c, 0x8a, 0xd5, 0xaf, 0x13, 0x19, 0x0b, 0x81, 0x2f, 0x86, 0x7c, 0xfe, + 0x74, 0x1b, 0x18, 0x32, 0x9a, 0x26, 0x33, 0xf4, 0x14, 0x62, 0x6b, 0x22, + 0x34, 0x2e, 0x82, 0x6b, 0xa0, 0x18, 0xb2, 0x83, 0xa6, 0xf0, 0x03, 0x52, + 0x7e, 0xa7, 0xc1, 0x25, 0x7b, 0x3b, 0xef, 0xde, 0xc1, 0x30, 0x33, 0x31, + 0x7b, 0xea, 0x35, 0x99, 0xaf, 0x24, 0x6b, 0xd9, 0x2f, 0x0c, 0x87, 0x7c, + 0xb9, 0xd1, 0xfc, 0xdd, 0xa4, 0xa3, 0xa2, 0xb2, 0x37, 0x73, 0x85, 0xab, + 0xcf, 0xfc, 0x65, 0x08, 0xf7, 0x64, 0xc0, 0x06, 0xd5, 0xad, 0x6f, 0xde, + 0xc2, 0x5c, 0x27, 0x25, 0x02, 0x3a, 0xe3, 0x55, 0x61, 0xb8, 0xb4, 0x1f, + 0x5b, 0x6a, 0x5f, 0x87, 0x50, 0x95, 0x7f, 0x6f, 0x72, 0x43, 0xbd, 0xf4, + 0x20, 0x19, 0xd1, 0x4d, 0x36, 0xb6, 0xa1, 0x6e, 0x75, 0xf1, 0xa2, 0x5a, + 0x7c, 0x49, 0xc0, 0x95, 0xf6, 0x75, 0xe0, 0x0e, 0xf2, 0x31, 0x7f, 0xb0, + 0x5b, 0x86, 0x8f, 0x35, 0x91, 0xe1, 0xd6, 0xfc, 0x2d, 0x30, 0xe7, 0x54, + 0xa0, 0x5d, 0x1e, 0xcf, 0xfd, 0x3c, 0x62, 0x8e, 0x0e, 0xde, 0x9e, 0xc0, + 0x9b, 0x8d, 0xec, 0x32, 0xab, 0xf5, 0x7a, 0xae, 0x02, 0xb4, 0x59, 0xaa, + 0xf3, 0xe4, 0xe0, 0x2a, 0xb3, 0x95, 0x3e, 0xd1, 0x3e, 0xb8, 0x29, 0x0c, + 0x7e, 0xdf, 0xff, 0x8c, 0x51, 0x4d, 0x46, 0xa6, 0x34, 0x7b, 0xe4, 0xb6, + 0xd6, 0x69, 0xf2, 0x9b, 0xaf, 0x9c, 0x8e, 0xf9, 0x42, 0xff, 0x78, 0x7f, + 0xfb, 0x3f, 0x6f, 0x75, 0x71, 0x62, 0x83, 0xcb, 0x64, 0x16, 0xe6, 0x5b, + 0x39, 0x34, 0xc9, 0x14, 0xd1, 0xc2, 0xaf, 0x6d, 0x22, 0xd3, 0x3a, 0xcc, + 0x82, 0x24, 0x1a, 0x73, 0xe4, 0x57, 0x0f, 0x2b, 0x77, 0x37, 0xd3, 0xde, + 0xdb, 0x35, 0xea, 0xeb, 0x7c, 0x22, 0x93, 0x20, 0xd5, 0x2d, 0x35, 0xa6, + 0xf3, 0xea, 0xb8, 0xd6, 0x3e, 0x2d, 0x8d, 0xc9, 0xa9, 0xab, 0x86, 0xf9, + 0x19, 0xae, 0x68, 0x2d, 0x57, 0x70, 0xdd, 0x6f, 0x2a, 0x01, 0xaf, 0x6b, + 0x12, 0xd0, 0x54, 0xe0, 0x0d, 0x1f, 0x28, 0x39, 0xa6, 0x69, 0x67, 0xd8, + 0x9c, 0xa8, 0x0b, 0x56, 0xfd, 0x7d, 0xe7, 0x0b, 0x62, 0x9a, 0x09, 0x71, + 0xbd, 0x49, 0xc6, 0xbf, 0x80, 0xfe, 0xa0, 0x20, 0xcf, 0x31, 0x74, 0x47, + 0x35, 0x56, 0xee, 0xc7, 0xee, 0x8f, 0xd9, 0x77, 0x49, 0x5f, 0x33, 0x20, + 0x98, 0x56, 0xf2, 0x84, 0xdf, 0xfe, 0x02, 0x18, 0x8c, 0xa7, 0x5a, 0xc5, + 0xbc, 0xfd, 0x43, 0xcd, 0x23, 0xb8, 0x44, 0xf6, 0xe7, 0xe4, 0x1e, 0x4c, + 0x19, 0x35, 0x1c, 0x61, 0x73, 0x3d, 0x59, 0x40, 0xde, 0x67, 0xfc, 0xb8, + 0xee, 0x03, 0x5b, 0x29, 0xd2, 0xab, 0xcf, 0xf8, 0x01, 0x4b, 0x6d, 0xdf, + 0xe3, 0x05, 0xf9, 0xcb, 0x70, 0x35, 0x5a, 0x01, 0x9c, 0x9f, 0xa8, 0x62, + 0xc9, 0x3a, 0x78, 0x31, 0x73, 0xf3, 0x99, 0xf1, 0x5f, 0x9b, 0x16, 0xe2, + 0xe8, 0x91, 0x57, 0xb8, 0xd3, 0x93, 0xfe, 0x99, 0xe0, 0x75, 0x57, 0x44, + 0x7b, 0x10, 0xc4, 0xc6, 0xdc, 0x14, 0x92, 0x04, 0x7b, 0xc3, 0x5c, 0x31, + 0xbf, 0x69, 0x75, 0x38, 0x84, 0x73, 0xe9, 0x5b, 0x49, 0x17, 0xe2, 0xed, + 0x2e, 0xcf, 0x36, 0xe1, 0x86, 0x93, 0x39, 0xaa, 0xa5, 0x70, 0x4a, 0xa4, + 0x4b, 0xf2, 0xa7, 0x0a, 0x71, 0xb4, 0xee, 0x39, 0x8e, 0xf0, 0xac, 0xa2, + 0xfe, 0xf9, 0xf6, 0xb8, 0x9c, 0x23, 0xc5, 0xfa, 0x7d, 0x9d, 0x03, 0x72, + 0x0c, 0x34, 0x72, 0xeb, 0xff, 0x7b, 0x7b, 0x9d, 0xc4, 0x07, 0x6b, 0xb2, + 0x0e, 0x3d, 0x66, 0xcb, 0x3e, 0x45, 0x53, 0x2d, 0xbd, 0x8f, 0x56, 0x56, + 0x9d, 0xd4, 0xaa, 0x73, 0xd0, 0x62, 0xc5, 0x78, 0xf2, 0x3b, 0xb4, 0xa8, + 0x54, 0xbc, 0x3c, 0xec, 0x75, 0x2b, 0xb0, 0x81, 0xbe, 0x49, 0xba, 0x54, + 0x8b, 0xb1, 0xff, 0xdb, 0x8a, 0x20, 0xdf, 0x46, 0x12, 0x59, 0x41, 0xe0, + 0x38, 0xd5, 0x6a, 0x42, 0x0e, 0xaf, 0xb5, 0xe0, 0x4e, 0xc6, 0xd7, 0x70, + 0x83, 0xc2, 0x5a, 0xee, 0xb1, 0x44, 0x09, 0xd9, 0x64, 0xa2, 0x21, 0x7e, + 0xdd, 0xa2, 0x14, 0x44, 0x58, 0xfc, 0x4e, 0x4d, 0xd5, 0x9a, 0x36, 0x8b, + 0x81, 0x86, 0xf2, 0x1a, 0xdd, 0xfe, 0xa9, 0xc0, 0xfb, 0xac, 0xb5, 0xf4, + 0x07, 0xf7, 0xa7, 0x71, 0xd0, 0xda, 0x07, 0xd8, 0xca, 0x37, 0x50, 0xb4, + 0xe9, 0x91, 0xe8, 0x66, 0x07, 0x65, 0xd7, 0x33, 0xf1, 0xb8, 0x49, 0x83, + 0x3a, 0x6b, 0x5b, 0x9b, 0x48, 0xea, 0x2d, 0xa7, 0x87, 0x25, 0x3d, 0x09, + 0xe7, 0x00, 0x48, 0x46, 0xf6, 0x0d, 0x5e, 0xcf, 0x9a, 0x55, 0x76, 0x7d, + 0x61, 0xaa, 0x06, 0xc9, 0x54, 0xbd, 0xc7, 0x6c, 0x71, 0xa8, 0x78, 0xde, + 0x54, 0xeb, 0x47, 0xae, 0x30, 0x12, 0x44, 0xa6, 0xdc, 0xa4, 0x48, 0x49, + 0x5d, 0xa0, 0x8a, 0x4a, 0x1b, 0xff, 0xc1, 0xd3, 0x84, 0xd7, 0x5c, 0x4a, + 0xe5, 0x25, 0xa5, 0x41, 0x84, 0x64, 0xf2, 0xdf, 0xd6, 0x27, 0xb6, 0xb1, + 0xfa, 0x1e, 0x1d, 0x2f, 0xbd, 0xad, 0x92, 0x46, 0xee, 0xf2, 0xff, 0xb4, + 0x52, 0x16, 0x38, 0x56, 0x93, 0xcb, 0x55, 0xd8, 0xde, 0xbf, 0x4d, 0x55, + 0x7d, 0x39, 0x96, 0xa2, 0xff, 0xa6, 0xdb, 0x52, 0x5b, 0xc3, 0x89, 0xc3, + 0x8f, 0x31, 0x26, 0xd9, 0xab, 0x47, 0x3a, 0x97, 0x2a, 0x6d, 0x13, 0x5d, + 0x01, 0x6a, 0x42, 0x4d, 0x8f, 0xff, 0x05, 0xbc, 0xfb, 0xc2, 0x54, 0xc6, + 0x36, 0x92, 0x7b, 0x57, 0x5b, 0x06, 0x84, 0xf1, 0x49, 0x48, 0x20, 0x83, + 0x04, 0xc3, 0x0f, 0xdb, 0x3c, 0x64, 0x23, 0x0a, 0x24, 0xae, 0x29, 0x5f, + 0xbb, 0x67, 0xe2, 0xbc, 0x69, 0x43, 0x4b, 0x8f, 0x1c, 0xa4, 0xcc, 0x48, + 0x2b, 0xfc, 0xac, 0x7a, 0x61, 0xed, 0x74, 0x25, 0x56, 0xc4, 0x9a, 0x1e, + 0x0f, 0xd1, 0x90, 0xaf, 0x7a, 0x9e, 0x65, 0x9a, 0x25, 0x25, 0xbe, 0xa3, + 0x22, 0x9d, 0xe7, 0x61, 0x9c, 0xea, 0xa0, 0xae, 0x55, 0x87, 0xaf, 0x7d, + 0x28, 0x21, 0x9f, 0x66, 0x73, 0xc8, 0x76, 0x7d, 0xa6, 0x47, 0xb9, 0x5b, + 0x65, 0x2a, 0x07, 0xbe, 0x6e, 0x33, 0xae, 0x33, 0x92, 0x6c, 0x0c, 0x9d, + 0xea, 0x9d, 0xd1, 0xde, 0x4a, 0xa7, 0xd1, 0x24, 0xad, 0xd0, 0xff, 0xbe, + 0x5f, 0x87, 0x8a, 0xcc, 0xa0, 0xff, 0x51, 0x8e, 0x7b, 0x9b, 0xd1, 0xdd, + 0xa9, 0xaa, 0x6e, 0x1e, 0x5f, 0x5c, 0xd2, 0x28, 0x95, 0x83, 0xfd, 0x12, + 0x17, 0x1a, 0xd8, 0x21, 0xe5, 0x30, 0x2e, 0x15, 0x78, 0x58, 0x1b, 0xf7, + 0x33, 0x1e, 0x6c, 0x81, 0x46, 0x02, 0x6d, 0xad, 0xaa, 0xfe, 0x02, 0xa0, + 0x05, 0x79, 0x0a, 0xea, 0xcc, 0x47, 0x51, 0x1f, 0xec, 0x3c, 0x23, 0xf8, + 0x9f, 0x0c, 0x66, 0xd4, 0x32, 0xef, 0x32, 0x8d, 0xa6, 0x95, 0x08, 0xb1, + 0x5b, 0x27, 0x7e, 0x29, 0xe8, 0x8b, 0x67, 0x78, 0x61, 0xb9, 0xdd, 0x3b, + 0xa1, 0x49, 0x7c, 0xd5, 0xd0, 0x2d, 0x6b, 0x88, 0x9d, 0x39, 0x93, 0x9b, + 0x18, 0xff, 0xcf, 0x70, 0xde, 0xe5, 0xfa, 0x29, 0xd2, 0xa2, 0x28, 0xc3, + 0x59, 0xba, 0x5d, 0x49, 0x5a, 0xa9, 0x4e, 0x50, 0x18, 0x9a, 0x06, 0x83, + 0x6f, 0xa7, 0x87, 0x3c, 0x29, 0x16, 0xab, 0xa8, 0x95, 0x60, 0x20, 0xaa, + 0x57, 0xfc, 0xc5, 0x2e, 0xc0, 0x89, 0xc7, 0xe7, 0xac, 0x41, 0x8b, 0xc3, + 0xfb, 0xc8, 0xbd, 0xce, 0x55, 0xaf, 0xec, 0x68, 0x01, 0xd7, 0x5c, 0x1a, + 0xd3, 0x95, 0x11, 0xdb, 0x70, 0xa6, 0x13, 0xb3, 0x76, 0x30, 0x17, 0x93, + 0x58, 0x62, 0x64, 0x55, 0x5d, 0xb1, 0xf3, 0x68, 0xff, 0xee, 0x33, 0x28, + 0x13, 0x23, 0x33, 0x40, 0x6e, 0xb6, 0x13, 0x53, 0xf1, 0x5d, 0x64, 0x0b, + 0xa5, 0x3b, 0x38, 0x66, 0x6c, 0xd9, 0xae, 0x3d, 0xdf, 0x7c, 0xb5, 0xf2, + 0x0d, 0xbf, 0xf5, 0x11, 0x90, 0x40, 0xca, 0xd9, 0xfb, 0x38, 0x9f, 0xa2, + 0xe3, 0xf3, 0xe0, 0xde, 0xd6, 0x43, 0xbc, 0xf5, 0xa1, 0x35, 0x1f, 0xa8, + 0x6b, 0x5a, 0x81, 0xae, 0x7c, 0x0f, 0xa5, 0x57, 0x90, 0xe7, 0xc8, 0x97, + 0x27, 0x5a, 0x3c, 0x19, 0xf7, 0x92, 0x39, 0x53, 0xcc, 0xdb, 0xe2, 0x32, + 0x7e, 0xaf, 0xf2, 0xfc, 0x3c, 0x40, 0x39, 0x4d, 0x9c, 0x76, 0x1c, 0x07, + 0xcb, 0x47, 0xc9, 0x3a, 0x71, 0x29, 0xe5, 0x41, 0x16, 0x72, 0xaf, 0x53, + 0x69, 0x65, 0x59, 0xbb, 0xc4, 0xa4, 0xc4, 0xc3, 0x2c, 0xef, 0x90, 0x31, + 0x35, 0xba, 0x37, 0xca, 0x18, 0xf4, 0x45, 0x1e, 0x12, 0x92, 0xb1, 0x0d, + 0x51, 0x7f, 0xd3, 0x6d, 0xa5, 0x14, 0xb6, 0x4a, 0x9a, 0xdb, 0xaa, 0x10, + 0x77, 0x0f, 0xda, 0xd6, 0x33, 0xee, 0x3b, 0x90, 0xcc, 0x03, 0xac, 0x86, + 0x2d, 0xbd, 0x92, 0x9f, 0x72, 0x24, 0x3e, 0x0f, 0x13, 0xee, 0xde, 0xfd, + 0x70, 0x5a, 0x27, 0x51, 0xec, 0x46, 0xcd, 0xd2, 0x5d, 0x63, 0x0e, 0xda, + 0xe8, 0x9b, 0xed, 0x54, 0xf0, 0xba, 0xfc, 0x17, 0xe0, 0xf1, 0x7e, 0xa9, + 0x56, 0x9c, 0x91, 0x24, 0xe6, 0xdf, 0xa0, 0x27, 0x97, 0x8d, 0xe4, 0xa4, + 0x06, 0x3e, 0xd3, 0x64, 0x5b, 0x7e, 0x7e, 0x19, 0xba, 0x08, 0xc9, 0x5e, + 0x22, 0x84, 0xb2, 0x3a, 0xd6, 0x3e, 0x9a, 0x76, 0xa6, 0x53, 0x30, 0xd7, + 0xaa, 0x7b, 0x10, 0x68, 0xce, 0x18, 0x37, 0x4e, 0xa9, 0xed, 0x76, 0x8d, + 0x94, 0x8e, 0x69, 0xf6, 0xbb, 0xcc, 0x2f, 0x8a, 0xa5, 0x09, 0xf3, 0x0f, + 0xfe, 0xc9, 0xd9, 0xf9, 0x49, 0x2a, 0x05, 0x7e, 0xf4, 0x10, 0xc8, 0xf4, + 0x0f, 0xf5, 0x89, 0xd7, 0x4d, 0xc4, 0x08, 0xed, 0xa2, 0xf1, 0xf7, 0x52, + 0xab, 0xfe, 0x78, 0x8a, 0x6f, 0x6f, 0x16, 0x8d, 0x92, 0xf0, 0x9c, 0xf5, + 0x48, 0x2a, 0xe5, 0xed, 0xbd, 0xab, 0x31, 0xea, 0x58, 0xe9, 0xf2, 0xa9, + 0x18, 0x26, 0x7f, 0x11, 0x16, 0x50, 0x34, 0x40, 0xbe, 0x02, 0x79, 0xe8, + 0x1d, 0x66, 0x0b, 0x35, 0x39, 0x55, 0x1a, 0x76, 0x5f, 0x75, 0xcc, 0xeb, + 0x39, 0x7c, 0x02, 0x4d, 0x89, 0x9b, 0xb0, 0x3e, 0x56, 0xfd, 0xcc, 0xcf, + 0x9f, 0xe4, 0xe5, 0xe7, 0x38, 0x97, 0x2a, 0x9a, 0x8a, 0x83, 0x31, 0x1a, + 0x7b, 0x10, 0x45, 0xbe, 0xef, 0xa7, 0x88, 0xd2, 0x8d, 0xf3, 0xc9, 0x5c, + 0x13, 0xd4, 0xa4, 0xbf, 0x29, 0xb4, 0x62, 0x30, 0xff, 0xc4, 0x8f, 0x00, + 0xe3, 0x7f, 0x7d, 0x98, 0xd6, 0x43, 0x42, 0xde, 0x30, 0x8e, 0x50, 0x10, + 0x30, 0x51, 0x21, 0x51, 0x8b, 0xd8, 0x9b, 0x03, 0x96, 0x72, 0x96, 0x95, + 0xc3, 0x62, 0x45, 0x9f, 0x81, 0x36, 0xa2, 0xf1, 0xa0, 0xf4, 0xf1, 0x9a, + 0x29, 0xd6, 0xe7, 0xab, 0xac, 0x96, 0x11, 0x75, 0xf3, 0xfe, 0xe0, 0x32, + 0xc8, 0xa0, 0xc7, 0x4b, 0x8d, 0x4f, 0x29, 0x97, 0xec, 0xbf, 0x5d, 0xf7, + 0xd9, 0xe7, 0xd1, 0xce, 0x4b, 0x3b, 0x2c, 0xb3, 0x22, 0xd7, 0x9c, 0xee, + 0x71, 0x6a, 0x74, 0x04, 0x2c, 0x24, 0x31, 0xfd, 0x12, 0x48, 0x45, 0x37, + 0x70, 0x7d, 0x08, 0x30, 0x78, 0xf8, 0x48, 0xfc, 0x82, 0xa9, 0x17, 0x84, + 0x23, 0x46, 0x36, 0x59, 0x84, 0xf2, 0xf6, 0x0f, 0x5c, 0xad, 0x6b, 0x9d, + 0xfd, 0xbe, 0xf5, 0x47, 0x9c, 0xad, 0xd1, 0x8f, 0xe2, 0xc9, 0x01, 0x44, + 0x54, 0x85, 0x25, 0xdb, 0x1d, 0x7f, 0x30, 0x18, 0x33, 0xa5, 0x76, 0xc2, + 0x43, 0x75, 0x8b, 0x98, 0xb0, 0xb0, 0x59, 0xf8, 0xa7, 0x62, 0x99, 0x22, + 0x75, 0x3d, 0x70, 0x35, 0xd4, 0x24, 0xc2, 0x1a, 0x21, 0x83, 0xe0, 0xb3, + 0x1d, 0x6c, 0x64, 0x04, 0xae, 0x87, 0xfa, 0x57, 0xeb, 0xef, 0x5b, 0x7b, + 0xad, 0x5b, 0xbc, 0xbb, 0x5e, 0xad, 0x63, 0x18, 0xbf, 0xf6, 0xa1, 0x09, + 0x97, 0xc2, 0x0c, 0x35, 0x9b, 0x06, 0x97, 0x27, 0x8b, 0x2e, 0x16, 0x99, + 0x07, 0x02, 0x59, 0x04, 0x82, 0x99, 0x5b, 0x19, 0x06, 0xdc, 0x03, 0x87, + 0xfc, 0x06, 0xdc, 0x11, 0x66, 0x2f, 0x3e, 0xd2, 0x5f, 0x98, 0x25, 0x32, + 0xce, 0xc7, 0xd5, 0xfd, 0x60, 0x84, 0x2c, 0x10, 0x0e, 0xd4, 0xbc, 0x12, + 0x6f, 0x75, 0xe4, 0x5e, 0x8c, 0x4e, 0x89, 0xfb, 0x5c, 0x7a, 0xe4, 0xec, + 0x50, 0x4d, 0x77, 0xe1, 0x67, 0x81, 0xce, 0x23, 0x8f, 0x58, 0x73, 0xcb, + 0xc7, 0x24, 0xfe, 0xb6, 0x69, 0x28, 0xff, 0x2d, 0x04, 0xd1, 0x01, 0xd1, + 0x08, 0x28, 0xbd, 0xe7, 0x55, 0x63, 0x3c, 0x10, 0x79, 0x46, 0x98, 0xad, + 0xff, 0xcf, 0xa2, 0x80, 0xee, 0x4b, 0x7d, 0x67, 0x5e, 0x62, 0x0d, 0x47, + 0xb2, 0x66, 0xb0, 0xcc, 0x18, 0x5d, 0x37, 0x81, 0xf7, 0xde, 0x82, 0x52, + 0x7c, 0x3f, 0xf1, 0xf6, 0x2d, 0xb4, 0xf5, 0x07, 0x1f, 0xe3, 0x80, 0xe2, + 0xc7, 0x13, 0x05, 0x1d, 0x02, 0xc0, 0xbc, 0xf3, 0xb0, 0xf2, 0xa2, 0x1d, + 0x16, 0xef, 0x9d, 0x4d, 0x30, 0x0b, 0xac, 0x6b, 0xe8, 0xd2, 0x64, 0xf9, + 0xf1, 0xd5, 0xf0, 0xcd, 0xd7, 0x18, 0xc6, 0x14, 0x57, 0x47, 0x29, 0xa3, + 0xf2, 0x57, 0x83, 0x1e, 0x50, 0xed, 0xc9, 0xfd, 0xd9, 0x45, 0x8d, 0x2a, + 0x61, 0x34, 0x4e, 0x6b, 0x95, 0x08, 0x36, 0x36, 0xe9, 0x97, 0xae, 0xc2, + 0xa9, 0x30, 0x3c, 0xa6, 0x7c, 0xf3, 0xdd, 0x02, 0xa6, 0xd1, 0xc4, 0x4b, + 0x1d, 0x6e, 0x29, 0x17, 0x7a, 0x71, 0x7d, 0xad, 0x27, 0x06, 0xff, 0x8a, + 0x8c, 0xe8, 0xe0, 0xe8, 0x9f, 0xb7, 0x7c, 0x05, 0xa4, 0xfa, 0x06, 0x75, + 0x4e, 0x7b, 0xa1, 0xa2, 0xe5, 0xf9, 0x43, 0x05, 0x1e, 0x9f, 0xa8, 0xd0, + 0x9f, 0x38, 0xdf, 0xae, 0xff, 0x9a, 0x6f, 0x87, 0x7b, 0xab, 0x10, 0xfd, + 0xa1, 0x59, 0x1f, 0x94, 0x93, 0x69, 0x94, 0x20, 0x8e, 0xee, 0xa2, 0x28, + 0x00, 0x88, 0x13, 0x5a, 0xd9, 0xd7, 0x9e, 0x72, 0xe0, 0x7c, 0x9f, 0xe8, + 0xf7, 0x09, 0x27, 0xa3, 0x46, 0x6b, 0xf8, 0x5b, 0xb4, 0xcd, 0xd5, 0x7b, + 0x95, 0xee, 0x5b, 0x5d, 0x57, 0x37, 0x9c, 0xfb, 0xaf, 0xfa, 0xcf, 0xb2, + 0xdb, 0x7c, 0xc9, 0x35, 0xee, 0xb0, 0xbe, 0x7d, 0x82, 0x67, 0xc5, 0xd4, + 0x6f, 0xd4, 0xc0, 0xfc, 0xa3, 0x0e, 0xd2, 0x60, 0x93, 0x37, 0xe6, 0x5a, + 0xcc, 0x7b, 0x65, 0x5e, 0x58, 0x54, 0x6c, 0x19, 0x55, 0x09, 0xe5, 0x48, + 0xc5, 0xaf, 0xdd, 0xdc, 0x82, 0xa1, 0xca, 0x8a, 0x3b, 0xd8, 0x9e, 0x4a, + 0x48, 0x32, 0x93, 0xda, 0x3e, 0xf4, 0x54, 0xf1, 0xb0, 0xf0, 0xe5, 0xe4, + 0xfe, 0x29, 0x39, 0x50, 0xae, 0x55, 0x3c, 0x56, 0x44, 0x81, 0x75, 0x7e, + 0xbb, 0x9d, 0x65, 0xc5, 0x5c, 0x0c, 0x60, 0x67, 0xb5, 0xa3, 0xd6, 0x26, + 0xdf, 0x09, 0x61, 0x37, 0x93, 0x78, 0x9d, 0xfb, 0x9c, 0xfb, 0xa2, 0xc1, + 0x3f, 0x0a, 0x35, 0x42, 0xb6, 0x9f, 0xc6, 0x5c, 0xb9, 0xc3, 0xd9, 0xf3, + 0xac, 0x18, 0x06, 0xbc, 0xb0, 0x18, 0x9a, 0x17, 0xbc, 0x3f, 0xd1, 0x1c, + 0x67, 0x32, 0x2a, 0xe5, 0xcd, 0xa5, 0x14, 0x5e, 0x09, 0x94, 0x31, 0x5f, + 0x85, 0x3e, 0x91, 0x7d, 0x54, 0x42, 0xf4, 0x19, 0x74, 0xa5, 0xf2, 0x5e, + 0xf6, 0x02, 0xcb, 0xbc, 0x68, 0x13, 0x39, 0x11, 0xdc, 0x83, 0x3b, 0xab, + 0x96, 0x81, 0xc9, 0xfb, 0x2a, 0xae, 0xda, 0x32, 0xa8, 0x2b, 0xb7, 0x1a, + 0x3f, 0x7a, 0xd7, 0xcf, 0xda, 0xd9, 0x20, 0x53, 0x16, 0xed, 0x91, 0xd2, + 0xe7, 0x83, 0xbe, 0x45, 0xe1, 0x67, 0x13, 0xf0, 0x31, 0xe3, 0xe0, 0x72, + 0x37, 0x0b, 0x0b, 0xf7, 0x86, 0x0e, 0xe0, 0x6b, 0x85, 0xf2, 0x66, 0xe7, + 0x13, 0xd5, 0x40, 0x14, 0xf3, 0x6a, 0x2a, 0x0d, 0x59, 0x57, 0xb2, 0xb1, + 0xa6, 0x70, 0xd0, 0xaa, 0xdc, 0x9c, 0xb4, 0x61, 0xdf, 0x6d, 0xa1, 0xb0, + 0x7f, 0x4a, 0xa2, 0x5f, 0x3c, 0xe6, 0x41, 0x6b, 0x25, 0xb3, 0x21, 0x48, + 0x91, 0x97, 0x2d, 0xf9, 0x58, 0x2b, 0xcd, 0x21, 0x6a, 0xf5, 0xdd, 0x41, + 0xd1, 0x5b, 0x73, 0xbe, 0x36, 0x59, 0x13, 0x54, 0x31, 0x01, 0xf7, 0x72, + 0xf0, 0x85, 0x49, 0x44, 0xfa, 0x2d, 0xd1, 0xa0, 0x05, 0xd3, 0x31, 0x54, + 0x03, 0x9d, 0xdb, 0x3a, 0x7d, 0xf5, 0x81, 0xde, 0xdd, 0x09, 0x44, 0x16, + 0xba, 0x48, 0x3c, 0xaa, 0x7d, 0x98, 0x6f, 0xeb, 0xce, 0xde, 0xbb, 0x1e, + 0x52, 0x5f, 0x59, 0x12, 0x5f, 0x3d, 0x7f, 0xf8, 0xd4, 0x85, 0x74, 0x88, + 0xbe, 0x8e, 0x62, 0x7c, 0xb1, 0xdc, 0xa9, 0x5e, 0x9e, 0x3f, 0xd1, 0xf3, + 0xcb, 0x2a, 0x48, 0x30, 0x9c, 0x34, 0xa4, 0x74, 0x23, 0x3e, 0x31, 0x40, + 0x26, 0xe9, 0x99, 0x8e, 0x70, 0xcd, 0xd5, 0x22, 0x55, 0x90, 0x8c, 0x3d, + 0x56, 0xe7, 0xf7, 0xa5, 0x98, 0x95, 0x3b, 0x4d, 0xc7, 0xe3, 0x33, 0xeb, + 0x43, 0x13, 0xbe, 0xbc, 0xdf, 0x51, 0xed, 0x99, 0x3d, 0xd4, 0xf4, 0xd4, + 0xf5, 0x01, 0xea, 0x3c, 0xa6, 0x15, 0x67, 0xab, 0x22, 0x78, 0xfb, 0x10, + 0x7f, 0xde, 0x3b, 0x61, 0x7a, 0x25, 0x70, 0x4f, 0x65, 0x5a, 0xa7, 0x64, + 0x3c, 0x6e, 0x9b, 0x3a, 0x1e, 0xe2, 0xd3, 0x42, 0xe4, 0x7a, 0xdb, 0x4d, + 0x23, 0xde, 0x32, 0xdd, 0x6c, 0xe1, 0x81, 0xe7, 0x79, 0xcb, 0x57, 0x0a, + 0x8d, 0x1d, 0xad, 0x37, 0xcd, 0x67, 0x5e, 0x8e, 0xf8, 0x05, 0x22, 0x2f, + 0x0a, 0x1f, 0x9d, 0x4f, 0x6f, 0x48, 0x08, 0xe6, 0xf4, 0x93, 0xcc, 0x76, + 0x8c, 0x19, 0x6e, 0x6a, 0x22, 0x1b, 0x67, 0x54, 0x76, 0x1a, 0xe7, 0x89, + 0xe2, 0x56, 0xe7, 0x3b, 0x47, 0x07, 0x5e, 0xc1, 0x6d, 0x7c, 0x5d, 0x1f, + 0xac, 0x09, 0x0e, 0x59, 0x05, 0xda, 0x53, 0xef, 0xcc, 0x84, 0x0f, 0x3f, + 0xf1, 0xbb, 0xcb, 0x16, 0x18, 0x47, 0xb5, 0x22, 0x54, 0x7e, 0xb1, 0x71, + 0x96, 0xa2, 0xa5, 0xa7, 0x42, 0x47, 0x87, 0x0a, 0x51, 0x2a, 0xde, 0xdb, + 0xad, 0xed, 0xd6, 0xa3, 0x00, 0xd6, 0x96, 0xd3, 0xa1, 0x71, 0xd8, 0x6a, + 0x7b, 0x6c, 0xcb, 0x98, 0x56, 0x36, 0x76, 0xac, 0x62, 0x39, 0xf2, 0x5d, + 0x29, 0xec, 0xe1, 0x03, 0x42, 0xfc, 0x68, 0xfa, 0x1d, 0x52, 0xc6, 0x94, + 0x37, 0x0b, 0xcc, 0xfc, 0xee, 0x93, 0x42, 0xb8, 0x6e, 0x60, 0xc6, 0x89, + 0x06, 0x2f, 0x9c, 0x48, 0x2a, 0xe9, 0x2c, 0xc7, 0x9b, 0x01, 0xa6, 0x51, + 0x27, 0x40, 0x9b, 0xe3, 0x1c, 0x9d, 0xb3, 0x53, 0xc9, 0x99, 0x81, 0x11, + 0xc0, 0x20, 0xfe, 0x53, 0xa3, 0x5a, 0x01, 0x79, 0xaf, 0x46, 0x77, 0x97, + 0xf4, 0x11, 0xc6, 0x19, 0x16, 0x01, 0x38, 0xc8, 0x8b, 0x90, 0x9c, 0x32, + 0x5c, 0xa8, 0xdb, 0x6e, 0x4b, 0x8c, 0x53, 0x50, 0x89, 0x57, 0xeb, 0xbf, + 0xee, 0x86, 0xa9, 0x12, 0xaf, 0x31, 0x49, 0xe4, 0x40, 0xd3, 0x4b, 0xe0, + 0x89, 0x9f, 0x0a, 0x88, 0xf5, 0xdd, 0xf5, 0x1c, 0xa9, 0xb8, 0xb7, 0x23, + 0xab, 0x76, 0xde, 0xce, 0xeb, 0x07, 0x59, 0xc4, 0x11, 0x3b, 0xfd, 0x32, + 0x94, 0x62, 0x62, 0x66, 0x6d, 0xac, 0xa8, 0xbd, 0xf8, 0x1a, 0xa9, 0x94, + 0xa3, 0x2e, 0xd8, 0x29, 0x57, 0x4a, 0xc1, 0x98, 0x29, 0x4e, 0xe5, 0xb0, + 0x18, 0x57, 0x66, 0xd3, 0xeb, 0xcb, 0xaa, 0xe3, 0x80, 0x57, 0x55, 0x08, + 0x36, 0x30, 0xfe, 0x7e, 0xd7, 0xec, 0x56, 0x51, 0xed, 0xcd, 0x5f, 0x1a, + 0x50, 0xe7, 0x70, 0x0a, 0x9f, 0x24, 0x5e, 0x5f, 0xfc, 0xe8, 0x78, 0xb7, + 0x46, 0xe5, 0xc5, 0xbc, 0x61, 0xce, 0xcc, 0x38, 0xa3, 0x39, 0x86, 0xcc, + 0xe7, 0xda, 0x29, 0xc0, 0x5f, 0x3f, 0x09, 0x7a, 0xca, 0x5f, 0x22, 0xb9, + 0x9b, 0x1b, 0xdf, 0x2a, 0x8b, 0xd7, 0xec, 0x39, 0xd9, 0x70, 0x6f, 0xe9, + 0x1f, 0xe1, 0x74, 0x65, 0xc5, 0xb3, 0x1a, 0x63, 0x48, 0xc3, 0x1d, 0x00, + 0x75, 0x09, 0x2f, 0x8f, 0x52, 0x44, 0xe1, 0xfe, 0xd8, 0x49, 0xcb, 0x9b, + 0x70, 0xd4, 0xca, 0xf1, 0xbb, 0x17, 0xfe, 0xca, 0xdc, 0xff, 0x8c, 0x7f, + 0xf2, 0x60, 0x34, 0x2f, 0xc1, 0x6c, 0x93, 0x34, 0x96, 0x59, 0x1c, 0x10, + 0xea, 0xa7, 0x36, 0xe8, 0x3a, 0xb4, 0x1d, 0xe6, 0xaa, 0xc8, 0x4e, 0x77, + 0x55, 0xca, 0xb1, 0x0e, 0x85, 0x7d, 0x11, 0x09, 0x7f, 0xa2, 0x8d, 0x6d, + 0x1d, 0x4d, 0xa0, 0x74, 0x00, 0x52, 0x64, 0x34, 0x1b, 0x1d, 0x4b, 0xea, + 0x7b, 0x92, 0x84, 0xe1, 0xf0, 0x08, 0x01, 0xc8, 0xdc, 0x15, 0x0a, 0x1a, + 0x77, 0xb1, 0xe5, 0xf3, 0x59, 0xa4, 0xd7, 0x1a, 0xa6, 0x4b, 0x59, 0x3b, + 0xa4, 0x23, 0x8b, 0x05, 0xb4, 0xa5, 0x58, 0xf5, 0xb8, 0x0a, 0x41, 0x20, + 0x13, 0xeb, 0x9e, 0x9e, 0x50, 0x33, 0xe4, 0xf2, 0x44, 0x4d, 0xf3, 0xf0, + 0xa3, 0xa3, 0x0f, 0x48, 0xf6, 0x4c, 0x39, 0xe4, 0xb6, 0x5a, 0xbf, 0xbf, + 0x79, 0x42, 0x02, 0xff, 0xbc, 0xd8, 0x11, 0x8d, 0x4f, 0x33, 0x87, 0xeb, + 0xbb, 0x60, 0xa3, 0xab, 0x25, 0x4c, 0x2e, 0xc9, 0x69, 0x27, 0xe0, 0x34, + 0x33, 0x3e, 0x07, 0xfc, 0xca, 0x9c, 0xcb, 0x37, 0x52, 0x8d, 0xe6, 0xe7, + 0x7c, 0x70, 0x7d, 0x3f, 0xd5, 0xa3, 0x12, 0xee, 0xee, 0x34, 0x01, 0xa4, + 0x42, 0xcf, 0x56, 0xc4, 0x05, 0x02, 0x1b, 0xf0, 0x36, 0xd1, 0x7b, 0x93, + 0x1d, 0x8a, 0xb7, 0x3e, 0x78, 0x6a, 0xcc, 0xb1, 0x15, 0x80, 0x3d, 0x33, + 0x3a, 0x99, 0x5d, 0xac, 0x26, 0x19, 0xdd, 0x18, 0x5c, 0xe9, 0x6b, 0xcd, + 0xa3, 0x77, 0x3a, 0x66, 0x8b, 0xe6, 0x46, 0xc8, 0x5f, 0x25, 0xf1, 0xe6, + 0x12, 0xad, 0x49, 0x98, 0x4d, 0xd8, 0xbf, 0x62, 0x24, 0x72, 0xe6, 0x14, + 0xf5, 0x57, 0xc9, 0xf7, 0xdb, 0x31, 0x16, 0x9b, 0xc2, 0x10, 0x6a, 0x11, + 0x54, 0xbb, 0x65, 0x06, 0x7c, 0xc3, 0x6b, 0xe8, 0xa2, 0xb2, 0xce, 0x60, + 0xef, 0x9f, 0xb3, 0xd2, 0x6d, 0x0d, 0x2c, 0x6a, 0x76, 0x7b, 0xc8, 0xfb, + 0xb3, 0xa4, 0xb4, 0xfa, 0xaf, 0x5f, 0x35, 0xeb, 0x8b, 0x86, 0x71, 0xab, + 0xc5, 0xa4, 0x8a, 0xcf, 0x80, 0xf3, 0x72, 0x5c, 0xd5, 0x12, 0xb7, 0xc9, + 0x2b, 0x65, 0xcc, 0x37, 0x07, 0x9d, 0x45, 0xc0, 0xa3, 0xef, 0xb0, 0x46, + 0x1d, 0x9b, 0x39, 0x25, 0x21, 0x9e, 0xf7, 0xd3, 0x0b, 0xed, 0xf0, 0xe3, + 0x86, 0xd9, 0xc6, 0x03, 0x5b, 0x9e, 0x05, 0x63, 0x5d, 0x73, 0xe7, 0x5d, + 0x6f, 0x57, 0xd9, 0xf9, 0xfa, 0x64, 0xc6, 0x4b, 0xa9, 0x7e, 0x9d, 0xec, + 0x43, 0x0f, 0x0f, 0xaf, 0x89, 0x49, 0x69, 0x09, 0x2d, 0x9c, 0xf1, 0x31, + 0x12, 0x26, 0xab, 0xa5, 0xf4, 0x49, 0xc7, 0x74, 0x4c, 0xd0, 0x70, 0x1d, + 0x45, 0x62, 0x76, 0xdc, 0xce, 0x57, 0xe2, 0x4d, 0x37, 0x64, 0xe3, 0x7b, + 0x5f, 0x85, 0x9d, 0x6a, 0xfe, 0xf3, 0x41, 0x73, 0xb9, 0xd9, 0x53, 0x6b, + 0x0d, 0x3e, 0xf6, 0x64, 0xdc, 0x9a, 0x0c, 0xdc, 0x12, 0xfb, 0xf9, 0xac, + 0xe1, 0x6a, 0x2d, 0x4e, 0x5f, 0x0f, 0x49, 0x2f, 0xda, 0xc0, 0x3f, 0x64, + 0x6d, 0x39, 0xc6, 0xf3, 0x6c, 0x49, 0x26, 0xb9, 0x0d, 0x55, 0x4c, 0x2e, + 0x9b, 0x9f, 0xb1, 0x5f, 0x8a, 0x72, 0x65, 0xbe, 0x4d, 0x1b, 0x61, 0x60, + 0x72, 0x98, 0xd2, 0xc6, 0x00, 0x19, 0x0c, 0x32, 0xa2, 0x44, 0xed, 0x91, + 0x6a, 0x49, 0xc5, 0xc9, 0xa2, 0x0b, 0x17, 0xf3, 0x87, 0xd8, 0x26, 0xe2, + 0x3e, 0xd8, 0xb0, 0xf7, 0xef, 0x31, 0x7a, 0x81, 0x2c, 0x1e, 0x92, 0x9e, + 0x69, 0x6a, 0x40, 0x20, 0x4d, 0x6f, 0xa9, 0x69, 0x62, 0x9e, 0x3a, 0x15, + 0x9b, 0x3c, 0x2f, 0x95, 0x6e, 0x9f, 0x97, 0xa8, 0x4d, 0xce, 0x38, 0x16, + 0xeb, 0x0d, 0xd5, 0x68, 0xbf, 0x8d, 0x24, 0x35, 0x98, 0xcd, 0x90, 0x87, + 0x16, 0x6a, 0x15, 0xe6, 0x6f, 0xed, 0xcb, 0x4b, 0x93, 0x35, 0xe3, 0x83, + 0x9d, 0x74, 0x45, 0xa1, 0xbf, 0x27, 0xbd, 0xde, 0x4d, 0x92, 0xee, 0x64, + 0xb7, 0x83, 0x72, 0x30, 0x14, 0x5e, 0x3b, 0xbe, 0x6c, 0x9c, 0xc4, 0x91, + 0x4d, 0x46, 0xd2, 0x15, 0xc5, 0x4b, 0x4f, 0xce, 0x20, 0x48, 0xe8, 0x18, + 0x23, 0x42, 0x1c, 0x93, 0xa2, 0x49, 0xe5, 0xf9, 0xc0, 0x62, 0xf3, 0x10, + 0x66, 0x21, 0x07, 0x85, 0x74, 0x9e, 0xca, 0xd3, 0x98, 0x5a, 0xeb, 0xad, + 0xdd, 0xf8, 0xe9, 0x51, 0x9b, 0x18, 0x26, 0xdf, 0x2f, 0x6f, 0x05, 0x41, + 0xa7, 0x1d, 0xbe, 0xcb, 0x85, 0x4e, 0x45, 0x22, 0x32, 0xd3, 0xd8, 0xe1, + 0xcc, 0x86, 0xb2, 0x08, 0xeb, 0x5f, 0xcc, 0x73, 0x8d, 0x72, 0x65, 0x21, + 0x9f, 0x7e, 0xc8, 0x19, 0xf6, 0xa5, 0xd7, 0x48, 0x6a, 0x82, 0x69, 0x04, + 0xf5, 0x2c, 0xea, 0x69, 0x74, 0xc8, 0xdf, 0x40, 0x91, 0x34, 0x17, 0x42, + 0xbb, 0xfe, 0x6c, 0x18, 0x66, 0x79, 0x71, 0x2e, 0x4c, 0xf5, 0xae, 0x7c, + 0xb0, 0x21, 0x42, 0x99, 0x05, 0xc2, 0xa1, 0x82, 0xfb, 0x98, 0x2f, 0x5d, + 0x3a, 0xbc, 0x06, 0xb3, 0x6d, 0x91, 0x1a, 0x2c, 0x9a, 0xdf, 0x7c, 0xa5, + 0xfe, 0xd0, 0xf4, 0xa5, 0x35, 0x27, 0x97, 0xb9, 0xa3, 0x44, 0xd2, 0xfd, + 0x41, 0x69, 0xea, 0xe4, 0x6d, 0x92, 0x37, 0x77, 0xd5, 0x90, 0x46, 0x3e, + 0xf1, 0xe7, 0x4d, 0xb3, 0x7b, 0x49, 0xed, 0x51, 0xd2, 0xe2, 0xb9, 0x49, + 0xbb, 0x54, 0x2d, 0xdf, 0x17, 0x23, 0xee, 0xd0, 0x33, 0xa5, 0x4a, 0xf3, + 0x01, 0x34, 0x53, 0x60, 0x60, 0x53, 0xba, 0xb1, 0x7c, 0xb2, 0x52, 0xcb, + 0xdc, 0x4d, 0xa5, 0x21, 0x58, 0x51, 0xa3, 0xee, 0xc5, 0x78, 0x80, 0x1a, + 0x0b, 0x22, 0xe7, 0x55, 0xc5, 0xa4, 0x72, 0x8c, 0xb6, 0xde, 0x91, 0x7b, + 0x46, 0x52, 0xb3, 0x97, 0xf7, 0xcc, 0xb9, 0x72, 0x79, 0xd1, 0x48, 0xa4, + 0x98, 0x0f, 0xc7, 0x55, 0x5c, 0x4f, 0x95, 0xf7, 0x1e, 0xf4, 0xc0, 0xd6, + 0x00, 0xa5, 0xf0, 0x29, 0x83, 0x0c, 0x96, 0x3f, 0x70, 0x39, 0xd7, 0x8a, + 0x07, 0xd2, 0x3f, 0xb4, 0xdc, 0x21, 0x92, 0x17, 0x19, 0xbf, 0xc2, 0xb1, + 0xf9, 0x77, 0xf1, 0xbb, 0x0e, 0x99, 0x1a, 0xfa, 0xe9, 0xed, 0x00, 0xf5, + 0xc8, 0x84, 0x86, 0xfd, 0x14, 0x7a, 0xf2, 0x06, 0xea, 0x97, 0x5f, 0xd6, + 0x6b, 0x99, 0x5f, 0xf2, 0xfd, 0xea, 0x61, 0x74, 0x7b, 0xa1, 0xa9, 0xc4, + 0xef, 0xcf, 0x6d, 0x80, 0xb2, 0x0b, 0x3a, 0x32, 0x7b, 0xe9, 0x3e, 0x7a, + 0x94, 0xc2, 0xdb, 0x92, 0xea, 0x82, 0xf8, 0xd2, 0x86, 0xc2, 0xeb, 0xfc, + 0x95, 0x24, 0xad, 0xb9, 0x82, 0xeb, 0x7d, 0xf7, 0xe1, 0x10, 0x73, 0x15, + 0xb5, 0xde, 0xf4, 0x0d, 0x4d, 0xb5, 0xbc, 0x66, 0xbe, 0xd4, 0xd6, 0x19, + 0xae, 0x97, 0x8a, 0xd5, 0x46, 0x10, 0x56, 0x86, 0x20, 0x19, 0x47, 0x1d, + 0xe3, 0x55, 0x81, 0x8e, 0xab, 0xed, 0x93, 0xd9, 0x5a, 0xf1, 0xad, 0x31, + 0xca, 0x7a, 0xba, 0x07, 0x53, 0x86, 0x51, 0xbc, 0xc4, 0x97, 0xce, 0x49, + 0x7b, 0x62, 0x42, 0xc5, 0xa9, 0xf2, 0x80, 0x7f, 0xfe, 0x12, 0xc6, 0x1d, + 0x2c, 0x8e, 0x52, 0x28, 0x11, 0x8f, 0xf1, 0x37, 0x58, 0xfa, 0xd5, 0x1a, + 0xd4, 0xf1, 0x3b, 0x8d, 0xa7, 0xe1, 0xbb, 0xcd, 0xee, 0x28, 0x73, 0x3f, + 0x3c, 0xf7, 0xe6, 0x58, 0x7b, 0x18, 0x0c, 0x95, 0x5f, 0xda, 0x4a, 0xee, + 0x1b, 0x11, 0x6e, 0x4d, 0xf0, 0xe3, 0x94, 0x67, 0x0e, 0x2c, 0x1b, 0x7d, + 0x37, 0xf5, 0xd1, 0xff, 0x4c, 0x72, 0xad, 0xcf, 0x96, 0xe6, 0x2a, 0x96, + 0x50, 0x57, 0xcd, 0x4d, 0x3c, 0xc2, 0x3b, 0xb8, 0x22, 0xae, 0x5e, 0xe7, + 0x3d, 0x57, 0x17, 0x4a, 0xcf, 0xd5, 0x87, 0x6a, 0x2a, 0x40, 0x8a, 0xb3, + 0x71, 0xc3, 0xb2, 0xb9, 0x29, 0x3b, 0x75, 0x98, 0x01, 0xf6, 0xca, 0x03, + 0x58, 0x92, 0x1e, 0x71, 0x97, 0xac, 0xad, 0xb2, 0xef, 0x24, 0xc4, 0xf8, + 0x6c, 0x57, 0x11, 0x96, 0x71, 0xee, 0x19, 0xc9, 0x8b, 0xcf, 0xcb, 0x35, + 0x90, 0xfe, 0xc4, 0x20, 0xbd, 0x1d, 0x4a, 0xe0, 0xe7, 0xa0, 0x55, 0x36, + 0xae, 0x34, 0xf4, 0x2c, 0x0a, 0x3b, 0x43, 0x2f, 0xaf, 0x9f, 0xd2, 0x6b, + 0xf5, 0x0d, 0x7f, 0x47, 0x69, 0x6f, 0xf1, 0xba, 0x8e, 0xaf, 0xec, 0x93, + 0xd1, 0x1c, 0x2d, 0x2a, 0x87, 0x53, 0x12, 0xb1, 0x3b, 0x77, 0x45, 0xb7, + 0xb5, 0x35, 0x3d, 0x8e, 0x38, 0xd2, 0x90, 0x5b, 0xea, 0x00, 0x52, 0x0f, + 0xda, 0xd9, 0x4d, 0xb5, 0x13, 0xd3, 0xd1, 0x38, 0x98, 0xd0, 0xda, 0x9a, + 0x66, 0x5f, 0x19, 0xad, 0xea, 0x75, 0x2a, 0x11, 0x8c, 0x54, 0xb3, 0x5c, + 0x67, 0x09, 0xf6, 0x22, 0x36, 0xe2, 0x2d, 0xaf, 0x92, 0x3d, 0xa1, 0xd3, + 0xef, 0x55, 0x4f, 0x41, 0xf1, 0x21, 0xc4, 0xfc, 0xdb, 0x61, 0x45, 0x31, + 0x70, 0xa1, 0xe0, 0x3b, 0x43, 0x82, 0x47, 0xfe, 0xb7, 0x03, 0x6e, 0x43, + 0xc6, 0x8a, 0xa8, 0x46, 0xcb, 0x07, 0xd6, 0x5b, 0x21, 0xf2, 0x51, 0x6f, + 0xdf, 0x21, 0x16, 0x77, 0x8b, 0x68, 0xb1, 0x66, 0xe2, 0x34, 0xa4, 0x1e, + 0x4e, 0x3c, 0xec, 0x4b, 0xcc, 0x85, 0x43, 0xde, 0x97, 0x21, 0xa1, 0x1d, + 0x01, 0x7f, 0x61, 0x4d, 0x96, 0xea, 0x9d, 0x53, 0xf8, 0x84, 0xf5, 0xd6, + 0xad, 0x80, 0x93, 0x6c, 0x38, 0xf3, 0x62, 0xbc, 0xe6, 0x48, 0xcf, 0x81, + 0xb0, 0xe7, 0x54, 0x56, 0x70, 0x8d, 0xfe, 0x81, 0x3b, 0x8f, 0x46, 0xa9, + 0xab, 0xc3, 0x37, 0xde, 0xf0, 0x64, 0x1e, 0xac, 0x56, 0x5d, 0x94, 0x3a, + 0x72, 0xfa, 0xbc, 0x45, 0x0f, 0xc7, 0x33, 0x5d, 0x72, 0x9d, 0x5c, 0x20, + 0x1f, 0x22, 0xcb, 0x5e, 0x64, 0xd5, 0x0f, 0xdf, 0x2c, 0xe4, 0xc0, 0x5c, + 0x66, 0xfe, 0x2e, 0x20, 0xec, 0x14, 0x30, 0xe4, 0x10, 0x13, 0xf3, 0xa8, + 0x52, 0xa5, 0x26, 0x42, 0x29, 0xeb, 0xfb, 0x8a, 0xb7, 0x8b, 0x32, 0x34, + 0xbf, 0x79, 0xfb, 0x2f, 0x80, 0x5c, 0xa2, 0xdf, 0xbd, 0xfe, 0xf7, 0x2b, + 0xd7, 0x8e, 0x95, 0x69, 0x03, 0xc6, 0x09, 0xef, 0x59, 0xac, 0xb4, 0xc5, + 0xb2, 0x26, 0x5d, 0x9e, 0xd8, 0x38, 0xf8, 0x85, 0x66, 0x8d, 0x75, 0x03, + 0xf3, 0x6e, 0x61, 0x61, 0x6f, 0x19, 0xdc, 0xca, 0xe6, 0x63, 0xf4, 0xf9, + 0x56, 0x82, 0xa2, 0xd2, 0x14, 0xf8, 0xe6, 0x03, 0x7b, 0x41, 0xb2, 0xd6, + 0x0a, 0x3d, 0x34, 0xbf, 0x80, 0x82, 0xbd, 0x2d, 0x6f, 0x1d, 0xae, 0x1a, + 0xc4, 0x41, 0x35, 0x7f, 0x2a, 0x87, 0x15, 0x20, 0xd1, 0x7d, 0x6a, 0x24, + 0x60, 0xe7, 0xdc, 0xc5, 0xc7, 0xda, 0x46, 0x5b, 0x97, 0x5c, 0xea, 0x30, + 0xfd, 0x17, 0xd0, 0xe2, 0x9f, 0x65, 0xcd, 0x7d, 0x3a, 0x28, 0xd0, 0x49, + 0xae, 0x90, 0x83, 0x63, 0x72, 0xfd, 0x99, 0xea, 0x91, 0xb6, 0xf3, 0x92, + 0xb9, 0x5f, 0x03, 0xbf, 0x97, 0xa7, 0xb2, 0x0e, 0x4c, 0x66, 0x4b, 0x83, + 0xb0, 0xf5, 0x59, 0xb9, 0x3b, 0xec, 0x73, 0xf7, 0x46, 0x51, 0xe3, 0x7d, + 0xc0, 0xcc, 0xab, 0x0d, 0x50, 0x2f, 0x1b, 0x67, 0x31, 0x5b, 0xfd, 0x33, + 0x40, 0x4c, 0xe8, 0x5b, 0x82, 0x48, 0xf7, 0xf4, 0xa0, 0x83, 0x47, 0x2c, + 0xde, 0xf4, 0x7f, 0x12, 0x14, 0x36, 0xf6, 0x2b, 0xc9, 0xa6, 0x19, 0x81, + 0xe7, 0x3d, 0x27, 0x3b, 0x36, 0x44, 0x6f, 0x60, 0x54, 0x9c, 0x11, 0xed, + 0x3d, 0xc1, 0xcd, 0xb0, 0x6b, 0x7a, 0x67, 0x61, 0x30, 0x1e, 0xdc, 0x53, + 0xe7, 0x28, 0x4f, 0xec, 0x82, 0x75, 0xf4, 0x17, 0x10, 0xbe, 0x89, 0x99, + 0x51, 0xa1, 0xa7, 0xe3, 0x50, 0xeb, 0xd1, 0x3a, 0xe9, 0x8e, 0xae, 0xb7, + 0xdb, 0x75, 0x0e, 0x0d, 0x1a, 0x20, 0x31, 0x65, 0x6b, 0xa5, 0x4d, 0x91, + 0x9c, 0x63, 0x38, 0x48, 0xc3, 0xae, 0x9f, 0xc2, 0x5c, 0xbc, 0x18, 0x8f, + 0x42, 0xc0, 0x0d, 0xef, 0x64, 0x8e, 0x7b, 0x76, 0x03, 0x08, 0xf2, 0x96, + 0x77, 0x4f, 0x2c, 0xf3, 0x52, 0x22, 0x74, 0xa6, 0x76, 0xdd, 0xe4, 0x16, + 0x79, 0xf4, 0x62, 0x9d, 0x39, 0x7f, 0x14, 0x1a, 0x38, 0x70, 0x39, 0x3e, + 0xe1, 0x9c, 0xd6, 0x12, 0x87, 0xc4, 0x89, 0xe5, 0xf1, 0x72, 0x65, 0x02, + 0xdf, 0xe5, 0xeb, 0x61, 0xcb, 0x8f, 0xf1, 0x79, 0x77, 0x1c, 0x2b, 0x86, + 0xbb, 0x35, 0x6a, 0x07, 0xc9, 0x1c, 0xb2, 0x9c, 0x58, 0xa4, 0xee, 0xe8, + 0x77, 0x5a, 0xd3, 0x6f, 0xbb, 0x65, 0x5f, 0x35, 0xa9, 0xce, 0x16, 0xe3, + 0x45, 0x28, 0x9e, 0x39, 0xec, 0x58, 0xa9, 0xc7, 0x92, 0x93, 0xa6, 0x73, + 0x40, 0x59, 0xf6, 0xb0, 0x66, 0xab, 0x18, 0x64, 0xd7, 0xf3, 0x39, 0x57, + 0xbb, 0x79, 0xe9, 0x78, 0x2f, 0x09, 0x0f, 0xa5, 0x4f, 0x26, 0xb8, 0xdd, + 0xe8, 0x8f, 0x80, 0xbc, 0x2c, 0x9d, 0x61, 0xb3, 0x4f, 0xf8, 0x88, 0x0a, + 0xf1, 0xca, 0x30, 0xdd, 0xfb, 0x08, 0x2f, 0x07, 0xd8, 0x29, 0xc4, 0x90, + 0xba, 0xf8, 0x63, 0xe4, 0x1b, 0xfc, 0xef, 0x36, 0xe2, 0x97, 0xf0, 0x16, + 0xa3, 0x55, 0x90, 0xda, 0x5a, 0x0b, 0xea, 0x02, 0x60, 0xf2, 0x8d, 0x51, + 0xfd, 0x5f, 0x53, 0xa3, 0xa1, 0x01, 0x65, 0x7e, 0xf8, 0x73, 0xf6, 0x6e, + 0x70, 0x0b, 0xe2, 0x93, 0x95, 0x5c, 0xaa, 0xd6, 0xea, 0xbe, 0x6c, 0x20, + 0x9e, 0x91, 0x8f, 0x24, 0x28, 0x5f, 0x0f, 0xc4, 0x60, 0x60, 0x9c, 0xb0, + 0x60, 0xc2, 0xee, 0xf5, 0x35, 0x0a, 0x12, 0xc8, 0x35, 0x96, 0xa3, 0xc2, + 0x4a, 0xa4, 0x12, 0x20, 0x4c, 0x13, 0xf6, 0xa3, 0x06, 0x42, 0xc7, 0x77, + 0xf4, 0x9a, 0x76, 0x8e, 0x96, 0xcb, 0x40, 0xf4, 0x15, 0x9f, 0x36, 0x94, + 0x8e, 0x9e, 0xc5, 0x66, 0xa1, 0x59, 0xf0, 0x79, 0xa7, 0xad, 0x00, 0x9f, + 0xbb, 0xbf, 0x32, 0xae, 0xea, 0x22, 0xa6, 0xe1, 0x18, 0x47, 0x24, 0x6a, + 0x2a, 0xfd, 0x38, 0x2e, 0x59, 0x32, 0x56, 0x28, 0x27, 0xf4, 0x43, 0xa8, + 0x1a, 0x63, 0xa8, 0xd0, 0x58, 0x2f, 0x2f, 0x53, 0x03, 0x48, 0x2b, 0xaa, + 0x3e, 0x94, 0xf5, 0xfd, 0xab, 0xc3, 0x7e, 0x8e, 0xc9, 0x20, 0x42, 0xe5, + 0x7d, 0xa6, 0x20, 0x6f, 0x88, 0xee, 0x2c, 0x75, 0xcb, 0xb4, 0xab, 0x71, + 0x84, 0x52, 0x32, 0x38, 0xd9, 0xfe, 0xc3, 0xef, 0xb6, 0x2d, 0x8c, 0xe9, + 0x02, 0xed, 0x2b, 0xcb, 0xfb, 0x1b, 0xe4, 0x82, 0xc1, 0x9e, 0x96, 0x37, + 0x43, 0x8c, 0x74, 0x95, 0x55, 0x56, 0x59, 0x15, 0x4f, 0x74, 0x00, 0xfe, + 0x92, 0x65, 0x34, 0xa7, 0xfc, 0xc9, 0x67, 0xd2, 0x64, 0x15, 0xe2, 0x57, + 0xed, 0xdf, 0x17, 0x7b, 0xbd, 0x6f, 0x34, 0x89, 0x6b, 0x72, 0x07, 0x2b, + 0xca, 0x42, 0xa7, 0x93, 0xa6, 0xca, 0x7a, 0xcb, 0x91, 0x9b, 0x1a, 0x45, + 0x6e, 0x8b, 0xc7, 0x07, 0x9d, 0xc2, 0x7e, 0xf9, 0x19, 0x35, 0x88, 0x98, + 0x2a, 0xec, 0x90, 0xa9, 0xfe, 0x6e, 0x0d, 0xdd, 0xf6, 0x76, 0x7f, 0x6b, + 0x27, 0x4c, 0xd1, 0x08, 0x8b, 0x96, 0x39, 0xd9, 0xe3, 0xe6, 0x83, 0x64, + 0xaa, 0x0d, 0xcb, 0x09, 0xc1, 0xc4, 0x92, 0xc4, 0xfc, 0x05, 0x21, 0xeb, + 0x93, 0x48, 0xb9, 0x0b, 0x13, 0xd7, 0x38, 0x87, 0xc8, 0xa5, 0x56, 0x61, + 0x13, 0x7f, 0x6e, 0xf8, 0x85, 0xb7, 0xf3, 0x9b, 0x8c, 0xd0, 0x99, 0x51, + 0x05, 0x78, 0xd9, 0x77, 0xf3, 0xc8, 0xc3, 0x85, 0x0f, 0xef, 0x5f, 0xaa, + 0x26, 0x2d, 0x1f, 0x43, 0x79, 0x6b, 0xe8, 0x27, 0x5d, 0x16, 0x6d, 0x71, + 0x66, 0x80, 0xdf, 0x0f, 0xe2, 0x61, 0x5d, 0xaf, 0x95, 0xf4, 0xf9, 0xca, + 0xe1, 0x60, 0xeb, 0x6b, 0x83, 0xd8, 0xd5, 0x9a, 0x75, 0xdb, 0xe1, 0xc2, + 0xef, 0xd0, 0xaa, 0xf7, 0xf8, 0x1b, 0xdf, 0x42, 0x9c, 0x2b, 0x86, 0x39, + 0x8a, 0x4e, 0x43, 0xa9, 0x77, 0x90, 0xe3, 0xb6, 0x1f, 0x78, 0x80, 0xb7, + 0xb5, 0x9c, 0x01, 0x03, 0xa5, 0xce, 0x3a, 0x51, 0xe0, 0x09, 0x27, 0x37, + 0xbf, 0xb7, 0x8a, 0x61, 0x0b, 0x54, 0xf6, 0x6b, 0x2a, 0xd3, 0xdc, 0x31, + 0x43, 0x0c, 0x66, 0xc3, 0xd4, 0x84, 0xe3, 0x68, 0x7c, 0x39, 0x4c, 0x5e, + 0xf6, 0xcd, 0xfd, 0x7e, 0x95, 0x41, 0x5e, 0xee, 0x61, 0x94, 0x44, 0x0f, + 0xdb, 0x8f, 0x1a, 0xee, 0x45, 0x41, 0x55, 0x8c, 0xe3, 0x13, 0xc5, 0x6c, + 0x7b, 0x2a, 0x60, 0x99, 0x38, 0x87, 0x61, 0x16, 0x0b, 0xff, 0x8c, 0x20, + 0xac, 0x68, 0x68, 0xa3, 0x5c, 0x07, 0x9a, 0xea, 0xc9, 0x9a, 0x9e, 0x0d, + 0xd4, 0x81, 0x47, 0x40, 0xee, 0x04, 0xa3, 0xd6, 0x58, 0xb3, 0x25, 0xd8, + 0xd4, 0xad, 0xe4, 0x45, 0x15, 0x4b, 0xc5, 0x59, 0x45, 0xd4, 0xb0, 0x13, + 0x5f, 0xb7, 0x50, 0x8e, 0x1e, 0x46, 0xa6, 0x99, 0xb9, 0x08, 0x69, 0x2f, + 0xe1, 0xc9, 0xdf, 0x17, 0x35, 0x83, 0xc4, 0xf6, 0xb6, 0xe6, 0x35, 0x09, + 0xc3, 0xb7, 0xf2, 0x33, 0x30, 0xbd, 0xd8, 0x2b, 0x9e, 0x64, 0xc8, 0x5a, + 0x0b, 0xc7, 0xbf, 0xe7, 0xff, 0x78, 0xf8, 0x73, 0xb1, 0xb4, 0x19, 0xb5, + 0xc8, 0x4d, 0xce, 0x77, 0x90, 0x40, 0xaf, 0xb9, 0x5b, 0x01, 0x0f, 0x10, + 0xb5, 0xfe, 0x51, 0x9e, 0x92, 0x26, 0x71, 0xe3, 0x45, 0x2f, 0x4a, 0x12, + 0xef, 0x8c, 0x5c, 0xbf, 0xf0, 0xaf, 0xc1, 0x60, 0xac, 0x60, 0xe1, 0xb7, + 0x6c, 0x92, 0x51, 0x6d, 0xa4, 0x54, 0x9b, 0x93, 0x83, 0xa0, 0x3f, 0x32, + 0x64, 0x87, 0x38, 0x00, 0x1d, 0x23, 0x20, 0x13, 0x54, 0x62, 0x4f, 0xeb, + 0x60, 0x65, 0x8d, 0x86, 0xa6, 0x33, 0xe1, 0xdc, 0x22, 0xd6, 0x5e, 0x13, + 0xdc, 0xe2, 0x33, 0xeb, 0xc1, 0xb0, 0xfd, 0x2c, 0xe0, 0x2b, 0x3e, 0x1a, + 0x38, 0xec, 0xb2, 0x9d, 0xdc, 0xdd, 0x32, 0x49, 0x59, 0xb4, 0x1d, 0x8b, + 0xf3, 0xe6, 0xb6, 0x0a, 0x9c, 0xed, 0xa2, 0xf3, 0x1d, 0x6b, 0x65, 0x95, + 0x6b, 0x70, 0x71, 0x5d, 0x2f, 0x24, 0xf1, 0x11, 0x65, 0xd4, 0x30, 0xe1, + 0xc5, 0x3a, 0x09, 0xa2, 0xd3, 0x0d, 0xac, 0x4a, 0xfe, 0x38, 0x9e, 0xda, + 0xc5, 0x1f, 0xcc, 0xc0, 0xe8, 0x43, 0xb9, 0x76, 0xc1, 0xf9, 0xf6, 0xeb, + 0x62, 0xb7, 0x9c, 0xb8, 0xe5, 0xd1, 0x76, 0xf1, 0xeb, 0xa4, 0x47, 0xb1, + 0xa6, 0xf8, 0xa7, 0x24, 0x6b, 0x22, 0x7f, 0x01, 0xf9, 0x3a, 0xb6, 0x13, + 0xbc, 0x47, 0xaf, 0x68, 0x19, 0x6e, 0x9e, 0xde, 0xa7, 0xfe, 0xdc, 0x8e, + 0x48, 0x7d, 0xa6, 0x4b, 0xb8, 0x50, 0x47, 0x06, 0xc1, 0x7b, 0x17, 0xfc, + 0x20, 0x70, 0xf2, 0x7b, 0x0b, 0x17, 0x3c, 0x15, 0x3a, 0xd2, 0x7f, 0x12, + 0xb1, 0x8b, 0xaa, 0x88, 0xba, 0x58, 0xcf, 0x5c, 0x5e, 0xff, 0xb5, 0x68, + 0x1d, 0xa3, 0xab, 0x1f, 0xfa, 0x1c, 0x77, 0x03, 0xf4, 0x38, 0xd3, 0x0e, + 0x2d, 0xa3, 0x52, 0x03, 0x59, 0xa9, 0xdd, 0x07, 0x5f, 0x77, 0x9e, 0xc7, + 0x1e, 0x2a, 0xa4, 0xc3, 0x52, 0xbe, 0x71, 0x86, 0x19, 0x44, 0x7c, 0x62, + 0x2c, 0xcf, 0x66, 0x5c, 0x6f, 0xa1, 0xbf, 0xc8, 0x35, 0x85, 0x0e, 0x7a, + 0x07, 0xc9, 0x90, 0x91, 0xbb, 0x63, 0x0e, 0xce, 0x9c, 0x95, 0xf4, 0xf4, + 0x0c, 0x51, 0x4b, 0xf8, 0x79, 0x07, 0x17, 0xc4, 0x71, 0x53, 0x4d, 0x09, + 0x34, 0xc3, 0x17, 0xcb, 0xf2, 0xc4, 0x77, 0x26, 0x49, 0xff, 0x28, 0xae, + 0x80, 0x6b, 0x9d, 0x4e, 0x11, 0x47, 0x35, 0xcc, 0x1b, 0xd7, 0xa4, 0x9a, + 0xc0, 0xd9, 0x46, 0x1f, 0x15, 0x7f, 0x07, 0xeb, 0x91, 0xc8, 0x08, 0xcb, + 0xcc, 0xbc, 0x61, 0xe4, 0xd4, 0x6c, 0x65, 0x53, 0x3f, 0x2c, 0xf2, 0xeb, + 0x67, 0x77, 0xec, 0x85, 0x11, 0x88, 0x7d, 0xbe, 0x1e, 0x66, 0x63, 0xe0, + 0xa6, 0x09, 0x4f, 0x2a, 0x2f, 0xa9, 0xb1, 0xb2, 0x24, 0x14, 0x2b, 0x9d, + 0xd5, 0xae, 0x2e, 0x62, 0xb3, 0xfa, 0x00, 0x92, 0xc0, 0x1d, 0x6d, 0x50, + 0x46, 0xc7, 0xb1, 0x28, 0xdc, 0xbf, 0xb2, 0x8b, 0x59, 0x25, 0x66, 0x29, + 0x93, 0x8f, 0x47, 0xa3, 0x2a, 0x2e, 0x07, 0x9f, 0x94, 0x99, 0xd3, 0x95, + 0xa4, 0x93, 0x73, 0xa1, 0xb6, 0x3d, 0x78, 0xe1, 0x0c, 0xef, 0x88, 0x7f, + 0xdf, 0xe8, 0x24, 0x38, 0xc4, 0xc0, 0x30, 0xa1, 0x49, 0x91, 0xc9, 0xe9, + 0xd2, 0x8a, 0x69, 0x57, 0xfb, 0xa6, 0x0c, 0x3b, 0xbe, 0x4f, 0x9c, 0x72, + 0xf8, 0xc5, 0x96, 0x13, 0x61, 0x4d, 0xca, 0x62, 0x14, 0x5f, 0xdc, 0x90, + 0x78, 0x0e, 0xc8, 0xd9, 0x66, 0xe4, 0x5b, 0x08, 0x8d, 0xa0, 0x9a, 0x9d, + 0xcc, 0xaf, 0xf9, 0xd4, 0x1f, 0xec, 0xc8, 0xb6, 0x7c, 0xbc, 0xd0, 0x96, + 0xfa, 0x77, 0xf1, 0x74, 0xf0, 0x2d, 0x56, 0x0f, 0x1d, 0x82, 0xe6, 0x8c, + 0x25, 0x2e, 0xb1, 0x1a, 0xe2, 0xdb, 0x72, 0x7b, 0x49, 0xbb, 0xe5, 0xb5, + 0x34, 0x5e, 0x9e, 0x72, 0x57, 0x2e, 0xd9, 0xbc, 0x72, 0x04, 0x05, 0x35, + 0x31, 0xc4, 0x19, 0x19, 0xe8, 0x62, 0x5e, 0xf1, 0x72, 0x0f, 0xc3, 0x18, + 0xee, 0x7f, 0x2b, 0xa3, 0x99, 0x32, 0x44, 0x6b, 0x50, 0xa6, 0x55, 0x9d, + 0xaa, 0x46, 0xb4, 0x3c, 0xb6, 0xdf, 0xa8, 0xd5, 0xac, 0x53, 0x92, 0x3d, + 0x5f, 0x8e, 0xff, 0x8e, 0x31, 0x35, 0x0d, 0x5c, 0x20, 0x38, 0x05, 0xc3, + 0x97, 0x0f, 0x85, 0xbc, 0xe0, 0x0e, 0x82, 0x92, 0x34, 0x22, 0x68, 0x3c, + 0x19, 0x95, 0xc6, 0x93, 0xd0, 0x54, 0xa1, 0x91, 0xa8, 0x68, 0x17, 0x70, + 0x11, 0xb6, 0x47, 0xc4, 0x62, 0x64, 0x5e, 0x73, 0x47, 0xe7, 0xa5, 0xa0, + 0xe4, 0xaa, 0x9b, 0x82, 0x36, 0x2d, 0x83, 0xac, 0xc7, 0x48, 0xda, 0x33, + 0x7e, 0x14, 0x7a, 0xff, 0xe1, 0x73, 0x7c, 0xe9, 0xc2, 0xf9, 0x3f, 0x29, + 0xab, 0xcb, 0xf8, 0xba, 0xcd, 0x41, 0xb3, 0xea, 0x26, 0x3e, 0x44, 0x4f, + 0x33, 0x15, 0x50, 0x5a, 0xf1, 0x4e, 0x6d, 0xfe, 0x69, 0x3d, 0xd9, 0x2e, + 0x0e, 0xb5, 0x70, 0x7a, 0x9d, 0xf2, 0x28, 0xda, 0x02, 0xdf, 0x3e, 0x09, + 0x4e, 0x7e, 0xd6, 0x65, 0xeb, 0xb1, 0x56, 0xd6, 0x78, 0x3e, 0x3d, 0xbd, + 0x74, 0x49, 0x16, 0xb3, 0x4b, 0xfe, 0x33, 0x5a, 0x59, 0x5f, 0xc6, 0xf4, + 0x3c, 0x48, 0x59, 0xf7, 0x6a, 0x22, 0xf0, 0xcb, 0x72, 0x33, 0x7b, 0x9c, + 0x81, 0x23, 0xd2, 0x88, 0x13, 0x71, 0x24, 0x2f, 0xec, 0x07, 0xcd, 0xcf, + 0xf0, 0x8c, 0x0a, 0x8f, 0xf3, 0x90, 0xf4, 0x2e, 0x1d, 0x7f, 0x76, 0xca, + 0x5b, 0x91, 0xe6, 0x1a, 0x4b, 0xfa, 0x8a, 0xdf, 0x93, 0x4f, 0x0a, 0xbd, + 0x7e, 0xaf, 0xd1, 0x23, 0xb2, 0x41, 0xe3, 0x70, 0x7f, 0x38, 0x5b, 0xc0, + 0x47, 0x1a, 0x24, 0x4f, 0x67, 0xda, 0xd8, 0x32, 0x7d, 0xd3, 0xaa, 0xd9, + 0xe3, 0x40, 0x85, 0xaa, 0xc3, 0x14, 0x6a, 0xee, 0xfb, 0xf8, 0xa2, 0xea, + 0x22, 0x55, 0x65, 0x0e, 0xa5, 0x3f, 0xa4, 0x27, 0x01, 0x1f, 0x0e, 0x18, + 0xeb, 0x9e, 0x62, 0xdf, 0xb0, 0xd0, 0x2a, 0xe9, 0xcc, 0xf5, 0xf6, 0xfb, + 0x21, 0xd6, 0x7c, 0x28, 0x2f, 0x40, 0x20, 0x4f, 0x1a, 0x85, 0x8e, 0x7b, + 0x59, 0x82, 0x57, 0x30, 0xdb, 0xe0, 0x7d, 0xd0, 0x0e, 0xfe, 0xa9, 0xe5, + 0xf6, 0x36, 0xff, 0x06, 0x69, 0x48, 0xad, 0xfa, 0x2a, 0xcc, 0x94, 0x11, + 0x41, 0x91, 0x8b, 0x70, 0xc5, 0xe0, 0xde, 0xa0, 0xa7, 0xbf, 0x50, 0x9c, + 0xed, 0xb8, 0xf7, 0xce, 0x07, 0x4d, 0x60, 0x38, 0xec, 0x85, 0x26, 0x3c, + 0x10, 0x62, 0x0e, 0x20, 0x03, 0x9d, 0xec, 0x07, 0x79, 0x39, 0xb4, 0x8f, + 0x66, 0x5a, 0x65, 0x7f, 0x96, 0x3b, 0x2d, 0x46, 0xbf, 0xf5, 0xc5, 0x93, + 0xd0, 0x5a, 0x9f, 0x28, 0x56, 0x12, 0x96, 0x9d, 0xd3, 0x45, 0x1e, 0x4b, + 0xbd, 0x34, 0xe6, 0x2a, 0xd6, 0x8d, 0x66, 0xd1, 0x2c, 0xd7, 0x8b, 0xd5, + 0x66, 0xd5, 0x77, 0xb7, 0x62, 0x20, 0x8e, 0x37, 0x90, 0x9b, 0xc5, 0x64, + 0xfb, 0x2c, 0x29, 0xa6, 0xae, 0x87, 0x99, 0xf2, 0xc9, 0x12, 0x12, 0x32, + 0x81, 0x1d, 0x7d, 0xfa, 0xe6, 0xe1, 0x88, 0x33, 0x1a, 0x86, 0x19, 0x70, + 0xa1, 0x44, 0x72, 0xe4, 0xb2, 0x2e, 0x89, 0x27, 0x9e, 0xfd, 0x4f, 0xd3, + 0xbe, 0x70, 0x94, 0x6a, 0xbb, 0x43, 0xb3, 0xb4, 0x51, 0xee, 0x41, 0x4a, + 0x0e, 0x1a, 0x6a, 0xa9, 0xe2, 0xd2, 0xea, 0xc6, 0x3a, 0xe8, 0x6d, 0x36, + 0x3d, 0x3c, 0x9f, 0xcb, 0x3b, 0xe9, 0xa1, 0xcc, 0x30, 0x61, 0x3b, 0x9c, + 0xea, 0xd4, 0x6c, 0xe8, 0x08, 0x66, 0xb8, 0x5c, 0x17, 0xd4, 0xcb, 0x30, + 0x0c, 0x29, 0x9f, 0x2e, 0xbe, 0x95, 0x6a, 0xa9, 0xf9, 0x7d, 0x8a, 0xa7, + 0xbf, 0x20, 0x38, 0xa3, 0x63, 0xdc, 0x31, 0xcd, 0x49, 0xa9, 0x29, 0x16, + 0x5c, 0xe9, 0x7c, 0x19, 0x9a, 0x47, 0x5a, 0xf2, 0x3a, 0xd3, 0xf7, 0x3b, + 0x28, 0xc2, 0x18, 0x6e, 0x5a, 0x15, 0xbe, 0x09, 0x8c, 0x8b, 0xe4, 0xc3, + 0x2a, 0x53, 0x1b, 0x43, 0x8f, 0x7f, 0x33, 0x87, 0xaf, 0x8b, 0x5a, 0xec, + 0x9e, 0xe8, 0x0a, 0x3f, 0x9f, 0x16, 0xc7, 0xed, 0x48, 0xd1, 0x02, 0xd1, + 0x94, 0x0e, 0x8d, 0x4f, 0xce, 0x78, 0x6d, 0x35, 0xb6, 0xb0, 0x69, 0xa5, + 0xe2, 0x85, 0xaa, 0x40, 0x04, 0x86, 0x5e, 0x5f, 0x91, 0xd7, 0xb0, 0x2a, + 0xee, 0x4a, 0x10, 0xc7, 0x0d, 0xb7, 0x76, 0x46, 0xe6, 0x4d, 0xa4, 0x05, + 0x8f, 0x4e, 0x5e, 0x6b, 0xb5, 0x88, 0xa1, 0x3d, 0x45, 0x07, 0x49, 0x82, + 0x0f, 0xf7, 0xcf, 0x8e, 0x7c, 0x43, 0xfd, 0x29, 0x75, 0xc0, 0x30, 0x32, + 0xce, 0xc5, 0x96, 0x76, 0x31, 0xab, 0xfc, 0x81, 0xef, 0xc6, 0x8a, 0x61, + 0x1f, 0xc8, 0xd7, 0xd0, 0xfa, 0x49, 0xc7, 0x17, 0xb6, 0x9b, 0x14, 0xdc, + 0xa1, 0xc1, 0x6a, 0xf0, 0x1b, 0x78, 0xcf, 0xaa, 0x6b, 0xcb, 0x8c, 0xd0, + 0xa0, 0x8c, 0x7a, 0xeb, 0x89, 0x92, 0xc5, 0x5d, 0x25, 0xf2, 0xfe, 0xd3, + 0x77, 0x15, 0xef, 0xbe, 0xe5, 0x05, 0x50, 0x1b, 0x5e, 0xc2, 0x09, 0x34, + 0xc2, 0x6d, 0x8d, 0xfe, 0xc4, 0x72, 0x24, 0x3f, 0x4a, 0xc2, 0x1f, 0x4e, + 0x17, 0x84, 0x6b, 0x49, 0xe4, 0x18, 0x1f, 0xed, 0x9d, 0x92, 0x99, 0x4c, + 0xa9, 0x49, 0x04, 0x00, 0x53, 0xc7, 0xa5, 0xba, 0x54, 0xdc, 0xf3, 0x18, + 0xb6, 0x19, 0x7e, 0xac, 0x93, 0xcd, 0x82, 0x35, 0x53, 0x0d, 0xe5, 0xf3, + 0xeb, 0xea, 0x90, 0xa7, 0x95, 0x6b, 0x40, 0x35, 0xf4, 0x78, 0x59, 0xa9, + 0x76, 0xf4, 0x9e, 0x9f, 0x11, 0xdf, 0x7b, 0x7f, 0xba, 0x4d, 0x2f, 0x45, + 0x6e, 0xe0, 0xb3, 0x06, 0x54, 0xc9, 0xca, 0x25, 0x8d, 0x48, 0x4c, 0xf1, + 0xb9, 0x07, 0xa8, 0x59, 0x0c, 0x67, 0x8a, 0xc8, 0xa0, 0x26, 0x46, 0x3c, + 0x21, 0x81, 0xa0, 0xfa, 0xb3, 0x3e, 0xac, 0xf8, 0x89, 0xcc, 0x1c, 0x67, + 0x96, 0x81, 0xfc, 0xa5, 0xaf, 0x89, 0x3b, 0xef, 0xdc, 0x5b, 0x80, 0xf8, + 0x6f, 0x3a, 0xdd, 0x13, 0x3a, 0x16, 0x89, 0xc1, 0x6b, 0x8a, 0x33, 0xd8, + 0x7d, 0xe3, 0x3d, 0x6c, 0x08, 0x57, 0x06, 0xe2, 0xa4, 0x06, 0x3b, 0x46, + 0x42, 0x55, 0x1d, 0xf8, 0x84, 0xe8, 0xfb, 0x33, 0xee, 0x75, 0xb4, 0x78, + 0x59, 0x51, 0x6e, 0x52, 0x82, 0x55, 0x52, 0xc7, 0x41, 0xaa, 0xb3, 0xfa, + 0xdb, 0x0d, 0x4c, 0x99, 0x05, 0xdb, 0x2f, 0x6e, 0x94, 0x35, 0xe7, 0x0c, + 0x13, 0xe2, 0x2e, 0x5c, 0xce, 0x16, 0xb1, 0x4f, 0xa0, 0x35, 0xa9, 0x96, + 0xd6, 0xbb, 0x65, 0x74, 0x34, 0x29, 0x83, 0xf2, 0x6e, 0x94, 0xaa, 0x7d, + 0xe0, 0xbf, 0x00, 0x46, 0x80, 0xf2, 0xc7, 0x48, 0xc5, 0x2c, 0x84, 0x62, + 0x61, 0x6a, 0xe9, 0x15, 0x40, 0x66, 0x5a, 0x87, 0x3f, 0x2e, 0xe1, 0x53, + 0xdf, 0xec, 0x5b, 0xe8, 0xf4, 0xdb, 0x7d, 0x03, 0x1e, 0x09, 0x92, 0xec, + 0x66, 0xda, 0xd3, 0x8c, 0x29, 0x9e, 0x78, 0xcd, 0x89, 0xec, 0x0b, 0x5f, + 0x45, 0xd9, 0x24, 0xa8, 0x6a, 0xbb, 0xa3, 0x82, 0xc7, 0x6f, 0xf4, 0x41, + 0x4b, 0xbc, 0xe6, 0x40, 0x3b, 0x9c, 0xce, 0x64, 0x5e, 0xe9, 0x79, 0xb7, + 0x19, 0xf7, 0x24, 0xe4, 0x07, 0x04, 0x63, 0x34, 0x73, 0x40, 0x96, 0xf9, + 0x2a, 0x34, 0x45, 0xed, 0x65, 0xd2, 0xa3, 0xbf, 0x28, 0xf7, 0x9c, 0xa4, + 0x78, 0x4d, 0x0f, 0x53, 0xf4, 0x85, 0xe1, 0x44, 0xf1, 0x79, 0xe8, 0xf3, + 0xa8, 0x75, 0x69, 0x65, 0x32, 0x68, 0xb4, 0x67, 0x7e, 0x85, 0x46, 0xad, + 0x5b, 0xb3, 0x75, 0xef, 0xd5, 0xa1, 0x74, 0x6d, 0xce, 0xfc, 0xea, 0x53, + 0xe3, 0xe4, 0xbf, 0x80, 0x77, 0x2e, 0x86, 0xa0, 0xef, 0xf4, 0x55, 0x72, + 0x97, 0x5a, 0x34, 0xf0, 0xd2, 0x86, 0xef, 0x0d, 0xdb, 0x65, 0xfa, 0x91, + 0xb3, 0x95, 0xd6, 0xe3, 0x5d, 0x22, 0xed, 0x73, 0x29, 0xd5, 0x00, 0x12, + 0x6e, 0x09, 0x6e, 0x27, 0x83, 0x10, 0xbf, 0xe0, 0x41, 0xea, 0x49, 0x12, + 0xf6, 0x6b, 0x90, 0xd9, 0xe4, 0xba, 0x95, 0xd5, 0x79, 0x4e, 0x1a, 0xe2, + 0x56, 0x30, 0xae, 0x91, 0x64, 0xd5, 0xa5, 0xb2, 0x14, 0x2e, 0x39, 0xf1, + 0x86, 0xe1, 0x5b, 0xdd, 0x07, 0x5d, 0xcf, 0x05, 0xfd, 0x01, 0xf0, 0x07, + 0xe6, 0xc7, 0x81, 0x66, 0x29, 0xbd, 0x69, 0x33, 0x09, 0x88, 0x79, 0xee, + 0x3f, 0x5d, 0x53, 0xae, 0x3f, 0xd0, 0xdd, 0xbd, 0xfe, 0x7e, 0xea, 0x53, + 0x35, 0xc0, 0x67, 0x94, 0xf2, 0xdb, 0x63, 0xe3, 0x0b, 0x70, 0xbe, 0xcf, + 0xf5, 0xd5, 0x50, 0x71, 0xb5, 0xd5, 0xb1, 0x5f, 0x55, 0xcf, 0x6a, 0x71, + 0xb7, 0x57, 0xb2, 0x03, 0xb2, 0xe7, 0x51, 0x71, 0x7e, 0x56, 0x3c, 0x00, + 0x6f, 0x31, 0x6d, 0xf9, 0x86, 0xaf, 0xff, 0xd2, 0x4b, 0xff, 0x37, 0xab, + 0x19, 0xb8, 0x96, 0x73, 0xe5, 0x18, 0x12, 0x1d, 0x2d, 0xf7, 0x63, 0x46, + 0x58, 0x4b, 0x42, 0x4a, 0x26, 0x9d, 0x58, 0x5e, 0xa5, 0x5f, 0xcb, 0x73, + 0x5d, 0x42, 0x27, 0x23, 0x1b, 0x14, 0x31, 0x73, 0x2f, 0x3b, 0xc8, 0x13, + 0x8c, 0x31, 0xf5, 0x1c, 0x6a, 0x7d, 0x20, 0x17, 0x23, 0xbb, 0x2b, 0x1f, + 0x6a, 0xf9, 0x22, 0xeb, 0x42, 0x2e, 0x0d, 0xb2, 0x77, 0x1e, 0x08, 0x89, + 0x38, 0x94, 0xea, 0x44, 0x3a, 0xac, 0xa1, 0x9a, 0xd2, 0x11, 0x1d, 0x83, + 0x43, 0xf2, 0x21, 0x2f, 0xa3, 0xa6, 0x24, 0xa6, 0x78, 0x02, 0x2d, 0x0b, + 0x24, 0x66, 0x0f, 0x13, 0x21, 0x98, 0xcd, 0xe3, 0xb5, 0x22, 0x7a, 0xe2, + 0x26, 0x41, 0xfc, 0x1d, 0x5a, 0x04, 0xd8, 0x01, 0x35, 0xfb, 0x32, 0x82, + 0xfc, 0x2b, 0xfd, 0x1a, 0xdb, 0x10, 0x4e, 0xb3, 0x8e, 0xf6, 0x38, 0x0d, + 0x71, 0xe2, 0x89, 0x0e, 0x55, 0x16, 0x5e, 0x3e, 0x86, 0xf7, 0x2e, 0x58, + 0xf1, 0x2f, 0x38, 0x4a, 0x83, 0x9f, 0xc6, 0xab, 0x88, 0xdb, 0x73, 0xd1, + 0xa5, 0xad, 0xc6, 0x31, 0x0c, 0xb7, 0x92, 0x8c, 0xe0, 0xd5, 0x69, 0xe1, + 0xdc, 0x7b, 0x13, 0x7c, 0x73, 0x2b, 0xb6, 0x2c, 0xc3, 0xfe, 0x0b, 0x60, + 0xab, 0x51, 0x87, 0xad, 0x77, 0x11, 0xf7, 0xec, 0xc6, 0x3b, 0xbd, 0x87, + 0x18, 0xaa, 0xf3, 0x62, 0x36, 0xa6, 0x9c, 0xcb, 0x4d, 0x2b, 0xfa, 0x38, + 0x0e, 0x17, 0xe2, 0x7c, 0xbd, 0x50, 0x2c, 0x35, 0x47, 0xa7, 0xd9, 0x15, + 0xa6, 0x49, 0x6a, 0x8d, 0xe5, 0x06, 0x14, 0xa6, 0x28, 0x9a, 0xf6, 0xc7, + 0x94, 0xf1, 0x34, 0xe4, 0x7f, 0x19, 0xff, 0x66, 0x72, 0xd0, 0x0c, 0x42, + 0xc6, 0xbc, 0xe9, 0x95, 0x7f, 0x98, 0x53, 0x85, 0x1e, 0x90, 0xec, 0x9e, + 0xe1, 0xa1, 0x5a, 0x9c, 0xee, 0xc0, 0xbf, 0xd6, 0xde, 0x96, 0x6e, 0x2d, + 0x22, 0x45, 0xc1, 0x67, 0xfa, 0xa7, 0x67, 0x93, 0x1e, 0x56, 0x94, 0x93, + 0xb2, 0x26, 0x9d, 0x29, 0xba, 0xbe, 0xeb, 0x0e, 0x75, 0xea, 0xc3, 0x5f, + 0xd4, 0x2c, 0x7c, 0xca, 0x37, 0x12, 0x51, 0x99, 0xc0, 0xd2, 0x99, 0x7a, + 0xae, 0x40, 0xe6, 0xfc, 0x56, 0x4a, 0xc9, 0xb8, 0x93, 0x4d, 0xca, 0x10, + 0x23, 0x0e, 0x4e, 0xd4, 0x00, 0x6a, 0x20, 0x3f, 0xc9, 0x23, 0x84, 0x21, + 0x56, 0x20, 0x71, 0x5e, 0x73, 0x83, 0x8e, 0xed, 0x17, 0x3b, 0x03, 0x9b, + 0x99, 0x2b, 0x9e, 0x9e, 0x1f, 0x79, 0xe2, 0xbb, 0x13, 0xa8, 0x50, 0xf8, + 0x5e, 0x80, 0x6b, 0x39, 0x3a, 0xeb, 0x6c, 0x92, 0x4f, 0x44, 0xc8, 0x4d, + 0xc6, 0x30, 0xee, 0xdd, 0xd5, 0x07, 0xa2, 0xc5, 0x14, 0xeb, 0x0f, 0xf5, + 0xee, 0x18, 0xcf, 0x47, 0xe3, 0x62, 0xca, 0x54, 0xb8, 0x0d, 0x54, 0xe4, + 0xa1, 0xca, 0x85, 0xd7, 0xb3, 0x91, 0x79, 0xf9, 0xbb, 0x6e, 0xdf, 0x37, + 0xe7, 0xdc, 0xd0, 0xf9, 0x4f, 0x72, 0x58, 0x3c, 0xc6, 0xb4, 0x4f, 0x1f, + 0xf3, 0x16, 0x9c, 0x9d, 0x1e, 0x4c, 0x93, 0xf2, 0x96, 0xdb, 0xd8, 0x70, + 0xa6, 0x3e, 0x74, 0x07, 0xcc, 0x54, 0x04, 0xc1, 0x43, 0x49, 0x46, 0x0a, + 0xd4, 0x1f, 0x89, 0xa7, 0x6f, 0xee, 0xdf, 0x19, 0x2b, 0xb1, 0x32, 0x01, + 0x51, 0x77, 0x0d, 0x97, 0x8d, 0x37, 0xf4, 0xae, 0xd6, 0x0f, 0xdc, 0x07, + 0xdf, 0x2d, 0x8e, 0x3b, 0x5c, 0x00, 0x51, 0x3b, 0x9d, 0x6b, 0x4d, 0xf2, + 0xa3, 0xd4, 0xc9, 0x14, 0x97, 0x83, 0x9f, 0x05, 0xe7, 0x34, 0xeb, 0xd8, + 0x80, 0x3c, 0xf1, 0x23, 0xc3, 0x37, 0x6e, 0x73, 0x9a, 0x57, 0x79, 0x56, + 0x26, 0x14, 0x20, 0xf2, 0xe5, 0x47, 0x0f, 0x02, 0xdd, 0xd3, 0x77, 0xa4, + 0x56, 0x46, 0x97, 0x54, 0xe5, 0x8a, 0xa9, 0xcd, 0x70, 0x99, 0x5d, 0x1a, + 0x47, 0xe4, 0xc2, 0xed, 0x08, 0x67, 0x0a, 0x4e, 0x5a, 0x55, 0x49, 0x2e, + 0x2c, 0x6a, 0xe6, 0xe8, 0x19, 0x69, 0x11, 0xe2, 0x40, 0x94, 0x33, 0x46, + 0xe8, 0xb6, 0xfa, 0x00, 0xb8, 0xc2, 0xf1, 0x39, 0xb1, 0xee, 0x45, 0xec, + 0xa8, 0x86, 0xbe, 0x1b, 0x48, 0xad, 0x58, 0xae, 0xcb, 0xa8, 0x2b, 0x55, + 0xf2, 0xc5, 0x41, 0x51, 0x8e, 0xba, 0xba, 0x8a, 0xe6, 0xac, 0xe4, 0xb9, + 0x07, 0x98, 0xe3, 0x03, 0xac, 0x6e, 0x61, 0x9d, 0x76, 0xec, 0xd7, 0x15, + 0x89, 0xe2, 0x4f, 0x6f, 0x78, 0x67, 0x72, 0xfc, 0x99, 0x1d, 0xa7, 0x5a, + 0x97, 0xc2, 0x82, 0xe6, 0x8c, 0x80, 0x00, 0xfd, 0x87, 0xdd, 0xf7, 0x1a, + 0xc3, 0x64, 0x11, 0x67, 0xe6, 0xb0, 0x12, 0x01, 0x44, 0xeb, 0x7d, 0xc4, + 0xc1, 0x38, 0x10, 0x99, 0x85, 0xe9, 0x8a, 0x76, 0xd1, 0xa0, 0x6d, 0x76, + 0x09, 0xc2, 0x67, 0x7b, 0xec, 0x0f, 0x9d, 0x16, 0x4f, 0x05, 0x5d, 0x3c, + 0xa5, 0x7c, 0x9a, 0xd5, 0xc0, 0xf6, 0xc0, 0x88, 0x91, 0xa1, 0x5a, 0xe3, + 0xf7, 0x05, 0x85, 0x03, 0x0b, 0x16, 0x94, 0x8d, 0x50, 0x84, 0xd3, 0xb2, + 0x92, 0x94, 0x12, 0x9b, 0x10, 0x8c, 0x1e, 0xc5, 0xf5, 0x55, 0x6c, 0xec, + 0x44, 0x8a, 0xc4, 0x9f, 0x9b, 0x6e, 0xa3, 0xc2, 0xc5, 0xb7, 0x3e, 0x3a, + 0x44, 0x1e, 0x14, 0xea, 0x7e, 0xf6, 0xf1, 0x7f, 0xd3, 0x6d, 0x12, 0xe5, + 0xb0, 0x63, 0xd3, 0xf6, 0xb5, 0x5b, 0x4f, 0x64, 0x9f, 0xe6, 0x05, 0x0f, + 0x43, 0x8d, 0x58, 0x58, 0xf2, 0xb5, 0x26, 0x7d, 0x61, 0x51, 0x92, 0x6f, + 0x5f, 0xca, 0xbf, 0xbc, 0x6c, 0x5d, 0x95, 0xfe, 0xd4, 0xc7, 0xfa, 0x50, + 0x48, 0xf3, 0x3d, 0x75, 0xe2, 0xd7, 0x36, 0xf2, 0x15, 0xee, 0x84, 0x6c, + 0xf9, 0x11, 0xe8, 0x5f, 0x80, 0xe8, 0x56, 0x2b, 0x36, 0x8d, 0xb1, 0xd1, + 0x66, 0x3f, 0x5d, 0x65, 0x6b, 0xff, 0xf8, 0xd8, 0xc9, 0x65, 0x47, 0x7d, + 0x70, 0xb5, 0x91, 0x98, 0x18, 0x0f, 0x9a, 0x32, 0x1a, 0x70, 0x53, 0xa3, + 0x3d, 0x08, 0x71, 0xed, 0x99, 0xcf, 0x56, 0x77, 0x9f, 0x89, 0x0c, 0xcd, + 0xfd, 0x54, 0x26, 0xe3, 0xb4, 0xb7, 0x50, 0x22, 0x39, 0x19, 0xf8, 0xbd, + 0xbf, 0x07, 0xb5, 0x2a, 0x4b, 0xaf, 0x0d, 0xfd, 0xe6, 0xf2, 0x45, 0x23, + 0x1b, 0x11, 0x3a, 0x2f, 0xa2, 0x61, 0x59, 0xec, 0x69, 0x0a, 0x91, 0x89, + 0x1f, 0xc9, 0xe9, 0xbf, 0x7d, 0x46, 0x6c, 0x3d, 0x7e, 0xc2, 0x98, 0x36, + 0x34, 0xdb, 0x28, 0x03, 0x44, 0x6f, 0xf6, 0x30, 0x7f, 0x21, 0x6b, 0x75, + 0xfe, 0x21, 0x29, 0xa8, 0x3a, 0x8e, 0xc1, 0x70, 0xa6, 0x89, 0x01, 0xd5, + 0xab, 0xc0, 0x3e, 0x08, 0x67, 0x62, 0xd6, 0x1d, 0x7a, 0xd9, 0xd1, 0x53, + 0xe5, 0x34, 0xb2, 0x3c, 0xb5, 0xf8, 0x52, 0x87, 0xa5, 0xf4, 0xa9, 0x17, + 0x71, 0x38, 0x98, 0x9e, 0x3a, 0xee, 0xd0, 0x85, 0x87, 0xb6, 0x84, 0x6b, + 0x7f, 0xfa, 0xfa, 0xb9, 0xdc, 0xb4, 0x0b, 0x38, 0x0f, 0x70, 0xd5, 0xa0, + 0x00, 0x15, 0x84, 0x5f, 0x3f, 0x51, 0x0b, 0x5e, 0xda, 0xc1, 0x41, 0x24, + 0x95, 0x9d, 0xaa, 0x2b, 0x6e, 0xc8, 0x10, 0x5e, 0xcd, 0x35, 0xfe, 0xf4, + 0x88, 0x5a, 0xd9, 0x3e, 0x1c, 0x4a, 0xaa, 0x39, 0x89, 0x6f, 0x1c, 0xe9, + 0xb5, 0x7f, 0x3c, 0xe9, 0x4c, 0x44, 0xae, 0xc4, 0x44, 0x95, 0xbe, 0xca, + 0xf9, 0x2e, 0x7c, 0x56, 0x38, 0xc7, 0x91, 0xf7, 0x1b, 0xe1, 0xb1, 0x58, + 0xbc, 0x72, 0xd3, 0xa1, 0xed, 0x52, 0x12, 0x5c, 0x33, 0xf0, 0xda, 0x13, + 0x53, 0x3c, 0xed, 0x3c, 0xd1, 0xcf, 0x4a, 0xab, 0x2d, 0xac, 0xa5, 0x38, + 0xf8, 0x43, 0x5c, 0x80, 0x59, 0xa6, 0x25, 0xfd, 0xe7, 0x13, 0xcb, 0xb6, + 0xd3, 0x20, 0x63, 0x44, 0x05, 0xca, 0x63, 0x35, 0x81, 0x96, 0x4d, 0xea, + 0xc4, 0xfa, 0x2a, 0xa3, 0x5d, 0x96, 0x9d, 0x2a, 0x6e, 0xe1, 0x62, 0x1f, + 0x90, 0x5b, 0x30, 0xd9, 0x7c, 0xa0, 0xa1, 0x9d, 0x84, 0x70, 0xf7, 0x52, + 0x7b, 0x9c, 0x49, 0xf5, 0x2b, 0x80, 0x82, 0x33, 0x46, 0x1b, 0x4f, 0x9e, + 0x91, 0x7d, 0x54, 0xcd, 0xcc, 0x1c, 0xb5, 0xec, 0x3e, 0x51, 0x9d, 0x03, + 0x65, 0x46, 0x3d, 0xa1, 0x7e, 0xa9, 0xa8, 0x75, 0x90, 0x49, 0xec, 0x82, + 0x9d, 0xdc, 0x65, 0xb2, 0xc2, 0x43, 0x10, 0x52, 0x39, 0x14, 0xa8, 0x63, + 0x77, 0x7d, 0x66, 0xb8, 0xe2, 0x5a, 0x5d, 0xb2, 0xe7, 0x50, 0xd1, 0xaa, + 0x83, 0x6c, 0x02, 0xeb, 0xbd, 0xb4, 0x1e, 0x49, 0x91, 0x71, 0x6e, 0x16, + 0xa2, 0x0f, 0xec, 0x94, 0x31, 0xe0, 0xf6, 0x26, 0x62, 0x75, 0xcf, 0x1c, + 0xe0, 0x74, 0x33, 0xd8, 0xee, 0xe6, 0xab, 0x4b, 0xfe, 0xf1, 0xa9, 0x38, + 0x3c, 0xbe, 0x71, 0xdc, 0x26, 0xd8, 0x1b, 0xbb, 0xc0, 0x5f, 0xad, 0xb9, + 0x00, 0x4a, 0x22, 0x9c, 0x20, 0x62, 0xb1, 0xa1, 0x88, 0x59, 0xf2, 0x64, + 0x7c, 0x9a, 0x4e, 0xad, 0xa5, 0xa9, 0x2b, 0x8b, 0xe4, 0x67, 0xcf, 0x8f, + 0x42, 0xbd, 0x52, 0x57, 0x4b, 0xab, 0x2c, 0xb2, 0x49, 0x92, 0x7f, 0x55, + 0x50, 0xb3, 0xfb, 0xa6, 0xe6, 0x25, 0x02, 0x87, 0xad, 0x93, 0x2b, 0x78, + 0x51, 0x1d, 0x1b, 0x02, 0x3a, 0x50, 0xe1, 0x69, 0xd6, 0x7b, 0xf7, 0xa3, + 0x78, 0x7b, 0x3c, 0x31, 0x64, 0x97, 0x77, 0x88, 0xba, 0x5e, 0xc1, 0x49, + 0x61, 0xd3, 0x21, 0x16, 0xa3, 0xc2, 0x0f, 0xce, 0xb1, 0x6e, 0xfe, 0xf2, + 0xb6, 0xf8, 0x08, 0x8c, 0x7c, 0xcd, 0x94, 0xa2, 0x78, 0xf0, 0xae, 0x2f, + 0x9b, 0x36, 0xf3, 0xe5, 0x2e, 0x6e, 0x9d, 0xb8, 0x12, 0x7b, 0xce, 0xfe, + 0x89, 0x4a, 0x2a, 0x26, 0x4f, 0x4e, 0xe4, 0x84, 0x40, 0x21, 0xe8, 0x29, + 0x97, 0xb8, 0x0d, 0x05, 0xb7, 0xe3, 0x98, 0x2c, 0x9f, 0xf4, 0xb3, 0x3a, + 0x20, 0x25, 0xdd, 0xc7, 0x97, 0x34, 0x23, 0x85, 0xd1, 0xa7, 0x10, 0xc4, + 0x6d, 0x24, 0x55, 0x57, 0xb7, 0x78, 0x1c, 0xba, 0x20, 0x20, 0x70, 0xd0, + 0x38, 0x7a, 0x02, 0xaa, 0xee, 0x59, 0x75, 0xd7, 0x9d, 0x73, 0x15, 0xba, + 0x50, 0x92, 0xaf, 0x3b, 0x34, 0xef, 0xfd, 0xc3, 0x05, 0x37, 0x2f, 0xd1, + 0xe9, 0x06, 0xfc, 0x4a, 0xb5, 0x39, 0x6d, 0xea, 0xc4, 0xdc, 0xd9, 0x05, + 0x4e, 0x6a, 0xa7, 0xe2, 0x55, 0xe7, 0xd8, 0x98, 0x18, 0xbb, 0x1b, 0x15, + 0x79, 0x48, 0x43, 0xe6, 0xd7, 0x7f, 0xec, 0x9f, 0xd9, 0xc3, 0x20, 0x2f, + 0x6a, 0x09, 0x2a, 0xe6, 0xa9, 0xbc, 0x37, 0x37, 0x6c, 0x55, 0x62, 0xcc, + 0xdc, 0x33, 0x13, 0x3c, 0x8a, 0x3b, 0x5e, 0xf5, 0x6f, 0x6b, 0x27, 0x0f, + 0xaf, 0x95, 0x09, 0x5d, 0x34, 0x80, 0x3b, 0xac, 0x42, 0xd9, 0xd9, 0xf8, + 0x4e, 0x16, 0xc3, 0xb9, 0x3a, 0xde, 0x12, 0xf9, 0xaf, 0xeb, 0x4b, 0xdf, + 0xd6, 0x51, 0x7b, 0x73, 0xc3, 0x58, 0x39, 0x2e, 0x6d, 0xda, 0x0a, 0x98, + 0x8a, 0x87, 0x31, 0x1e, 0xf9, 0xa4, 0xc9, 0xa7, 0xf8, 0x3e, 0x2d, 0x1d, + 0x7e, 0x5e, 0xa0, 0x99, 0x55, 0x36, 0xe6, 0xe9, 0x16, 0x56, 0x01, 0xcb, + 0x32, 0x75, 0xaa, 0xae, 0x64, 0x89, 0x4e, 0x41, 0xad, 0xa3, 0xe1, 0xf3, + 0x27, 0xd8, 0xbb, 0x58, 0xc8, 0x9f, 0x0b, 0xb0, 0x12, 0x22, 0x54, 0xc2, + 0x6f, 0xf4, 0xce, 0x30, 0x74, 0x67, 0x4b, 0x3a, 0x36, 0x31, 0x51, 0x2a, + 0xf4, 0x92, 0xe2, 0x67, 0x5d, 0xab, 0x98, 0xbf, 0x10, 0xab, 0x0e, 0xcb, + 0x2b, 0xe2, 0x77, 0xdf, 0x35, 0x8c, 0x2f, 0x6c, 0xd2, 0xf5, 0xd7, 0xc5, + 0xac, 0x87, 0xd6, 0x9f, 0x11, 0x3e, 0xcd, 0x14, 0x22, 0xa0, 0x0e, 0x34, + 0xfd, 0xa0, 0x9d, 0x5e, 0xfb, 0x4a, 0x98, 0x82, 0xee, 0xa5, 0x4a, 0xb5, + 0x4c, 0x33, 0xae, 0x37, 0xfa, 0xc2, 0x46, 0x6e, 0xe8, 0xb3, 0x9a, 0x6b, + 0xc8, 0x27, 0x74, 0x95, 0x13, 0x7a, 0xc3, 0x62, 0xd4, 0xc0, 0xb1, 0x8d, + 0x56, 0xee, 0x2f, 0xc0, 0xac, 0x7b, 0xf3, 0x90, 0x1b, 0xbd, 0x0f, 0x6c, + 0xcb, 0x0d, 0xcd, 0x7d, 0x8d, 0x0e, 0x25, 0x4f, 0x9f, 0x50, 0x9b, 0x38, + 0x75, 0x50, 0x7d, 0xf9, 0x83, 0x7e, 0x08, 0x4a, 0x1d, 0xe7, 0xe2, 0x55, + 0xf4, 0x31, 0xc5, 0xea, 0xbb, 0x87, 0x2b, 0xfd, 0xf8, 0x91, 0xd0, 0x0d, + 0x8b, 0xac, 0x49, 0x8f, 0x83, 0x4e, 0xbb, 0xad, 0xec, 0x42, 0x37, 0x22, + 0xf0, 0x94, 0xb1, 0xa0, 0xef, 0x03, 0xf7, 0xf2, 0x04, 0x61, 0x9b, 0x28, + 0x2a, 0xda, 0x8d, 0x80, 0x19, 0xb7, 0xca, 0x87, 0x3b, 0xeb, 0x3c, 0x11, + 0x7f, 0xed, 0xc4, 0x70, 0x32, 0x6b, 0xf8, 0xa0, 0xde, 0xa7, 0xa8, 0x03, + 0x2f, 0x90, 0x84, 0xe3, 0x67, 0xad, 0xd3, 0xc6, 0xa6, 0x1a, 0xae, 0x76, + 0xae, 0x31, 0x5a, 0x3b, 0x94, 0xfe, 0x87, 0xcc, 0xd8, 0x5e, 0x04, 0xfb, + 0xe3, 0x71, 0x72, 0xd6, 0x68, 0x9a, 0xb5, 0x53, 0x5a, 0x66, 0x21, 0x38, + 0xae, 0xe8, 0x52, 0x04, 0x1b, 0x2b, 0x1e, 0x7b, 0x1f, 0x1e, 0x38, 0x64, + 0xad, 0x65, 0x2e, 0x48, 0x47, 0x7f, 0x53, 0x98, 0x39, 0x16, 0x17, 0xc8, + 0x2d, 0x67, 0x77, 0x10, 0x61, 0x93, 0x59, 0x92, 0x52, 0x39, 0x81, 0x11, + 0x68, 0x15, 0x7d, 0xc2, 0xa2, 0x27, 0x10, 0x9b, 0x7d, 0xde, 0x27, 0x0c, + 0xd2, 0x24, 0xa4, 0xb4, 0x5f, 0x0d, 0xe7, 0x1b, 0x1d, 0xb0, 0x48, 0xfc, + 0x51, 0x88, 0x8d, 0xb0, 0x96, 0xb2, 0xbd, 0xc1, 0xa8, 0xf0, 0xde, 0x8b, + 0x07, 0x74, 0x34, 0xb1, 0xe6, 0xfa, 0x19, 0x64, 0x11, 0x10, 0xc7, 0x50, + 0xc3, 0x31, 0x88, 0x9b, 0x52, 0x08, 0x26, 0xe8, 0x68, 0xc6, 0xbb, 0x12, + 0x92, 0xfa, 0xd2, 0xf4, 0xdc, 0x55, 0x57, 0xde, 0xcb, 0xf5, 0x50, 0x4d, + 0xe0, 0x4a, 0xf1, 0xae, 0xeb, 0x1b, 0x11, 0x85, 0x2e, 0xf0, 0xae, 0x8f, + 0x7a, 0x0e, 0x33, 0x46, 0x90, 0x7e, 0x85, 0xce, 0xa8, 0x0f, 0x7a, 0xab, + 0xf1, 0x7d, 0x68, 0xe6, 0x1b, 0xa9, 0xd6, 0x1e, 0x84, 0x05, 0xa9, 0x85, + 0x78, 0x4b, 0x45, 0x46, 0x1f, 0xe4, 0x25, 0xbe, 0x28, 0x16, 0xbd, 0xe0, + 0x61, 0xcb, 0x77, 0x4f, 0x9d, 0x9e, 0x5c, 0x12, 0x7d, 0xea, 0x7d, 0x89, + 0x44, 0xcd, 0x0e, 0xaa, 0xfb, 0x64, 0x71, 0xa5, 0x50, 0x6d, 0xd6, 0x0b, + 0xa8, 0x80, 0x33, 0x99, 0x08, 0x3f, 0x47, 0xa9, 0xac, 0xfb, 0x09, 0xbb, + 0x2d, 0x59, 0xd1, 0xc3, 0x2d, 0x9a, 0x8b, 0xb9, 0xff, 0x64, 0x0b, 0xed, + 0x19, 0x13, 0x98, 0x34, 0x40, 0x60, 0xe0, 0x5a, 0xcb, 0x19, 0xaa, 0xcf, + 0x33, 0x1f, 0x8d, 0xe5, 0xab, 0x79, 0x83, 0x8e, 0x2f, 0x2c, 0xe5, 0x27, + 0x92, 0x16, 0x2e, 0x1f, 0x8a, 0xb7, 0x3a, 0x26, 0x00, 0x0e, 0xf7, 0x91, + 0x3b, 0x46, 0x9a, 0x2b, 0x66, 0x4a, 0x53, 0x45, 0x75, 0x3b, 0x2d, 0xa0, + 0xdc, 0x4e, 0x56, 0xe3, 0x9d, 0xa7, 0x74, 0xeb, 0x5f, 0xc7, 0x03, 0x87, + 0x43, 0x6e, 0xc4, 0x4f, 0x1d, 0xf6, 0xac, 0xa6, 0xb9, 0xaf, 0xcd, 0xc3, + 0x02, 0x2a, 0x1c, 0x42, 0x10, 0x63, 0xfa, 0xef, 0xc7, 0xfa, 0x9c, 0x13, + 0x28, 0xf7, 0xf2, 0xa3, 0x77, 0xbe, 0x3d, 0xe1, 0x3d, 0x6c, 0xa5, 0x05, + 0xc9, 0x12, 0xe9, 0xf9, 0xd5, 0x0a, 0xe5, 0xaf, 0xb9, 0x26, 0x02, 0x42, + 0xcd, 0xa7, 0x04, 0x0a, 0x72, 0x24, 0x9c, 0x1d, 0x83, 0x03, 0xbf, 0x59, + 0x5d, 0x50, 0x14, 0x09, 0x6b, 0x0a, 0xfd, 0xf6, 0x28, 0x67, 0x99, 0x1c, + 0x57, 0xf8, 0xa1, 0x70, 0x78, 0xef, 0xe8, 0xc3, 0x78, 0xff, 0x5a, 0x2e, + 0x9c, 0x74, 0xe1, 0x8f, 0xe9, 0x91, 0x91, 0xeb, 0x83, 0x1c, 0x90, 0x3f, + 0xb8, 0x8c, 0x50, 0xbb, 0x2f, 0xa8, 0xce, 0x3f, 0xff, 0x37, 0x5d, 0xd1, + 0xc1, 0xea, 0x9c, 0x7d, 0xce, 0x66, 0x73, 0xda, 0xfc, 0x79, 0x79, 0x3d, + 0x82, 0x09, 0x9a, 0x6d, 0x2e, 0x2d, 0xb7, 0x24, 0x97, 0x7d, 0x64, 0x3c, + 0xc3, 0xac, 0xd0, 0xcc, 0x7d, 0xfb, 0xb4, 0x8b, 0xbb, 0xc9, 0xc7, 0xd8, + 0xa5, 0xca, 0x5c, 0xe5, 0x8d, 0x98, 0x1d, 0xfe, 0x94, 0x84, 0xd6, 0xf2, + 0xc4, 0xa7, 0x8a, 0x12, 0xb7, 0xcc, 0xfa, 0xcb, 0x7a, 0xaa, 0xf8, 0x45, + 0x1e, 0xb9, 0xbd, 0x40, 0x94, 0x59, 0xe6, 0x0c, 0xfd, 0xba, 0x1f, 0x12, + 0xb5, 0xd2, 0x95, 0x9b, 0x1a, 0x9a, 0x9f, 0x5c, 0x71, 0x6c, 0x64, 0xed, + 0x56, 0xcb, 0x75, 0x48, 0xb4, 0xd9, 0xec, 0xf5, 0x9e, 0xea, 0xcb, 0x27, + 0x81, 0x63, 0x24, 0x74, 0x42, 0x24, 0x4e, 0xf1, 0xc1, 0x44, 0xd2, 0x07, + 0x37, 0xf8, 0xdd, 0xfe, 0x34, 0x73, 0x23, 0x75, 0xfd, 0x64, 0x54, 0x63, + 0x1a, 0x9c, 0x67, 0x54, 0xc9, 0x73, 0x06, 0x36, 0x33, 0xf1, 0x7c, 0x82, + 0x27, 0xa7, 0x45, 0x94, 0x26, 0x08, 0x8b, 0xdf, 0x8d, 0xb9, 0xcd, 0x02, + 0x25, 0x4c, 0x1c, 0xc7, 0xf5, 0x46, 0xe4, 0xe5, 0xc6, 0x83, 0x11, 0xcc, + 0xb6, 0xc2, 0xa8, 0xcc, 0x16, 0xbf, 0x04, 0xe7, 0x72, 0xae, 0x9b, 0x8e, + 0xa2, 0x99, 0xb4, 0xbc, 0xa2, 0x1c, 0x6f, 0x36, 0x21, 0x75, 0x64, 0xb2, + 0xb8, 0xff, 0xd5, 0xae, 0xf6, 0x2e, 0x9a, 0x93, 0x31, 0x0d, 0xe3, 0xfa, + 0x59, 0xa8, 0x15, 0xce, 0xc8, 0x7b, 0x93, 0x73, 0xdb, 0x84, 0xc2, 0x8e, + 0xed, 0xea, 0xa2, 0x6f, 0xf3, 0xf5, 0x74, 0xcc, 0x9d, 0x89, 0x10, 0x49, + 0xe9, 0x09, 0x3a, 0xa2, 0x38, 0xbe, 0x75, 0x58, 0xee, 0x2b, 0xde, 0x0e, + 0x6b, 0x74, 0x45, 0x6d, 0x05, 0x83, 0x83, 0x6b, 0x87, 0xf5, 0xcc, 0xcf, + 0x68, 0x82, 0xb2, 0xb0, 0x18, 0x31, 0xc6, 0x2b, 0x72, 0x85, 0x1f, 0xd4, + 0xd3, 0x70, 0x8e, 0xbc, 0x81, 0x11, 0xfc, 0xa1, 0x00, 0xa8, 0x39, 0xb7, + 0x17, 0xf3, 0xef, 0xb3, 0x63, 0x62, 0xdf, 0x7e, 0x53, 0x4e, 0x7b, 0x3e, + 0x8e, 0x0f, 0x77, 0xe1, 0x84, 0x2a, 0x14, 0x73, 0xdd, 0xb4, 0x62, 0xde, + 0x83, 0xce, 0x45, 0xd5, 0x1a, 0x6f, 0x31, 0x68, 0x8a, 0xcd, 0x44, 0x72, + 0xcf, 0x9d, 0xbb, 0x67, 0x87, 0x49, 0x37, 0x5b, 0x9d, 0xbd, 0x8a, 0x73, + 0x67, 0xe1, 0x28, 0x7c, 0xcf, 0x12, 0xf9, 0x3e, 0x3c, 0x7a, 0x98, 0x80, + 0x2a, 0x0a, 0x94, 0x9e, 0xdf, 0x1f, 0x04, 0xa9, 0x51, 0xc9, 0xdf, 0x33, + 0x2d, 0x55, 0x5b, 0x99, 0xb0, 0x69, 0x16, 0x8f, 0x49, 0x75, 0xaf, 0x15, + 0x88, 0x23, 0x0c, 0x07, 0x99, 0xb4, 0x89, 0x65, 0x96, 0xc5, 0xd8, 0xb7, + 0x73, 0x06, 0xd6, 0xee, 0xa3, 0x35, 0x33, 0xa7, 0x49, 0xd6, 0x83, 0xfe, + 0xb3, 0x89, 0xd6, 0xd9, 0xe2, 0x0d, 0xc2, 0x24, 0xf4, 0x4e, 0xa3, 0x0c, + 0x87, 0x5b, 0x42, 0x10, 0xb6, 0xbd, 0xdf, 0x84, 0xd3, 0x0f, 0x49, 0x5a, + 0x4d, 0x06, 0x73, 0x59, 0x19, 0x23, 0x16, 0xc5, 0x2f, 0x0b, 0x3b, 0xe6, + 0x93, 0x66, 0x9d, 0xc5, 0xb5, 0xf6, 0xdc, 0x70, 0xba, 0x40, 0xbf, 0x37, + 0x53, 0xa2, 0xa8, 0x19, 0x77, 0xf8, 0xa8, 0x99, 0xe3, 0x99, 0xce, 0x6a, + 0x51, 0x40, 0x4a, 0xb8, 0x3c, 0x5f, 0x65, 0xca, 0x5e, 0x76, 0x57, 0x85, + 0xfb, 0x7e, 0x7c, 0x74, 0xfa, 0x1f, 0x7f, 0x0b, 0xab, 0x3c, 0x19, 0xdb, + 0x22, 0x35, 0xd9, 0x2e, 0xc2, 0x68, 0x24, 0x5e, 0x15, 0x19, 0xae, 0x3b, + 0x2a, 0xa9, 0x4f, 0x1b, 0xf8, 0x46, 0x28, 0x86, 0xd9, 0xcf, 0x16, 0x53, + 0xfb, 0xf0, 0x70, 0x52, 0x26, 0xe7, 0x0f, 0xe9, 0xbd, 0x9f, 0x9f, 0x47, + 0x55, 0xe9, 0x15, 0xfb, 0xd6, 0x21, 0xd2, 0x6a, 0x80, 0xc5, 0xc4, 0x34, + 0xfb, 0x36, 0xe8, 0xed, 0xfc, 0xca, 0x71, 0x02, 0x6e, 0x28, 0x2f, 0xcd, + 0x02, 0x09, 0xd9, 0x1b, 0xe2, 0x53, 0x95, 0x1d, 0x4d, 0x4e, 0x07, 0xfa, + 0xc4, 0x83, 0xce, 0xe2, 0xf3, 0xb0, 0x74, 0xa7, 0xd3, 0x90, 0xf7, 0x71, + 0x40, 0xd7, 0xc8, 0x4b, 0x23, 0xd0, 0x4c, 0x99, 0x10, 0x19, 0xff, 0x25, + 0xce, 0x8c, 0xb9, 0xfd, 0x04, 0xbc, 0xf9, 0x13, 0x49, 0xae, 0xe9, 0xd9, + 0x89, 0x8e, 0x54, 0x0a, 0x68, 0xb1, 0x78, 0xf0, 0xc7, 0xf4, 0xd1, 0xcb, + 0xa7, 0xe5, 0xfb, 0x8b, 0x1a, 0x50, 0x62, 0x2e, 0x59, 0xd7, 0xd0, 0xfc, + 0x04, 0x1f, 0xda, 0x05, 0x6b, 0x0c, 0x68, 0x1d, 0x29, 0x78, 0xfc, 0xdb, + 0x59, 0x91, 0x2f, 0x79, 0xb8, 0x2f, 0x8e, 0x67, 0x9b, 0x58, 0x63, 0xd1, + 0xb3, 0xb8, 0x27, 0x7a, 0x6d, 0x4e, 0x9b, 0x1a, 0xff, 0x0a, 0x8d, 0x66, + 0xd7, 0x9a, 0x92, 0xa1, 0x97, 0x41, 0x55, 0x7f, 0x01, 0xee, 0x1f, 0xeb, + 0x0d, 0x30, 0x9b, 0x91, 0x33, 0x34, 0x8e, 0x03, 0xb7, 0x23, 0x8b, 0x22, + 0xca, 0xbb, 0xe0, 0x52, 0x44, 0x6c, 0x4d, 0x96, 0x88, 0xe6, 0x0f, 0xce, + 0x44, 0xaa, 0xa5, 0x32, 0x90, 0xbe, 0x99, 0xd9, 0xc7, 0x39, 0xe6, 0x4f, + 0x67, 0xd1, 0xb5, 0x5c, 0xb4, 0x89, 0x02, 0x63, 0x52, 0x96, 0x64, 0xa3, + 0xae, 0xec, 0x19, 0x6a, 0x2d, 0x11, 0x11, 0xab, 0xae, 0x14, 0x1f, 0x5e, + 0x10, 0x75, 0xac, 0x2a, 0xd1, 0x53, 0x63, 0xd4, 0x79, 0x79, 0xf6, 0x04, + 0x15, 0x66, 0x6a, 0x6f, 0xa7, 0xc0, 0xf8, 0xf0, 0x63, 0x41, 0xc8, 0xab, + 0x48, 0x08, 0x36, 0x4c, 0x8f, 0xff, 0x61, 0xb6, 0x81, 0x26, 0xff, 0xca, + 0xf4, 0xb6, 0x1c, 0x3b, 0xb3, 0x7d, 0x16, 0x8f, 0x79, 0x1a, 0x4f, 0xa7, + 0x62, 0xe2, 0xa0, 0x72, 0x02, 0xe0, 0xbd, 0x26, 0x16, 0x2e, 0xa2, 0x58, + 0x48, 0x44, 0xba, 0x45, 0x2a, 0xaa, 0x84, 0x43, 0x94, 0x13, 0x8e, 0x3e, + 0xa8, 0xfe, 0xe2, 0xac, 0xb7, 0xb0, 0xb5, 0x3a, 0x4a, 0x06, 0x2d, 0x55, + 0xcd, 0xce, 0xec, 0xd1, 0x56, 0x70, 0xfe, 0x51, 0xe7, 0x50, 0x8f, 0x08, + 0xd1, 0x51, 0x01, 0x41, 0x9c, 0xa2, 0x48, 0x17, 0x19, 0x6a, 0x1a, 0xdf, + 0x95, 0xc3, 0xde, 0x4b, 0x79, 0x5f, 0x9d, 0x4e, 0x51, 0x9f, 0x3a, 0xed, + 0xc5, 0x0c, 0x88, 0x1a, 0x8d, 0x0c, 0x60, 0xa3, 0x03, 0x05, 0x6c, 0x9f, + 0x7b, 0x61, 0x3b, 0xb7, 0xe8, 0x54, 0x91, 0xea, 0x4e, 0xea, 0x64, 0xe6, + 0x25, 0xff, 0x92, 0x28, 0x06, 0xfa, 0x5d, 0xeb, 0x06, 0x66, 0x54, 0x73, + 0x65, 0x1b, 0xa7, 0x58, 0x1c, 0xd2, 0x04, 0xda, 0xfb, 0x55, 0x71, 0xbc, + 0x55, 0x2c, 0xf3, 0x00, 0x82, 0x29, 0x41, 0x7b, 0x01, 0x67, 0x96, 0x3a, + 0xb0, 0x99, 0xc0, 0x5e, 0x22, 0x91, 0x87, 0xc5, 0xff, 0xf2, 0x43, 0x3e, + 0x4b, 0xab, 0x16, 0x5b, 0x32, 0x1b, 0x4c, 0x80, 0xaa, 0x98, 0x07, 0x82, + 0x82, 0x88, 0x9d, 0xaf, 0x0a, 0xf0, 0xa0, 0x1b, 0x21, 0x7f, 0x06, 0x80, + 0x66, 0xbb, 0x85, 0xc5, 0x32, 0xa2, 0xf2, 0x88, 0xa7, 0x96, 0x89, 0xdc, + 0xbb, 0x36, 0x1e, 0x8e, 0x28, 0xaf, 0x5c, 0xef, 0xb2, 0xc0, 0x46, 0xaa, + 0xd9, 0xd6, 0xb8, 0x31, 0x9e, 0xfa, 0x32, 0xec, 0x79, 0xd5, 0x4a, 0x07, + 0xa1, 0xc5, 0x16, 0xd5, 0x0d, 0x2a, 0x35, 0xd9, 0x01, 0x41, 0x3b, 0xd1, + 0x83, 0x72, 0xcd, 0x20, 0x99, 0xa3, 0x7a, 0xeb, 0xfe, 0x18, 0xbc, 0xf3, + 0xe4, 0x7d, 0x23, 0x27, 0xbc, 0xaf, 0xc8, 0xe0, 0xc0, 0x35, 0xed, 0x46, + 0x35, 0x41, 0xc4, 0xd7, 0x0d, 0xdb, 0xd6, 0xad, 0x92, 0xed, 0x5c, 0x4d, + 0xb9, 0xe5, 0x33, 0xd2, 0xfd, 0x88, 0x08, 0x9a, 0xd2, 0x20, 0xc9, 0x12, + 0x12, 0xfd, 0x64, 0xe5, 0x4b, 0xb9, 0xca, 0x13, 0x26, 0x01, 0xde, 0x1f, + 0xf5, 0x59, 0xf9, 0x07, 0x4f, 0x54, 0x6a, 0xf3, 0x5d, 0x7d, 0x0a, 0xcd, + 0xdd, 0x70, 0xfd, 0x36, 0x3b, 0xed, 0x42, 0x6f, 0xf4, 0x89, 0x06, 0x16, + 0x81, 0xa3, 0x81, 0x6a, 0xc3, 0x43, 0xee, 0x90, 0xf5, 0x1b, 0x37, 0x59, + 0x50, 0xdf, 0xa3, 0x96, 0x07, 0x7b, 0x46, 0x78, 0x62, 0xbe, 0x07, 0x01, + 0x4b, 0x43, 0xf6, 0xfb, 0xd2, 0x7b, 0xc8, 0xce, 0x9d, 0x1f, 0xb8, 0xdd, + 0x93, 0x75, 0xcf, 0xcc, 0x73, 0x63, 0xc2, 0xe2, 0x42, 0xf0, 0x51, 0x6e, + 0xd1, 0x97, 0xcf, 0x02, 0xa1, 0x2e, 0x43, 0xa8, 0x21, 0xbe, 0x31, 0x99, + 0xa0, 0xd8, 0x9c, 0x5d, 0x86, 0x31, 0x1d, 0x91, 0xbf, 0xd3, 0xaa, 0x21, + 0xf8, 0x43, 0x16, 0xf7, 0x45, 0x5b, 0xb8, 0x93, 0x23, 0x16, 0xf5, 0xfc, + 0x04, 0x90, 0x84, 0x94, 0x69, 0x00, 0x55, 0x1b, 0x66, 0xe1, 0xc3, 0x1c, + 0x36, 0xc3, 0x67, 0xc3, 0x42, 0x1e, 0xb1, 0xf7, 0xb0, 0xd9, 0xfc, 0xa7, + 0x49, 0x7e, 0x65, 0x5d, 0xd4, 0x30, 0x40, 0x1d, 0x8f, 0x02, 0x5e, 0xd1, + 0xbd, 0x0b, 0x43, 0x1f, 0x4a, 0x08, 0x1e, 0x25, 0x92, 0x24, 0xd1, 0x7d, + 0x49, 0x39, 0xfb, 0xca, 0x66, 0xfa, 0xb0, 0x00, 0xb4, 0x55, 0x0a, 0x10, + 0x62, 0x9c, 0xa4, 0x1b, 0xca, 0xca, 0x25, 0x83, 0x4a, 0x50, 0x6f, 0xc1, + 0x42, 0x11, 0x69, 0x04, 0xe9, 0xe9, 0xbd, 0xac, 0xf3, 0xee, 0xf6, 0xc3, + 0x46, 0x7f, 0x46, 0x14, 0xc1, 0x50, 0xec, 0x2d, 0xcb, 0x96, 0xb9, 0x05, + 0x7d, 0x51, 0xf5, 0xd2, 0x8e, 0x1c, 0x5a, 0x14, 0x4c, 0xca, 0xda, 0xc8, + 0x1e, 0x46, 0x65, 0x50, 0x52, 0xc2, 0x37, 0xb8, 0x2a, 0x68, 0xc0, 0xae, + 0x76, 0xd3, 0x9f, 0x48, 0xd1, 0x53, 0xf8, 0x9e, 0x09, 0xa4, 0xf0, 0x8d, + 0xc9, 0x1f, 0xcf, 0x3f, 0xfe, 0x19, 0x23, 0xf6, 0xf8, 0x61, 0x34, 0x1f, + 0xd9, 0xf9, 0xf2, 0x93, 0xa2, 0x42, 0x68, 0x6c, 0x8a, 0xa7, 0xdc, 0x1b, + 0x7e, 0x1c, 0xb8, 0xd9, 0x17, 0x9f, 0xa7, 0x80, 0x36, 0x5e, 0x52, 0x47, + 0x18, 0x53, 0x62, 0x65, 0x9f, 0x73, 0xf8, 0xe1, 0x53, 0xb9, 0x02, 0xb6, + 0x91, 0x33, 0x3d, 0xf2, 0x0d, 0x64, 0xf2, 0x1b, 0x69, 0x86, 0x31, 0x0c, + 0xa8, 0x9a, 0x75, 0x0c, 0x08, 0x77, 0xe7, 0x0c, 0xab, 0x60, 0x93, 0x70, + 0x46, 0x75, 0xd2, 0x18, 0xf4, 0x34, 0xc0, 0xa9, 0xdd, 0xf8, 0x57, 0xef, + 0xcf, 0x45, 0x64, 0x74, 0x8c, 0x5c, 0x39, 0xc2, 0xc5, 0x70, 0x69, 0xd3, + 0x99, 0x97, 0xe9, 0x99, 0x0a, 0x14, 0xc6, 0x7c, 0x9d, 0xad, 0x32, 0xc9, + 0x99, 0xcd, 0x88, 0x50, 0x11, 0xf6, 0xab, 0x0b, 0x2c, 0x89, 0x64, 0x7b, + 0x3c, 0x32, 0x6a, 0x80, 0x67, 0xbc, 0xc8, 0x70, 0xfa, 0x23, 0xe2, 0x3e, + 0x9d, 0x5b, 0xaf, 0x30, 0x40, 0x11, 0x94, 0xf7, 0xa5, 0x0e, 0x90, 0xd6, + 0xf4, 0x17, 0x10, 0x6c, 0xcc, 0x95, 0xce, 0xfd, 0xe2, 0xa4, 0x83, 0xb1, + 0x26, 0x0d, 0x96, 0x36, 0x12, 0x27, 0xc2, 0xcb, 0xad, 0x5a, 0x25, 0x32, + 0x3c, 0x46, 0x38, 0xaa, 0xa6, 0x7a, 0xe4, 0x6f, 0xaa, 0xd1, 0x8b, 0xcd, + 0xea, 0x81, 0xeb, 0xdf, 0x7f, 0x73, 0x41, 0x54, 0x9d, 0x97, 0xd0, 0x61, + 0x46, 0x99, 0x81, 0x88, 0xcd, 0x5b, 0x37, 0x1c, 0xda, 0x4f, 0xce, 0xf6, + 0x10, 0xc8, 0xa1, 0x5f, 0x9d, 0xe5, 0xa8, 0x21, 0xef, 0x8b, 0x77, 0x7d, + 0x2f, 0x44, 0x26, 0xb5, 0x54, 0xfe, 0x6b, 0x7d, 0xcb, 0xb9, 0x93, 0x63, + 0x32, 0x24, 0xff, 0x4d, 0x2d, 0x18, 0x16, 0x98, 0xe2, 0x11, 0x9c, 0x9b, + 0x2a, 0xaa, 0xf2, 0x11, 0x30, 0x1c, 0xdc, 0x5b, 0x97, 0x38, 0xf3, 0xe1, + 0x85, 0xff, 0x7b, 0x12, 0x52, 0x6b, 0xe7, 0x72, 0x2b, 0x5a, 0xc4, 0x39, + 0x8d, 0x01, 0x9f, 0x82, 0xcf, 0xf6, 0x93, 0xd1, 0x66, 0xac, 0x1b, 0x22, + 0xb5, 0xdc, 0xe7, 0xfa, 0xde, 0x2e, 0x66, 0xbc, 0x63, 0x83, 0x1e, 0x5f, + 0x34, 0x06, 0xae, 0x36, 0xd2, 0xbe, 0x05, 0xc6, 0x5a, 0x89, 0xb2, 0x3f, + 0xd3, 0x9e, 0xcd, 0x5e, 0xd2, 0xa6, 0x05, 0xed, 0xa1, 0x7f, 0x31, 0xbd, + 0xfd, 0xd6, 0x13, 0x46, 0xb8, 0x7a, 0x58, 0xa3, 0x2e, 0xb8, 0xd9, 0xb0, + 0xe8, 0xe5, 0xed, 0x60, 0xea, 0xa0, 0x84, 0x85, 0xae, 0x63, 0x0b, 0x9d, + 0xa7, 0x89, 0xbb, 0xb5, 0x58, 0x3c, 0xe8, 0x8f, 0x45, 0x8f, 0x2e, 0x8c, + 0x42, 0x59, 0xe2, 0x8e, 0x7c, 0x47, 0xb6, 0xb2, 0x03, 0x88, 0x32, 0x5d, + 0x14, 0x31, 0x6e, 0x69, 0x70, 0x67, 0xd2, 0x24, 0x8b, 0xa7, 0x85, 0x6e, + 0x3c, 0xec, 0x89, 0xb0, 0x99, 0x5e, 0x67, 0x08, 0x31, 0x72, 0x8f, 0xff, + 0x6c, 0xd5, 0x91, 0x2e, 0xb0, 0xe7, 0x7f, 0xc6, 0xaf, 0x22, 0x68, 0xe5, + 0xd1, 0xe9, 0xa9, 0xc2, 0xb5, 0x74, 0x4d, 0x4d, 0x3a, 0x3c, 0xbc, 0xf0, + 0xd2, 0xa9, 0x8c, 0x53, 0x35, 0xcb, 0x8e, 0x15, 0x5c, 0x3a, 0x99, 0xa5, + 0x06, 0x1c, 0x7d, 0x34, 0xde, 0xe1, 0x41, 0xa9, 0xff, 0x7e, 0xb8, 0x7a, + 0xe5, 0xaa, 0x79, 0xfc, 0xce, 0xe8, 0xcb, 0xd7, 0xaf, 0x55, 0xdc, 0xea, + 0xd9, 0xfa, 0xe0, 0x13, 0xfd, 0x21, 0x5d, 0x87, 0x78, 0xd1, 0xe0, 0xf2, + 0x45, 0xc9, 0x75, 0xc6, 0x2a, 0x6e, 0xef, 0xe2, 0x84, 0x98, 0xa1, 0x86, + 0xda, 0x30, 0x2c, 0xd6, 0xbc, 0x1a, 0x1d, 0x1a, 0x47, 0xca, 0x5f, 0xfd, + 0xc7, 0xb0, 0x81, 0xf9, 0x76, 0x71, 0x8b, 0x7c, 0x13, 0xa3, 0x57, 0x6f, + 0x58, 0x92, 0x38, 0xf2, 0xb8, 0x1c, 0x6a, 0x3f, 0x71, 0xd8, 0xf7, 0x18, + 0xff, 0x34, 0x54, 0x29, 0xcf, 0xec, 0xf7, 0xbb, 0x47, 0x04, 0x38, 0x98, + 0x14, 0x8c, 0xbe, 0x65, 0xc6, 0x2b, 0x60, 0xb4, 0x51, 0xf9, 0xf6, 0x8c, + 0xd0, 0x49, 0x9a, 0x7c, 0xe4, 0x12, 0xf7, 0xbb, 0x2f, 0xd1, 0x6b, 0x93, + 0xb8, 0x7d, 0xb1, 0x5b, 0xb2, 0x58, 0xc6, 0x1a, 0x4d, 0x0a, 0xa9, 0xad, + 0xe4, 0xf3, 0xe9, 0x3b, 0xb1, 0x5c, 0x23, 0xd4, 0xc3, 0xa7, 0x0f, 0x95, + 0x52, 0x13, 0x9f, 0x0b, 0xee, 0xf4, 0x54, 0xc4, 0xa4, 0xc4, 0x2d, 0x3e, + 0xb4, 0x63, 0xb1, 0xc9, 0xfd, 0x32, 0x41, 0x72, 0x23, 0xa2, 0xec, 0x5f, + 0x75, 0xe5, 0xc2, 0xdc, 0xc4, 0xe1, 0x5d, 0x14, 0x9f, 0x4c, 0x76, 0x73, + 0xa7, 0x13, 0x73, 0x5b, 0xc5, 0x6f, 0x7e, 0x25, 0x65, 0xd5, 0x00, 0x73, + 0x8c, 0xb5, 0x77, 0x4e, 0x08, 0x72, 0xf3, 0xd3, 0x53, 0x9d, 0x73, 0xc7, + 0x0f, 0x24, 0x5e, 0x29, 0x56, 0xca, 0x2d, 0xa9, 0x1a, 0xa5, 0x97, 0xce, + 0x0c, 0x6f, 0x7e, 0xf3, 0xac, 0xd7, 0x74, 0xdf, 0x14, 0xd5, 0x10, 0xdf, + 0x83, 0x33, 0x0e, 0xd6, 0x9f, 0x21, 0x3b, 0x16, 0xd7, 0x2b, 0x0f, 0xd3, + 0x6f, 0x44, 0xb7, 0xe7, 0x99, 0xde, 0xf0, 0xd4, 0x99, 0xf3, 0x25, 0x83, + 0xcb, 0xee, 0x76, 0x2e, 0x1d, 0xc5, 0x61, 0x31, 0x60, 0x33, 0xcb, 0xa0, + 0xa0, 0xdf, 0x6e, 0x57, 0x31, 0xd2, 0x6a, 0xa9, 0xea, 0x78, 0x27, 0x3a, + 0x99, 0x3d, 0xfb, 0xb0, 0xc1, 0xbf, 0x00, 0x41, 0x52, 0x03, 0x71, 0x0b, + 0x73, 0xf6, 0x54, 0xdb, 0x16, 0x0b, 0xe1, 0xf8, 0xfa, 0xb5, 0xca, 0x06, + 0x1b, 0xf2, 0xe6, 0xdd, 0xc8, 0xc5, 0x16, 0xad, 0x48, 0xb7, 0x8c, 0x1f, + 0x99, 0xaf, 0x5b, 0x73, 0x53, 0x90, 0x8b, 0xc1, 0x41, 0x89, 0xce, 0x68, + 0x77, 0x57, 0x1f, 0xba, 0xe5, 0x5b, 0x03, 0x42, 0x45, 0xb1, 0x3a, 0x6b, + 0x78, 0x90, 0xcc, 0x76, 0xb5, 0xac, 0x99, 0x2c, 0x35, 0xc0, 0x03, 0xe8, + 0x88, 0x65, 0x41, 0xbc, 0x52, 0xc7, 0xe1, 0xb4, 0x19, 0x43, 0x53, 0x0f, + 0x25, 0x00, 0xda, 0x9f, 0x58, 0xa9, 0x4e, 0xe4, 0x72, 0x6d, 0xc4, 0x22, + 0xd4, 0x1d, 0x6d, 0xc8, 0x5d, 0x07, 0x72, 0xcf, 0x1b, 0x94, 0xd9, 0x01, + 0xe6, 0x6a, 0x33, 0x09, 0xba, 0x6f, 0x47, 0x1e, 0xdb, 0xe2, 0x21, 0x9a, + 0x43, 0xdd, 0xba, 0x28, 0x22, 0x96, 0x71, 0x99, 0x75, 0x65, 0x4e, 0xa6, + 0x18, 0x42, 0xd9, 0x5f, 0x66, 0xa4, 0x4a, 0x8e, 0x37, 0xde, 0x57, 0x67, + 0x37, 0x39, 0xf4, 0xa7, 0x25, 0x09, 0xa4, 0x89, 0xa0, 0xab, 0x6b, 0x5b, + 0x7e, 0x05, 0x4b, 0x15, 0xc8, 0x04, 0xa2, 0xab, 0x87, 0xaa, 0xe2, 0x8f, + 0x2c, 0x54, 0x69, 0xf9, 0xa4, 0x8c, 0x44, 0x5b, 0x81, 0x63, 0xc1, 0x0e, + 0xa9, 0xa0, 0x76, 0xc8, 0x9a, 0xd1, 0x2c, 0xcf, 0x6f, 0xa4, 0x21, 0x4f, + 0x5b, 0x7a, 0x74, 0xf2, 0x56, 0xcd, 0x0d, 0x37, 0x54, 0xfc, 0x46, 0x23, + 0xa8, 0xf0, 0x1b, 0x66, 0x30, 0x8d, 0xd3, 0x21, 0x62, 0xa7, 0x2a, 0x8f, + 0xc2, 0x79, 0xa1, 0xf7, 0x97, 0x7c, 0x55, 0x26, 0x8d, 0xf5, 0x2e, 0x78, + 0x00, 0x18, 0x9c, 0x1f, 0xb4, 0x23, 0xef, 0xbd, 0xdd, 0xf7, 0x56, 0x51, + 0x6e, 0x56, 0x2a, 0x5e, 0xae, 0x19, 0xba, 0x24, 0x5c, 0x8c, 0x8c, 0x1f, + 0x56, 0x07, 0x6d, 0x96, 0xa1, 0x60, 0xb9, 0xdd, 0x3f, 0x12, 0x5a, 0xa9, + 0x87, 0x2d, 0xc9, 0x0e, 0x5c, 0xf9, 0xd4, 0x98, 0xff, 0x14, 0xed, 0x76, + 0xab, 0x8b, 0xbf, 0x20, 0x49, 0x53, 0x9e, 0x9f, 0x71, 0x85, 0x3f, 0xad, + 0xb9, 0x4f, 0xb0, 0x2a, 0x70, 0xa2, 0xa0, 0x1d, 0xb9, 0x91, 0x70, 0x97, + 0x9f, 0x28, 0xe1, 0x38, 0x7d, 0x8d, 0x77, 0xf9, 0xea, 0x9c, 0x20, 0x3c, + 0xca, 0xbb, 0xdb, 0xed, 0x2a, 0x8f, 0x02, 0xf9, 0xfa, 0x49, 0x14, 0x63, + 0xe3, 0x13, 0x39, 0xcf, 0x67, 0x54, 0x26, 0xc8, 0x0f, 0xa2, 0x7c, 0xf7, + 0x5a, 0x95, 0x2e, 0x82, 0x75, 0x7f, 0x01, 0xaf, 0x18, 0x8b, 0xd3, 0x87, + 0xfe, 0x02, 0xbe, 0x34, 0xa3, 0x56, 0x82, 0x46, 0x4b, 0x31, 0x96, 0x50, + 0xf4, 0x3f, 0x91, 0x90, 0xdd, 0x5e, 0xa4, 0xc6, 0x3c, 0xf3, 0x6f, 0x77, + 0xa2, 0xbb, 0x4c, 0x33, 0x5e, 0x9d, 0xed, 0x60, 0xa5, 0x67, 0x02, 0x86, + 0x2a, 0x95, 0x22, 0xc1, 0xee, 0xa2, 0x79, 0x95, 0x70, 0x45, 0xf4, 0xf4, + 0x13, 0x7c, 0x82, 0x64, 0x5e, 0x57, 0xae, 0x11, 0x5a, 0xb6, 0xfb, 0xe0, + 0x54, 0xd8, 0x4c, 0xbe, 0x2b, 0x30, 0x9b, 0xf2, 0x73, 0x5f, 0x07, 0xd0, + 0x2f, 0xab, 0xf9, 0xde, 0x70, 0xdc, 0x5d, 0x8b, 0xf6, 0xec, 0x23, 0x93, + 0x07, 0x9d, 0x26, 0x9a, 0x75, 0x81, 0xf8, 0xcb, 0xde, 0x95, 0x6b, 0x95, + 0xb7, 0x82, 0xe6, 0x43, 0x98, 0x49, 0xd6, 0xa8, 0x19, 0x3b, 0x6a, 0xc1, + 0x48, 0x8a, 0x22, 0x52, 0x29, 0x31, 0x3b, 0x49, 0x2c, 0xe9, 0x67, 0x85, + 0x23, 0xf7, 0xd0, 0x10, 0xf7, 0x24, 0xdc, 0xd4, 0x51, 0x36, 0xb9, 0x6b, + 0xde, 0xd4, 0xb1, 0x17, 0x58, 0x06, 0x49, 0xe8, 0x98, 0x73, 0x61, 0xa9, + 0xfd, 0xf6, 0x26, 0x0c, 0xb5, 0xca, 0x3b, 0x09, 0x03, 0x0b, 0xfc, 0xfa, + 0xdd, 0xdb, 0xe0, 0xe1, 0x8f, 0xb0, 0xd4, 0x3e, 0x94, 0x0a, 0x53, 0xd8, + 0x4d, 0xf5, 0x70, 0x6a, 0x11, 0x4d, 0xaf, 0x8d, 0x5f, 0xbc, 0xe2, 0x6f, + 0xe0, 0xae, 0x1c, 0xca, 0xea, 0x14, 0x0e, 0x12, 0xa6, 0x8e, 0x77, 0xec, + 0xd8, 0xf3, 0xcc, 0x65, 0xc4, 0x85, 0x26, 0x85, 0x0f, 0xba, 0x62, 0x08, + 0x5b, 0x7f, 0xc7, 0x73, 0x07, 0x54, 0x5f, 0x31, 0x33, 0x02, 0x92, 0xca, + 0xa9, 0x31, 0xb0, 0x11, 0x36, 0x03, 0xae, 0x19, 0xb7, 0x34, 0xd3, 0x09, + 0x7d, 0x66, 0xb0, 0x04, 0x46, 0x17, 0x83, 0x42, 0x5d, 0x5c, 0x81, 0xcc, + 0xe2, 0xe9, 0x4d, 0xbc, 0x9a, 0x60, 0xb3, 0xef, 0x34, 0x86, 0x32, 0x3b, + 0x1d, 0x2e, 0x54, 0xf5, 0xc4, 0xa7, 0xfd, 0x51, 0x03, 0x2f, 0x1c, 0xad, + 0xb2, 0x1f, 0x50, 0xe5, 0xb3, 0x06, 0x87, 0x50, 0x75, 0x21, 0x86, 0xdc, + 0xe8, 0xf2, 0x88, 0x1d, 0x4f, 0xf8, 0xbf, 0x2c, 0xb3, 0xbc, 0xf3, 0xf4, + 0x8c, 0x65, 0xcf, 0x0e, 0xc7, 0x8b, 0xd6, 0x85, 0x17, 0x44, 0xf9, 0x43, + 0x31, 0x24, 0x3d, 0xb5, 0x42, 0x62, 0x3a, 0x3b, 0x41, 0xb4, 0x95, 0x44, + 0x46, 0xc7, 0xf5, 0x6d, 0x3d, 0x0c, 0x47, 0x25, 0xb5, 0xa3, 0xd6, 0xdc, + 0xa0, 0x0d, 0xdb, 0x28, 0x6d, 0x3a, 0xa8, 0x12, 0xeb, 0x6e, 0xf2, 0xa4, + 0x97, 0xc2, 0x9d, 0x8a, 0x01, 0xba, 0x12, 0x72, 0xf7, 0x81, 0xe6, 0xc9, + 0xb3, 0x91, 0x2a, 0x9a, 0xa5, 0x3e, 0x27, 0xd5, 0x6b, 0x5a, 0x00, 0xe0, + 0xae, 0x8e, 0xa3, 0x33, 0x4f, 0x7c, 0xc7, 0xf7, 0x0f, 0xe7, 0xf7, 0x6c, + 0xeb, 0x5a, 0xdf, 0x43, 0xd6, 0xe2, 0x16, 0xf4, 0x11, 0x24, 0xa9, 0x15, + 0x2c, 0xf9, 0xfd, 0xcf, 0xaf, 0x77, 0xd7, 0x54, 0xae, 0xfa, 0x1d, 0x75, + 0x6c, 0x01, 0x3d, 0x27, 0xfe, 0xbf, 0x5e, 0x71, 0xcc, 0x2e, 0x63, 0x3c, + 0x9b, 0xc4, 0xd3, 0x35, 0xab, 0x5d, 0xc5, 0x79, 0x65, 0x6e, 0x15, 0x2d, + 0xeb, 0x1c, 0x47, 0xcf, 0x2a, 0x5d, 0x25, 0xc3, 0x11, 0x62, 0xfb, 0x39, + 0x04, 0xf8, 0x31, 0xc6, 0x1b, 0x84, 0x22, 0xcd, 0xca, 0x77, 0xfb, 0x30, + 0xfe, 0x2b, 0xf6, 0x47, 0x55, 0x58, 0x1e, 0x81, 0xeb, 0x8b, 0x55, 0x0b, + 0xa2, 0x45, 0xa2, 0x76, 0xb0, 0x74, 0xa9, 0x2c, 0xb0, 0x72, 0xee, 0x0f, + 0x93, 0xd5, 0x37, 0x2b, 0x51, 0x5a, 0x2d, 0xe6, 0x4b, 0xab, 0x41, 0x6e, + 0xca, 0xf7, 0x2a, 0x73, 0x8f, 0x0c, 0xdf, 0x93, 0xb5, 0x1a, 0x88, 0x24, + 0x16, 0x9a, 0xfc, 0x22, 0x47, 0x17, 0x96, 0x2b, 0xa7, 0x8a, 0xe6, 0xdd, + 0x3b, 0x9d, 0x93, 0x2a, 0xd4, 0x21, 0x4c, 0x9a, 0x81, 0x88, 0x0a, 0xbb, + 0x63, 0x35, 0x64, 0x45, 0xab, 0x74, 0x9d, 0xd9, 0x2f, 0xad, 0x04, 0x05, + 0x48, 0xc5, 0xef, 0x6b, 0x2d, 0x54, 0x75, 0x85, 0x54, 0x40, 0xcd, 0xa0, + 0xd2, 0x0a, 0xe5, 0x6b, 0x93, 0x04, 0x63, 0xf0, 0x86, 0x86, 0x11, 0x6a, + 0x2b, 0x4b, 0x55, 0x27, 0x72, 0xdd, 0x70, 0xec, 0xae, 0x72, 0x20, 0x7f, + 0xd5, 0x8d, 0x6c, 0x43, 0x02, 0xf7, 0xf5, 0x32, 0x42, 0x9e, 0xd0, 0x12, + 0xcd, 0x1f, 0x52, 0xa8, 0x5f, 0xf3, 0xd4, 0x2a, 0xd8, 0xb5, 0x42, 0x30, + 0x3a, 0x22, 0xcc, 0xcc, 0xb5, 0xb7, 0x58, 0x39, 0xb7, 0xe9, 0x4f, 0x3a, + 0xe5, 0xb7, 0xa6, 0x1d, 0x8b, 0xb5, 0x41, 0x11, 0xc0, 0x63, 0x25, 0xcf, + 0xaa, 0xb5, 0xe7, 0x9d, 0xe6, 0xee, 0xbe, 0xa2, 0x66, 0x51, 0x64, 0xde, + 0xf8, 0x8a, 0x97, 0x93, 0xca, 0x9f, 0x4a, 0x3b, 0x33, 0x4f, 0x7d, 0x33, + 0x50, 0x7d, 0x09, 0x5e, 0x75, 0xc4, 0x3d, 0x44, 0x24, 0xbd, 0x1e, 0x1e, + 0x9a, 0x0d, 0x7e, 0x61, 0x34, 0x1b, 0xc9, 0xbd, 0x64, 0x8c, 0x42, 0x67, + 0x94, 0xc0, 0xac, 0xca, 0xac, 0x4d, 0xc7, 0x73, 0xe6, 0xc3, 0x37, 0x4a, + 0xfc, 0x25, 0xda, 0xf9, 0xf2, 0x86, 0x9f, 0xd2, 0x0f, 0xc7, 0xd8, 0x57, + 0x38, 0xeb, 0x64, 0x20, 0x74, 0xcc, 0xd4, 0x71, 0xda, 0x29, 0x05, 0x34, + 0x4b, 0x18, 0x86, 0x0f, 0x7c, 0x88, 0xed, 0xc4, 0xd2, 0x26, 0x7c, 0xe8, + 0xd7, 0x0f, 0xd2, 0x6b, 0x1d, 0xf4, 0xe3, 0xf5, 0x3c, 0x8b, 0xed, 0x79, + 0x60, 0x5c, 0x89, 0x18, 0xbd, 0x15, 0x0e, 0xc2, 0x5a, 0x14, 0xdc, 0xd6, + 0x10, 0x71, 0xfd, 0xfd, 0x8e, 0x65, 0xac, 0x09, 0x59, 0x1a, 0xd8, 0xab, + 0x2d, 0xe2, 0x19, 0xbb, 0x8e, 0xa5, 0x14, 0x29, 0x95, 0x9e, 0xe2, 0x5e, + 0x58, 0xee, 0xdc, 0x53, 0xfd, 0x1b, 0x0b, 0x61, 0xb3, 0x10, 0x22, 0xe2, + 0x48, 0xb5, 0xb7, 0xbb, 0xc5, 0x5e, 0x35, 0x99, 0x75, 0xec, 0xd5, 0xa0, + 0xb4, 0x0e, 0xf1, 0x4a, 0x52, 0xad, 0xaa, 0x2c, 0x4e, 0xef, 0x23, 0x18, + 0x03, 0x3e, 0xc5, 0xf5, 0x84, 0x9f, 0x89, 0x0c, 0x5f, 0xb7, 0x81, 0xe9, + 0xf7, 0xe2, 0x16, 0xed, 0x24, 0xde, 0x1e, 0x8e, 0x8e, 0x6f, 0x2c, 0xd3, + 0xb2, 0xc9, 0x2d, 0xea, 0xc0, 0x61, 0xf7, 0xe1, 0xd5, 0x41, 0xee, 0xc6, + 0xe0, 0x01, 0x0b, 0xf6, 0x09, 0x77, 0x0d, 0x01, 0xb0, 0x71, 0x00, 0x10, + 0x93, 0xb3, 0x34, 0x6f, 0xd9, 0xa2, 0x84, 0x63, 0x70, 0x2a, 0xd7, 0xac, + 0x5a, 0xb9, 0x91, 0xe5, 0x0b, 0x5b, 0x62, 0x5e, 0x49, 0xfc, 0x1c, 0x6a, + 0x4f, 0xc6, 0x45, 0x20, 0xec, 0x85, 0x44, 0xff, 0x5f, 0x00, 0x3f, 0x66, + 0xe9, 0xec, 0x81, 0xea, 0x15, 0x29, 0x23, 0x67, 0xc7, 0x93, 0xae, 0x92, + 0x6c, 0x2a, 0xc7, 0x1f, 0xea, 0x01, 0xd1, 0x1b, 0xea, 0xd3, 0x32, 0x4b, + 0x88, 0x64, 0xa2, 0x0c, 0xd2, 0xaf, 0xcc, 0x8b, 0xa7, 0x5d, 0x4a, 0x75, + 0x54, 0xd3, 0x8b, 0x78, 0xf9, 0xc1, 0x99, 0x1b, 0x14, 0xeb, 0xa7, 0x00, + 0x53, 0x96, 0x14, 0x97, 0x2c, 0xf7, 0x0f, 0x4d, 0x41, 0xcb, 0x1d, 0x0c, + 0x67, 0x56, 0x3d, 0xdf, 0xe2, 0xd2, 0xb8, 0x56, 0x20, 0x1e, 0x1a, 0x8d, + 0x2d, 0xc4, 0x79, 0x90, 0x6b, 0xd8, 0xed, 0xd9, 0x09, 0xc4, 0x5f, 0x75, + 0xf7, 0x36, 0x46, 0x90, 0x7e, 0x0f, 0xae, 0x34, 0xc7, 0xc4, 0x1a, 0x52, + 0x27, 0x79, 0xc8, 0x86, 0x8a, 0x41, 0xb7, 0x8b, 0xa9, 0x15, 0x90, 0xac, + 0x66, 0x73, 0xd2, 0xdf, 0x16, 0x7a, 0xbb, 0x34, 0xdf, 0x43, 0x7b, 0x1d, + 0x29, 0x24, 0x65, 0x30, 0x6c, 0x44, 0xa5, 0x5d, 0xb8, 0xb3, 0xbf, 0xae, + 0x35, 0x68, 0xfa, 0x92, 0x18, 0xa2, 0x6b, 0xe1, 0x9b, 0xec, 0xea, 0x48, + 0x2b, 0x96, 0x63, 0x29, 0x3b, 0x63, 0xb9, 0x39, 0xcb, 0x26, 0x5f, 0xad, + 0x55, 0x77, 0xbd, 0x90, 0x71, 0xa0, 0xfb, 0x1e, 0x8c, 0x57, 0x22, 0x49, + 0xb9, 0x64, 0xc5, 0xeb, 0x3d, 0x9c, 0x22, 0xc2, 0x18, 0x76, 0x2e, 0x0d, + 0x2d, 0x02, 0xff, 0x2b, 0x82, 0x95, 0x60, 0x9a, 0x33, 0xe4, 0x77, 0x85, + 0x44, 0x4a, 0x0b, 0xe9, 0x8e, 0xad, 0x00, 0x76, 0x85, 0x16, 0x2a, 0xfb, + 0x18, 0xac, 0x6e, 0x0c, 0xfb, 0x72, 0xbd, 0x12, 0xc4, 0x8d, 0x8e, 0x86, + 0xfd, 0xea, 0x6a, 0xfa, 0xf9, 0xf2, 0xa9, 0x9c, 0x89, 0xb7, 0x4a, 0x4e, + 0x28, 0x28, 0xef, 0x53, 0x56, 0xd5, 0x00, 0xad, 0x58, 0x37, 0xc2, 0xc7, + 0x30, 0x4f, 0x4a, 0x41, 0x73, 0xc2, 0x24, 0x8c, 0x7e, 0xd4, 0xdc, 0x85, + 0xaf, 0xda, 0xba, 0x8a, 0x13, 0x97, 0xa6, 0x14, 0x82, 0xce, 0x2d, 0x73, + 0x24, 0xb9, 0xd0, 0x66, 0x76, 0x6e, 0x6d, 0x2c, 0x00, 0xb1, 0x2e, 0x1d, + 0xda, 0x31, 0x3c, 0xcb, 0x83, 0x2c, 0x2c, 0x47, 0x9f, 0xc3, 0xa1, 0x0b, + 0x27, 0x5e, 0xd2, 0x75, 0x10, 0x03, 0x15, 0xda, 0x49, 0xed, 0x83, 0x63, + 0x94, 0x4a, 0xda, 0x62, 0x6b, 0x3c, 0xf8, 0xb0, 0x08, 0xe2, 0xc2, 0xd5, + 0x69, 0x16, 0x6d, 0xce, 0xf8, 0x0e, 0xb9, 0x19, 0x41, 0xb9, 0xf6, 0xa6, + 0x5e, 0xbc, 0xd6, 0x84, 0xc1, 0xe3, 0x99, 0xbe, 0x8c, 0xb1, 0x38, 0x6e, + 0x1a, 0x91, 0x22, 0x0d, 0x74, 0x8b, 0x17, 0x2c, 0x8e, 0x61, 0xb4, 0xbf, + 0x39, 0x8f, 0xc1, 0x91, 0xa2, 0x0e, 0xd2, 0xef, 0x01, 0x2a, 0x48, 0x57, + 0x23, 0xde, 0xe9, 0xc0, 0x3e, 0x26, 0xe7, 0x67, 0x57, 0xe6, 0x74, 0x2c, + 0x1e, 0x6a, 0x6d, 0x3b, 0xe8, 0x96, 0x7c, 0x80, 0xee, 0x56, 0xfb, 0xcf, + 0x41, 0xf3, 0x7b, 0x4b, 0x58, 0x1a, 0xd4, 0xfd, 0x56, 0x3b, 0x0e, 0x82, + 0x06, 0xb9, 0xfb, 0x97, 0xde, 0x4a, 0x0f, 0x73, 0x37, 0xa0, 0xdb, 0x05, + 0x44, 0x7c, 0x5a, 0x05, 0x33, 0x19, 0x4e, 0x2e, 0xa0, 0x68, 0xf6, 0x95, + 0x6c, 0x5c, 0xf5, 0xd7, 0x19, 0x52, 0x34, 0x48, 0xce, 0xc0, 0xfd, 0x09, + 0xf1, 0xfe, 0x25, 0x87, 0x99, 0x06, 0x12, 0x56, 0xb2, 0x37, 0x46, 0x66, + 0x05, 0x7e, 0xb0, 0x26, 0x9c, 0x99, 0x5d, 0x52, 0xd2, 0x67, 0xda, 0x41, + 0xec, 0xe5, 0xd9, 0xbe, 0x6e, 0x02, 0x11, 0x5f, 0x66, 0x60, 0x82, 0xaf, + 0xc7, 0xdb, 0x72, 0xcf, 0x57, 0x5e, 0xab, 0x85, 0x54, 0xfe, 0x3c, 0x80, + 0x36, 0x34, 0xbf, 0xab, 0x52, 0xc6, 0x31, 0x32, 0x04, 0x3f, 0xa1, 0x75, + 0xbb, 0xbb, 0x87, 0x47, 0x98, 0x64, 0x2f, 0x10, 0xf8, 0xcb, 0x79, 0xf4, + 0xdf, 0x35, 0xf6, 0x4a, 0x0d, 0x03, 0x26, 0x3d, 0x42, 0xa1, 0x79, 0x2d, + 0x77, 0xd2, 0x49, 0xca, 0x01, 0xb1, 0xf9, 0x61, 0x8b, 0xe3, 0x47, 0x11, + 0x53, 0xee, 0x32, 0x6f, 0xdf, 0x84, 0x96, 0xae, 0xf2, 0x88, 0xd6, 0xb8, + 0x13, 0xec, 0xe7, 0x4a, 0xe8, 0x48, 0x68, 0x60, 0x55, 0xdb, 0xd6, 0x68, + 0xab, 0x2b, 0x1d, 0x20, 0xdd, 0xf2, 0x9e, 0x45, 0x06, 0xca, 0x7e, 0xd0, + 0x6f, 0xc1, 0x13, 0x3d, 0x45, 0x61, 0xd9, 0xb1, 0x3d, 0x10, 0x1e, 0xc7, + 0xbd, 0xbb, 0x75, 0x71, 0xf4, 0x24, 0xe2, 0x91, 0xe7, 0x8f, 0x7b, 0xa1, + 0xa7, 0xbe, 0x41, 0x0a, 0xd7, 0x4a, 0xf5, 0x43, 0xed, 0x27, 0xaa, 0xe6, + 0xe3, 0xa8, 0xf0, 0x79, 0xc3, 0xe8, 0x3c, 0xa8, 0x65, 0x11, 0x0a, 0x2d, + 0xf5, 0x3e, 0x8d, 0x13, 0xdf, 0xa0, 0x89, 0x02, 0x19, 0xeb, 0x38, 0x4a, + 0x41, 0x0e, 0x2b, 0xba, 0x4d, 0x15, 0x86, 0xee, 0xd1, 0x39, 0xcc, 0xf7, + 0x64, 0x3f, 0x62, 0xa0, 0x78, 0x61, 0x94, 0x45, 0x6c, 0x58, 0x8a, 0x3f, + 0x63, 0x68, 0xb7, 0x50, 0xb8, 0x79, 0xfd, 0x9c, 0x07, 0x11, 0x48, 0x6f, + 0xbc, 0x3a, 0xaa, 0xf5, 0xb8, 0x8c, 0xfa, 0x2c, 0x6c, 0xce, 0x14, 0x77, + 0x5d, 0x2b, 0x17, 0x81, 0xaa, 0x51, 0xea, 0x36, 0x5e, 0xf6, 0x53, 0xdf, + 0xce, 0xb3, 0x13, 0xd5, 0x73, 0x93, 0xef, 0xfc, 0x3b, 0x89, 0x96, 0x03, + 0xb6, 0x1e, 0x0c, 0xb0, 0xb2, 0x1a, 0x0b, 0x06, 0x1d, 0x33, 0x48, 0xd8, + 0x82, 0xb7, 0x52, 0xb5, 0xba, 0x57, 0x6a, 0x42, 0x19, 0xbf, 0x58, 0x98, + 0xd9, 0x8c, 0x66, 0x52, 0x62, 0x9e, 0x31, 0x25, 0x26, 0x46, 0x8d, 0x3a, + 0x0c, 0xbc, 0x72, 0xd6, 0xc3, 0xd5, 0x2d, 0xe0, 0x94, 0xe8, 0xd2, 0xa8, + 0xad, 0x57, 0x7a, 0x5b, 0xa3, 0xee, 0x6a, 0x31, 0x4d, 0xa1, 0x15, 0x85, + 0xe4, 0x88, 0x60, 0xc2, 0x9b, 0xc0, 0x77, 0xb3, 0x20, 0x2e, 0x6c, 0xa7, + 0x51, 0x8b, 0x03, 0x3e, 0x96, 0xa2, 0x00, 0x25, 0x02, 0xcc, 0x5b, 0x8c, + 0x80, 0x58, 0x61, 0x7a, 0x66, 0x44, 0x0b, 0x86, 0x9d, 0x24, 0x1e, 0x14, + 0x10, 0xb7, 0x06, 0x67, 0xa6, 0x52, 0x22, 0x32, 0x93, 0x67, 0xbb, 0x16, + 0x1d, 0x70, 0x14, 0x9a, 0xa0, 0x34, 0x97, 0x7d, 0x4a, 0xe0, 0x36, 0x7e, + 0x2e, 0xd2, 0x7d, 0x92, 0x5a, 0x22, 0x53, 0xc5, 0x05, 0x5f, 0xb8, 0xf9, + 0x05, 0x67, 0xc6, 0xef, 0xee, 0xa9, 0x97, 0x49, 0xbc, 0xe1, 0x4b, 0x08, + 0x62, 0xf2, 0x3a, 0xb6, 0xc8, 0xc9, 0x6a, 0x5a, 0x95, 0x6d, 0xc3, 0x97, + 0x5b, 0x88, 0x5c, 0xf6, 0x87, 0x7a, 0xb8, 0x64, 0x48, 0x17, 0x4e, 0xd0, + 0x15, 0x36, 0x2f, 0xe3, 0x6e, 0xab, 0x8d, 0x36, 0x82, 0xf0, 0xbf, 0xd8, + 0x05, 0x94, 0x18, 0xee, 0xd3, 0xf2, 0x2e, 0x20, 0x60, 0x7c, 0x1b, 0x48, + 0xde, 0xa6, 0xe9, 0x70, 0xc7, 0x6e, 0xd3, 0xf1, 0x10, 0xcb, 0x5f, 0x1c, + 0x4f, 0xd9, 0x73, 0x43, 0x9c, 0xc5, 0x3e, 0x1d, 0x96, 0xf9, 0x16, 0x48, + 0x8c, 0x6b, 0x79, 0xb8, 0x56, 0x96, 0x1b, 0x48, 0xf8, 0xc2, 0x37, 0xab, + 0xe8, 0x18, 0x5c, 0xfd, 0x36, 0x79, 0x59, 0xc3, 0x9a, 0x84, 0xc9, 0xbc, + 0xf9, 0x50, 0x5f, 0xcc, 0xe4, 0xe0, 0x43, 0xb4, 0xa9, 0x4a, 0xbf, 0xfa, + 0x86, 0xb0, 0x17, 0x06, 0x03, 0x65, 0x8e, 0xc6, 0xaf, 0x48, 0xdc, 0xcf, + 0x22, 0xdb, 0x79, 0xe2, 0x3f, 0x78, 0xbc, 0x22, 0x3d, 0x1a, 0x3d, 0x64, + 0xaa, 0x72, 0xe7, 0x39, 0x00, 0xcb, 0x19, 0x1b, 0xcb, 0xb0, 0x33, 0xe5, + 0x1e, 0x94, 0x55, 0x82, 0xac, 0xe8, 0x46, 0x58, 0x82, 0x2b, 0xc2, 0x50, + 0x95, 0xcc, 0x38, 0x7f, 0x6a, 0x49, 0x46, 0xb0, 0xe4, 0xdd, 0x22, 0xcd, + 0x64, 0xbf, 0xc6, 0xbc, 0xcf, 0x7f, 0x39, 0x5c, 0x22, 0x87, 0x72, 0x93, + 0x74, 0x01, 0xb3, 0x5e, 0x6e, 0x3f, 0x7a, 0x19, 0x14, 0xd6, 0xc7, 0x32, + 0xa0, 0xf3, 0xde, 0x51, 0x61, 0x2b, 0x0d, 0xc2, 0x57, 0xeb, 0x6a, 0xe2, + 0x7f, 0xf0, 0xb9, 0x83, 0x32, 0x47, 0x7a, 0x69, 0xe4, 0x0a, 0x61, 0x32, + 0x1b, 0x43, 0x78, 0x12, 0x94, 0xd1, 0xe5, 0x29, 0xe6, 0x72, 0xd7, 0xfd, + 0x74, 0x13, 0x94, 0x6d, 0x0b, 0x9c, 0xbf, 0xcc, 0xbc, 0x2c, 0x36, 0x45, + 0xe7, 0xaf, 0xbb, 0x7e, 0x8d, 0x65, 0x3b, 0xf3, 0x10, 0xe3, 0x86, 0xc5, + 0x13, 0xf9, 0x35, 0x49, 0xf9, 0xbb, 0x71, 0x8b, 0x62, 0xea, 0x99, 0x8e, + 0x27, 0xe1, 0xba, 0x6c, 0x8a, 0xb8, 0x32, 0x0a, 0xaa, 0x89, 0xfe, 0x2a, + 0xa5, 0x42, 0xdc, 0x6a, 0x3a, 0x15, 0xd2, 0xc9, 0x11, 0xda, 0xf1, 0x45, + 0x25, 0x8b, 0xd3, 0xc0, 0x08, 0x1c, 0x7c, 0x57, 0xa6, 0xb4, 0xe3, 0xa8, + 0xa6, 0x27, 0x3e, 0x77, 0x52, 0xb0, 0x63, 0x53, 0x0d, 0x68, 0x09, 0xee, + 0xde, 0x5a, 0x2d, 0x38, 0xcb, 0xbb, 0x97, 0x30, 0x65, 0x81, 0x12, 0x97, + 0x1a, 0x05, 0x3d, 0x8d, 0x3f, 0x48, 0x7c, 0xe0, 0x2e, 0x17, 0xcb, 0x48, + 0x16, 0x5b, 0x78, 0xb9, 0xcc, 0xe3, 0x2c, 0xf4, 0xb5, 0xd5, 0x8b, 0x9e, + 0x1e, 0xfc, 0xcd, 0xc8, 0xea, 0x4a, 0xba, 0xf7, 0xc4, 0x7c, 0xd8, 0x65, + 0xd2, 0xda, 0xea, 0x2c, 0x21, 0x0d, 0x35, 0xa3, 0xde, 0x0f, 0x2e, 0xae, + 0x9b, 0xb8, 0xf7, 0x1e, 0xac, 0xa2, 0xe0, 0x3b, 0x72, 0x5e, 0x5f, 0x4f, + 0x8a, 0x89, 0x6f, 0x39, 0x75, 0xde, 0x18, 0x6f, 0x7f, 0x99, 0xb4, 0xa0, + 0xed, 0xc0, 0xf9, 0x56, 0x59, 0x5d, 0x9e, 0xcf, 0x76, 0x4b, 0x3e, 0x3b, + 0x6b, 0x57, 0x61, 0x1e, 0x1e, 0xab, 0x57, 0x6a, 0x97, 0xa6, 0xa7, 0xbd, + 0xd3, 0xb1, 0x98, 0xc5, 0x0b, 0x64, 0xa8, 0xe6, 0xfd, 0xc0, 0x19, 0xd1, + 0x3c, 0x80, 0x49, 0xcf, 0x02, 0xcf, 0x35, 0x14, 0x58, 0x4e, 0xe9, 0xf0, + 0xc6, 0xa1, 0xa3, 0x13, 0x41, 0x56, 0xc8, 0xe5, 0xc6, 0x8f, 0x1a, 0xcf, + 0x2f, 0x12, 0xa1, 0x43, 0xd7, 0x5c, 0xed, 0x44, 0x51, 0x83, 0x10, 0x89, + 0xc4, 0x00, 0x79, 0x60, 0x6f, 0x20, 0x9a, 0x5f, 0x7b, 0x49, 0x3c, 0x6f, + 0xb2, 0xda, 0x7d, 0xa8, 0x1c, 0xba, 0x0c, 0x52, 0x17, 0x45, 0x64, 0x4c, + 0x80, 0xea, 0x49, 0x7b, 0x25, 0x22, 0x7c, 0xde, 0x73, 0x34, 0x35, 0x4e, + 0x97, 0x9a, 0xbe, 0x92, 0x03, 0xc2, 0x30, 0x0e, 0x72, 0x96, 0x99, 0x9a, + 0xb8, 0x68, 0x15, 0x49, 0x71, 0xb4, 0xf8, 0x55, 0x61, 0xab, 0xa2, 0xcc, + 0x8c, 0x78, 0xe3, 0x86, 0x1d, 0x4d, 0xe9, 0x7c, 0xb2, 0x55, 0xe9, 0x79, + 0x83, 0xbd, 0xd8, 0x85, 0xb0, 0xf9, 0x99, 0xdc, 0x76, 0x61, 0xfc, 0xbd, + 0xa1, 0xcd, 0x1a, 0x8a, 0x87, 0x63, 0x96, 0xc7, 0xb4, 0x27, 0x82, 0x2e, + 0x40, 0xd4, 0x8e, 0x82, 0x12, 0x25, 0x51, 0x4d, 0x46, 0x6c, 0x14, 0x37, + 0xca, 0xb9, 0x71, 0xf9, 0x4b, 0xa6, 0x16, 0x23, 0xe4, 0x85, 0xf5, 0xde, + 0x02, 0x63, 0xc9, 0xdb, 0xfb, 0x64, 0x77, 0x61, 0x0e, 0x73, 0x45, 0xdf, + 0x9a, 0x29, 0xea, 0x7a, 0x7f, 0x23, 0x39, 0xac, 0xfe, 0xc6, 0xd8, 0xf1, + 0x78, 0x5e, 0xad, 0xf5, 0x8b, 0x48, 0x69, 0xad, 0x62, 0xe1, 0x89, 0x8e, + 0x4b, 0x33, 0xe4, 0x06, 0x09, 0x04, 0xfc, 0x8c, 0x7c, 0xbd, 0x16, 0x67, + 0x5b, 0x65, 0xda, 0xb4, 0x74, 0xe6, 0xa3, 0x71, 0xe3, 0xc1, 0xfb, 0xb9, + 0xc6, 0x2e, 0x1e, 0xd4, 0x22, 0x9f, 0xf7, 0x08, 0x4a, 0x5e, 0x60, 0xdb, + 0xa3, 0xd9, 0x46, 0x23, 0x6d, 0xb3, 0x45, 0xf3, 0x4b, 0xd8, 0x13, 0xcd, + 0xfb, 0xc0, 0x8d, 0x78, 0x75, 0x0d, 0x65, 0x8c, 0x3a, 0x07, 0x84, 0x9b, + 0x77, 0x00, 0xb2, 0xaf, 0x51, 0xd1, 0xde, 0x84, 0x60, 0x23, 0x65, 0x03, + 0xfa, 0x33, 0x5e, 0x91, 0x9a, 0x36, 0x7b, 0x20, 0x38, 0xf5, 0x8b, 0xea, + 0xc6, 0x99, 0xb6, 0xfa, 0x8c, 0x4b, 0xde, 0x89, 0xd9, 0x9e, 0x0b, 0x6c, + 0xcf, 0x4c, 0xec, 0xd4, 0x7f, 0xa0, 0x24, 0xfd, 0xf3, 0x5b, 0x5c, 0x33, + 0x43, 0x11, 0xb8, 0x65, 0x86, 0xd4, 0xab, 0xb8, 0xda, 0xd8, 0x68, 0xe1, + 0xe5, 0x01, 0x42, 0xcd, 0xc1, 0x81, 0x31, 0x17, 0x4b, 0x26, 0x54, 0xe9, + 0x1c, 0xa3, 0xda, 0xbe, 0xda, 0xf3, 0xc1, 0xea, 0x63, 0xe2, 0x3c, 0x7c, + 0x2c, 0x4e, 0xe7, 0xbc, 0x39, 0x4c, 0x70, 0x3d, 0x8d, 0x1a, 0x9d, 0xa2, + 0x71, 0xfe, 0x39, 0x28, 0x6d, 0x40, 0xb7, 0x15, 0xaf, 0x68, 0xc2, 0x43, + 0xea, 0xa8, 0xfa, 0xb5, 0xbd, 0x16, 0x07, 0x53, 0xd3, 0x7f, 0x1f, 0x36, + 0x17, 0x32, 0x2c, 0x1e, 0xbf, 0xb4, 0x6b, 0x1e, 0xa6, 0xa1, 0xa7, 0xdc, + 0x19, 0x51, 0x72, 0xaa, 0x99, 0xcc, 0xf1, 0x0b, 0x3c, 0xf0, 0x7c, 0xcf, + 0xad, 0xdb, 0x9c, 0x28, 0x17, 0x4e, 0xc6, 0x05, 0x81, 0x23, 0x87, 0x8d, + 0x71, 0x03, 0x09, 0xa5, 0x91, 0x33, 0x2b, 0xce, 0xf1, 0x9c, 0x46, 0x01, + 0x9b, 0xb7, 0xd2, 0x15, 0x8e, 0xb4, 0xe7, 0xe6, 0x99, 0x30, 0xb8, 0xda, + 0x3b, 0x13, 0x94, 0xb2, 0xc9, 0x8c, 0x9d, 0x80, 0xf7, 0xe8, 0x16, 0x62, + 0xde, 0x82, 0xa0, 0x4e, 0x34, 0xff, 0x5f, 0xbb, 0x4c, 0xb2, 0xee, 0xb8, + 0x99, 0x11, 0x8b, 0xcb, 0x0c, 0x7f, 0x30, 0xd6, 0x31, 0xa2, 0x29, 0x05, + 0x90, 0xde, 0xba, 0x31, 0xde, 0xa8, 0xb9, 0x48, 0x97, 0xab, 0x00, 0xf1, + 0x2a, 0x2a, 0x6c, 0xd3, 0x29, 0x47, 0x4c, 0x3b, 0x76, 0x0a, 0x35, 0x61, + 0xb4, 0x62, 0x5e, 0x34, 0xb9, 0x37, 0x32, 0xf6, 0xf5, 0x87, 0x4a, 0xa5, + 0x6e, 0x67, 0x7e, 0xfc, 0x8f, 0xe5, 0xe8, 0x35, 0x29, 0x9d, 0xc6, 0x93, + 0x4f, 0xe4, 0x33, 0xa3, 0x1c, 0xcc, 0xa1, 0x66, 0x42, 0x25, 0xe5, 0x78, + 0x6f, 0xdc, 0x7c, 0x5a, 0x7d, 0x35, 0x94, 0x2c, 0xa4, 0x02, 0xfd, 0x39, + 0x7f, 0xf0, 0x6d, 0x00, 0x3e, 0x44, 0x9c, 0x18, 0xce, 0x14, 0x36, 0x5a, + 0x85, 0x74, 0x48, 0x97, 0x39, 0x1b, 0xbf, 0x88, 0x13, 0x32, 0xa5, 0xab, + 0x3c, 0x36, 0x76, 0xd0, 0x1d, 0xcb, 0x54, 0xe3, 0x74, 0x46, 0x29, 0x7f, + 0x76, 0x94, 0x2f, 0x35, 0xf3, 0x8a, 0xe9, 0x96, 0x25, 0xd1, 0x4a, 0x56, + 0x55, 0xc4, 0xc5, 0xaf, 0xd6, 0x8a, 0xe0, 0xbe, 0x50, 0x6e, 0x39, 0xc5, + 0x3b, 0x69, 0xed, 0x6e, 0x51, 0x3d, 0x37, 0x9a, 0x08, 0x39, 0x2e, 0x60, + 0xcb, 0x4b, 0x22, 0x92, 0xae, 0xbb, 0xcb, 0x08, 0x2d, 0xde, 0x15, 0x22, + 0x6c, 0x67, 0xb4, 0x29, 0x2d, 0x3d, 0x3d, 0x31, 0x40, 0x0d, 0x56, 0x43, + 0x99, 0x79, 0x92, 0x5a, 0x9e, 0xdd, 0x30, 0xb4, 0x55, 0xf1, 0x50, 0x23, + 0x67, 0xb4, 0x96, 0x7f, 0xbe, 0x19, 0x34, 0xa3, 0xa3, 0xb0, 0xd1, 0x96, + 0xdc, 0xc2, 0x82, 0x02, 0x3b, 0x89, 0xaf, 0xbb, 0x21, 0xea, 0x51, 0xf4, + 0xa4, 0x85, 0xa6, 0x25, 0x9f, 0x72, 0xcc, 0xfe, 0xc5, 0xe7, 0x59, 0xab, + 0xa1, 0x10, 0x7a, 0x17, 0x89, 0xa2, 0xf9, 0xfc, 0x18, 0xe0, 0x9b, 0x92, + 0xac, 0x7d, 0x61, 0xb3, 0x3a, 0x21, 0x82, 0xcc, 0x0a, 0xaf, 0xef, 0x0b, + 0x99, 0x44, 0xfd, 0x78, 0x8b, 0xad, 0xea, 0x54, 0x1a, 0x73, 0xac, 0x34, + 0x9d, 0x49, 0xbb, 0x89, 0x2e, 0x0d, 0x75, 0xc0, 0xc6, 0x31, 0x60, 0xe3, + 0x2a, 0xe7, 0xa0, 0xec, 0x1c, 0x97, 0x2c, 0xad, 0xb1, 0x81, 0x1b, 0x5d, + 0xe0, 0x26, 0x2f, 0x9f, 0x6c, 0x6e, 0x72, 0xfc, 0x6e, 0x92, 0x14, 0x6e, + 0xe9, 0xc4, 0x6e, 0x89, 0xdc, 0x94, 0x8d, 0x26, 0x0b, 0x13, 0x4d, 0x62, + 0x8b, 0xf3, 0x25, 0xb2, 0xe7, 0xab, 0x6a, 0x02, 0x3b, 0xbf, 0x07, 0xf7, + 0x18, 0xda, 0x66, 0x39, 0xaa, 0x67, 0x97, 0x46, 0x8a, 0x88, 0xb6, 0x56, + 0x6b, 0xe4, 0xe0, 0x5d, 0xbf, 0x9b, 0xe0, 0x16, 0xb3, 0xe8, 0x4e, 0x15, + 0x86, 0xcc, 0xba, 0x46, 0xe2, 0x79, 0x1d, 0x6d, 0x8f, 0xcb, 0xf3, 0x8d, + 0xe2, 0xc8, 0x48, 0x45, 0xeb, 0x83, 0x56, 0x3d, 0x4f, 0xc5, 0x35, 0xac, + 0x44, 0x0a, 0x7d, 0x99, 0x6c, 0xbd, 0xdc, 0xd7, 0xcd, 0xf5, 0x94, 0x75, + 0xd7, 0x77, 0x75, 0x42, 0x70, 0xc9, 0x49, 0x3c, 0xb3, 0x05, 0xcb, 0xec, + 0x4f, 0x9e, 0x0b, 0xa5, 0x4e, 0x2b, 0x11, 0x01, 0x95, 0x5d, 0x98, 0x20, + 0x2b, 0x75, 0x1e, 0x39, 0x14, 0xf8, 0xe4, 0xe7, 0x58, 0xaa, 0x56, 0x5d, + 0x09, 0x8b, 0xae, 0x55, 0x63, 0xe6, 0xb5, 0xc8, 0x14, 0x6e, 0x8b, 0x58, + 0x5a, 0x47, 0xcd, 0x33, 0x7d, 0x57, 0x10, 0x16, 0x9b, 0xbc, 0x1e, 0x00, + 0xc8, 0x67, 0xa7, 0x48, 0x8d, 0xc1, 0xa4, 0xa8, 0x3c, 0x8d, 0x55, 0x97, + 0x91, 0xbe, 0x45, 0x3c, 0x8d, 0x3d, 0xd9, 0x2f, 0x05, 0xfc, 0x00, 0x25, + 0x68, 0x7d, 0xf7, 0x14, 0x19, 0xa1, 0x87, 0x29, 0x30, 0xfa, 0x5b, 0xa3, + 0xce, 0x48, 0xcd, 0x19, 0x2c, 0x37, 0xad, 0xc3, 0x30, 0x05, 0xd5, 0x5b, + 0xce, 0x21, 0x55, 0x0e, 0x66, 0xa8, 0x44, 0x7b, 0x18, 0x1b, 0xeb, 0x35, + 0xff, 0x52, 0xc1, 0x1b, 0xf2, 0xb3, 0xbe, 0x76, 0xd1, 0xa5, 0x8d, 0x29, + 0xbd, 0x37, 0x56, 0x27, 0x1d, 0xb6, 0xf4, 0xe0, 0x3e, 0xf5, 0xce, 0x98, + 0xb2, 0x9e, 0x6e, 0xd9, 0x8b, 0xe6, 0xda, 0x65, 0x36, 0xa3, 0x94, 0x4a, + 0xb4, 0xac, 0x62, 0x27, 0x8f, 0x1c, 0x70, 0xf2, 0xd7, 0x70, 0x14, 0x9d, + 0xd6, 0x13, 0x7e, 0x75, 0xc4, 0xdb, 0x06, 0x68, 0x4f, 0x7e, 0x56, 0x27, + 0xd4, 0x33, 0xf9, 0xf1, 0x33, 0x1b, 0x39, 0x89, 0x00, 0x15, 0x1c, 0xf7, + 0xdb, 0x65, 0x36, 0x82, 0x84, 0x96, 0xc2, 0x5a, 0x7b, 0xad, 0x0f, 0xcb, + 0x24, 0x05, 0x6e, 0x91, 0x65, 0x4d, 0x35, 0xe9, 0x9e, 0xda, 0x00, 0x47, + 0x5c, 0x27, 0xff, 0xa8, 0x5a, 0xc9, 0x80, 0xdf, 0xe9, 0xcb, 0x32, 0x08, + 0xed, 0xc9, 0x2a, 0x01, 0x69, 0xf6, 0xca, 0x5f, 0x06, 0x89, 0x0c, 0x35, + 0xe7, 0x80, 0xb1, 0x93, 0x07, 0x6b, 0xb2, 0x4a, 0x87, 0xd5, 0x5a, 0x66, + 0x72, 0x93, 0x86, 0x2e, 0x2b, 0xd0, 0xc5, 0x99, 0x51, 0xf2, 0x06, 0x3a, + 0xa9, 0x0f, 0x2b, 0x3b, 0x4e, 0xdb, 0x9d, 0x0b, 0xc0, 0x62, 0x2a, 0x85, + 0x37, 0xf7, 0x25, 0x5b, 0x77, 0x2d, 0x96, 0x9c, 0x9a, 0x23, 0x3c, 0xdc, + 0x2d, 0x1a, 0xa6, 0x32, 0x71, 0x05, 0xe0, 0x93, 0xb6, 0xeb, 0x21, 0x50, + 0x29, 0x72, 0xcb, 0xbf, 0x46, 0xa3, 0x44, 0x5f, 0x43, 0x36, 0x90, 0x72, + 0x91, 0x65, 0x5b, 0xdd, 0xc0, 0xd1, 0x0c, 0xb1, 0xdc, 0x05, 0x44, 0x2e, + 0xf0, 0xb8, 0xc5, 0xad, 0xd1, 0x3f, 0x56, 0xcf, 0x4d, 0x07, 0xa1, 0xdf, + 0xf4, 0x26, 0x04, 0xb1, 0xac, 0x36, 0x0d, 0xbe, 0xbe, 0x75, 0xcd, 0x4e, + 0x5f, 0x55, 0x48, 0xfe, 0x5e, 0x6a, 0x4e, 0xa1, 0xe1, 0x7d, 0x4e, 0x36, + 0x59, 0x88, 0x5a, 0xbc, 0x03, 0x3b, 0xb5, 0xca, 0x0b, 0xe8, 0x6b, 0xda, + 0x18, 0x87, 0xa5, 0xb8, 0xad, 0xe7, 0x30, 0x2e, 0x49, 0x4d, 0x5b, 0xac, + 0x51, 0x96, 0xb2, 0x92, 0x41, 0x85, 0x21, 0x1a, 0x09, 0xf7, 0x7f, 0x01, + 0x03, 0xa9, 0x82, 0xe7, 0xc8, 0xe2, 0x5d, 0x09, 0x61, 0x75, 0xe4, 0x42, + 0xbe, 0x47, 0x48, 0xad, 0x1e, 0x6c, 0x40, 0x1f, 0x43, 0x21, 0x23, 0x7d, + 0xa5, 0x69, 0x7a, 0x38, 0x73, 0x25, 0xdf, 0x70, 0x5c, 0x9f, 0xac, 0xdb, + 0x6e, 0xa5, 0x38, 0x88, 0x03, 0x49, 0xa1, 0xcf, 0xef, 0x6d, 0x3a, 0x52, + 0xf8, 0x22, 0x0e, 0x46, 0xe6, 0xa3, 0xed, 0x16, 0xd7, 0x98, 0xb6, 0xf1, + 0x76, 0xf9, 0xbf, 0x3f, 0x0a, 0x05, 0xd2, 0xcf, 0x5b, 0x03, 0xdb, 0xf1, + 0xb0, 0xcd, 0x12, 0xec, 0xd0, 0x91, 0x95, 0xf7, 0xe1, 0x19, 0x3c, 0x1c, + 0x75, 0xaa, 0x31, 0x9c, 0x7e, 0x32, 0x87, 0x71, 0x77, 0x63, 0x6f, 0xfb, + 0xca, 0xdc, 0xb0, 0xed, 0x25, 0xe1, 0xe6, 0xa8, 0x1f, 0xb9, 0x4c, 0x48, + 0x28, 0x2c, 0xfb, 0xda, 0xfa, 0xc0, 0x27, 0x80, 0x4c, 0x52, 0x19, 0xb4, + 0x59, 0x4f, 0xa1, 0x4e, 0x99, 0xd1, 0x06, 0x72, 0xc9, 0x53, 0x7c, 0x26, + 0xe1, 0x9e, 0x59, 0x2e, 0x38, 0xda, 0x99, 0xad, 0xb9, 0x75, 0xd0, 0x82, + 0x38, 0x30, 0x6e, 0xcc, 0xbf, 0x7a, 0xd1, 0x69, 0xba, 0x9c, 0x10, 0x2e, + 0x6b, 0x2e, 0x6e, 0xa1, 0x1c, 0x07, 0x1a, 0x94, 0x35, 0xb2, 0xe3, 0x89, + 0xbd, 0x99, 0xa0, 0xc5, 0xd4, 0xda, 0x27, 0x14, 0x1d, 0xa0, 0xc5, 0x94, + 0x76, 0x02, 0xdc, 0x14, 0xf7, 0xc8, 0xbc, 0xa4, 0xe8, 0x12, 0xb7, 0xd0, + 0x8d, 0x58, 0x73, 0x9d, 0xd2, 0x16, 0xb2, 0xe7, 0xa8, 0x6d, 0xa2, 0xfa, + 0xcd, 0x97, 0xd4, 0x45, 0x01, 0xd3, 0x3a, 0x78, 0x6b, 0x45, 0x91, 0x45, + 0xa6, 0xfd, 0xbe, 0x43, 0x48, 0xeb, 0xcc, 0x81, 0x32, 0x17, 0xcb, 0x52, + 0xd2, 0x5f, 0x99, 0xe7, 0xc5, 0x76, 0x1d, 0x5f, 0xd9, 0x6a, 0x35, 0xc1, + 0x01, 0xfa, 0x50, 0x20, 0xcf, 0x7f, 0xd7, 0x3f, 0xec, 0x69, 0x94, 0x9c, + 0x08, 0x44, 0x02, 0x19, 0x49, 0x38, 0xa8, 0x3f, 0x78, 0x69, 0x43, 0xba, + 0x28, 0xd2, 0x16, 0x4b, 0x87, 0x10, 0xe0, 0x03, 0x05, 0x17, 0xd7, 0xfe, + 0xc0, 0x84, 0xa8, 0x2b, 0x56, 0xf2, 0xd6, 0x12, 0x2a, 0xea, 0x44, 0xa6, + 0x29, 0xd2, 0xd4, 0xdf, 0x3a, 0xf4, 0xd4, 0x03, 0x0a, 0x19, 0xa2, 0xc2, + 0x5e, 0x85, 0xfb, 0xba, 0x2d, 0x47, 0x4a, 0x4d, 0x91, 0xae, 0xa3, 0x04, + 0xc9, 0x94, 0xed, 0xb6, 0x48, 0x5b, 0xb5, 0xc8, 0x97, 0xcb, 0xd5, 0xaa, + 0x8d, 0x68, 0x46, 0xc0, 0x12, 0x81, 0x6a, 0xf0, 0x27, 0xad, 0x92, 0x4b, + 0x8d, 0x5a, 0x7c, 0x64, 0x88, 0x8c, 0xad, 0xf2, 0x97, 0xcf, 0xc5, 0x68, + 0x3d, 0xb2, 0x40, 0x51, 0x98, 0x79, 0xa3, 0x89, 0x0f, 0x14, 0x71, 0x67, + 0x6b, 0x0c, 0x6b, 0x26, 0x39, 0xe2, 0x07, 0xdc, 0x56, 0x09, 0x8a, 0x92, + 0x79, 0x1f, 0x17, 0xd4, 0xda, 0x24, 0x20, 0x43, 0x05, 0x2f, 0x95, 0x67, + 0x84, 0x02, 0x88, 0x42, 0x08, 0x39, 0x72, 0x23, 0x57, 0x5b, 0xba, 0x11, + 0xd5, 0xa6, 0xb4, 0x87, 0xa3, 0x05, 0xe4, 0x2f, 0xf9, 0xee, 0xdc, 0x9c, + 0x5e, 0x24, 0x33, 0xe7, 0xcf, 0xcf, 0x67, 0x1f, 0xcf, 0x54, 0xfe, 0x8f, + 0x00, 0xf9, 0x0b, 0x06, 0xf4, 0xd9, 0xe3, 0xba, 0xbd, 0x84, 0x85, 0x8c, + 0x5c, 0xf5, 0xad, 0x93, 0x3b, 0xd5, 0x41, 0x34, 0xaf, 0x05, 0x9b, 0xd1, + 0xb9, 0x97, 0x20, 0x9f, 0x4a, 0xb4, 0xcd, 0x39, 0x91, 0xe8, 0x1e, 0x10, + 0xf0, 0x04, 0x31, 0x4c, 0xac, 0xf1, 0x8c, 0x83, 0xfd, 0xda, 0xb4, 0xc8, + 0x72, 0x4c, 0xf4, 0xcf, 0x2a, 0xde, 0xc1, 0x23, 0x8c, 0x6d, 0x1b, 0x06, + 0x2b, 0x4e, 0x6b, 0x91, 0xbe, 0xe3, 0x93, 0x5b, 0x0b, 0x22, 0x85, 0x6e, + 0xfe, 0xb5, 0x57, 0x1b, 0x88, 0xed, 0x53, 0x58, 0x66, 0xb5, 0x3b, 0xa4, + 0x3d, 0x3d, 0x69, 0x39, 0x58, 0x49, 0x1e, 0x3f, 0xe2, 0xe9, 0xd6, 0x59, + 0x1d, 0xc4, 0x99, 0x35, 0x12, 0x92, 0x7a, 0x9a, 0x24, 0x79, 0xad, 0xee, + 0xb2, 0x2d, 0xee, 0xb6, 0x6e, 0xe8, 0x6b, 0x26, 0xd9, 0xa1, 0x7a, 0x1d, + 0x6a, 0x39, 0x95, 0x41, 0x23, 0xa5, 0x65, 0x72, 0xd1, 0x56, 0xeb, 0x51, + 0x45, 0x6f, 0xbd, 0xdf, 0xd6, 0x84, 0x53, 0x23, 0x5d, 0x59, 0x42, 0x63, + 0x77, 0x4a, 0xa4, 0x88, 0x6d, 0x95, 0xe4, 0xd4, 0xd4, 0xe4, 0xe6, 0xb5, + 0x4b, 0xb1, 0x3c, 0xd6, 0xdc, 0xe7, 0xb5, 0xcd, 0x67, 0xcb, 0x52, 0x77, + 0x7e, 0xb5, 0xba, 0x8a, 0xb6, 0xa4, 0xca, 0x48, 0xe2, 0xb5, 0x1f, 0x10, + 0xb1, 0x04, 0x07, 0x35, 0x69, 0x23, 0x2e, 0x63, 0x90, 0xd5, 0x2f, 0xa6, + 0xb9, 0x9f, 0x70, 0x63, 0x81, 0xef, 0x5a, 0xc0, 0xc6, 0x72, 0x56, 0x20, + 0x4d, 0xc5, 0x0e, 0x58, 0xf3, 0x5a, 0xfa, 0x98, 0xb9, 0x99, 0x97, 0x59, + 0x12, 0x67, 0x7f, 0x4a, 0xa5, 0x1e, 0xc4, 0x39, 0x23, 0x22, 0xea, 0xed, + 0x84, 0x85, 0x41, 0xe9, 0x57, 0x18, 0xdb, 0x73, 0x29, 0x4a, 0xfa, 0x94, + 0x64, 0x95, 0xd8, 0xf7, 0xad, 0x12, 0x5b, 0x98, 0xb7, 0x72, 0x3c, 0x31, + 0x39, 0x3e, 0xb4, 0xc4, 0x99, 0x6d, 0x63, 0x3b, 0x46, 0x01, 0xe9, 0x41, + 0x41, 0xe5, 0x1c, 0x8c, 0xd0, 0x04, 0xc9, 0x1e, 0x07, 0x5a, 0x00, 0x8a, + 0x60, 0x49, 0xe2, 0x80, 0x12, 0x30, 0xdd, 0xc7, 0x4a, 0x00, 0x1c, 0xe1, + 0x72, 0x73, 0xd6, 0x80, 0x2b, 0xbb, 0xf5, 0xc8, 0xa6, 0x84, 0x41, 0x23, + 0x7b, 0xd3, 0xb0, 0x32, 0x31, 0x20, 0x04, 0xe6, 0x93, 0x21, 0x91, 0x19, + 0x37, 0xb0, 0x1e, 0xf5, 0x9c, 0xb4, 0x2a, 0x29, 0x1d, 0x06, 0x87, 0x64, + 0xf7, 0x18, 0x21, 0x4f, 0x35, 0x93, 0x3b, 0x20, 0x7b, 0x07, 0x80, 0xbc, + 0x38, 0x4c, 0x49, 0x23, 0xa7, 0x7e, 0xf5, 0xc9, 0x36, 0x77, 0x53, 0x8b, + 0xb1, 0xec, 0x36, 0x91, 0x41, 0x61, 0x66, 0x0e, 0xd5, 0x04, 0x0a, 0xc9, + 0xb6, 0x6e, 0xa2, 0x60, 0x6a, 0x5a, 0xa1, 0x69, 0x48, 0x4e, 0x99, 0xac, + 0xe4, 0x52, 0x5d, 0xcc, 0xc3, 0x7f, 0x20, 0x63, 0xcf, 0xeb, 0x50, 0xd8, + 0x32, 0xbd, 0xd6, 0xaa, 0xca, 0x87, 0x9e, 0x69, 0xa1, 0x1c, 0xfd, 0xd6, + 0xb1, 0x21, 0x93, 0xf1, 0xf5, 0xab, 0x49, 0x12, 0x41, 0x71, 0xa8, 0x96, + 0x18, 0xcd, 0x55, 0x84, 0xf6, 0x21, 0x8a, 0xe5, 0x89, 0xcd, 0x16, 0x21, + 0xb2, 0xd4, 0x77, 0x27, 0xb9, 0xaa, 0x48, 0x92, 0x41, 0x3e, 0x7b, 0xd5, + 0xa4, 0x43, 0x6e, 0xe4, 0xa2, 0xe4, 0xe3, 0xef, 0x53, 0xb1, 0x37, 0x67, + 0xed, 0x3c, 0xf6, 0xd2, 0x40, 0xd9, 0x5e, 0xf5, 0xf3, 0x89, 0x9f, 0x1d, + 0xcc, 0x35, 0x6d, 0xe6, 0x93, 0xb9, 0xa6, 0x52, 0x7a, 0x0a, 0xd6, 0xb2, + 0xa7, 0xad, 0x51, 0x5c, 0xd6, 0x1a, 0x96, 0x93, 0xce, 0xd9, 0x5c, 0xe0, + 0x71, 0x4d, 0x3b, 0x13, 0x29, 0x10, 0x6a, 0x3a, 0x3c, 0xb3, 0xc2, 0x55, + 0xc6, 0x78, 0xab, 0x52, 0xbb, 0x3a, 0x69, 0x48, 0xf1, 0x5f, 0x89, 0x3e, + 0x14, 0x42, 0x8e, 0xdb, 0x3d, 0x7b, 0x55, 0x5e, 0xc7, 0xa5, 0x4e, 0x67, + 0xcd, 0x1e, 0x28, 0xd1, 0xfe, 0xcb, 0xa8, 0xb8, 0xdb, 0xc0, 0x3e, 0x98, + 0xad, 0x94, 0xcf, 0x46, 0x13, 0x2f, 0x78, 0x7a, 0x48, 0x61, 0x88, 0x6e, + 0x51, 0xc7, 0xad, 0x69, 0x19, 0x5c, 0xd1, 0xcf, 0x53, 0xab, 0xd2, 0xb5, + 0x64, 0x8a, 0x50, 0x17, 0xbf, 0xa5, 0x5d, 0xc4, 0x9b, 0x2b, 0x6a, 0xda, + 0xc3, 0xf9, 0x87, 0xe6, 0xeb, 0x4d, 0x48, 0xe8, 0x89, 0x99, 0x1e, 0xb0, + 0xcb, 0x22, 0xb1, 0x7a, 0xae, 0x71, 0xb2, 0x1d, 0x6f, 0xc5, 0x42, 0x3b, + 0x62, 0x9b, 0xf9, 0xc1, 0xc7, 0x34, 0x73, 0x5c, 0x11, 0xe7, 0x1a, 0xae, + 0xb1, 0x2c, 0xea, 0xf9, 0x63, 0x8c, 0x1a, 0x89, 0x14, 0xb7, 0x3c, 0xfb, + 0x51, 0x9c, 0xc9, 0x7b, 0x92, 0x6b, 0x22, 0x99, 0x21, 0xbc, 0xf2, 0x0a, + 0xe1, 0xbb, 0x50, 0x69, 0xd0, 0xce, 0xbd, 0xd6, 0x5f, 0x71, 0xc3, 0x1f, + 0xce, 0x84, 0x67, 0x72, 0x38, 0x75, 0x56, 0x60, 0x3e, 0x6a, 0xb4, 0x0d, + 0x8e, 0xfb, 0x7b, 0x00, 0x7e, 0x6a, 0xe9, 0x89, 0x89, 0xcb, 0x78, 0x8b, + 0x53, 0xc0, 0x61, 0xba, 0xb5, 0x8e, 0xc4, 0x49, 0xea, 0x71, 0xd7, 0x57, + 0x6d, 0x20, 0x3c, 0xd5, 0x72, 0x92, 0x66, 0x49, 0x75, 0xe5, 0xe4, 0x66, + 0xb6, 0x84, 0x0e, 0x79, 0x91, 0x7f, 0x69, 0xed, 0x04, 0x67, 0xf5, 0xad, + 0x94, 0x6c, 0xcc, 0x8c, 0x9b, 0xab, 0xe7, 0x79, 0x38, 0x27, 0x9a, 0xb2, + 0x64, 0x52, 0x97, 0x96, 0xdc, 0x6a, 0x91, 0x83, 0x21, 0x24, 0x60, 0xd3, + 0x10, 0xaa, 0xc0, 0x8c, 0xd0, 0x49, 0x64, 0x4c, 0x00, 0xc6, 0x68, 0x2d, + 0x00, 0x9c, 0x74, 0xdd, 0xd6, 0x81, 0x92, 0x89, 0xc6, 0xda, 0x00, 0x89, + 0xdc, 0x12, 0x4e, 0x68, 0x01, 0xe8, 0xc0, 0x03, 0x40, 0x10, 0xcf, 0x27, + 0x1c, 0x7a, 0xd0, 0x80, 0xaa, 0xe7, 0x8c, 0x1a, 0xa0, 0x2b, 0x3b, 0x64, + 0xd3, 0x13, 0x19, 0xd4, 0x91, 0x8e, 0xf5, 0x32, 0x21, 0x92, 0xd9, 0xdb, + 0x99, 0x67, 0x51, 0xd7, 0x26, 0xb1, 0x93, 0xd0, 0xd6, 0x08, 0xf5, 0xaf, + 0x01, 0xf8, 0x6c, 0x5c, 0xec, 0x25, 0x3d, 0x3b, 0x56, 0x67, 0x6c, 0x0f, + 0x6a, 0xd1, 0xb4, 0xe8, 0x74, 0xab, 0x45, 0x42, 0xa3, 0x23, 0x9a, 0xe4, + 0xaa, 0x77, 0x53, 0xd8, 0x66, 0xab, 0xac, 0x28, 0x52, 0x8a, 0xfd, 0xab, + 0x9d, 0x9a, 0xa3, 0x09, 0x67, 0x12, 0x49, 0x93, 0xc9, 0x26, 0xa2, 0x4c, + 0xa1, 0x2e, 0x3c, 0xb4, 0xcb, 0x52, 0x25, 0x98, 0x97, 0x97, 0x0b, 0x92, + 0x33, 0x54, 0x84, 0x66, 0x4c, 0x88, 0xe0, 0xb7, 0xe3, 0x5a, 0x2d, 0xcc, + 0x8a, 0x4e, 0xc4, 0x9c, 0x55, 0x01, 0x3c, 0x08, 0x4f, 0x4e, 0xf4, 0xd1, + 0x2c, 0xb4, 0x17, 0x04, 0x67, 0xb5, 0x5a, 0x21, 0x88, 0x58, 0xf6, 0xe3, + 0x1d, 0xa9, 0x99, 0xcb, 0x71, 0xfb, 0x8f, 0xad, 0x04, 0xdc, 0xfd, 0xb6, + 0xbb, 0xd4, 0x55, 0x9f, 0x19, 0xe2, 0xbe, 0x71, 0xe8, 0x7c, 0x6d, 0x86, + 0x26, 0xa3, 0xb7, 0xa1, 0xa2, 0xe8, 0x69, 0xb4, 0x4a, 0x35, 0x15, 0x6f, + 0xbc, 0x72, 0x29, 0xad, 0x47, 0xcc, 0xc9, 0xad, 0xef, 0x70, 0x48, 0x8c, + 0xe3, 0x3d, 0x6a, 0x82, 0xec, 0x74, 0xf7, 0x6c, 0xca, 0x41, 0x6c, 0xd1, + 0xb1, 0x71, 0x9b, 0x47, 0x0b, 0xe2, 0xfb, 0x5b, 0x7b, 0xa8, 0x8f, 0x99, + 0x1e, 0x7a, 0xd3, 0x52, 0x68, 0xea, 0xa5, 0x51, 0xdc, 0xf9, 0x83, 0xe2, + 0x6e, 0x8b, 0x1c, 0x3a, 0x84, 0xb2, 0xc3, 0x18, 0x55, 0xaa, 0x52, 0xd4, + 0xf6, 0x28, 0xcd, 0xb3, 0x85, 0xb0, 0xca, 0x36, 0xc3, 0xeb, 0x5b, 0x46, + 0x4e, 0xe7, 0x72, 0xd4, 0xdd, 0x43, 0x15, 0xbc, 0x5e, 0x68, 0xc0, 0x38, + 0xeb, 0x56, 0x9b, 0x41, 0x66, 0x73, 0x7a, 0xae, 0xa7, 0x34, 0x72, 0x92, + 0xf2, 0x7c, 0xa6, 0xab, 0x9c, 0xe9, 0x8a, 0x33, 0xbf, 0xb6, 0xe2, 0x62, + 0x00, 0x3c, 0xd0, 0xa4, 0xd8, 0xda, 0x66, 0x3f, 0x88, 0xaf, 0x5d, 0xe2, + 0xde, 0x8d, 0xd3, 0x9a, 0x77, 0xee, 0x49, 0xc4, 0x5d, 0xea, 0x97, 0x21, + 0x0f, 0xef, 0x69, 0x87, 0x35, 0x8e, 0x7e, 0x6b, 0xcd, 0xd2, 0x97, 0x73, + 0xf3, 0x53, 0xb2, 0x63, 0xe6, 0x65, 0x1b, 0xbd, 0x40, 0xb3, 0x61, 0x5f, + 0x9f, 0xad, 0x3e, 0x54, 0x57, 0x33, 0x33, 0x67, 0xbb, 0xf9, 0xb2, 0xed, + 0x9a, 0xa5, 0x02, 0x86, 0xc5, 0xa8, 0x2a, 0x9e, 0x1b, 0xf5, 0xad, 0x23, + 0x02, 0x24, 0xc7, 0x5c, 0x5f, 0xb7, 0x97, 0x94, 0x6a, 0xd9, 0x45, 0x19, + 0x36, 0x72, 0xda, 0xc5, 0xd4, 0x92, 0x93, 0xb9, 0xb3, 0x5a, 0xc2, 0x06, + 0x72, 0x77, 0x47, 0x39, 0x73, 0x3b, 0x27, 0x47, 0xad, 0x39, 0x0c, 0xf9, + 0xcc, 0xab, 0xb9, 0xa4, 0x7c, 0x95, 0x6a, 0xd6, 0x3a, 0x1c, 0xf3, 0x91, + 0x5d, 0x0b, 0x90, 0x4b, 0x1e, 0x6a, 0xd1, 0x91, 0x46, 0x59, 0x19, 0x65, + 0xc6, 0x4f, 0x5a, 0x60, 0x2f, 0x9a, 0xad, 0xf2, 0x97, 0x19, 0xaa, 0x40, + 0x00, 0x0e, 0xc4, 0x1a, 0x64, 0xb8, 0xdc, 0x66, 0xe1, 0xdc, 0x74, 0xa0, + 0x39, 0x47, 0xaf, 0xcd, 0xd5, 0x78, 0xa0, 0xa0, 0x6c, 0x03, 0x80, 0xbd, + 0x7d, 0xa8, 0x17, 0x32, 0x1c, 0xac, 0x76, 0xe7, 0x34, 0x09, 0xbb, 0x8a, + 0xa4, 0x93, 0xce, 0x29, 0xd8, 0x43, 0xd9, 0xf0, 0x29, 0x58, 0x0a, 0xb3, + 0x4a, 0x01, 0xce, 0x4d, 0x3b, 0x01, 0x12, 0xce, 0x1c, 0xe0, 0xd2, 0x13, + 0x44, 0x13, 0xfc, 0xbc, 0xd0, 0x21, 0x23, 0x65, 0xc8, 0x18, 0xeb, 0x53, + 0x29, 0x5b, 0x41, 0xc5, 0x5d, 0x9d, 0x3f, 0x87, 0x34, 0x93, 0x75, 0x70, + 0x84, 0xc6, 0x48, 0xcf, 0xa5, 0x73, 0x4a, 0x67, 0x65, 0x38, 0x2e, 0xa7, + 0xbe, 0xf8, 0x2b, 0x4b, 0x8e, 0xce, 0xdd, 0x1c, 0x47, 0x83, 0x58, 0x39, + 0x1d, 0xd4, 0xa9, 0xa4, 0x74, 0x9a, 0x85, 0xd3, 0x74, 0x0f, 0xda, 0xb0, + 0x9c, 0xae, 0x6c, 0xd7, 0x26, 0xc6, 0x43, 0x40, 0x27, 0x7f, 0xde, 0x02, + 0x6b, 0x26, 0x25, 0x2b, 0x8c, 0x92, 0xd6, 0x18, 0x32, 0x55, 0x71, 0x50, + 0xcd, 0x13, 0xb1, 0x9d, 0x79, 0x27, 0x18, 0x04, 0xd4, 0x8e, 0xf7, 0x39, + 0xfb, 0xe6, 0x00, 0xe7, 0x38, 0x35, 0x48, 0x9b, 0x22, 0x94, 0x73, 0xb9, + 0xc8, 0x0f, 0x5a, 0x47, 0x4d, 0xc3, 0x94, 0x68, 0x52, 0x32, 0x4f, 0x35, + 0xa2, 0x69, 0x8b, 0x96, 0xda, 0x96, 0x13, 0x70, 0xe5, 0x78, 0xaa, 0x4c, + 0xc5, 0x92, 0x99, 0x8e, 0xdd, 0xbb, 0x80, 0x27, 0xb9, 0xaa, 0x4b, 0x53, + 0x9e, 0x72, 0xb1, 0x56, 0x59, 0x9d, 0x0e, 0x41, 0xdd, 0xf4, 0xae, 0x88, + 0x42, 0xfa, 0x9c, 0xd2, 0xa8, 0x86, 0x0b, 0x9b, 0x83, 0xff, 0x00, 0x2c, + 0xdf, 0xf2, 0xad, 0xfd, 0x91, 0xcc, 0xea, 0x9f, 0xb6, 0x37, 0x4c, 0x19, + 0xc8, 0x43, 0xcd, 0x7c, 0x7c, 0xb5, 0x3e, 0x7c, 0x88, 0x24, 0x84, 0xe0, + 0x66, 0xa4, 0x09, 0x84, 0x53, 0x60, 0x62, 0xaa, 0x3a, 0x01, 0x72, 0xcc, + 0x34, 0x79, 0xde, 0x4e, 0x4f, 0x4a, 0xb6, 0xec, 0x34, 0xae, 0x4a, 0xf2, + 0x8f, 0x43, 0x4a, 0xe1, 0x6b, 0x18, 0x3a, 0xec, 0x3e, 0x6c, 0x47, 0xf1, + 0xa1, 0x3b, 0x9b, 0x41, 0xea, 0x7c, 0xfd, 0xf1, 0x56, 0xcc, 0xa2, 0xc8, + 0xc1, 0x7b, 0xfa, 0x56, 0x91, 0xb7, 0x53, 0xd6, 0xa3, 0x33, 0xc3, 0xa2, + 0xb9, 0x91, 0x6e, 0x0a, 0x91, 0xde, 0xb7, 0x8a, 0xd4, 0xf5, 0x69, 0xbb, + 0x9a, 0x17, 0xfa, 0x87, 0x97, 0x6b, 0xd7, 0x9c, 0x56, 0xa9, 0x5c, 0xdd, + 0x24, 0xce, 0x2b, 0x5c, 0xd6, 0x56, 0x50, 0x11, 0x5c, 0x64, 0x55, 0x72, + 0x9a, 0x44, 0xc3, 0x82, 0x77, 0xf3, 0x43, 0x16, 0xe3, 0x34, 0x72, 0x94, + 0xc8, 0x35, 0xed, 0x58, 0x24, 0x3b, 0x4b, 0xf5, 0xe2, 0x9a, 0x44, 0x49, + 0xd8, 0xe4, 0x27, 0xb9, 0x2c, 0xa7, 0xe6, 0xab, 0x51, 0x33, 0x6c, 0xc3, + 0xbb, 0x9c, 0xa1, 0x27, 0x35, 0x4a, 0x02, 0xb9, 0x81, 0x71, 0xa8, 0x94, + 0xb9, 0xce, 0x78, 0x15, 0x4a, 0x03, 0xe6, 0x33, 0xae, 0xf5, 0x72, 0xef, + 0x80, 0xd5, 0xa7, 0x2a, 0x1f, 0x38, 0x5a, 0xdd, 0x3b, 0x8c, 0xe7, 0xad, + 0x52, 0x44, 0x4a, 0x45, 0x86, 0xbc, 0x2a, 0xa7, 0x73, 0x74, 0xad, 0x23, + 0x1e, 0xe6, 0x52, 0x9d, 0xcc, 0x4d, 0x4a, 0xf1, 0x79, 0x25, 0xab, 0x68, + 0xc6, 0xfa, 0xa3, 0x27, 0x2e, 0x87, 0x39, 0x7b, 0x74, 0x0e, 0x70, 0x6a, + 0xec, 0x67, 0xcc, 0x66, 0xfd, 0xa1, 0xcb, 0x6d, 0x02, 0xaa, 0xc4, 0xcc, + 0xb7, 0x04, 0x52, 0x38, 0xc6, 0x3a, 0xd3, 0x5b, 0x90, 0x12, 0x69, 0x0e, + 0xc4, 0xb0, 0x1e, 0xf4, 0xc0, 0x84, 0x78, 0x6a, 0xe2, 0x46, 0x32, 0x06, + 0x18, 0x3e, 0xf5, 0x48, 0x09, 0xce, 0x8c, 0xd0, 0x2e, 0x5c, 0x8e, 0x9e, + 0xb4, 0xc0, 0xa1, 0x74, 0xb1, 0xc4, 0xd8, 0xa0, 0x06, 0xc6, 0xc3, 0x1d, + 0x28, 0x25, 0xbb, 0x88, 0xed, 0xc8, 0xf9, 0x69, 0xd8, 0x42, 0xa3, 0x0c, + 0x7e, 0x14, 0xd0, 0x0e, 0x67, 0x51, 0x4c, 0x08, 0x9e, 0x4c, 0x8e, 0x3b, + 0xd2, 0xb8, 0x11, 0xec, 0x12, 0x70, 0x4d, 0x0c, 0x08, 0xd6, 0x1d, 0xaf, + 0x93, 0x9c, 0x54, 0x8a, 0xe1, 0x70, 0x11, 0xb8, 0x1e, 0x94, 0x9b, 0xb1, + 0x49, 0x5c, 0x93, 0x4b, 0xd3, 0x65, 0xbc, 0xb8, 0x50, 0x8a, 0x4e, 0x0f, + 0xa5, 0x65, 0x3d, 0x4d, 0x61, 0x4f, 0x5b, 0x9e, 0xd1, 0xe0, 0x9f, 0x0b, + 0x84, 0x8d, 0x24, 0x91, 0x39, 0xf7, 0xae, 0x69, 0xb4, 0x8e, 0xe8, 0x44, + 0xf4, 0xfb, 0x68, 0xa3, 0xb5, 0x80, 0x2a, 0x8c, 0x62, 0xb9, 0xa7, 0x23, + 0xa6, 0x2a, 0xc5, 0x77, 0x76, 0x95, 0xb2, 0x2a, 0x19, 0xae, 0xe8, 0x9e, + 0x18, 0x70, 0x32, 0x45, 0x43, 0x44, 0xd9, 0x14, 0x6f, 0xd8, 0x8e, 0xf5, + 0x2d, 0x11, 0x37, 0x63, 0x06, 0xe8, 0x93, 0x9e, 0xb5, 0x36, 0x1c, 0x5e, + 0x86, 0x3d, 0xea, 0x31, 0x5c, 0xe3, 0xb5, 0x52, 0x57, 0x2d, 0x2b, 0x99, + 0xd1, 0x29, 0x2f, 0xde, 0xb4, 0xb1, 0x76, 0x35, 0x22, 0xb7, 0x05, 0x72, + 0xfd, 0x28, 0x8e, 0xe4, 0xcb, 0x42, 0xb5, 0xcd, 0xd2, 0x44, 0x7c, 0xb4, + 0x19, 0x3f, 0x4c, 0xd6, 0xf1, 0x8b, 0x67, 0x1d, 0x49, 0xa8, 0x8e, 0xb3, + 0xd1, 0xb5, 0x1d, 0x56, 0x65, 0x48, 0x23, 0x62, 0x5f, 0xd8, 0xd7, 0x65, + 0x3a, 0x27, 0x9b, 0x56, 0xb1, 0xe9, 0x5e, 0x10, 0xf8, 0x33, 0xa8, 0x6a, + 0x4c, 0x0d, 0xcc, 0x1f, 0x5c, 0x8a, 0xee, 0xa7, 0x40, 0xf3, 0xea, 0x57, + 0xb1, 0xe8, 0xe9, 0xfb, 0x3f, 0x5b, 0x6d, 0x19, 0x81, 0x73, 0x8f, 0x5a, + 0xe9, 0x54, 0x19, 0xcf, 0xed, 0x91, 0xfa, 0x30, 0xd6, 0x8f, 0x1c, 0xc5, + 0xd8, 0x64, 0x57, 0xe7, 0xf2, 0x38, 0xcb, 0x50, 0x44, 0x18, 0xf4, 0xac, + 0xf7, 0x03, 0x4e, 0xde, 0xcd, 0x5f, 0x1f, 0x2f, 0x5a, 0x69, 0x68, 0x05, + 0x87, 0xd3, 0x43, 0x60, 0x80, 0x28, 0x91, 0x71, 0x2b, 0x3e, 0x96, 0x4b, + 0x0c, 0x01, 0xf9, 0xd4, 0xb6, 0x29, 0x68, 0x55, 0xd4, 0x74, 0x4d, 0xf0, + 0xf3, 0xc9, 0xfa, 0xd1, 0x17, 0x66, 0x38, 0xb3, 0xca, 0x7e, 0x24, 0x78, + 0x28, 0x5c, 0xe9, 0xed, 0x2f, 0x97, 0x9c, 0xe7, 0xa5, 0x6d, 0x13, 0xba, + 0x8c, 0xec, 0xcf, 0x9a, 0x35, 0xef, 0x0d, 0x36, 0x9f, 0x70, 0xec, 0x10, + 0x8c, 0x13, 0xda, 0xba, 0x60, 0xd1, 0xec, 0x50, 0x9d, 0xce, 0x1b, 0xc4, + 0xb7, 0x6f, 0x6f, 0x0b, 0x20, 0x6a, 0xda, 0x27, 0xa5, 0x03, 0xcd, 0x6e, + 0x35, 0x37, 0x37, 0x2c, 0x58, 0xf0, 0x1a, 0xa9, 0x2b, 0x9b, 0x11, 0xdc, + 0x6b, 0x86, 0x2c, 0x00, 0x71, 0x5a, 0x28, 0xd9, 0x92, 0xf6, 0x30, 0xf5, + 0x8d, 0x51, 0xae, 0x42, 0xb6, 0xfe, 0xfe, 0xb5, 0x69, 0x18, 0xb7, 0x73, + 0x39, 0x6e, 0xcb, 0x47, 0x9e, 0x79, 0xab, 0x4a, 0xe6, 0x53, 0x76, 0x66, + 0x5d, 0xf4, 0xdc, 0x13, 0x9a, 0xb5, 0x1e, 0x86, 0x5c, 0xcc, 0xe5, 0x6e, + 0x66, 0x2d, 0x75, 0x80, 0x7f, 0x5a, 0xbe, 0x50, 0xe6, 0x2a, 0x49, 0x19, + 0x69, 0x45, 0x3b, 0x0e, 0xe6, 0x94, 0x08, 0x23, 0x8b, 0x3c, 0x0a, 0xb8, + 0xc4, 0x96, 0xca, 0x37, 0x97, 0x78, 0xdc, 0x03, 0x74, 0xad, 0x14, 0x49, + 0xd8, 0xe5, 0x75, 0x3d, 0x41, 0x83, 0x9c, 0x35, 0x5a, 0x5a, 0x10, 0xf5, + 0x66, 0x67, 0x9e, 0xd2, 0x9e, 0x4d, 0x57, 0x29, 0x2d, 0x1a, 0x5a, 0x55, + 0x90, 0x9b, 0xe7, 0x61, 0xde, 0x94, 0x9d, 0xb4, 0x21, 0xbb, 0x9b, 0x2c, + 0x91, 0x5b, 0x01, 0x9c, 0x0a, 0x10, 0x8a, 0xb7, 0x9a, 0xac, 0x51, 0x47, + 0xc6, 0x3a, 0x7a, 0x53, 0x02, 0x9c, 0x7a, 0xb4, 0xee, 0xa1, 0x93, 0x1b, + 0x4f, 0x4e, 0x2a, 0x90, 0x11, 0xcf, 0x7f, 0x71, 0x20, 0x20, 0xe2, 0x98, + 0x19, 0x93, 0xa3, 0x4a, 0xc4, 0x9a, 0x04, 0x45, 0x1b, 0x10, 0x71, 0x9a, + 0xab, 0x12, 0x12, 0x48, 0x72, 0x72, 0x7a, 0x53, 0x00, 0x59, 0x4e, 0xd3, + 0x93, 0x49, 0xbb, 0x00, 0xc3, 0x31, 0x3d, 0xe9, 0x5c, 0x07, 0xc7, 0x96, + 0xeb, 0x9f, 0xca, 0x90, 0xed, 0x72, 0x5d, 0xa5, 0x54, 0x11, 0x4e, 0xe2, + 0x92, 0xb0, 0xab, 0x6e, 0x5f, 0x91, 0x49, 0xbb, 0x12, 0x93, 0x1d, 0x6f, + 0xa6, 0xbd, 0xc4, 0xe1, 0x00, 0xce, 0x4d, 0x65, 0x29, 0x5c, 0xe8, 0x84, + 0x4f, 0x50, 0xf0, 0x0f, 0x83, 0x95, 0xb2, 0xf2, 0x44, 0x7f, 0x2a, 0xc2, + 0x52, 0x3b, 0x21, 0x4c, 0xf5, 0x9b, 0x4d, 0x3a, 0x3d, 0x3e, 0xdc, 0x60, + 0x01, 0x81, 0x5c, 0xf2, 0x67, 0x4c, 0x63, 0x62, 0x3f, 0xb5, 0x33, 0xb1, + 0x4c, 0xd6, 0x0f, 0x53, 0x4b, 0x96, 0xad, 0x21, 0x56, 0x19, 0xc5, 0x03, + 0x4f, 0x4b, 0x13, 0x4c, 0x44, 0x48, 0x4f, 0x02, 0x93, 0x03, 0x0e, 0xf6, + 0x4d, 0xcc, 0x46, 0x6a, 0x6c, 0x26, 0x8c, 0xc9, 0x23, 0xdc, 0x69, 0x72, + 0x89, 0xab, 0x2b, 0x94, 0xee, 0xe1, 0x5d, 0x84, 0x91, 0xda, 0xae, 0x31, + 0x77, 0x13, 0x95, 0x91, 0x96, 0x91, 0x05, 0x93, 0x26, 0xb4, 0x50, 0x6c, + 0x25, 0x55, 0x23, 0x4a, 0x18, 0x9e, 0xec, 0x88, 0xa3, 0x56, 0x39, 0xe3, + 0x81, 0x5d, 0x14, 0xe8, 0xb7, 0xa9, 0xcb, 0x2a, 0xe7, 0x63, 0xe1, 0x7f, + 0x85, 0x17, 0x1a, 0xcc, 0xc9, 0x24, 0x91, 0x36, 0x0f, 0xd4, 0x57, 0x65, + 0x3a, 0x27, 0x9d, 0x5b, 0x10, 0x7b, 0x77, 0x83, 0xfe, 0x11, 0xda, 0xe9, + 0xb2, 0x45, 0x24, 0xb0, 0xe4, 0x8c, 0x76, 0xcd, 0x7a, 0x14, 0xe8, 0xd8, + 0xf2, 0xea, 0xd7, 0xb9, 0xe9, 0xb6, 0x1a, 0x4d, 0xb6, 0x9b, 0xc2, 0x44, + 0xa0, 0xfd, 0x2b, 0xba, 0x9d, 0x23, 0x82, 0xa5, 0x5b, 0xe8, 0x6a, 0x79, + 0xbf, 0xec, 0xaf, 0xe5, 0x5b, 0x72, 0xa3, 0x1f, 0x68, 0xcf, 0xac, 0xa2, + 0x95, 0x5e, 0x10, 0x19, 0x01, 0x3e, 0xb8, 0xaf, 0xcb, 0x1b, 0x37, 0xb3, + 0x17, 0xc9, 0x07, 0xe6, 0x03, 0x15, 0x9d, 0xec, 0x2d, 0x47, 0x25, 0xea, + 0xc2, 0x71, 0x8a, 0xa4, 0xf4, 0x1e, 0xa3, 0x6e, 0x75, 0x53, 0x81, 0xb7, + 0x20, 0x7b, 0x51, 0x23, 0x48, 0x10, 0xc3, 0x7e, 0xf2, 0x1c, 0x64, 0xd6, + 0x6c, 0x4d, 0x75, 0x24, 0x64, 0x92, 0x53, 0x82, 0xed, 0xcf, 0xbd, 0x0a, + 0xe2, 0xb1, 0x9d, 0xaa, 0xe9, 0x22, 0x58, 0x58, 0xbe, 0x18, 0x10, 0x78, + 0x35, 0xa2, 0x6c, 0xd6, 0x9c, 0xac, 0xec, 0x78, 0x4f, 0xc4, 0x9f, 0x07, + 0x8b, 0xa1, 0x21, 0x86, 0x24, 0x5e, 0xbd, 0x0e, 0x2b, 0x68, 0x48, 0xf5, + 0x70, 0xf5, 0x6c, 0xcf, 0x9a, 0x3c, 0x6b, 0xe1, 0xcb, 0x8d, 0x3a, 0x57, + 0x2e, 0x43, 0x0e, 0x78, 0xdd, 0x9a, 0xda, 0x12, 0x3d, 0x6a, 0x55, 0x6e, + 0x79, 0x0e, 0xaf, 0x00, 0x13, 0x37, 0x63, 0x9e, 0xd5, 0xd3, 0x07, 0xa9, + 0xd6, 0xa5, 0x74, 0x64, 0xdd, 0x4f, 0x14, 0x30, 0x1d, 0xdc, 0x9c, 0x75, + 0x22, 0xb6, 0x4d, 0x22, 0x5c, 0xb4, 0x39, 0x6b, 0xa9, 0x85, 0xc4, 0xc4, + 0x09, 0x1b, 0x1d, 0xab, 0x54, 0xc8, 0x66, 0xd5, 0x95, 0xb4, 0x69, 0xa7, + 0x65, 0xb9, 0x38, 0x3c, 0xe2, 0xb4, 0x5b, 0x98, 0xc9, 0xdc, 0xe7, 0x35, + 0x5d, 0xa2, 0x16, 0x21, 0x8f, 0x53, 0x5b, 0x24, 0x64, 0x71, 0xa8, 0xb9, + 0x95, 0x9c, 0x3b, 0x13, 0x93, 0x40, 0xc9, 0x04, 0x7b, 0x0f, 0x98, 0x5c, + 0x93, 0xe9, 0x4c, 0xa1, 0x2e, 0xae, 0xe6, 0xf2, 0x8a, 0xaf, 0x03, 0x1e, + 0xb4, 0xd3, 0x25, 0xab, 0x1c, 0xfd, 0xd5, 0xc5, 0xd1, 0x76, 0x54, 0xc1, + 0x27, 0xd4, 0xd5, 0x21, 0x58, 0xaf, 0x6f, 0xa5, 0x5d, 0xdd, 0x3e, 0x5c, + 0x2f, 0x3f, 0xed, 0x55, 0xa6, 0xba, 0x90, 0xd1, 0x7f, 0xfe, 0x11, 0xd7, + 0x83, 0xf7, 0x8f, 0x8c, 0x0f, 0x7a, 0xae, 0x64, 0x2b, 0x12, 0x1b, 0xa4, + 0xb6, 0x5f, 0x25, 0x14, 0x02, 0x3b, 0x81, 0x52, 0xf5, 0xd4, 0xc9, 0xab, + 0x19, 0x77, 0x73, 0x19, 0x49, 0x26, 0x46, 0xa1, 0x08, 0xa4, 0x64, 0x0b, + 0xc1, 0x25, 0xbe, 0xb4, 0xc0, 0x91, 0x01, 0x6c, 0x32, 0x9c, 0x0f, 0x4a, + 0xa5, 0xb0, 0x0f, 0x00, 0xf7, 0xc9, 0xa6, 0x03, 0x8a, 0x0f, 0xee, 0x8a, + 0x04, 0x40, 0x61, 0x5e, 0x45, 0x3b, 0x92, 0x47, 0x24, 0x23, 0x1c, 0x75, + 0xa7, 0x70, 0x4a, 0xe5, 0x57, 0x80, 0xb1, 0x20, 0x1e, 0xb5, 0x2d, 0xf7, + 0x2b, 0x96, 0xe3, 0xad, 0xad, 0x5d, 0x64, 0x19, 0x39, 0xfa, 0xd4, 0xb9, + 0x58, 0xb5, 0x1d, 0x0d, 0x66, 0x8c, 0xac, 0x43, 0x08, 0xb4, 0xb9, 0xc3, + 0x94, 0xcf, 0xb9, 0x59, 0x18, 0x63, 0x81, 0xcf, 0x6a, 0x8e, 0x60, 0x71, + 0xb9, 0x2d, 0xb0, 0x67, 0x01, 0x41, 0xeb, 0x50, 0xe4, 0x38, 0xc1, 0x26, + 0x76, 0x9e, 0x14, 0xd0, 0xcc, 0xf3, 0xa3, 0xc8, 0x01, 0x19, 0xa8, 0x72, + 0x3a, 0xa9, 0xc1, 0x1e, 0xcf, 0xa0, 0xc1, 0x16, 0x99, 0x6b, 0x8d, 0x8b, + 0x96, 0x1d, 0x85, 0x73, 0xc9, 0xdc, 0xeb, 0x8a, 0x2c, 0xcb, 0x3b, 0x4a, + 0xd8, 0xde, 0x71, 0xe9, 0x50, 0xfb, 0x14, 0x3a, 0x28, 0x00, 0xe4, 0x8a, + 0x8b, 0x01, 0x68, 0x32, 0xa4, 0x64, 0x12, 0x47, 0xd2, 0x8b, 0x12, 0xb4, + 0x33, 0x6f, 0xae, 0x76, 0x82, 0x11, 0x89, 0xe2, 0x87, 0x12, 0xd4, 0xae, + 0x66, 0x19, 0x04, 0xc7, 0xe7, 0x26, 0x85, 0x0b, 0x95, 0xcc, 0x91, 0x04, + 0xd7, 0x71, 0xc6, 0x36, 0x27, 0x51, 0xea, 0x2b, 0x55, 0x4e, 0xc4, 0x4e, + 0xa5, 0x91, 0x04, 0x4b, 0x35, 0xfb, 0xf9, 0x6a, 0x06, 0x09, 0xf5, 0xad, + 0x63, 0x48, 0xe2, 0xa9, 0x5e, 0xdb, 0x1d, 0x4e, 0x87, 0xf0, 0xca, 0x7d, + 0x51, 0xe3, 0x67, 0x93, 0x01, 0x88, 0xcf, 0xcc, 0x2b, 0x5a, 0x74, 0x9d, + 0xce, 0x2a, 0x98, 0x8d, 0x0f, 0x68, 0xf0, 0xc7, 0xc1, 0xfd, 0x37, 0x4b, + 0xd8, 0xf2, 0xe1, 0xc8, 0x00, 0x9d, 0xc0, 0x1a, 0xf4, 0x69, 0x50, 0xb2, + 0x38, 0x65, 0x89, 0x67, 0xa0, 0x59, 0xe8, 0x76, 0xb6, 0x41, 0x63, 0x82, + 0x08, 0xd3, 0x18, 0xe8, 0x31, 0x5d, 0x90, 0xa4, 0x91, 0xc7, 0x52, 0xb1, + 0xbd, 0x67, 0x6c, 0xca, 0x37, 0x13, 0xd3, 0xb5, 0x75, 0xc2, 0x07, 0x0d, + 0x49, 0xdc, 0xb8, 0x54, 0x13, 0xc5, 0x6e, 0x95, 0x8e, 0x76, 0xee, 0x48, + 0x20, 0x07, 0x9d, 0xa2, 0xaa, 0xe3, 0xe6, 0x67, 0xff, 0xd9, 0x50, 0x4b, + 0x07, 0x08, 0xde, 0xb3, 0x94, 0xe4, 0x7e, 0x4c, 0x00, 0x00, 0x20, 0x4d, + 0x00, 0x00, 0x50, 0x4b, 0x01, 0x02, 0x14, 0x03, 0x14, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x2f, 0x87, 0x01, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfd, 0x41, 0x00, 0x00, 0x00, 0x00, + 0x74, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, 0x55, 0x54, 0x0d, + 0x00, 0x07, 0xda, 0xfd, 0x42, 0x5d, 0xdb, 0xfd, 0x42, 0x5d, 0xda, 0xfd, + 0x42, 0x5d, 0x75, 0x78, 0x0b, 0x00, 0x01, 0x04, 0xe8, 0x03, 0x00, 0x00, + 0x04, 0xe8, 0x03, 0x00, 0x00, 0x50, 0x4b, 0x01, 0x02, 0x3f, 0x03, 0x14, + 0x03, 0x00, 0x00, 0x08, 0x00, 0x0f, 0x02, 0x08, 0x4f, 0x15, 0x44, 0x95, + 0x94, 0x72, 0x1b, 0x00, 0x00, 0xf8, 0x23, 0x00, 0x00, 0x27, 0x00, 0x24, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x80, 0xb4, 0x81, 0x47, + 0x00, 0x00, 0x00, 0x74, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, + 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x75, + 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x2d, 0x31, 0x5f, 0x65, 0x61, 0x5f, 0x30, + 0x2e, 0x33, 0x2e, 0x70, 0x6e, 0x67, 0x0a, 0x00, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0xb3, 0x42, 0xc3, 0x6d, 0x4d, + 0xd5, 0x01, 0x00, 0x3f, 0xc9, 0x0a, 0x6e, 0x4d, 0xd5, 0x01, 0x80, 0xa8, + 0x30, 0x0a, 0x6e, 0x4d, 0xd5, 0x01, 0x50, 0x4b, 0x01, 0x02, 0x3f, 0x03, + 0x14, 0x03, 0x00, 0x00, 0x08, 0x00, 0xaa, 0x05, 0x08, 0x4f, 0x21, 0x5d, + 0x29, 0x69, 0x18, 0x10, 0x00, 0x00, 0x8d, 0x10, 0x00, 0x00, 0x28, 0x00, + 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x80, 0xb4, 0x81, + 0xfe, 0x1b, 0x00, 0x00, 0x74, 0x65, 0x78, 0x74, 0x75, 0x72, 0x65, 0x73, + 0x2f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, + 0x74, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x2d, 0x31, 0x5f, 0x65, 0x61, + 0x5f, 0x30, 0x2e, 0x31, 0x2e, 0x70, 0x6e, 0x67, 0x0a, 0x00, 0x20, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0xc0, 0x6b, 0xca, + 0x71, 0x4d, 0xd5, 0x01, 0x80, 0x64, 0x2b, 0xd2, 0x71, 0x4d, 0xd5, 0x01, + 0x80, 0xb0, 0x66, 0xcd, 0x71, 0x4d, 0xd5, 0x01, 0x50, 0x4b, 0x01, 0x02, + 0x14, 0x03, 0x14, 0x00, 0x08, 0x00, 0x08, 0x00, 0x4d, 0x69, 0xcb, 0x4e, + 0xde, 0xb3, 0x94, 0xe4, 0x7e, 0x4c, 0x00, 0x00, 0x20, 0x4d, 0x00, 0x00, + 0x12, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xb4, 0x81, 0x5c, 0x2c, 0x00, 0x00, 0x74, 0x65, 0x78, 0x74, 0x75, 0x72, + 0x65, 0x73, 0x2f, 0x65, 0x72, 0x72, 0x69, 0x67, 0x2e, 0x6a, 0x70, 0x67, + 0x55, 0x54, 0x0d, 0x00, 0x07, 0x23, 0x8c, 0xff, 0x5c, 0xda, 0xfd, 0x42, + 0x5d, 0xda, 0xfd, 0x42, 0x5d, 0x75, 0x78, 0x0b, 0x00, 0x01, 0x04, 0xe8, + 0x03, 0x00, 0x00, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x50, 0x4b, 0x05, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0xaa, 0x01, 0x00, 0x00, + 0x3a, 0x79, 0x00, 0x00, 0x00, 0x00 +}; +unsigned int textures_zip_len = 31482; diff --git a/framework/opengl_renderer/test/simple_rect_render_task_test.cpp b/framework/opengl_renderer/test/simple_rect_render_task_test.cpp new file mode 100644 index 0000000..91e365c --- /dev/null +++ b/framework/opengl_renderer/test/simple_rect_render_task_test.cpp @@ -0,0 +1,83 @@ +#include + +#include + +#include +#include +#include +#include + +#include + +#include + +#include +#include + +#include + +#include + +const char* argv0; + +TEST(simple_rect_render_task, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("simple_rect_render_task_test", 1280, 720); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + auto& scene = engine.tryService()->getScene(); + + engine.addService(argv0, "simple_rect_render_task_test"); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + // setup v system + MM::AddSystemToScene(scene, MM::Systems::SimpleVelocity); + + std::mt19937 mt(42); + + for (int y = 0; y < 10; y++) { + for (int i = 0; i < 10; i++) { + auto e = scene.create(); + auto& t = scene.emplace(e); + t.position.x = i * 9.f - 40; + t.position.y = -y * 6.f + 25; + t.scale = {5,5}; + + auto& v = scene.emplace(e); + v.rotation = i * 0.3f; + + if (mt() % 2) { + auto& col = scene.emplace(e); + auto rc = [&mt]() -> float { + return (mt() % 1001) / 1000.f ; + }; + col.color = {rc(),rc(),rc(),1}; + } + + } + } + + engine.run(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/opengl_renderer/test/simple_sprite_render_task_test.cpp b/framework/opengl_renderer/test/simple_sprite_render_task_test.cpp new file mode 100644 index 0000000..98d52f4 --- /dev/null +++ b/framework/opengl_renderer/test/simple_sprite_render_task_test.cpp @@ -0,0 +1,88 @@ +#include + +#include + +#include +#include +#include +#include + +#include + +#include + +#include +#include +#include + +#include + +#include + +const char* argv0; + +TEST(simple_sprite_render_task, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("simple_sprite_render_task_test", 1280, 720); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + auto& scene = engine.tryService()->getScene(); + + engine.addService(argv0, "simple_sprite_render_task_test"); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + // setup v system + MM::AddSystemToScene(scene, MM::Systems::SimpleVelocity); + + auto& rm_t = MM::ResourceManager::ref(); + + std::mt19937 mt(42); + + for (int y = 0; y < 10; y++) { + for (int i = 0; i < 10; i++) { + auto e = scene.create(); + auto& t = scene.emplace(e); + t.position.x = i * 9.f - 40; + t.position.y = -y * 6.f + 25; + t.scale = {5,5}; + + auto& v = scene.emplace(e); + v.rotation = i * 0.3f; + + auto& tex = scene.emplace(e); + tex.tex = rm_t.get("errig"_hs); + + if (mt() % 2) { + auto& col = scene.emplace(e); + auto rc = [&mt]() -> float { + return (mt() % 1001) / 1000.f ; + }; + col.color = {rc(),rc(),rc(),1}; + } + } + } + + engine.run(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} + diff --git a/framework/opengl_renderer/test/simple_spritesheet_render_task_test.cpp b/framework/opengl_renderer/test/simple_spritesheet_render_task_test.cpp new file mode 100644 index 0000000..baac23e --- /dev/null +++ b/framework/opengl_renderer/test/simple_spritesheet_render_task_test.cpp @@ -0,0 +1,101 @@ +#include + +#include + +#include +#include +#include +#include + +#include + +#include + +#include + +#include +#include +#include + +#include +#include "res/textures.zip.h" + +TEST(simple_spritesheet_render_task, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("simple_spritesheet_render_task_test", 1280, 720); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + auto& scene = engine.tryService()->getScene(); + + engine.addService(nullptr, "simple_spritesheet_render_task_test"); + ASSERT_TRUE(engine.enableService()); + + ASSERT_TRUE(PHYSFS_mountMemory(textures_zip, textures_zip_len, NULL, "", NULL, 0)); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto& cam = scene.set(); + cam.horizontalViewPortSize = 5; + cam.setOrthographic(); + cam.updateView(); + + rs.addRenderTask(engine); + + float accu = 0.f; + MM::AddSystemToScene(scene, [&accu](auto& scene, float delta) { + accu += delta; + + if (accu >= 1.f/10) { + accu -= 1.f/10; + scene.template view() + .each([](auto, auto& spr) { + spr.tile_index = (spr.tile_index+spr.sp.tile_count.x) % (spr.sp.tile_count.x*spr.sp.tile_count.y); + } + ); + } + }); + + auto& rm_t = MM::ResourceManager::ref(); + ASSERT_TRUE(rm_t.load("anim_run", engine, "/textures/animation_running-1_ea_0.3.png")); + ASSERT_TRUE(rm_t.load("anim_idle", engine, "/textures/animation_standing-1_ea_0.1.png")); + + { + auto e = scene.create(); + auto& t = scene.emplace(e); + t.position.x = -1.f; + t.scale.x = 1.5f; + t.scale.y = 2.f; + + auto& spr = scene.emplace(e); + spr.sp.tex = rm_t.get("anim_run"_hs); + spr.sp.tile_count.x = 8; + spr.sp.tile_count.y = 8; + spr.tile_index = 2; + } + + { + auto e = scene.create(); + auto& t = scene.emplace(e); + t.position.x = 1.f; + t.scale.x = 1.5f; + t.scale.y = 2.f; + + auto& spr = scene.emplace(e); + spr.sp.tex = rm_t.get("anim_idle"_hs); + spr.sp.tile_count.x = 8; + spr.sp.tile_count.y = 4; + spr.tile_index = 0; + } + + engine.run(); +} + diff --git a/framework/opengl_renderer/test/tilemap_render_task_test.cpp b/framework/opengl_renderer/test/tilemap_render_task_test.cpp new file mode 100644 index 0000000..bce4f19 --- /dev/null +++ b/framework/opengl_renderer/test/tilemap_render_task_test.cpp @@ -0,0 +1,97 @@ +#include + +#include + +#include +#include +#include +#include + +#include + +#include +#include + +#include +#include + +#include + +TEST(tilemap_render_task_test, it) { + MM::Engine engine; + + auto& sdl_ss = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + sdl_ss.createGLWindow("tilemap_render_task_test", 1280, 720); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + auto& scene = engine.tryService()->getScene(); + + auto& cam = scene.set(); + cam.translation = {2.f, -2.f, 0.f}; + cam.horizontalViewPortSize = 20.f; + cam.setOrthographic(); + cam.updateView(); + + engine.addService(nullptr, "tilemap_render_task_test"); + ASSERT_TRUE(engine.enableService()); + + auto& rs = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + rs.addRenderTask(engine); + + auto& rm_t = MM::ResourceManager::ref(); + + { + auto e = scene.create(); + scene.emplace(e); + + auto& tm = scene.emplace(e); + + auto& slayer = tm.sprite_layer.emplace_back(); + + // fill sprite sheet + { + slayer.sprite_sheet.tile_count.x = 1; + slayer.sprite_sheet.tile_count.y = 1; + //slayer.sprite_sheet.tex = rm_t.get("default"_hs); + slayer.sprite_sheet.tex = rm_t.get("errig"_hs); + } + + // fill tiles + { + std::vector temp_map { + 1, 1, 1, 1, 1, + 1, 0, 0, 0, 1, + 1, 0, 1, 0, 1, + 1, 0, 0, 0, 1, + 1, 1, 1, 1, 1, + }; + + uint32_t width = 5; + uint32_t height = 5; + + for (uint32_t y = 0; y < height; y++) { + for (uint32_t x = 0; x < width; x++) { + if (temp_map[y*width + x] != 0) { + auto& tile = slayer.map.emplace_back(); + tile.pos[0] = x; + tile.pos[1] = y; + tile.sprite_sheet_index = temp_map[y*width + x] - 1; + } + } + } + + slayer.syncMapBuffer(); // send to opengl + } + } + + engine.run(); +} + diff --git a/framework/resource_manager/CMakeLists.txt b/framework/resource_manager/CMakeLists.txt new file mode 100644 index 0000000..107afa4 --- /dev/null +++ b/framework/resource_manager/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.2) +project(resource_manager CXX) + +add_library(resource_manager INTERFACE) + +target_include_directories(resource_manager INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(resource_manager INTERFACE + entt + logger +) + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + + diff --git a/framework/resource_manager/src/mm/resource_manager.hpp b/framework/resource_manager/src/mm/resource_manager.hpp new file mode 100644 index 0000000..2494dc2 --- /dev/null +++ b/framework/resource_manager/src/mm/resource_manager.hpp @@ -0,0 +1,145 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include +#define LOGRM(x) LOG("ResourceManager", x) + +namespace MM { + +// modeled heavily after entt::resource_cache +// https://github.com/skypjack/entt/blob/master/src/entt/resource/cache.hpp +template +class ResourceManager { + public: + using res_id_type = typename entt::hashed_string::hash_type; + using handle_type = std::shared_ptr; + using container_type = std::unordered_map; + using size_type = typename container_type::size_type; + + private: + ResourceManager(void) = default; + + container_type _storage; + + public: + ResourceManager(ResourceManager const&) = delete; + void operator=(ResourceManager const&) = delete; + + static ResourceManager& ref(void) { + static ResourceManager instance{}; + return instance; + } + + // Loader s must implement a load method + template + bool load(const res_id_type id, Args &&... args) { + //static_assert(std::is_base_of, Loader>::value); + + if (!contains(id)) { + handle_type r = Loader{}.load(std::forward(args)...); + if (static_cast(r)) { + _storage[id] = std::move(r); + } else { + return false; + } + } + + return true; + } + + // string overload + template + bool load(const char* id, Args &&... args) { + return load(entt::hashed_string{id}.value(), std::forward(args)...); + } + + template + bool reload(const res_id_type id, Args &&... args) { + discard(id); + return load(id, std::forward(args)...); + } + + // string overload + template + bool reload(const char* id, Args &&... args) { + return reload(entt::hashed_string{id}.value(), std::forward(args)...); + } + + void discard(const res_id_type id) ENTT_NOEXCEPT { + if (auto it = _storage.find(id); it != _storage.end()) { + _storage.erase(it); + } + } + + void discard(const char* id) ENTT_NOEXCEPT { + discard(entt::hashed_string{id}.value()); + } + + void each(std::function)>& fn) { + for (auto& it : _storage) { + fn(it.first, it.second); + } + } + + size_type size(void) const { + return _storage.size(); + } + + bool empty(void) const { + return _storage.empty(); + } + + void clear(void) ENTT_NOEXCEPT { + _storage.clear(); + } + + bool contains(const res_id_type id) const ENTT_NOEXCEPT { + return (_storage.find(id) != _storage.cend()); + } + + handle_type get(const res_id_type id) const { + auto it = _storage.find(id); + if (it == _storage.end()) { + if (id != "default"_hs) { + LOGRM("not in cache, loading default..."); + return get("default"_hs); + } else { + return nullptr; + } + } else { + return it->second; + } + } + + // TODO: fix + //handle_type get(const char* id) const { + //return get(entt::hashed_string{id}.value()); + //} + + // reverse lookup + std::optional id_from_handle(const std::shared_ptr& handle) { + if (static_cast(handle)) { + auto it = std::find_if(_storage.cbegin(), _storage.cend(), [&](auto& v) { return handle == v.second; }); + if (it != _storage.cend()) { + return it->first; + } + } + + return std::nullopt; + } +}; + +} // namespace MM + +#undef LOGRM + diff --git a/framework/resource_manager/test/CMakeLists.txt b/framework/resource_manager/test/CMakeLists.txt new file mode 100644 index 0000000..15f7a4c --- /dev/null +++ b/framework/resource_manager/test/CMakeLists.txt @@ -0,0 +1,14 @@ +add_executable(resource_test + resource_test.cpp +) + +target_include_directories(resource_test PRIVATE ".") + +target_link_libraries(resource_test + #engine + resource_manager + gtest_main +) + +add_test(NAME resource_test COMMAND resource_test) + diff --git a/framework/resource_manager/test/resource_test.cpp b/framework/resource_manager/test/resource_test.cpp new file mode 100644 index 0000000..4a48ca0 --- /dev/null +++ b/framework/resource_manager/test/resource_test.cpp @@ -0,0 +1,78 @@ +#include + +#include + +#include + +// disable, this just tests entt and not MM +#if 0 +TEST(EngineResourceManagerTest, entt_cache) { + struct type_entt_cache_test { + int val; + }; + entt::resource_cache cache{}; + + ASSERT_TRUE(cache.empty()); + + struct type_entt_cache_test_loader final : entt::resource_loader { + std::shared_ptr load(int value) const { + return std::shared_ptr(new type_entt_cache_test{value}); + } + }; + + ASSERT_TRUE(cache.load("test1"_hs, 1)); + ASSERT_EQ(cache.size(), 1); + auto h_test1 = cache.handle("test1"_hs); + ASSERT_TRUE(static_cast(h_test1)); + //ASSERT_EQ(*h_test1, 1); +} +#endif + +TEST(EngineResourceManagerTest, basic) { + struct type_test { + int val; + }; + auto& rm = MM::ResourceManager::ref(); + + ASSERT_TRUE(rm.empty()); + + struct type_test_loader final { + std::shared_ptr load(int value) const { + return std::shared_ptr(new type_test{value}); + } + }; + + ASSERT_TRUE(rm.load("test1", 1)); + ASSERT_FALSE(rm.empty()); + ASSERT_EQ(rm.size(), 1); + ASSERT_TRUE(rm.contains("test1"_hs)); + + { + auto h_test1 = rm.get("test1"_hs); + ASSERT_TRUE(static_cast(h_test1)); + ASSERT_EQ(h_test1->val, 1); + + ASSERT_TRUE(rm.reload("test1", 3)); + ASSERT_EQ(rm.size(), 1); + ASSERT_TRUE(static_cast(h_test1)); + auto h_test1_2 = rm.get("test1"_hs); + ASSERT_TRUE(static_cast(h_test1_2)); + ASSERT_NE(h_test1->val, h_test1_2->val); + + { + auto rt = rm.id_from_handle(h_test1_2); + ASSERT_TRUE(static_cast(rt)); + ASSERT_EQ(rt, "test1"_hs); + } + + + rm.discard("test1"); + ASSERT_TRUE(rm.empty()); + + { + auto rt = rm.id_from_handle(h_test1_2); + ASSERT_FALSE(static_cast(rt)); + } + } +} + diff --git a/framework/screen_director/CMakeLists.txt b/framework/screen_director/CMakeLists.txt new file mode 100644 index 0000000..302bb69 --- /dev/null +++ b/framework/screen_director/CMakeLists.txt @@ -0,0 +1,23 @@ +cmake_minimum_required(VERSION 3.2) +project(screen_director CXX) + +add_library(screen_director + src/mm/services/screen_director.hpp + src/mm/services/screen_director.cpp +) + +target_include_directories(screen_director PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(screen_director + engine + logger + entt +) + +message("screen_director_simple ALIAS TODO: remove!!") +add_library(screen_director_simple ALIAS screen_director) + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/screen_director/src/mm/services/screen_director.cpp b/framework/screen_director/src/mm/services/screen_director.cpp new file mode 100644 index 0000000..348b39b --- /dev/null +++ b/framework/screen_director/src/mm/services/screen_director.cpp @@ -0,0 +1,107 @@ +#include "./screen_director.hpp" + +#include + +#include + +namespace MM::Services { + +bool ScreenDirector::enable(MM::Engine& engine) { + if (!_update_handle.expired()) + return false; + + { + _update_handle = engine.addFixedUpdate([this](Engine& e) { this->update(e); }); + auto tmp_lock = _update_handle.lock(); + tmp_lock->priority = -100; // post everything ? + tmp_lock->name = "ScreenDirector::update"; + } + + + // start initial screen + if (!queued_screen_id.empty()) { + auto next_screen_id = queued_screen_id; + auto& next_screen = screens[next_screen_id]; + + startScreen(engine, next_screen); + + curr_screen_id = next_screen_id; + } + + return true; +} + +void ScreenDirector::disable(MM::Engine& engine) { + engine.removeFixedUpdate(_update_handle); + _update_handle.reset(); +} + +void ScreenDirector::update(MM::Engine& engine) { + if (curr_screen_id != queued_screen_id) { + engine.addFixedDefer([this](MM::Engine& engine) { + changeScreenTo(engine, queued_screen_id); + }); + } +} + +void ScreenDirector::startScreen(MM::Engine& engine, Screen& screen) { + ZoneScoped; + for (auto service_id : screen.start_disable) { + engine.disableService(service_id); + } + + for (auto service_id : screen.start_enable) { + engine.enableService(service_id); // TODO: check return value + } + + for (auto [i_id, t_id] : screen.start_provide) { + bool r = engine.provide(i_id, t_id); // TODO: check return value + assert(r); + } + + screen.start_fn(engine); +} + +void ScreenDirector::endScreen(MM::Engine& engine, Screen& screen) { + ZoneScoped; + screen.end_fn(engine); + + for (auto service_id : screen.end_disable) { + engine.disableService(service_id); + } + + for (auto service_id : screen.end_enable) { + engine.enableService(service_id); // TODO: check return value + } +} + +void ScreenDirector::changeScreenTo(MM::Engine& engine, const std::string id) { + ZoneScoped; + + if (screens.count(id) == 0) { + SPDLOG_ERROR("tried to change to not defined screen '{}'", id); + return; + } + + ZoneText(id.c_str(), id.size()); + + auto& curr_screen = screens[curr_screen_id]; + auto& next_screen = screens[id]; + + endScreen(engine, curr_screen); + + startScreen(engine, next_screen); + + curr_screen_id = id; +} + +void ScreenDirector::queueChangeScreenTo(const std::string& id) { + ZoneScoped; + ZoneText(id.c_str(), id.size()); + + // TODO: do some checks + queued_screen_id = id; +} + +} // MM::Services + diff --git a/framework/screen_director/src/mm/services/screen_director.hpp b/framework/screen_director/src/mm/services/screen_director.hpp new file mode 100644 index 0000000..b4f32f1 --- /dev/null +++ b/framework/screen_director/src/mm/services/screen_director.hpp @@ -0,0 +1,64 @@ +#pragma once + +#include + +//#include // in engine.hpp +#include + +namespace MM::Services { + +class ScreenDirector : public Service { + public: + const char* name(void) override { return "ScreenDirector"; } + + // enable switches to queued_screen_index + bool enable(MM::Engine&) override; + void disable(MM::Engine&) override; + + public: + struct Screen { + // lists of services relevant for this screen, disable and enable are called when its changed to + std::vector start_disable; + std::vector start_enable; + + // register provider, when its changed to + std::vector< + std::pair< + Engine::service_family_type, // I + Engine::service_family_type // T + > + > start_provide; + + // lists of services relevant for this screen, disable and enable are called when its changed from + std::vector end_disable; + std::vector end_enable; + + // called when its changed to, after services disable and enable + std::function start_fn = [](MM::Engine&){}; + + // called when the screen changed from + std::function end_fn = [](MM::Engine&){}; + }; + + std::map screens; + + // TODO: private? + std::string curr_screen_id = ""; + std::string queued_screen_id = ""; + + private: + MM::Engine::FunctionDataHandle _update_handle; + void update(MM::Engine& engine); + + private: + // INTERNAL helper, to reduce redundant code + void startScreen(MM::Engine& engine, Screen& screen); + void endScreen(MM::Engine& engine, Screen& screen); + + public: + void changeScreenTo(MM::Engine& engine, const std::string id); + void queueChangeScreenTo(const std::string& id); +}; + +} // MM::Services + diff --git a/framework/screen_director/test/CMakeLists.txt b/framework/screen_director/test/CMakeLists.txt new file mode 100644 index 0000000..32d04b4 --- /dev/null +++ b/framework/screen_director/test/CMakeLists.txt @@ -0,0 +1,13 @@ +add_executable(screen_director_test + sd_test.cpp +) + +target_include_directories(screen_director_test PRIVATE ".") + +target_link_libraries(screen_director_test + screen_director + gtest_main +) + +add_test(NAME screen_director_test COMMAND screen_director_test) + diff --git a/framework/screen_director/test/sd_test.cpp b/framework/screen_director/test/sd_test.cpp new file mode 100644 index 0000000..7f3189c --- /dev/null +++ b/framework/screen_director/test/sd_test.cpp @@ -0,0 +1,270 @@ +#include + +#include +#include + +class TestService1 : public MM::Services::Service { + public: + const char* name(void) override { return "TestService1"; } + + bool enable(MM::Engine&) override { return true; } + void disable(MM::Engine&) override {} +}; + +class TestService2 : public MM::Services::Service { + public: + const char* name(void) override { return "TestService2"; } + + bool enable(MM::Engine&) override { return true; } + void disable(MM::Engine&) override {} +}; + +class TestServiceInterface : public MM::Services::Service { + public: + const char* name(void) override { return "TestServiceInterface"; } + + bool enable(MM::Engine&) override { return true; } + void disable(MM::Engine&) override {} + + public: + virtual int test_method(void) = 0; +}; + +class TestServiceInterfaceImpl1 : public TestServiceInterface { + public: + const char* name(void) override { return "TestServiceInterfaceImpl1"; } + + bool enable(MM::Engine&) override { return true; } + void disable(MM::Engine&) override {} + + public: + int test_method(void) override { + return 1; + } +}; + +class TestServiceInterfaceImpl2 : public TestServiceInterface { + public: + const char* name(void) override { return "TestServiceInterfaceImpl2"; } + + bool enable(MM::Engine&) override { return true; } + void disable(MM::Engine&) override {} + + public: + int test_method(void) override { + return 2; + } +}; + +TEST(SceneDirectorSimple, offline) { + MM::Engine engine; + + engine.addService(); + engine.addService(); + + auto& sd = engine.addService(); + + // setup scene director + ASSERT_EQ(sd.screens.size(), 0); + + // id 0 - start point, not required + { + auto& screen_0 = sd.screens["screen_0"]; + ASSERT_TRUE(screen_0.start_disable.empty()); // none + ASSERT_TRUE(screen_0.start_enable.empty()); // none + ASSERT_TRUE(screen_0.end_disable.empty()); // none + ASSERT_TRUE(screen_0.end_enable.empty()); // none + } + + // id 1 + { + auto& screen_1 = sd.screens["screen_1"]; + screen_1.start_disable.push_back(engine.type()); + screen_1.start_enable.push_back(engine.type()); + screen_1.start_fn = [](auto&) { + std::cout << "now in screen_1\n"; + }; + screen_1.end_fn = [](auto&) { + std::cout << "exiting screen_1\n"; + }; + } + + // id 2 + { + auto& screen_2 = sd.screens["screen_2"]; + screen_2.start_disable.push_back(engine.type()); + screen_2.start_enable.push_back(engine.type()); + screen_2.start_fn = [](auto&) { + std::cout << "now in screen_2\n"; + }; + screen_2.end_fn = [](auto&) { + std::cout << "exiting screen_2\n"; + }; + } + + sd.queued_screen_id = "screen_0"; // set to screen_0 + + ASSERT_TRUE(engine.enableService()); + + sd.changeScreenTo(engine, "screen_1"); ASSERT_EQ(sd.curr_screen_id, "screen_1"); + sd.changeScreenTo(engine, "screen_2"); ASSERT_EQ(sd.curr_screen_id, "screen_2"); + sd.changeScreenTo(engine, "screen_1"); ASSERT_EQ(sd.curr_screen_id, "screen_1"); + sd.changeScreenTo(engine, "screen_0"); ASSERT_EQ(sd.curr_screen_id, "screen_0"); + sd.changeScreenTo(engine, "somthing which does not exits"); ASSERT_EQ(sd.curr_screen_id, "screen_0"); // does not exist, does nothing +} + +TEST(SceneDirectorSimple, online) { + MM::Engine engine; + + engine.addService(); + engine.addService(); + + auto& sd = engine.addService(); + + // setup scene director + ASSERT_EQ(sd.screens.size(), 0); + + // id 0 - start point + { + auto& screen_0 = sd.screens["screen_0"]; + //screen_0.start_disable.empty(); // none + //screen_0.start_enable.empty(); // none + ASSERT_TRUE(screen_0.start_disable.empty()); // none + ASSERT_TRUE(screen_0.start_enable.empty()); // none + ASSERT_TRUE(screen_0.end_disable.empty()); // none + ASSERT_TRUE(screen_0.end_enable.empty()); // none + } + + // id 1 + { + auto& screen_1 = sd.screens["screen_1"]; + screen_1.start_disable.push_back(engine.type()); + screen_1.start_enable.push_back(engine.type()); + screen_1.start_fn = [](MM::Engine& engine) { + std::cout << "now in screen_1\n"; + + // and queue next screen immediately (for the purpose of this test) + engine.tryService()->queueChangeScreenTo("screen_2"); + }; + screen_1.end_fn = [](auto&) { + std::cout << "exiting screen_1\n"; + }; + } + + // id 2 + { + auto& screen_2 = sd.screens["screen_2"]; + screen_2.start_disable.push_back(engine.type()); + screen_2.start_enable.push_back(engine.type()); + screen_2.start_fn = [](MM::Engine& engine) { + std::cout << "now in screen_2\n"; + + // and queue next screen immediately (for the purpose of this test) + engine.tryService()->queueChangeScreenTo("screen_end"); + }; + screen_2.end_fn = [](auto&) { + std::cout << "exiting screen_2\n"; + }; + } + + // id end, quits the engine + { + auto& screen_end = sd.screens["screen_end"]; + screen_end.start_fn = [](MM::Engine& engine) { + engine.stop(); + }; + } + + sd.queued_screen_id = "screen_0"; // init + + ASSERT_TRUE(engine.enableService()); + + // TODO: remove screen 0 + sd.queueChangeScreenTo("screen_1"); // start "chain" (bc screen_0 does nothing), this is the same as an assigment + + engine.run(); +} + +TEST(SceneDirectorSimple, offline_provide) { + MM::Engine engine; + + engine.addService(); + engine.addService(); + + auto& sd = engine.addService(); + + // setup scene director + ASSERT_EQ(sd.screens.size(), 0); + + // id 0 - start point, not required + { + auto& screen_0 = sd.screens["screen_0"]; + ASSERT_TRUE(screen_0.start_disable.empty()); // none + ASSERT_TRUE(screen_0.start_enable.empty()); // none + ASSERT_TRUE(screen_0.end_disable.empty()); // none + ASSERT_TRUE(screen_0.end_enable.empty()); // none + } + + // id 1 + { + auto& screen_1 = sd.screens["screen_1"]; + screen_1.start_disable.push_back(engine.type()); // if already provided for + screen_1.start_enable.push_back(engine.type()); + screen_1.start_provide.emplace_back( + engine.type(), + engine.type() + ); + screen_1.start_fn = [](auto&) { + std::cout << "now in screen_1\n"; + std::cout << "impl1 is provided\n"; + }; + screen_1.end_fn = [](auto&) { + std::cout << "exiting screen_1\n"; + }; + } + + // id 2 + { + auto& screen_2 = sd.screens["screen_2"]; + screen_2.start_disable.push_back(engine.type()); // if already provided for + screen_2.start_enable.push_back(engine.type()); + screen_2.start_provide.emplace_back( + engine.type(), + engine.type() + ); + screen_2.start_fn = [](auto&) { + std::cout << "now in screen_2\n"; + std::cout << "impl2 is provided\n"; + }; + screen_2.end_fn = [](auto&) { + std::cout << "exiting screen_2\n"; + }; + } + + sd.queued_screen_id = "screen_0"; // set to screen_0 + + ASSERT_TRUE(engine.enableService()); + // now in screen_0 + + + ASSERT_NE(engine.tryService(), nullptr); + ASSERT_NE(engine.tryService(), nullptr); + + + sd.changeScreenTo(engine, "screen_1"); ASSERT_EQ(sd.curr_screen_id, "screen_1"); + ASSERT_NE(engine.tryService(), nullptr); + ASSERT_EQ(engine.tryService()->test_method(), 1); + + sd.changeScreenTo(engine, "screen_2"); ASSERT_EQ(sd.curr_screen_id, "screen_2"); + ASSERT_NE(engine.tryService(), nullptr); + ASSERT_EQ(engine.tryService()->test_method(), 2); + + sd.changeScreenTo(engine, "screen_1"); ASSERT_EQ(sd.curr_screen_id, "screen_1"); + ASSERT_NE(engine.tryService(), nullptr); + ASSERT_EQ(engine.tryService()->test_method(), 1); + + sd.changeScreenTo(engine, "screen_0"); ASSERT_EQ(sd.curr_screen_id, "screen_0"); + + sd.changeScreenTo(engine, "somthing which does not exits"); ASSERT_EQ(sd.curr_screen_id, "screen_0"); // does not exist, does nothing +} + diff --git a/framework/sdl_service/CMakeLists.txt b/framework/sdl_service/CMakeLists.txt new file mode 100644 index 0000000..8b9b1e3 --- /dev/null +++ b/framework/sdl_service/CMakeLists.txt @@ -0,0 +1,45 @@ +cmake_minimum_required(VERSION 3.2) +project(sdl_service CXX) + +add_library(sdl_service + src/mm/logo-f6c-square.png.h + + src/mm/services/sdl_service.hpp + src/mm/services/sdl_service.cpp +) + +target_include_directories(sdl_service PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") +target_include_directories(sdl_service PUBLIC "${SDL2_INCLUDE_DIR}") + +target_link_libraries(sdl_service + entt + logger + #glm + engine +) + + +#if android +#target_link_libraries(sdl_service SDL) +#endif + +if(EMSCRIPTEN) + set_target_properties(sdl_service PROPERTIES COMPILE_FLAGS "-s USE_SDL=2") + set_target_properties(sdl_service PROPERTIES LINK_FLAGS "-s USE_SDL=2") +else() + #if not android or emscripten + target_include_directories(sdl_service PUBLIC "${SDL2_INCLUDE_DIR}") + target_link_libraries(sdl_service ${SDL2_LIBRARY}) + #endif +endif() + +if(MM_OPENGL_3_GLES) + target_link_libraries(sdl_service "GL") # TODO: make more specific +else() + target_link_libraries(sdl_service glad) +endif() + +if(BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/sdl_service/src/mm/logo-f6c-square.png.h b/framework/sdl_service/src/mm/logo-f6c-square.png.h new file mode 100644 index 0000000..d9b1682 --- /dev/null +++ b/framework/sdl_service/src/mm/logo-f6c-square.png.h @@ -0,0 +1,762 @@ +/* GIMP RGBA C-Source image dump (logo-f6c-square.png.c) */ + +static const struct { + unsigned int width; + unsigned int height; + unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */ + unsigned char pixel_data[64 * 64 * 4 + 1]; +} logo_f6c_square = { + 64, 64, 4, + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377" + "\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314" + "\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314" + "\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377" + "\377f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377" + "\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f" + "\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377" + "f\314\377\377f\314\377\377f\314\377\377f\314\377\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000" + "\377\377\377\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377\377\377\000\377\377\377\000\377f\314\377\377f\314\377\377f\314\377\377" + "f\314\377\377f\314\377\377\377\377\000\377\377\377\000\377\377\377\000\377\377" + "\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377\000\377\377\377" + "\000\377f\314\377\377f\314\377\377f\314\377\377f\314\377\377f\314\377", +}; + diff --git a/framework/sdl_service/src/mm/services/sdl_service.cpp b/framework/sdl_service/src/mm/services/sdl_service.cpp new file mode 100644 index 0000000..1e35867 --- /dev/null +++ b/framework/sdl_service/src/mm/services/sdl_service.cpp @@ -0,0 +1,292 @@ +#include "./sdl_service.hpp" + +#include + +#ifdef MM_OPENGL_3_GLES + //#include + #include +#else + #include +#endif + +#ifndef MM_OPENGL_3_GLES + #include +#else + #define TracyGpuContext +#endif + +#include +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "SDLService", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("SDLService", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "SDLService", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "SDLService", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("SDLService", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("SDLService", __VA_ARGS__) + +namespace MM::Services { + +SDLService::SDLService(uint32_t sdl_init_flags) { + MM::Logger::initSectionLogger("SDLService"); + + LOG_TRACE("constructing SDLService..."); + +//#ifdef __EMSCRIPTEN__ + //sdl_init_flags &= ~SDL_INIT_HAPTIC; +//#endif + + if (SDL_Init(sdl_init_flags)) { + LOG_CRIT("SDL_Init() failed: {}", SDL_GetError()); + return; + } +} + +SDLService::~SDLService(void) { + LOG_TRACE("deconstructing SDLService..."); + + if (gl_context) { + SDL_GL_DeleteContext(gl_context); + } + + if (win) { + LOG_WARN("destroying open window"); + destroyWindow(); + } + + SDL_Quit(); +} + +bool SDLService::enable(Engine& engine) { + bool succ = true; + _func_handle = engine.addUpdate([this](Engine& e) { this->processEvents(e); }); + if (!_func_handle.expired()) { + auto tmp_lock = _func_handle.lock(); + tmp_lock->priority = 100; // before the calls before the scene + tmp_lock->name = "sdl events"; + } else { + succ = false; + } + + _f_func_handle = engine.addFixedUpdate([this](Engine& e) { this->processEvents(e); }); + if (!_f_func_handle.expired()) { + auto tmp_lock = _f_func_handle.lock(); + tmp_lock->priority = 100; // before the calls before the scene + tmp_lock->name = "sdl events"; + } else { + succ = false; + } + + return succ; +} + +void SDLService::disable(Engine& engine) { + // remove update hooks + if (!_func_handle.expired()) + engine.removeUpdate(_func_handle); + + if (!_f_func_handle.expired()) + engine.removeFixedUpdate(_f_func_handle); + + // destroy stuff + if (gl_context) { + SDL_GL_DeleteContext(gl_context); + } + + if (win) { + LOG_WARN("destroying open window"); + destroyWindow(); + } +} + +bool SDLService::createWindow(const char* title, int screen_width, int screen_height, uint32_t sdl_window_flags) { + if (!win) { + win = SDL_CreateWindow(title, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, screen_width, screen_height, sdl_window_flags); + if (setDefaultWindowIcon) { + setDefaultIcon(); + } + } else { + LOG_WARN("tried to create window while already existing. ignoring"); + } + return win; // implicit conversion to bool +} + +void SDLService::destroyWindow(void) { + if (win) { + SDL_DestroyWindow(win); + win = nullptr; + } else { + LOG_WARN("tried to destroy window while no window exists. ignoring"); + } +} + +std::pair SDLService::getWindowSize(SDL_Window* win_ptr) { + if (!win_ptr) + win_ptr = win; // defaulting to currently managed window + if (!win_ptr) { + LOG_ERROR("cannot get size of nullptr window"); + return {0, 0}; + } + int w, h; + //SDL_GetWindowSize(win_ptr, &w, &h); // does not support hdpi + SDL_GL_GetDrawableSize(win_ptr, &w, &h); + return {w, h}; +} + +bool SDLService::createGLContext(SDL_Window* win_ptr) { + if (!win_ptr) + win_ptr = win; // defaulting to currently managed window + + if (!win_ptr) { + LOG_ERROR("cannot create gl context with nullptr window"); + return false; + } + + gl_context = SDL_GL_CreateContext(win_ptr); + if (!gl_context) { + LOG_ERROR("SDL_GL_CreateContext(): {}", SDL_GetError()); + return false; + } + +#ifndef MM_OPENGL_3_GLES + // glad + if (!gladLoadGLLoader((GLADloadproc) SDL_GL_GetProcAddress)) { + LOG_ERROR("Failed to initialize OpenGL context"); + return false; + } +#endif + + if (SDL_GL_MakeCurrent(win, gl_context)) { + LOG_ERROR("SDL_GL_MakeCurrent(): {}", SDL_GetError()); + return false; + } + + TracyGpuContext; + + LOG_INFO("gl: {}", glGetString(GL_VERSION)); + + return true; +} + +bool SDLService::createGLWindow(const char* title, int screen_width, int screen_height, uint32_t sdl_window_flags) { +#ifdef MM_OPENGL_3_GLES + // opengl es 3.0 + SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_ES); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 0); +#else + //Use OpenGL 3.3 core + SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 3); +#endif + if (!createWindow(title, screen_width, screen_height, SDL_WINDOW_OPENGL | sdl_window_flags)) { + return false; + } + if (!createGLContext()) { + return false; + } + return true; +} + +void SDLService::processEvents(Engine& engine) { + ZoneScoped; + SDL_Event e; + while (SDL_PollEvent(&e)) { + if (e.type == SDL_QUIT) { + engine.stop(); + } else { + for (auto& h : _event_handler_list) { + if ((*h)(e)) + break; + } + } + } +} + +SDLService::EventHandlerHandle SDLService::addEventHandler(std::function function) { + if (!function) { + // error + return nullptr; + } + + auto& r = _event_handler_list.emplace_back(std::make_unique(function)); + + return r.get(); +} + +void SDLService::removeEventHandler(EventHandlerHandle function_handle) { + if (!function_handle) { + // error + return; + } + + _event_handler_list.erase( + std::remove_if(_event_handler_list.begin(), _event_handler_list.end(), + [&](std::unique_ptr& eh) { return function_handle == eh.get(); } + ), + _event_handler_list.end() + ); +} + + +void SDLService::setDefaultIcon(void) { + if (!win) { + LOG_WARN("tried to set icon of NO window"); + return; + } + #include "../logo-f6c-square.png.h" + + setIcon( + (void*)logo_f6c_square.pixel_data, + logo_f6c_square.width, + logo_f6c_square.height, + logo_f6c_square.bytes_per_pixel + ); +} + +void SDLService::setIcon(SDL_Surface* surf) { + if (!win) { + LOG_WARN("tried to set icon of NO window"); + return; + } + + SDL_SetWindowIcon(win, surf); +} + +void SDLService::setIcon(void* data, size_t width, size_t height, size_t bytes_per_pixel) { + if (!win) { + LOG_WARN("tried to set icon of NO window"); + return; + } + + // thanks to Danial at https://blog.gibson.sh/2015/04/13/how-to-integrate-your-sdl2-window-icon-or-any-image-into-your-executable/ + uint32_t rmask, gmask, bmask, amask; +#if SDL_BYTEORDER == SDL_BIG_ENDIAN + int shift = (bytes_per_pixel == 3) ? 8 : 0; + rmask = 0xff000000 >> shift; + gmask = 0x00ff0000 >> shift; + bmask = 0x0000ff00 >> shift; + amask = 0x000000ff >> shift; +#else // little endian, like x86 + rmask = 0x000000ff; + gmask = 0x0000ff00; + bmask = 0x00ff0000; + amask = (bytes_per_pixel == 3) ? 0 : 0xff000000; +#endif + + SDL_Surface* icon = SDL_CreateRGBSurfaceFrom( + data, + width, height, + bytes_per_pixel * 8, + bytes_per_pixel * width, + rmask, gmask, bmask, amask); + + setIcon(icon); + + SDL_FreeSurface(icon); +} + +} // namespace MM::Services + diff --git a/framework/sdl_service/src/mm/services/sdl_service.hpp b/framework/sdl_service/src/mm/services/sdl_service.hpp new file mode 100644 index 0000000..14d6c01 --- /dev/null +++ b/framework/sdl_service/src/mm/services/sdl_service.hpp @@ -0,0 +1,64 @@ +#pragma once + +#include + +#include + +//#include // engine.hpp +//#include // engine.hpp + +namespace MM::Services { + + class SDLService : public Service { + public: + SDL_Window* win{nullptr}; + SDL_GLContext gl_context{nullptr}; + + bool setDefaultWindowIcon = true; + + using EventHandlerType = std::function; + using EventHandlerHandle = EventHandlerType*; + + private: + std::vector> _event_handler_list; + + Engine::FunctionDataHandle _func_handle; + Engine::FunctionDataHandle _f_func_handle; + + public: + SDLService(uint32_t sdl_init_flags = SDL_INIT_EVERYTHING); + ~SDLService(void); + + public: + bool enable(Engine& engine) override; + void disable(Engine& engine) override; // destroys windows and ass contexts + + const char* name(void) override { return "SDLService"; } + + public: + // creates window, returns if created successfully + bool createWindow(const char* title, int screen_width, int screen_height, uint32_t sdl_window_flags = SDL_WINDOW_SHOWN); + void destroyWindow(void); + + std::pair getWindowSize(SDL_Window* win_ptr = nullptr); + + bool createGLContext(SDL_Window* win_ptr = nullptr); + + // creates a window and a gl_context + bool createGLWindow(const char* title, int screen_width, int screen_height, uint32_t sdl_window_flags = SDL_WINDOW_SHOWN); + + private: + void processEvents(Engine& engine); + + public: + EventHandlerHandle addEventHandler(std::function function); + void removeEventHandler(EventHandlerHandle function_handle); + + // sets the icon of the "current" window + void setDefaultIcon(void); + void setIcon(SDL_Surface* surf); + void setIcon(void* data, size_t width, size_t height, size_t bytes_per_pixel); + }; + +} // namespace MM::Services + diff --git a/framework/sdl_service/test/CMakeLists.txt b/framework/sdl_service/test/CMakeLists.txt new file mode 100644 index 0000000..d3f6046 --- /dev/null +++ b/framework/sdl_service/test/CMakeLists.txt @@ -0,0 +1,11 @@ +add_executable(sdl_service_test start_test.cpp) + +target_include_directories(sdl_service_test PRIVATE ".") + +target_link_libraries(sdl_service_test + sdl_service + gtest_main +) + +add_test(NAME sdl_service_test COMMAND sdl_service_test) + diff --git a/framework/sdl_service/test/start_test.cpp b/framework/sdl_service/test/start_test.cpp new file mode 100644 index 0000000..cd4ad2f --- /dev/null +++ b/framework/sdl_service/test/start_test.cpp @@ -0,0 +1,118 @@ +#include + +#include +#include + +TEST(sdl_service, add_en_dis) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + + ASSERT_EQ(sdl_ss_ptr->win, nullptr); + + engine.disableService(); +} + +TEST(sdl_service, window_basic) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + + ASSERT_EQ(sdl_ss_ptr->win, nullptr); + ASSERT_TRUE(sdl_ss_ptr->createWindow("test", 800, 600)); + ASSERT_NE(sdl_ss_ptr->win, nullptr); + + engine.disableService(); + + ASSERT_EQ(sdl_ss_ptr->win, nullptr); +} + +TEST(sdl_service, window_opengl_3_3_core) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + + ASSERT_EQ(sdl_ss_ptr->win, nullptr); + + //Use OpenGL 3.3 core + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 3); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); + + ASSERT_TRUE(sdl_ss_ptr->createWindow("test", 800, 600, SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN)); + ASSERT_NE(sdl_ss_ptr->win, nullptr); + + ASSERT_EQ(sdl_ss_ptr->gl_context, nullptr); + ASSERT_TRUE(sdl_ss_ptr->createGLContext()); + ASSERT_NE(sdl_ss_ptr->gl_context, nullptr); + + engine.disableService(); + + ASSERT_EQ(sdl_ss_ptr->win, nullptr); +} + +TEST(sdl_service, window_opengl_3_3_core_single_call) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + + ASSERT_EQ(sdl_ss_ptr->win, nullptr); + ASSERT_EQ(sdl_ss_ptr->gl_context, nullptr); + + ASSERT_TRUE(sdl_ss_ptr->createGLWindow("test", 800, 600)); + + ASSERT_NE(sdl_ss_ptr->win, nullptr); + ASSERT_NE(sdl_ss_ptr->gl_context, nullptr); + + engine.disableService(); + + ASSERT_EQ(sdl_ss_ptr->win, nullptr); +} + +TEST(sdl_service, event_handle_reg) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sdl_ss_ptr = engine.tryService(); + ASSERT_NE(sdl_ss_ptr, nullptr); + + // produces fake "1" press + auto event_forge_f = [](MM::Engine&) { + SDL_Event sdlevent; + sdlevent.type = SDL_KEYDOWN; + sdlevent.key.keysym.sym = SDLK_1; + + ASSERT_EQ(SDL_PushEvent(&sdlevent), 1); + }; + + // register forge for fixedUpdate + auto event_forge_handle = engine.addFixedUpdate(event_forge_f); + ASSERT_NE(event_forge_handle.lock(), nullptr); + + // register sdl event handler to just stop the engine + auto* stop_event_hook_h = sdl_ss_ptr->addEventHandler([&engine](const SDL_Event&){ engine.stop(); return true; }); + ASSERT_NE(stop_event_hook_h, nullptr); + + engine.run(); + + engine.disableService(); +} + diff --git a/framework/simple_scene/CMakeLists.txt b/framework/simple_scene/CMakeLists.txt new file mode 100644 index 0000000..0144553 --- /dev/null +++ b/framework/simple_scene/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required(VERSION 3.2) +project(simple_scene CXX) + +add_library(simple_scene + src/mm/services/simple_scene.hpp + src/mm/services/simple_scene.cpp +) + +target_include_directories(simple_scene PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(simple_scene + engine +) + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/simple_scene/src/mm/services/simple_scene.cpp b/framework/simple_scene/src/mm/services/simple_scene.cpp new file mode 100644 index 0000000..5c82a60 --- /dev/null +++ b/framework/simple_scene/src/mm/services/simple_scene.cpp @@ -0,0 +1,99 @@ +#include "./simple_scene.hpp" + +//#include "../systems_container.hpp" + +#include + +#include + +#include +#define LOG_SSS(x) LOG("SimpleSceneService", x) + +namespace MM::Services { + +bool SimpleSceneService::enable(Engine& engine) { + // default scene + if (!_scene) { + _scene = std::make_unique(); + _scene->set(&engine); + } + + { + _f_update_handle = engine.addFixedUpdate([this](Engine& e) { this->sceneFixedUpdate(e); }); + if (_f_update_handle.expired()) { + return false; + } + + auto tmp_lock = _f_update_handle.lock(); + tmp_lock->priority = 0; + } + + { + _f_update_changer_handle = engine.addFixedUpdate([this](Engine& e) { this->changeSceneFixedUpdate(e); }); + if (_f_update_changer_handle.expired()) { + return false; + } + + auto tmp_lock = _f_update_changer_handle.lock(); + tmp_lock->priority = -100; + } + + return true; +} + +void SimpleSceneService::disable(Engine& engine) { + if (!_f_update_handle.expired()) { + engine.removeFixedUpdate(_f_update_handle); + _f_update_handle.reset(); + } + + if (!_f_update_changer_handle.expired()) { + engine.removeFixedUpdate(_f_update_changer_handle); + _f_update_changer_handle.reset(); + } +} + +void SimpleSceneService::sceneFixedUpdate(Engine& engine) { + ZoneScoped; + const auto f_delta = engine.getFixedDeltaTime(); + + ::MM::EachSystemInScene(*_scene, [&](::MM::Scene& s, ::MM::System& fn) { + fn(s, f_delta); + }); + + TracyPlot("MM::Services::SimpleSceneService::_scene.alive", (int64_t)_scene->alive()); +} + +void SimpleSceneService::changeSceneFixedUpdate(Engine& engine) { + if (_next_scene) { + LOG_SSS("changing scene..."); + _scene = std::move(_next_scene); + _scene->set(&engine); // make engine accessible from scene + } +} + +void SimpleSceneService::changeScene(std::unique_ptr new_scene) { + if (_next_scene) { + LOG_SSS("warn: already next scene enqueued! overwriting..."); + } + + _next_scene = std::move(new_scene); + + //// ensure there are systems + //if (!_next_scene->try_ctx()) { + //_next_scene->set(); + //} +} + +void SimpleSceneService::changeSceneNow(std::unique_ptr new_scene) { + _scene = std::move(new_scene); + //_scene->set(&engine); // make engine accessible from scene + + //// ensure there are systems + //if (!_scene->try_ctx()) { + //_scene->set(); + //} +} + +} // MM::Services + diff --git a/framework/simple_scene/src/mm/services/simple_scene.hpp b/framework/simple_scene/src/mm/services/simple_scene.hpp new file mode 100644 index 0000000..79ce522 --- /dev/null +++ b/framework/simple_scene/src/mm/services/simple_scene.hpp @@ -0,0 +1,35 @@ +#pragma once + +#include + +namespace MM::Services { + + // provides an implementation for SceneServiceInterface + class SimpleSceneService : public SceneServiceInterface { + private: + std::unique_ptr _scene; + std::unique_ptr _next_scene; // enqueued next scene + + MM::Engine::FunctionDataHandle _f_update_handle; + MM::Engine::FunctionDataHandle _f_update_changer_handle; + + public: + const char* name(void) override { return "SimpleSceneService"; } + + bool enable(Engine& engine) override; + void disable(Engine& engine) override; + + void sceneFixedUpdate(Engine& engine); + void changeSceneFixedUpdate(Engine& engine); + + public: + Scene& getScene(void) override { return *_scene; } + + void changeScene(std::unique_ptr new_scene) override; + + // be carefull of that one + void changeSceneNow(std::unique_ptr new_scene) override; + }; + +} // MM::Services + diff --git a/framework/simple_scene/test/CMakeLists.txt b/framework/simple_scene/test/CMakeLists.txt new file mode 100644 index 0000000..7a32bdb --- /dev/null +++ b/framework/simple_scene/test/CMakeLists.txt @@ -0,0 +1,14 @@ +add_executable(simple_scene_test + ss_test.cpp +) + +target_include_directories(simple_scene_test PRIVATE ".") + +target_link_libraries(simple_scene_test + engine + simple_scene + gtest_main +) + +add_test(NAME simple_scene_test COMMAND simple_scene_test) + diff --git a/framework/simple_scene/test/ss_test.cpp b/framework/simple_scene/test/ss_test.cpp new file mode 100644 index 0000000..a30c6f0 --- /dev/null +++ b/framework/simple_scene/test/ss_test.cpp @@ -0,0 +1,70 @@ +#include + +#include +#include +#include + +TEST(simple_scene, add_en_dis) { + MM::Engine e; + + e.addService(); + + ASSERT_TRUE(e.enableService()); + + { + auto* sss = e.tryService(); + ASSERT_NE(sss, nullptr); + + auto& s = sss->getScene(); + auto e = s.create(); + ASSERT_TRUE(s.valid(e)); + } + + e.disableService(); +} + +TEST(simple_scene, add_en_dis_provide) { + MM::Engine e; + + e.addService(); + e.provide(); + + ASSERT_TRUE(e.enableService()); + + { + auto* ssi = e.tryService(); + ASSERT_NE(ssi, nullptr); + + auto& s = ssi->getScene(); + auto e = s.create(); + ASSERT_TRUE(s.valid(e)); + } + + e.disableService(); +} + +TEST(simple_scene, change_scene) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + { + auto* sss = engine.tryService(); + ASSERT_NE(sss, nullptr); + + auto e = sss->getScene().create(); + ASSERT_TRUE(sss->getScene().valid(e)); + + sss->changeScene(std::make_unique()); + + ASSERT_TRUE(sss->getScene().valid(e)); + + engine.fixedUpdate(); + + ASSERT_FALSE(sss->getScene().valid(e)); + } + + engine.disableService(); +} + diff --git a/framework/simple_sdl_renderer/CMakeLists.txt b/framework/simple_sdl_renderer/CMakeLists.txt new file mode 100644 index 0000000..7c83541 --- /dev/null +++ b/framework/simple_sdl_renderer/CMakeLists.txt @@ -0,0 +1,28 @@ +cmake_minimum_required(VERSION 3.2) +project(simple_sdl_renderer_service CXX) + +add_library(simple_sdl_renderer_service + src/mm/simple_sdl_renderer/target.hpp + + src/mm/services/simple_sdl_renderer.hpp + src/mm/services/simple_sdl_renderer.cpp +) + +target_include_directories(simple_sdl_renderer_service PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") +target_include_directories(simple_sdl_renderer_service PUBLIC "${SDL2_INCLUDE_DIR}") + +target_link_libraries(simple_sdl_renderer_service + engine + glm + sdl_service +) + +if(EMSCRIPTEN) + set_target_properties(simple_sdl_renderer_service PROPERTIES COMPILE_FLAGS "-s USE_SDL=2") + set_target_properties(simple_sdl_renderer_service PROPERTIES LINK_FLAGS "-s USE_SDL=2") +endif() + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/simple_sdl_renderer/src/mm/services/simple_sdl_renderer.cpp b/framework/simple_sdl_renderer/src/mm/services/simple_sdl_renderer.cpp new file mode 100644 index 0000000..1b8fc51 --- /dev/null +++ b/framework/simple_sdl_renderer/src/mm/services/simple_sdl_renderer.cpp @@ -0,0 +1,77 @@ +#include "simple_sdl_renderer.hpp" + +#include +#define LOG_CRIT(...) __LOG_CRIT( "SimpleSDLRenderer", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("SimpleSDLRenderer", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "SimpleSDLRenderer", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "SimpleSDLRenderer", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("SimpleSDLRenderer", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("SimpleSDLRenderer", __VA_ARGS__) + + +namespace MM::Services { + +SimpleSDLRendererService::SimpleSDLRendererService(void) { + MM::Logger::initSectionLogger("SimpleSDLRenderer"); +} + +SimpleSDLRendererService::~SimpleSDLRendererService(void) { +} + +bool SimpleSDLRendererService::enable(Engine& engine) { + auto* sdl_ss = engine.tryService(); + if (!sdl_ss) { + LOG_ERROR("SimpleSDLRendererService requires SDLService in engine!"); + return false; + } + + if (!sdl_ss->win) { + sdl_ss->createWindow("SimpleSDLRendererService Window", 800, 600); + } + + renderer = SDL_CreateRenderer( + sdl_ss->win, + -1, + SDL_RENDERER_ACCELERATED | + SDL_RENDERER_PRESENTVSYNC | + SDL_RENDERER_TARGETTEXTURE + ); + + if (!renderer) { + LOG_ERROR("could not create sdl_renderer"); + return false; + } + + _render_handle = engine.addUpdate([this](Engine& e){ this->render(e); }); + + targets["display"].reset(renderer, 800, 600); + + return true; +} + +void SimpleSDLRendererService::disable(Engine& engine) { + if (!_render_handle.expired()) { + engine.removeUpdate(_render_handle); + } + + processors.clear(); + + targets.clear(); + + SDL_DestroyRenderer(renderer); +} + +void SimpleSDLRendererService::render(Engine& engine) { + targets["display"].clear(renderer, {40, 40, 40, 255}); + + for (auto& p : processors) { + p(*this, engine); + } + + SDL_SetRenderTarget(renderer, NULL); + SDL_RenderCopy(renderer, targets["display"].texture, NULL, NULL); + SDL_RenderPresent(renderer); +} + +} // namespace MM::Services + diff --git a/framework/simple_sdl_renderer/src/mm/services/simple_sdl_renderer.hpp b/framework/simple_sdl_renderer/src/mm/services/simple_sdl_renderer.hpp new file mode 100644 index 0000000..aa923be --- /dev/null +++ b/framework/simple_sdl_renderer/src/mm/services/simple_sdl_renderer.hpp @@ -0,0 +1,38 @@ +#pragma once + +#include + +#include + +#include + +#include + +namespace MM::Services { + + class SimpleSDLRendererService : public Service { + public: + SimpleSDLRendererService(void); + ~SimpleSDLRendererService(void); + + SDL_Renderer* renderer = nullptr; + + std::unordered_map targets; + + std::vector> processors; + + private: + Engine::FunctionDataHandle _render_handle; + + public: + bool enable(Engine& engine) override; + void disable(Engine& engine) override; + + const char* name(void) override { return "SimpleSDLServiceSystem"; }; + + private: + void render(Engine& engine); + }; + +} // namespace MM::Services + diff --git a/framework/simple_sdl_renderer/src/mm/simple_sdl_renderer/target.hpp b/framework/simple_sdl_renderer/src/mm/simple_sdl_renderer/target.hpp new file mode 100644 index 0000000..e760bed --- /dev/null +++ b/framework/simple_sdl_renderer/src/mm/simple_sdl_renderer/target.hpp @@ -0,0 +1,33 @@ +#pragma once + +#include + +namespace MM::SimpleSDLRenderer { + + struct Target { + SDL_Texture* texture = nullptr; + + ~Target(void) { + SDL_DestroyTexture(texture); + } + + void reset(SDL_Renderer* ren, int width, int height) { + if (texture) + SDL_DestroyTexture(texture); + + texture = SDL_CreateTexture(ren, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, width, height); + } + + void clear(SDL_Renderer* ren, SDL_Color col = {0,0,0,255}) { + set(ren); + SDL_SetRenderDrawColor(ren, col.r, col.g, col.b, col.a); + SDL_RenderClear(ren); + } + + void set(SDL_Renderer* ren) { + SDL_SetRenderTarget(ren, texture); + } + }; + +} // MM::SimpleSDLRenderer + diff --git a/framework/simple_sdl_renderer/test/CMakeLists.txt b/framework/simple_sdl_renderer/test/CMakeLists.txt new file mode 100644 index 0000000..eaaad76 --- /dev/null +++ b/framework/simple_sdl_renderer/test/CMakeLists.txt @@ -0,0 +1,14 @@ +add_executable(simple_sdl_renderer_service_test + start_test.cpp +) + +target_include_directories(simple_sdl_renderer_service_test PRIVATE ".") + +target_link_libraries(simple_sdl_renderer_service_test + simple_sdl_renderer_service + sdl_service + gtest_main +) + +add_test(NAME simple_sdl_renderer_service_test COMMAND simple_sdl_renderer_service_test) + diff --git a/framework/simple_sdl_renderer/test/start_test.cpp b/framework/simple_sdl_renderer/test/start_test.cpp new file mode 100644 index 0000000..732f2c9 --- /dev/null +++ b/framework/simple_sdl_renderer/test/start_test.cpp @@ -0,0 +1,38 @@ +#include + +#include + +#include +#include + +TEST(simple_sdl_renderer, basic) { + srand(1); + MM::Engine engine; + + // sdl dep + { + engine.addService(); + ASSERT_TRUE(engine.enableService()); + } + + auto& ren = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + ren.processors.emplace_back([](auto& r, auto&) { + r.targets["display"].set(r.renderer); + + SDL_Rect rect { + rand() % 700, + rand() % 500, + 100, + 100 + }; + + SDL_SetRenderDrawColor(r.renderer, 255, 0, 0, 255); + SDL_RenderFillRect(r.renderer, &rect); + } + ); + + engine.run(); +} + diff --git a/framework/sound/CMakeLists.txt b/framework/sound/CMakeLists.txt new file mode 100644 index 0000000..9f85171 --- /dev/null +++ b/framework/sound/CMakeLists.txt @@ -0,0 +1,51 @@ +cmake_minimum_required(VERSION 3.2) +project(sound_service CXX) + +add_library(sound_service + src/mm/services/sound_service.hpp + src/mm/services/sound_service.cpp +) + +target_include_directories(sound_service PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") +#target_include_directories(service_sound PUBLIC "${SDL2_INCLUDE_DIR}") + +target_link_libraries(sound_service + #entt + soloud + logger + engine +) + +############################### + +add_library(filesystem_soloud_file + ./src/mm/soloud_filesystem_file_impl.hpp + ./src/mm/soloud_filesystem_file_impl.cpp + + ./src/mm/sound_loader_wav.hpp + ./src/mm/sound_loader_wav.cpp +) + +target_link_libraries(filesystem_soloud_file + filesystem_service + soloud +) + +############################### + +add_library(soloud_json + ./src/mm/soloud_json.hpp + ./src/mm/soloud_json.cpp +) + +target_include_directories(soloud_json PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(soloud_json + soloud + nlohmann_json::nlohmann_json +) + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + diff --git a/framework/sound/src/mm/services/sound_service.cpp b/framework/sound/src/mm/services/sound_service.cpp new file mode 100644 index 0000000..915b4c9 --- /dev/null +++ b/framework/sound/src/mm/services/sound_service.cpp @@ -0,0 +1,44 @@ +#include "./sound_service.hpp" + +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "Sound", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("Sound", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "Sound", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "Sound", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("Sound", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("Sound", __VA_ARGS__) + +namespace MM::Services { + +SoundService::SoundService(void) : engine() { + MM::Logger::initSectionLogger("Sound"); +} + +SoundService::~SoundService(void) { +} + +bool SoundService::enable(Engine&) { + unsigned int flags = SoLoud::Soloud::CLIP_ROUNDOFF; + auto r = engine.init(flags); + if (r != 0) { + LOG_ERROR("SoLoud initialization failed: {}", r); + return false; + } + + LOG_INFO("SoLoud v{} backend: {}", engine.getVersion(), engine.getBackendString()); + + return true; +} + +void SoundService::disable(Engine&) { + engine.deinit(); +} + +void SoundService::printErrorString(SoLoud::result errorCode) { + LOG_ERROR("error string: {}", engine.getErrorString(errorCode)); +} + +} // MM::Services + diff --git a/framework/sound/src/mm/services/sound_service.hpp b/framework/sound/src/mm/services/sound_service.hpp new file mode 100644 index 0000000..d7008f6 --- /dev/null +++ b/framework/sound/src/mm/services/sound_service.hpp @@ -0,0 +1,27 @@ +#pragma once + +#include + +#include + +namespace MM::Services { + + class SoundService : public Service { + public: + SoLoud::Soloud engine; + + public: + bool enable(Engine&) override; + void disable(Engine&) override; + + const char* name(void) override { return "SoundService"; } + + public: + SoundService(void); + ~SoundService(void); + + void printErrorString(SoLoud::result errorCode); + }; + +} // MM::Services + diff --git a/framework/sound/src/mm/soloud_filesystem_file_impl.cpp b/framework/sound/src/mm/soloud_filesystem_file_impl.cpp new file mode 100644 index 0000000..a1189c7 --- /dev/null +++ b/framework/sound/src/mm/soloud_filesystem_file_impl.cpp @@ -0,0 +1,71 @@ +#include "soloud_filesystem_file_impl.hpp" + +#include +#define LOGSLF(x) LOG("SoLoudFilesystemFile", x) + +namespace MM::SoLoud { + +FilesystemFile::FilesystemFile(Services::FilesystemService::fs_file_t file, Engine& engine) + : _file_handle(file), + _fs_ptr(engine.tryService()) { + + if (!_fs_ptr) { + LOGSLF("error: engine has no FilesystemService!"); + } + + if (!_file_handle) { + LOGSLF("error: created with invalid file handle!"); + return; + } +} + +FilesystemFile::~FilesystemFile(void) { +} + +int FilesystemFile::eof(void) { + if (!_file_handle) { + LOGSLF("error: invalid file handle!"); + return 0; + } + + return _fs_ptr->eof(_file_handle); +} + +unsigned int FilesystemFile::read(unsigned char* aDst, unsigned int aBytes) { + if (!_file_handle) { + LOGSLF("error: invalid file handle!"); + return 0; + } + + return _fs_ptr->read(_file_handle, aDst, aBytes); +} + +unsigned int FilesystemFile::length(void) { + if (!_file_handle) { + LOGSLF("error: invalid file handle!"); + return 0; + } + + return _fs_ptr->length(_file_handle); +} + +void FilesystemFile::seek(int aOffset) { + if (!_file_handle) { + LOGSLF("error: invalid file handle!"); + return; + } + + _fs_ptr->seek(_file_handle, aOffset); +} + +unsigned int FilesystemFile::pos(void) { + if (!_file_handle) { + LOGSLF("error: invalid file handle!"); + return 0; + } + + return _fs_ptr->tell(_file_handle); +} + +} // MM::SoLoud + diff --git a/framework/sound/src/mm/soloud_filesystem_file_impl.hpp b/framework/sound/src/mm/soloud_filesystem_file_impl.hpp new file mode 100644 index 0000000..ed36908 --- /dev/null +++ b/framework/sound/src/mm/soloud_filesystem_file_impl.hpp @@ -0,0 +1,32 @@ +#pragma once + +#include + +#include + +namespace MM::SoLoud { + +class FilesystemFile : public ::SoLoud::File { + private: + Services::FilesystemService::fs_file_t _file_handle; + Services::FilesystemService* _fs_ptr; // convinience + + public: + FilesystemFile(void) = delete; + FilesystemFile(Services::FilesystemService::fs_file_t file, Engine& engine); + FilesystemFile(const char* file_path, Engine& engine); + + ~FilesystemFile(void); + + // soloud api + public: + int eof(void) override; + unsigned int read(unsigned char* aDst, unsigned int aBytes) override; + unsigned int length(void) override; + void seek(int aOffset) override; + unsigned int pos(void) override; + +}; + +} // MM + diff --git a/framework/sound/src/mm/soloud_json.cpp b/framework/sound/src/mm/soloud_json.cpp new file mode 100644 index 0000000..83ad175 --- /dev/null +++ b/framework/sound/src/mm/soloud_json.cpp @@ -0,0 +1,102 @@ +#include "./soloud_json.hpp" +#include "nlohmann/json_fwd.hpp" + +#include + +namespace SoLoud { + +void to_json(nlohmann::json& j, const Sfxr& sfxr) { + j = nlohmann::json::object(); + +#define X(x) j[#x] = sfxr.mParams.x + X(wave_type); + + X(p_base_freq); + X(p_freq_limit); + X(p_freq_ramp); + X(p_freq_dramp); + X(p_duty); + X(p_duty_ramp); + + X(p_vib_strength); + X(p_vib_speed); + X(p_vib_delay); + + X(p_env_attack); + X(p_env_sustain); + X(p_env_decay); + X(p_env_punch); + + X(filter_on); + X(p_lpf_resonance); + X(p_lpf_freq); + X(p_lpf_ramp); + X(p_hpf_freq); + X(p_hpf_ramp); + + X(p_pha_offset); + X(p_pha_ramp); + + X(p_repeat_speed); + + X(p_arp_speed); + X(p_arp_mod); + + X(master_vol); + + X(sound_vol); +#undef X +} + +void from_json(const nlohmann::json& j, Sfxr& sfxr) { + if (j.empty()) { + sfxr.resetParams(); + } + + if (j.contains("preset")) { + sfxr.loadPreset(j["preset"].get(), j.value("preset_seed", 0)); + } + +#define X(x) if (j.contains(#x)) sfxr.mParams.x = j[#x] + X(wave_type); + + X(p_base_freq); + X(p_freq_limit); + X(p_freq_ramp); + X(p_freq_dramp); + X(p_duty); + X(p_duty_ramp); + + X(p_vib_strength); + X(p_vib_speed); + X(p_vib_delay); + + X(p_env_attack); + X(p_env_sustain); + X(p_env_decay); + X(p_env_punch); + + X(filter_on); + X(p_lpf_resonance); + X(p_lpf_freq); + X(p_lpf_ramp); + X(p_hpf_freq); + X(p_hpf_ramp); + + X(p_pha_offset); + X(p_pha_ramp); + + X(p_repeat_speed); + + X(p_arp_speed); + X(p_arp_mod); + + X(master_vol); + + X(sound_vol); +#undef X + +} + +} // SoLoud + diff --git a/framework/sound/src/mm/soloud_json.hpp b/framework/sound/src/mm/soloud_json.hpp new file mode 100644 index 0000000..25141e0 --- /dev/null +++ b/framework/sound/src/mm/soloud_json.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include + +#include + +namespace SoLoud { + + //SoLoud::Sfxr + void to_json(nlohmann::json& j, const Sfxr& sfxr); + void from_json(const nlohmann::json& j, Sfxr& sfxr); + +} // SoLoud + diff --git a/framework/sound/src/mm/sound_loader_wav.cpp b/framework/sound/src/mm/sound_loader_wav.cpp new file mode 100644 index 0000000..a9522a2 --- /dev/null +++ b/framework/sound/src/mm/sound_loader_wav.cpp @@ -0,0 +1,30 @@ +#include "./sound_loader_wav.hpp" + +#include "./soloud_filesystem_file_impl.hpp" + +#include + +namespace MM { + +std::shared_ptr<::SoLoud::Wav> SoundLoaderWavFile::load(const std::string& path, Engine& engine) const { + auto& fs = engine.getService(); + + if (!fs.isFile(path.c_str())) + return nullptr; + + auto h = fs.open(path.c_str()); + + MM::SoLoud::FilesystemFile sl_f(h, engine); + + auto ptr = std::make_shared<::SoLoud::Wav>(); + auto r = ptr->loadFile(&sl_f); + if (r != ::SoLoud::SO_NO_ERROR) { + // log error + return nullptr; + } + + return ptr; +} + +} // MM + diff --git a/framework/sound/src/mm/sound_loader_wav.hpp b/framework/sound/src/mm/sound_loader_wav.hpp new file mode 100644 index 0000000..02607e7 --- /dev/null +++ b/framework/sound/src/mm/sound_loader_wav.hpp @@ -0,0 +1,17 @@ +#pragma once + +#include +#include + +#include + +namespace MM { + + class Engine; + + struct SoundLoaderWavFile { + std::shared_ptr<::SoLoud::Wav> load(const std::string& path, Engine& engine) const; + }; + +} // MM + diff --git a/framework/sound/test/CMakeLists.txt b/framework/sound/test/CMakeLists.txt new file mode 100644 index 0000000..fdec025 --- /dev/null +++ b/framework/sound/test/CMakeLists.txt @@ -0,0 +1,19 @@ +add_executable(sound_service_test start_test.cpp) +target_include_directories(sound_service_test PRIVATE ".") +target_link_libraries(sound_service_test + sound_service + gtest_main +) +add_test(NAME sound_service_test COMMAND sound_service_test) + +add_executable(filesystem_soloud_file_test file_test.cpp loader_test.cpp) +target_link_libraries(filesystem_soloud_file_test + resource_manager + sound_service + filesystem_service + gtest_main + + filesystem_soloud_file +) +add_test(NAME filesystem_soloud_file_test COMMAND filesystem_soloud_file_test) + diff --git a/framework/sound/test/file_test.cpp b/framework/sound/test/file_test.cpp new file mode 100644 index 0000000..bdd92cd --- /dev/null +++ b/framework/sound/test/file_test.cpp @@ -0,0 +1,46 @@ +#include + +#include +#include +#include + +#include +#include +#include + +#include + +char* argv0; + +TEST(soloud_fs_file, basic) { + MM::Engine engine; + + // setup + auto& sound = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto& fs = engine.addService(argv0, "soloud_filesystem_file_test"); + ASSERT_TRUE(engine.enableService()); + + sound.engine.setGlobalVolume(0.4f); + + { + const char* file_path = "does_not_exist.wav"; + ASSERT_FALSE(fs.exists(file_path)); + MM::SoLoud::FilesystemFile sl_f(fs.open(file_path), engine); + + SoLoud::Wav w; + ASSERT_EQ(w.loadFile(&sl_f), SoLoud::SOLOUD_ERRORS::FILE_LOAD_FAILED); + } + + while (sound.engine.getActiveVoiceCount()) { + } +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} + diff --git a/framework/sound/test/loader_test.cpp b/framework/sound/test/loader_test.cpp new file mode 100644 index 0000000..1dedd47 --- /dev/null +++ b/framework/sound/test/loader_test.cpp @@ -0,0 +1,59 @@ +#include + +#include +#include +#include +#include +#include + +#include + +#include +#include +#include + +#include + +// inlining zip +#include "res/erik_gun_fx_1.zip.h" + +extern char* argv0; + +TEST(soloud_fs_loader, basic) { + MM::Engine engine; + + // setup + auto& sound = engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(argv0, "soloud_filesystem_loader_test"); + ASSERT_TRUE(engine.enableService()); + + auto& rm = MM::ResourceManager::ref(); + + ASSERT_TRUE(PHYSFS_mountMemory(erik_gun_fx_1_zip, erik_gun_fx_1_zip_len, NULL, "", NULL, 0)); + + + sound.engine.setGlobalVolume(0.4f); + + + ASSERT_FALSE(rm.contains("test"_hs)); + rm.load("test", "does_not_exist.wav", engine); + ASSERT_FALSE(rm.contains("test"_hs)); + + rm.load("test", "erik_gun_fx_1.flac", engine); + ASSERT_TRUE(rm.contains("test"_hs)); + + auto wh = rm.get("test"_hs); + + std::cout << "wav length: " << wh->getLength() << "s" << std::endl; + sound.engine.play(*wh); + + while (sound.engine.getActiveVoiceCount()) { + using namespace std::chrono_literals; + std::this_thread::sleep_for(5ms); + } + + rm.clear(); +} + diff --git a/framework/sound/test/res/erik_gun_fx_1.zip b/framework/sound/test/res/erik_gun_fx_1.zip new file mode 100644 index 0000000..4b96795 Binary files /dev/null and b/framework/sound/test/res/erik_gun_fx_1.zip differ diff --git a/framework/sound/test/res/erik_gun_fx_1.zip.h b/framework/sound/test/res/erik_gun_fx_1.zip.h new file mode 100644 index 0000000..8f6d895 --- /dev/null +++ b/framework/sound/test/res/erik_gun_fx_1.zip.h @@ -0,0 +1,905 @@ +unsigned char erik_gun_fx_1_zip[] = { + 0x50, 0x4b, 0x03, 0x04, 0x14, 0x00, 0x08, 0x00, 0x08, 0x00, 0xf0, 0x00, + 0x85, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc2, 0x29, + 0x00, 0x00, 0x12, 0x00, 0x20, 0x00, 0x65, 0x72, 0x69, 0x6b, 0x5f, 0x67, + 0x75, 0x6e, 0x5f, 0x66, 0x78, 0x5f, 0x31, 0x2e, 0x66, 0x6c, 0x61, 0x63, + 0x55, 0x54, 0x0d, 0x00, 0x07, 0x35, 0xd5, 0x25, 0x5a, 0x5a, 0x86, 0x9f, + 0x5c, 0x46, 0x86, 0x9f, 0x5c, 0x75, 0x78, 0x0b, 0x00, 0x01, 0x04, 0xe8, + 0x03, 0x00, 0x00, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x75, 0x78, 0x65, 0x54, + 0x54, 0xdf, 0x1b, 0xee, 0xa1, 0x19, 0xba, 0x63, 0x08, 0xe9, 0xee, 0x92, + 0x16, 0x10, 0x06, 0x86, 0x92, 0xee, 0x6e, 0x86, 0x4e, 0x91, 0x12, 0x69, + 0x86, 0xa1, 0xbb, 0x61, 0xc8, 0xa1, 0x5b, 0x40, 0x10, 0xa4, 0x53, 0x1a, + 0x95, 0x30, 0x10, 0x90, 0x56, 0xa4, 0x41, 0xe4, 0xe2, 0xef, 0xbf, 0xd6, + 0x5d, 0xf7, 0xcb, 0xdd, 0x6b, 0x9d, 0x73, 0xbe, 0xec, 0xb5, 0x9f, 0xe7, + 0x7d, 0xf7, 0xbb, 0x9f, 0xf3, 0xec, 0xd7, 0x49, 0xd3, 0xf6, 0x29, 0x00, + 0x00, 0x2c, 0x24, 0x00, 0x09, 0x00, 0x60, 0x84, 0x03, 0xd4, 0x8b, 0xf8, + 0x5d, 0xc0, 0x2f, 0x00, 0x60, 0x8f, 0x20, 0xc2, 0xbc, 0x11, 0xd8, 0x66, + 0x3f, 0x3e, 0x8f, 0x49, 0x3a, 0x2a, 0x0d, 0xdc, 0xf9, 0x40, 0x1f, 0x0d, + 0x00, 0x5c, 0x4c, 0x0f, 0x53, 0x7d, 0x1d, 0x9d, 0x1c, 0x7d, 0x1d, 0x3d, + 0xed, 0x1d, 0x99, 0xdc, 0x5d, 0xed, 0x20, 0x9a, 0x8a, 0x4f, 0x99, 0x84, + 0x05, 0x44, 0x05, 0x84, 0x99, 0x44, 0x84, 0x84, 0xc5, 0x84, 0x85, 0x45, + 0xc4, 0x1f, 0xa6, 0x00, 0xf7, 0x57, 0x93, 0xb8, 0x00, 0x17, 0xd9, 0x13, + 0x13, 0xf0, 0x80, 0x7a, 0xcb, 0x56, 0x7d, 0x85, 0xd5, 0xcf, 0xe7, 0x4c, + 0x5e, 0x04, 0x8f, 0x3d, 0x33, 0x85, 0xaa, 0xc4, 0x79, 0xb1, 0xc1, 0x4e, + 0x56, 0x66, 0x76, 0x55, 0x89, 0x36, 0x2c, 0xf5, 0xb6, 0x93, 0x6f, 0xec, + 0xec, 0xba, 0x6d, 0x6f, 0x50, 0x36, 0xad, 0x70, 0xdb, 0x40, 0x2b, 0x87, + 0x58, 0xd6, 0x5d, 0x08, 0x43, 0xbd, 0x84, 0x95, 0xe0, 0xdf, 0x42, 0xd1, + 0xf0, 0x79, 0x09, 0x8e, 0xf3, 0xd7, 0xd5, 0x58, 0x8f, 0x63, 0x7f, 0xb7, + 0x8f, 0x36, 0x35, 0xc6, 0x72, 0x23, 0x77, 0x56, 0xcf, 0xf7, 0xba, 0xec, + 0x46, 0x22, 0x1e, 0x00, 0x70, 0x75, 0x01, 0xf4, 0x92, 0x77, 0xc5, 0x83, + 0x1e, 0xef, 0x07, 0x02, 0xf0, 0x77, 0xc9, 0x6e, 0xba, 0x12, 0x37, 0xfd, + 0x0d, 0x2c, 0x67, 0x65, 0xb5, 0x3d, 0x0d, 0x15, 0x67, 0x4a, 0x54, 0x1d, + 0x19, 0xb5, 0x86, 0xdf, 0xe9, 0x65, 0xfa, 0x1b, 0x45, 0x8b, 0x9b, 0x66, + 0x62, 0x99, 0x2f, 0x31, 0x6f, 0x0c, 0x43, 0xbf, 0x62, 0x06, 0x6c, 0x46, + 0xd7, 0x6c, 0x47, 0x7f, 0xdb, 0xed, 0xa0, 0x3d, 0xe8, 0xd0, 0x3e, 0x16, + 0xf7, 0xfb, 0x69, 0x18, 0x74, 0x34, 0xa2, 0xb5, 0x1b, 0x3d, 0xb7, 0x3e, + 0xcc, 0x07, 0x91, 0xe0, 0x84, 0xd1, 0xe5, 0xc7, 0xa8, 0xfc, 0x5b, 0x5c, + 0x76, 0x0e, 0xc0, 0xf3, 0xc7, 0x96, 0x84, 0x5b, 0x48, 0x6d, 0x1f, 0xce, + 0x7a, 0xe9, 0xd9, 0xad, 0xdc, 0x96, 0xe1, 0x5d, 0xc5, 0xf4, 0x9d, 0x29, + 0x86, 0xfd, 0x2a, 0x83, 0x5c, 0x72, 0xfa, 0xa4, 0x68, 0x0b, 0x95, 0xb9, + 0xfb, 0x3a, 0x46, 0xb5, 0x75, 0x67, 0xb4, 0x27, 0x14, 0x8a, 0x5d, 0x17, + 0xb5, 0x7f, 0xcb, 0xf1, 0xb7, 0x84, 0xfb, 0x05, 0x3c, 0xf7, 0x25, 0x35, + 0x17, 0x62, 0x96, 0xf0, 0x35, 0x07, 0x75, 0xe8, 0xf3, 0xe6, 0xae, 0xb9, + 0x31, 0xf0, 0x76, 0x25, 0x48, 0x41, 0x44, 0xb9, 0x4c, 0x07, 0xb4, 0x69, + 0xc3, 0x87, 0x84, 0x14, 0x65, 0x00, 0xc0, 0xba, 0xeb, 0x01, 0x00, 0x03, + 0x18, 0x2d, 0xe6, 0xe9, 0xff, 0x5d, 0x96, 0xed, 0xd4, 0x98, 0xaf, 0x1b, + 0xd8, 0xd3, 0x1a, 0xdc, 0xba, 0x1a, 0x92, 0xfe, 0x29, 0xd8, 0xac, 0xf7, + 0x79, 0x2d, 0xc2, 0x1f, 0x4f, 0xc7, 0x6b, 0x12, 0xdf, 0x8d, 0x45, 0x46, + 0xc0, 0xb5, 0x7a, 0x9f, 0x83, 0x17, 0x49, 0xee, 0x89, 0x7c, 0xe2, 0x5d, + 0x6b, 0x7a, 0x02, 0xb3, 0xf0, 0x4e, 0x87, 0x78, 0xea, 0xd1, 0xed, 0x4f, + 0x72, 0xb0, 0x23, 0x23, 0x99, 0x19, 0x2f, 0xb9, 0xad, 0x63, 0x44, 0x3d, + 0xc0, 0x25, 0x7f, 0x47, 0x76, 0x18, 0x32, 0xb8, 0xcc, 0xba, 0xc6, 0x4b, + 0xa1, 0x92, 0x00, 0x55, 0xe6, 0xbf, 0xec, 0xd7, 0xdb, 0x96, 0xb9, 0x51, + 0xfd, 0x35, 0xc5, 0x2d, 0x36, 0xfb, 0x92, 0xa4, 0xd9, 0x8f, 0x6c, 0xc8, + 0xab, 0x9b, 0xd9, 0x6e, 0xe4, 0x5f, 0xac, 0xd3, 0x0a, 0xa9, 0x38, 0x3c, + 0x2f, 0x44, 0x38, 0x67, 0x4e, 0xed, 0x25, 0x27, 0xc6, 0x25, 0x24, 0x8a, + 0xc6, 0xc0, 0x4f, 0x23, 0xf7, 0x47, 0xba, 0x88, 0x50, 0x5d, 0x94, 0x95, + 0x57, 0xc6, 0xa5, 0x34, 0x6f, 0x72, 0x4d, 0xa5, 0x92, 0xa5, 0x2e, 0x5f, + 0xf1, 0x92, 0x67, 0x23, 0xe2, 0x5a, 0x04, 0xac, 0x17, 0x2b, 0x9c, 0x4a, + 0x75, 0x23, 0xeb, 0x49, 0xd8, 0x1c, 0x9a, 0x6d, 0xc3, 0xbe, 0xc2, 0x4b, + 0x01, 0xae, 0xfa, 0x87, 0xe5, 0xd1, 0xb8, 0xbe, 0xab, 0x66, 0xfd, 0xbc, + 0xd5, 0x7d, 0x2e, 0xb6, 0xf2, 0x8e, 0x5b, 0xfa, 0x9b, 0xa9, 0xec, 0x86, + 0x57, 0x58, 0x92, 0x9f, 0x9c, 0xb0, 0xf3, 0x1f, 0x42, 0xfd, 0x60, 0x9f, + 0xc7, 0x5d, 0xae, 0x94, 0x17, 0xb4, 0x84, 0x19, 0xf3, 0x82, 0x69, 0x1d, + 0x5a, 0xa9, 0x9c, 0xce, 0x69, 0x4d, 0xc1, 0x0b, 0x6f, 0x62, 0xc9, 0x35, + 0x12, 0xc8, 0x9f, 0x04, 0x81, 0xd8, 0x2f, 0x50, 0x04, 0xed, 0xdd, 0x94, + 0xe9, 0xdc, 0x4a, 0x69, 0x8f, 0x42, 0x96, 0x45, 0x07, 0xc1, 0x8c, 0x89, + 0x5b, 0xc4, 0xcd, 0x9f, 0x12, 0x2a, 0x9a, 0xa9, 0xaa, 0x84, 0x9a, 0x49, + 0xf3, 0x01, 0xcc, 0xef, 0xff, 0x02, 0x08, 0x4e, 0x9d, 0x36, 0x74, 0x7b, + 0xc9, 0x17, 0xf8, 0xec, 0x28, 0x70, 0x64, 0xd4, 0x71, 0x2e, 0x70, 0x71, + 0x69, 0xe7, 0xd7, 0xb2, 0xd1, 0xda, 0xa2, 0x44, 0xd5, 0xec, 0xa8, 0xc3, + 0xd4, 0x28, 0xc3, 0xd8, 0xc8, 0xea, 0x30, 0x7b, 0xf1, 0x3b, 0x4a, 0xaf, + 0x81, 0x23, 0xbd, 0x77, 0x47, 0x8a, 0x83, 0x61, 0xe2, 0x83, 0x45, 0x42, + 0x83, 0x45, 0x5c, 0x43, 0x84, 0x24, 0x23, 0x7c, 0x9f, 0x26, 0xb4, 0xc6, + 0x09, 0xce, 0x07, 0x66, 0x9e, 0x4f, 0x40, 0x04, 0x56, 0x2e, 0xd9, 0x76, + 0x5b, 0x05, 0x5e, 0xa6, 0x85, 0x1d, 0xcc, 0xb1, 0x86, 0xd6, 0xbe, 0xf2, + 0x2e, 0xfb, 0xab, 0x00, 0x28, 0xbb, 0x3c, 0x20, 0xe0, 0xd0, 0x24, 0x01, + 0xa6, 0xb5, 0xd8, 0x6c, 0x2b, 0xd1, 0x75, 0x2c, 0xa2, 0x7e, 0xb0, 0x9c, + 0xcb, 0xc1, 0x89, 0x17, 0xbe, 0x1f, 0x5e, 0xc0, 0xe6, 0x82, 0xa4, 0xbb, + 0x2f, 0xcc, 0xf2, 0x4e, 0xf7, 0xfd, 0x7d, 0xd4, 0xd5, 0x8f, 0x61, 0x8c, + 0x6e, 0x7a, 0x24, 0x5c, 0x7a, 0xb2, 0x95, 0x66, 0xae, 0x48, 0xbd, 0x1c, + 0xa6, 0xc6, 0xa1, 0xf2, 0xaa, 0x13, 0x8e, 0x26, 0x7a, 0x94, 0xb5, 0x62, + 0xdd, 0x6b, 0xdb, 0x86, 0xa6, 0xa0, 0xc6, 0xc3, 0xcb, 0x9b, 0xc3, 0x8b, + 0xdf, 0xb3, 0xa7, 0xfb, 0x49, 0x1e, 0xfb, 0x84, 0x76, 0xf9, 0x27, 0x1d, + 0x31, 0xaf, 0x07, 0x63, 0x06, 0x1e, 0xd6, 0x17, 0xfb, 0x05, 0xd0, 0xe1, + 0xe2, 0x65, 0x91, 0xb2, 0xc1, 0xa6, 0xc2, 0x18, 0xd0, 0x53, 0xb6, 0x95, + 0x8f, 0x3e, 0x7c, 0x5a, 0x0d, 0x1c, 0x9c, 0x0a, 0xd8, 0x1f, 0xe0, 0x57, + 0x1c, 0x3f, 0x1c, 0x7e, 0xff, 0x27, 0x60, 0x41, 0x56, 0x63, 0x71, 0x5a, + 0x7c, 0x49, 0x53, 0x70, 0xb1, 0x57, 0x6a, 0xa1, 0x5e, 0x69, 0xfe, 0x8f, + 0xd2, 0xfc, 0xba, 0xf4, 0x02, 0x82, 0x71, 0x29, 0x94, 0xc8, 0x38, 0x54, + 0xc3, 0x5c, 0x33, 0xcb, 0x86, 0xe0, 0xc0, 0xe1, 0x48, 0xd2, 0x65, 0xc6, + 0x0b, 0xb6, 0xf1, 0x51, 0xa2, 0x72, 0x05, 0x62, 0x3e, 0xab, 0xd2, 0x36, + 0xb0, 0x64, 0xbb, 0xe1, 0x19, 0x2f, 0xbe, 0xa5, 0x99, 0xfa, 0x00, 0x82, + 0x55, 0x14, 0x81, 0xa1, 0xfe, 0x4e, 0x2f, 0x52, 0x42, 0x2b, 0xde, 0x77, + 0xaa, 0x95, 0x6c, 0xbf, 0xe1, 0x58, 0x46, 0xc1, 0x70, 0xeb, 0xb8, 0xe2, + 0xe8, 0xab, 0x03, 0xdb, 0x52, 0x7b, 0x98, 0x86, 0xc3, 0xad, 0x32, 0xbb, + 0xb9, 0x62, 0x18, 0x52, 0x45, 0x6e, 0x52, 0x35, 0x69, 0x0b, 0xea, 0x71, + 0xab, 0xfe, 0x19, 0x53, 0x43, 0xeb, 0x4e, 0xbd, 0x6f, 0x0f, 0x1a, 0x36, + 0xae, 0xea, 0x51, 0xac, 0x3c, 0x63, 0xaf, 0xd0, 0x40, 0xaa, 0xbc, 0x85, + 0xd4, 0x8c, 0x26, 0x36, 0x1a, 0x6e, 0xf8, 0xae, 0x92, 0xfa, 0x85, 0x1f, + 0x36, 0x29, 0x92, 0x6a, 0x34, 0x00, 0x01, 0xa5, 0x8d, 0x1b, 0x99, 0x74, + 0x28, 0xdc, 0x34, 0x03, 0x01, 0xde, 0x0f, 0x48, 0x98, 0xfc, 0xf8, 0xf7, + 0xfa, 0xc6, 0x43, 0x23, 0x6c, 0x2b, 0x9f, 0xdc, 0x5f, 0xb9, 0x58, 0x0a, + 0x7a, 0x79, 0x04, 0xf9, 0xf0, 0x07, 0x7b, 0x69, 0x69, 0xc0, 0x7a, 0x2f, + 0x1d, 0x34, 0x11, 0x16, 0xd3, 0x54, 0x06, 0x7f, 0x2c, 0x67, 0x0e, 0xfb, + 0xc6, 0xf9, 0x41, 0x43, 0x7d, 0x0a, 0x03, 0x0d, 0xe6, 0x03, 0xe2, 0x3a, + 0xef, 0xe4, 0x58, 0x87, 0x0b, 0xd7, 0x26, 0xdc, 0x43, 0x67, 0x7b, 0x71, + 0x57, 0xfe, 0xf8, 0x58, 0xfe, 0xd9, 0x74, 0xb0, 0x54, 0x75, 0xdd, 0xc8, + 0xf3, 0xd0, 0xea, 0xf1, 0x60, 0xf8, 0x54, 0x15, 0xbb, 0xb0, 0xfc, 0x6d, + 0x38, 0x3a, 0xf3, 0x93, 0x95, 0xb6, 0xa8, 0xbb, 0xea, 0x83, 0xf6, 0x00, + 0xc4, 0x1a, 0x00, 0xd6, 0x49, 0x64, 0x2a, 0xa6, 0x51, 0xfe, 0xc7, 0xef, + 0xcf, 0xf5, 0xd8, 0x29, 0x0d, 0xe9, 0x0e, 0x2e, 0x57, 0xbe, 0x34, 0x2e, + 0x7c, 0xf7, 0x27, 0xb1, 0x55, 0xca, 0x60, 0xa7, 0x35, 0x84, 0x62, 0x76, + 0x4e, 0x80, 0x1f, 0xcf, 0x70, 0x49, 0x9a, 0x0a, 0x48, 0xda, 0xf2, 0x75, + 0xa1, 0xb1, 0xbd, 0x16, 0xa7, 0xea, 0xa4, 0xc5, 0x14, 0xeb, 0x23, 0x5d, + 0x14, 0xe6, 0x21, 0x4d, 0x7a, 0xaa, 0xc3, 0x6b, 0xb5, 0x80, 0x13, 0xbc, + 0x38, 0x95, 0x49, 0xa9, 0x5f, 0xb3, 0x92, 0xd2, 0x95, 0xe3, 0x36, 0x60, + 0x5c, 0x12, 0xd2, 0xed, 0x15, 0xec, 0xa3, 0x73, 0x99, 0x46, 0xe6, 0x0b, + 0x72, 0xa5, 0xcd, 0x9e, 0x45, 0x63, 0xfc, 0xa7, 0x60, 0x12, 0x11, 0x00, + 0x65, 0x33, 0xa8, 0x83, 0xc4, 0xc0, 0xb9, 0xce, 0xab, 0xd0, 0x37, 0x29, + 0x86, 0xed, 0xb0, 0xba, 0xe5, 0xa3, 0x44, 0xcc, 0xd8, 0x48, 0xe6, 0x88, + 0xfb, 0xd2, 0x6c, 0xa8, 0xca, 0x4a, 0x28, 0x95, 0x59, 0x28, 0xd4, 0x42, + 0xd6, 0xcc, 0x7c, 0x1d, 0x6a, 0xea, 0x4e, 0x6b, 0x68, 0xc1, 0x33, 0xa7, + 0x19, 0x3c, 0xd9, 0x3b, 0x37, 0x7c, 0xc4, 0x3e, 0x60, 0x08, 0x1b, 0x36, + 0xcc, 0x19, 0xcd, 0xaa, 0x1a, 0x5d, 0xce, 0x1c, 0xa1, 0xb4, 0x19, 0xd8, + 0xc6, 0x18, 0xf9, 0x13, 0x38, 0x7b, 0xa8, 0x6c, 0x39, 0xbd, 0xc8, 0x31, + 0xb7, 0x9d, 0x0e, 0x0a, 0x57, 0x74, 0xaf, 0x0b, 0x67, 0xa6, 0x47, 0xbe, + 0xd2, 0x2d, 0x5b, 0x02, 0x80, 0x77, 0x0f, 0x42, 0x0a, 0x50, 0x91, 0x09, + 0xe8, 0x6a, 0x3e, 0x21, 0xa4, 0xf1, 0xf3, 0xb1, 0x23, 0xbd, 0x2f, 0xa1, + 0x18, 0xeb, 0xcd, 0x26, 0x1f, 0xa7, 0xf2, 0x1b, 0xa5, 0xc2, 0xef, 0xa6, + 0x24, 0xaf, 0x22, 0xff, 0x91, 0x4a, 0x16, 0x12, 0xa8, 0xf3, 0xdd, 0x9c, + 0xa4, 0x45, 0x21, 0x5d, 0x85, 0x63, 0xb1, 0x85, 0xc4, 0x60, 0x1b, 0xfd, + 0xfc, 0x9c, 0x42, 0x62, 0x99, 0xf9, 0xb1, 0x2b, 0xf7, 0x65, 0x37, 0xff, + 0x63, 0x14, 0xcf, 0xa5, 0x1c, 0x4b, 0xa0, 0x2b, 0x59, 0x00, 0x25, 0xe6, + 0xa2, 0x16, 0x9b, 0x31, 0xb1, 0xc1, 0xf2, 0xa3, 0x2b, 0x2c, 0x33, 0x59, + 0x34, 0xe4, 0x6e, 0xf8, 0xdf, 0xe5, 0x8f, 0x82, 0x14, 0x71, 0x91, 0x99, + 0x23, 0xda, 0x38, 0xd0, 0x08, 0xf4, 0x2f, 0xff, 0x4e, 0x8e, 0xea, 0x40, + 0xbb, 0x38, 0x38, 0x44, 0xd6, 0x4c, 0xab, 0x2f, 0x7c, 0xf4, 0xc2, 0x6e, + 0x9e, 0x63, 0x72, 0x39, 0x76, 0x6f, 0x79, 0x74, 0x72, 0x61, 0x34, 0xfa, + 0x3d, 0x15, 0xef, 0xb8, 0xe3, 0xe8, 0x60, 0x80, 0xe3, 0xe0, 0x06, 0xd9, + 0x18, 0xdf, 0xdc, 0xa4, 0x45, 0xf9, 0x34, 0x41, 0xe2, 0x74, 0x6f, 0xec, + 0x54, 0x6f, 0xf1, 0x84, 0xe6, 0xe8, 0xa8, 0xec, 0xaf, 0x21, 0x4b, 0xda, + 0x81, 0x24, 0xd9, 0x77, 0x59, 0xda, 0x83, 0x2a, 0x90, 0x77, 0x94, 0xf3, + 0x85, 0x7c, 0xd3, 0x04, 0xe9, 0xc3, 0x72, 0x0c, 0xa3, 0x2a, 0x6b, 0x4b, + 0x12, 0x33, 0xdb, 0x8f, 0x2f, 0x6f, 0x36, 0x87, 0x8d, 0x6c, 0xee, 0x5a, + 0xbd, 0x31, 0xef, 0x62, 0x2f, 0x00, 0xf4, 0x2c, 0x85, 0x07, 0xb4, 0x33, + 0x61, 0xe7, 0xc9, 0x27, 0x97, 0x6a, 0xef, 0x0a, 0xd5, 0xcf, 0x92, 0xd6, + 0x17, 0x2a, 0x2c, 0xa7, 0x9b, 0xc2, 0xf9, 0x5a, 0xc3, 0xe9, 0x9b, 0x18, + 0x5a, 0xab, 0x2d, 0xa9, 0x8a, 0x0a, 0xdd, 0x33, 0x42, 0x3a, 0xe3, 0xc1, + 0xc7, 0x51, 0xb5, 0x7c, 0xc9, 0xa8, 0xa0, 0xdc, 0xf1, 0x85, 0xb2, 0x5d, + 0x25, 0x94, 0x9a, 0x78, 0x53, 0x4d, 0x51, 0x07, 0xee, 0x65, 0x37, 0x88, + 0xbf, 0xc7, 0x55, 0xae, 0x7b, 0x2a, 0x7d, 0xcd, 0x3d, 0x79, 0x0d, 0x88, + 0xed, 0x31, 0x8a, 0xde, 0x0b, 0xca, 0x18, 0xb7, 0xaa, 0xe6, 0x26, 0x1c, + 0xc0, 0x9b, 0xff, 0xec, 0x7e, 0xa9, 0xf4, 0x78, 0xa3, 0x61, 0xc2, 0xa7, + 0x82, 0x82, 0xfc, 0x82, 0x2b, 0xe8, 0x71, 0x21, 0x40, 0xfe, 0xaf, 0x0a, + 0xb1, 0x33, 0xf1, 0x2e, 0x75, 0x73, 0x7a, 0x47, 0xcf, 0x8e, 0x56, 0x10, + 0x56, 0x0e, 0x47, 0x38, 0x6e, 0x47, 0xba, 0x1e, 0x77, 0x66, 0xee, 0x45, + 0x12, 0xae, 0xf4, 0x37, 0x0e, 0xbd, 0xaf, 0x6d, 0x08, 0x7c, 0xcc, 0x35, + 0xb9, 0x8d, 0x42, 0x69, 0x16, 0x10, 0xd0, 0xd9, 0x50, 0x9f, 0xe9, 0xc3, + 0x94, 0x29, 0x82, 0x92, 0x49, 0xd9, 0x8a, 0x09, 0x44, 0xed, 0x78, 0xd2, + 0x54, 0xaf, 0xc7, 0x8c, 0xa6, 0xc6, 0xac, 0x3b, 0xdd, 0x02, 0x82, 0xc5, + 0xa8, 0xd0, 0xcb, 0x5c, 0xb6, 0xdf, 0x7a, 0x06, 0xcf, 0xfe, 0x48, 0xcb, + 0xd9, 0x23, 0xd2, 0xb5, 0x28, 0xdf, 0xd5, 0x32, 0xcc, 0x91, 0x90, 0xc2, + 0x6c, 0x5d, 0x14, 0x52, 0x54, 0xb0, 0x3d, 0xc4, 0x30, 0x8c, 0xfd, 0x4f, + 0xe6, 0x42, 0x4b, 0xd1, 0x3e, 0x7c, 0x8d, 0xb2, 0x5f, 0x9a, 0x36, 0x73, + 0xc3, 0x0f, 0x49, 0xb3, 0x43, 0xf2, 0x27, 0x9e, 0x1f, 0x3c, 0x5a, 0x70, + 0xe5, 0xed, 0x70, 0x71, 0x2f, 0x86, 0x56, 0x20, 0x6a, 0x11, 0x11, 0x32, + 0x7c, 0xf1, 0x6f, 0x62, 0x93, 0xe8, 0x2a, 0x92, 0xd6, 0xe0, 0x89, 0xe6, + 0xf2, 0x31, 0x37, 0xd3, 0xaf, 0xdc, 0xca, 0x77, 0x2b, 0xf2, 0xf6, 0xa4, + 0x53, 0x26, 0x96, 0x62, 0xe0, 0x4e, 0x51, 0xf9, 0x9f, 0xe1, 0x05, 0x42, + 0x29, 0xe6, 0x56, 0x69, 0xe6, 0x26, 0x29, 0xb7, 0x34, 0xf0, 0xe0, 0xf4, + 0x08, 0xd3, 0xb7, 0xc9, 0x2e, 0x48, 0x24, 0xd7, 0xcc, 0x1b, 0x9e, 0x9c, + 0x55, 0x82, 0x21, 0x05, 0xce, 0x81, 0x7a, 0x1f, 0x67, 0xaf, 0xb7, 0x1c, + 0x9a, 0x9a, 0x11, 0xae, 0xf1, 0xc0, 0xcb, 0x7f, 0xc7, 0x80, 0x4c, 0x93, + 0x87, 0xfd, 0x09, 0x63, 0x0a, 0xb5, 0xbe, 0x9f, 0xc5, 0x49, 0x4b, 0xb6, + 0xbf, 0x6e, 0xab, 0x78, 0xd8, 0x9b, 0x80, 0x91, 0xee, 0x00, 0x9f, 0x46, + 0xff, 0xac, 0x42, 0xbf, 0x80, 0x78, 0x11, 0x29, 0x5f, 0xa1, 0x6f, 0x66, + 0x97, 0xd8, 0x67, 0x6e, 0xd4, 0xa7, 0xcf, 0x38, 0x7f, 0xab, 0x4a, 0x08, + 0x9b, 0x2b, 0x79, 0x67, 0x68, 0x36, 0xd3, 0x1a, 0x0a, 0xa1, 0x2c, 0x84, + 0xb9, 0x6d, 0x4f, 0x5e, 0x39, 0x9c, 0xf4, 0x39, 0xb5, 0x7c, 0x73, 0x3c, + 0x79, 0x67, 0x7d, 0xa2, 0x65, 0xe0, 0xfd, 0x42, 0xa9, 0x79, 0x8c, 0xdb, + 0x37, 0x0a, 0xd7, 0x7f, 0x8a, 0x95, 0x7a, 0xcc, 0xb4, 0xe0, 0x65, 0x11, + 0x2e, 0xe8, 0xaa, 0x32, 0xae, 0x7e, 0xe2, 0xb4, 0xe2, 0x2d, 0xc8, 0x9a, + 0xe0, 0x0c, 0x20, 0xc6, 0xff, 0x27, 0x87, 0xa1, 0x70, 0x65, 0xed, 0xa6, + 0x52, 0x95, 0x3f, 0xdb, 0x46, 0x15, 0x56, 0x5b, 0xed, 0x7f, 0x0f, 0xb0, + 0x14, 0x0e, 0x2b, 0x95, 0x0e, 0xb0, 0xe8, 0x3f, 0x07, 0x69, 0xcb, 0x8b, + 0x43, 0xef, 0xb6, 0x55, 0x18, 0x52, 0x15, 0xf8, 0x15, 0x9f, 0x9e, 0xfd, + 0x55, 0xf5, 0x9f, 0x84, 0x0e, 0xa3, 0xd4, 0x97, 0x0a, 0xd4, 0xcf, 0xf2, + 0xd5, 0xfd, 0x8b, 0xa0, 0x5b, 0x65, 0x50, 0xe5, 0x6a, 0xb5, 0x76, 0x24, + 0x54, 0x2c, 0x55, 0x5d, 0xd9, 0x57, 0x33, 0x5a, 0xee, 0xd9, 0x19, 0xfa, + 0xe2, 0x92, 0xfa, 0x47, 0x83, 0xc2, 0x0d, 0x83, 0x93, 0x4d, 0x2c, 0x99, + 0xed, 0x65, 0xdf, 0x5d, 0xca, 0xc4, 0x5d, 0x2c, 0xbf, 0xef, 0xdb, 0x04, + 0xab, 0x14, 0x22, 0xa3, 0x2a, 0xa9, 0x0e, 0xb7, 0xf8, 0xc4, 0x61, 0xff, + 0x76, 0x73, 0x05, 0xc0, 0xc6, 0xc5, 0xc9, 0x28, 0xb2, 0xb0, 0x4a, 0x54, + 0x60, 0x23, 0x92, 0xe5, 0x64, 0xba, 0xd6, 0x2a, 0x75, 0xe6, 0xb3, 0x19, + 0x3b, 0x1d, 0x1d, 0xe2, 0xfc, 0xfb, 0x87, 0x70, 0x34, 0xf7, 0x5b, 0x36, + 0xbe, 0x8c, 0xc4, 0x1b, 0xda, 0xb1, 0x35, 0xc2, 0xbf, 0x03, 0xae, 0xed, + 0x7a, 0xb7, 0x88, 0x4c, 0x77, 0xdf, 0xc8, 0x83, 0x70, 0x1c, 0x99, 0x37, + 0xb7, 0x9f, 0x8a, 0xe8, 0x06, 0xe1, 0xb1, 0xb1, 0xd6, 0x17, 0xa7, 0x72, + 0x23, 0xe0, 0x70, 0xb1, 0xf7, 0x5e, 0x31, 0x6b, 0x1a, 0x1c, 0x92, 0x9c, + 0x19, 0x7d, 0xce, 0xfe, 0xe6, 0x41, 0xd2, 0xcb, 0xb2, 0x5e, 0x95, 0x16, + 0xb2, 0xba, 0xb5, 0xe8, 0x53, 0x1d, 0xe1, 0x72, 0x0e, 0x19, 0x8a, 0x0c, + 0xdf, 0xe0, 0x11, 0x68, 0x55, 0xa5, 0x0f, 0x98, 0x75, 0xba, 0x52, 0x13, + 0x45, 0xbf, 0x76, 0xcb, 0xf2, 0x6b, 0xbf, 0x22, 0x42, 0x93, 0x4b, 0xee, + 0xcc, 0x6a, 0x8a, 0x0a, 0x6b, 0xe5, 0x22, 0xab, 0xe5, 0x78, 0x4a, 0x7b, + 0x4b, 0x73, 0x0a, 0x6e, 0x92, 0x6e, 0xcd, 0xa2, 0x6f, 0x86, 0xa3, 0xe0, + 0x62, 0x89, 0x13, 0xb5, 0xe9, 0x28, 0x48, 0x0e, 0x14, 0xc8, 0x77, 0x19, + 0x28, 0xda, 0x8d, 0x2e, 0xad, 0xd1, 0x2e, 0xe7, 0x62, 0xac, 0xac, 0x21, + 0xaf, 0xae, 0x91, 0x42, 0xb9, 0xd8, 0xd6, 0xb9, 0x24, 0x35, 0xe0, 0x96, + 0xd7, 0xef, 0x16, 0xd5, 0x8e, 0x07, 0x54, 0xb9, 0x30, 0x14, 0x27, 0xc6, + 0x4e, 0x48, 0x64, 0xc4, 0xcb, 0x57, 0xa0, 0x70, 0xde, 0xe0, 0x55, 0x7e, + 0x40, 0x34, 0xdc, 0x0a, 0x3e, 0x31, 0x64, 0xe9, 0xb0, 0x52, 0x50, 0xdd, + 0x85, 0x33, 0xbd, 0x9d, 0x03, 0x86, 0xfe, 0x9d, 0x4c, 0x65, 0xef, 0x7c, + 0x8a, 0xe9, 0xa0, 0x69, 0x2b, 0x6d, 0x2d, 0xeb, 0x91, 0xd8, 0x27, 0xb3, + 0x3b, 0x0d, 0x4b, 0xb1, 0xb3, 0xcb, 0x54, 0xdd, 0x0b, 0xa3, 0x2f, 0xdf, + 0x77, 0x0a, 0x4e, 0x54, 0x2e, 0x0f, 0xab, 0x84, 0x0c, 0x6c, 0x70, 0x8e, + 0xb8, 0x7f, 0x9d, 0x20, 0x40, 0x4d, 0x21, 0x62, 0xa7, 0xa7, 0xfd, 0x67, + 0xf8, 0x7c, 0xa7, 0xdd, 0xc3, 0xa6, 0xf8, 0x52, 0x27, 0x10, 0x95, 0x63, + 0x87, 0x9d, 0xa3, 0xeb, 0x6f, 0xd7, 0xed, 0xa7, 0x0e, 0x1d, 0x27, 0xd7, + 0x43, 0xc7, 0xdd, 0xab, 0x87, 0xa7, 0xb7, 0x07, 0xb4, 0x78, 0x87, 0x3b, + 0x5e, 0x4c, 0x9c, 0x4f, 0xce, 0x06, 0x82, 0x97, 0x20, 0xc6, 0x1f, 0xaa, + 0x5e, 0x7c, 0xdc, 0xf1, 0xfd, 0xc0, 0x21, 0x3c, 0x77, 0x9e, 0x33, 0x14, + 0x6d, 0xf3, 0x91, 0x51, 0x51, 0x90, 0xfe, 0xe8, 0x1f, 0xf2, 0x2f, 0x21, + 0x20, 0xd3, 0xfb, 0x1b, 0x46, 0xa8, 0x06, 0x8f, 0xfd, 0x9a, 0x0a, 0x09, + 0x63, 0xae, 0x07, 0xc3, 0xf1, 0xe4, 0xc6, 0x7b, 0x57, 0xda, 0x76, 0x17, + 0x9d, 0x92, 0x09, 0xa7, 0x54, 0x98, 0x50, 0xcc, 0x64, 0xfb, 0x2b, 0xf0, + 0xef, 0xa8, 0x9e, 0xab, 0x28, 0xf0, 0x74, 0x04, 0x38, 0x3a, 0xba, 0x0e, + 0xe9, 0x92, 0x5f, 0xc4, 0xb5, 0x9e, 0x3b, 0x41, 0x95, 0xe9, 0xaa, 0x9d, + 0x3a, 0xe1, 0x99, 0x82, 0xb2, 0x48, 0xe3, 0xe6, 0xcb, 0x74, 0xd9, 0xca, + 0xad, 0x41, 0x14, 0xed, 0x0a, 0x20, 0x77, 0x59, 0xab, 0x5c, 0x8c, 0x6b, + 0xe2, 0xc3, 0x50, 0x35, 0x09, 0xd5, 0xe3, 0x1a, 0xa5, 0xbb, 0xd2, 0x59, + 0x09, 0x04, 0x31, 0x70, 0x96, 0x64, 0x19, 0xdf, 0xaa, 0x30, 0x8e, 0xd1, + 0x12, 0x87, 0x9f, 0xcb, 0x9c, 0xdc, 0xe7, 0xcb, 0x98, 0xd2, 0x25, 0xc3, + 0x94, 0xa3, 0x00, 0xd9, 0xfa, 0x03, 0x05, 0x8a, 0x08, 0xd6, 0x19, 0xce, + 0x8d, 0x21, 0x72, 0x72, 0x7d, 0xb3, 0x93, 0xa4, 0xb4, 0x76, 0xc2, 0xba, + 0x0e, 0xee, 0xf6, 0x00, 0x53, 0x4e, 0xf4, 0x02, 0x84, 0xf1, 0x2f, 0xce, + 0x87, 0x22, 0x5a, 0xd6, 0x34, 0xc2, 0xd0, 0x10, 0x4f, 0x79, 0x56, 0xfd, + 0xed, 0x6d, 0x18, 0x47, 0xc2, 0x56, 0x7b, 0x39, 0x49, 0x55, 0x10, 0xbf, + 0xe8, 0x60, 0xcd, 0x0e, 0xf4, 0x76, 0xcf, 0x4a, 0xfe, 0x74, 0xec, 0x7c, + 0xb5, 0x64, 0x22, 0x59, 0x57, 0xd6, 0xa0, 0xd8, 0x05, 0x2b, 0xc4, 0x46, + 0x80, 0xce, 0xd5, 0xfd, 0x23, 0x3c, 0x36, 0x48, 0xf9, 0xd7, 0xfb, 0x0f, + 0xfe, 0xef, 0xfb, 0xfb, 0x72, 0x3f, 0xe8, 0xdb, 0xa6, 0x64, 0x90, 0xcc, + 0xa9, 0xd4, 0xe3, 0xca, 0x92, 0x91, 0x80, 0x9c, 0xc6, 0xb9, 0xe4, 0xa6, + 0xb9, 0xae, 0x80, 0x90, 0xdd, 0x07, 0xe0, 0x4f, 0x2d, 0x44, 0x50, 0xe2, + 0x83, 0xdd, 0x8c, 0xfc, 0xda, 0x5e, 0xf8, 0xba, 0x45, 0xd1, 0x06, 0x4f, + 0xd5, 0x86, 0x77, 0x4d, 0x98, 0x5e, 0xc5, 0x9f, 0xb3, 0xe2, 0x50, 0xdf, + 0x6c, 0xba, 0x25, 0x84, 0x0c, 0x57, 0xa4, 0x59, 0x6c, 0x2c, 0xea, 0x2c, + 0x79, 0xc2, 0x33, 0x6b, 0xf7, 0xa6, 0x10, 0x37, 0xb7, 0xb4, 0xc6, 0xa0, + 0x5c, 0x8d, 0xaf, 0xa2, 0x86, 0xa8, 0x72, 0x1c, 0xab, 0x32, 0x1e, 0xa8, + 0xe0, 0x22, 0x40, 0xee, 0x52, 0x94, 0xc5, 0xf3, 0x15, 0xc7, 0x5b, 0xe4, + 0xab, 0x95, 0x66, 0x8e, 0xdf, 0x24, 0x83, 0x6c, 0x62, 0x5d, 0xd7, 0x23, + 0x0b, 0xaa, 0x76, 0xa7, 0x9a, 0xa1, 0x6e, 0xdd, 0x93, 0xa0, 0x41, 0x78, + 0xc6, 0x84, 0xfa, 0xcf, 0xe9, 0x3a, 0xfc, 0x29, 0xbc, 0xb1, 0x41, 0xd7, + 0xbb, 0x26, 0x17, 0x6b, 0x38, 0x7c, 0x73, 0x78, 0x39, 0x9d, 0x8e, 0xf1, + 0x81, 0x00, 0xc7, 0x57, 0xc0, 0xc2, 0xdb, 0x1a, 0x94, 0x39, 0x42, 0xda, + 0x04, 0x42, 0xf4, 0xf3, 0xa5, 0xae, 0xaf, 0xec, 0x9b, 0x0d, 0x4e, 0x4b, + 0x81, 0xdb, 0x72, 0x65, 0x4a, 0x69, 0x55, 0x53, 0x57, 0x09, 0x63, 0x56, + 0xb3, 0x5e, 0xc1, 0xbe, 0xc7, 0x24, 0x62, 0xc5, 0xee, 0xdf, 0xc7, 0xf2, + 0xac, 0x45, 0xe3, 0x55, 0x46, 0xc0, 0x2d, 0xa3, 0xcc, 0x28, 0xe3, 0x68, + 0x97, 0xe1, 0x52, 0x39, 0x49, 0x21, 0x59, 0xdd, 0xa0, 0xb4, 0x6b, 0x99, + 0x64, 0x5a, 0x2f, 0xb8, 0x69, 0x49, 0xec, 0xa7, 0xd9, 0xc8, 0x1e, 0xd2, + 0x48, 0x98, 0x61, 0x2c, 0xfc, 0x55, 0x02, 0x5e, 0x06, 0x1c, 0x5e, 0x94, + 0xc8, 0x93, 0x01, 0xe7, 0xb1, 0x8e, 0x41, 0xfd, 0x8c, 0xbc, 0x7e, 0x9c, + 0xd2, 0xa5, 0x5a, 0x4a, 0x73, 0xdc, 0x11, 0x1c, 0x38, 0xbb, 0xae, 0xf3, + 0x8b, 0x11, 0xa9, 0x65, 0x16, 0x54, 0x10, 0x7c, 0x85, 0x51, 0xa8, 0x24, + 0x0e, 0x60, 0xf5, 0x3c, 0xd8, 0x5a, 0x1a, 0xdf, 0x10, 0x11, 0xf6, 0xeb, + 0x7c, 0xba, 0x1d, 0x70, 0x03, 0x4b, 0x35, 0x11, 0x27, 0xb5, 0x1c, 0xea, + 0x91, 0x06, 0xb7, 0xaa, 0x52, 0xcd, 0x4b, 0x3e, 0x8e, 0x59, 0x10, 0xf3, + 0x23, 0xea, 0x43, 0xa9, 0xcd, 0x68, 0x8a, 0x7a, 0xbf, 0xa4, 0x3f, 0xc6, + 0x94, 0x98, 0xa4, 0x99, 0x5b, 0x12, 0x05, 0xd8, 0x43, 0xee, 0xef, 0xbd, + 0x69, 0x3c, 0xd3, 0x67, 0x76, 0xf5, 0x9e, 0x80, 0x5e, 0x7f, 0x92, 0x38, + 0xe5, 0xa6, 0x1b, 0x99, 0x02, 0x56, 0xb4, 0x19, 0x6b, 0x4c, 0x59, 0x2a, + 0xb3, 0xf0, 0x51, 0x0e, 0x43, 0xd9, 0xf8, 0x7b, 0x92, 0xe5, 0x6f, 0x16, + 0x1c, 0x79, 0x2b, 0x5d, 0x02, 0xa5, 0x90, 0x06, 0xfa, 0x4f, 0x11, 0x64, + 0x24, 0x52, 0x03, 0xd6, 0x0a, 0x34, 0x00, 0xf6, 0x19, 0x40, 0x03, 0xa3, + 0x3f, 0xa3, 0xc1, 0x45, 0x27, 0x8d, 0x00, 0xd0, 0x2c, 0xfe, 0xb9, 0xea, + 0x7f, 0x2a, 0x83, 0xfd, 0x83, 0xb5, 0x8d, 0x77, 0x9c, 0x97, 0x1c, 0xb5, + 0x9d, 0x4e, 0xb3, 0x5e, 0xf1, 0x6d, 0x0c, 0xce, 0x99, 0x91, 0xf1, 0x85, + 0x88, 0x9d, 0xb0, 0x5d, 0x51, 0x5a, 0x71, 0x7d, 0xcb, 0xe9, 0x53, 0x84, + 0x29, 0x87, 0xd2, 0x5a, 0xde, 0xbd, 0x2e, 0x6c, 0xfd, 0x67, 0x6b, 0xeb, + 0xc5, 0xf2, 0xe4, 0xad, 0x06, 0xef, 0x61, 0x6f, 0x77, 0x53, 0x1b, 0xa4, + 0x76, 0x16, 0x6c, 0xae, 0xb4, 0x5b, 0x44, 0x5c, 0x76, 0x86, 0x8d, 0x78, + 0xbf, 0xaa, 0x2f, 0x0c, 0xab, 0x8f, 0x69, 0xf5, 0xbe, 0xd8, 0x1d, 0x38, + 0x14, 0xf4, 0x6e, 0x81, 0x0a, 0x63, 0x69, 0xf8, 0xb0, 0x6b, 0x08, 0xd3, + 0x42, 0xbc, 0x1b, 0x64, 0x84, 0x44, 0xb9, 0x84, 0x53, 0x08, 0x4e, 0x43, + 0xa8, 0x57, 0x30, 0x20, 0xa6, 0xa2, 0x11, 0x45, 0x9c, 0xe3, 0x13, 0xdc, + 0x1a, 0xfa, 0x2a, 0x96, 0xa5, 0x6e, 0x6a, 0xe7, 0xa5, 0x18, 0x8b, 0x0f, + 0x7f, 0x2d, 0xca, 0x48, 0xbf, 0x74, 0xd2, 0xa0, 0x55, 0x46, 0x27, 0xb2, + 0x2a, 0x64, 0x1c, 0x46, 0x55, 0x93, 0x40, 0xcd, 0x73, 0x19, 0xae, 0xd7, + 0x62, 0x9c, 0x97, 0x8f, 0x38, 0x5e, 0xa2, 0xb1, 0x85, 0xaf, 0x21, 0xe5, + 0xdb, 0x4b, 0xc9, 0x92, 0x91, 0x2c, 0x9e, 0xac, 0x93, 0x06, 0xec, 0x3c, + 0xf2, 0x1c, 0x22, 0xfc, 0x55, 0xfb, 0xac, 0x3c, 0x3b, 0x6a, 0xf8, 0x31, + 0xcc, 0xfc, 0xed, 0xd1, 0x9d, 0xa4, 0x37, 0x2b, 0xaa, 0x75, 0x5a, 0x8c, + 0x7c, 0x5b, 0x81, 0x6d, 0xba, 0x3d, 0xd3, 0x10, 0x0d, 0x29, 0xca, 0xfa, + 0x2d, 0x83, 0x96, 0x34, 0x64, 0xab, 0xda, 0xa4, 0xa9, 0x48, 0xd5, 0x08, + 0x4b, 0x12, 0x95, 0x1d, 0xe9, 0x26, 0xc8, 0x19, 0xc5, 0xfd, 0x93, 0xab, + 0x47, 0x7e, 0x8a, 0xb7, 0x74, 0xa7, 0x43, 0x25, 0xa9, 0x31, 0x7e, 0xd5, + 0xeb, 0x9b, 0x65, 0x98, 0x16, 0xb5, 0x43, 0x60, 0xe6, 0x5f, 0x0e, 0x7a, + 0x62, 0xb3, 0xff, 0xd2, 0x01, 0xcc, 0x0e, 0x00, 0x68, 0xdf, 0x22, 0x38, + 0x72, 0x3d, 0x6c, 0x32, 0x9c, 0x9a, 0xa5, 0x0b, 0xdc, 0x14, 0x30, 0xcf, + 0xb8, 0x07, 0x94, 0x34, 0x74, 0x0c, 0x42, 0xe3, 0x92, 0xdf, 0x6e, 0xd4, + 0xbe, 0x7d, 0xfc, 0xb7, 0xd8, 0xc2, 0x2e, 0xb6, 0xd3, 0xdb, 0x6d, 0x07, + 0xa2, 0x2d, 0x66, 0x66, 0xb7, 0x15, 0xde, 0xb3, 0xfb, 0xc3, 0xe4, 0xed, + 0x64, 0x72, 0x2c, 0x12, 0xf5, 0x6c, 0x5b, 0xea, 0xa4, 0xba, 0x6f, 0x69, + 0xf6, 0x7d, 0x62, 0x69, 0x78, 0x7b, 0x49, 0x60, 0xcd, 0xa6, 0x71, 0xfe, + 0x01, 0xdd, 0x33, 0xdb, 0xfd, 0xba, 0xa2, 0x2c, 0xad, 0xc9, 0xfb, 0xbf, + 0x92, 0x86, 0x9d, 0xc0, 0xf9, 0x66, 0xdd, 0xe3, 0xf9, 0x63, 0x1c, 0xcf, + 0x5e, 0x4f, 0xf9, 0xbf, 0xc1, 0xb6, 0x04, 0x81, 0x64, 0x94, 0x7b, 0x82, + 0xce, 0xcf, 0xc5, 0xe9, 0x61, 0xe9, 0xdd, 0x97, 0x3f, 0xa9, 0x33, 0xa5, + 0x49, 0xfe, 0xe3, 0x80, 0x55, 0x07, 0x00, 0x78, 0x83, 0x18, 0x37, 0xd8, + 0xba, 0xb8, 0x16, 0x4e, 0x6d, 0x70, 0x71, 0x14, 0x76, 0x1a, 0x56, 0x68, + 0x1b, 0xf8, 0x91, 0x36, 0x43, 0x1f, 0x99, 0x80, 0xa3, 0x44, 0xb1, 0x71, + 0x2b, 0xa7, 0x93, 0x0b, 0x6b, 0x35, 0xf3, 0xdb, 0xaa, 0x38, 0x69, 0x75, + 0xb2, 0x9d, 0x1a, 0x50, 0x62, 0xd9, 0xf2, 0x19, 0x22, 0x07, 0x0f, 0x6a, + 0x02, 0xcd, 0xd2, 0xe5, 0x1c, 0x61, 0x2a, 0x35, 0x54, 0xe1, 0xa2, 0xc4, + 0x2b, 0x5d, 0xbc, 0x89, 0x7c, 0x36, 0x71, 0x2d, 0x5f, 0xdd, 0xfe, 0xab, + 0x94, 0x1c, 0x16, 0xaf, 0x31, 0x69, 0xc8, 0xc6, 0x33, 0x6c, 0xd0, 0x92, + 0x6a, 0xf7, 0x45, 0x49, 0x66, 0x8f, 0xc6, 0x87, 0x2d, 0x65, 0x8c, 0xcc, + 0x8b, 0x46, 0xed, 0x0f, 0x25, 0xb5, 0x47, 0x05, 0x59, 0xb9, 0x3e, 0x1e, + 0x8b, 0x19, 0x2a, 0xb1, 0xad, 0x79, 0x95, 0x35, 0xb4, 0x93, 0xcd, 0xaa, + 0xf5, 0x29, 0x39, 0x9b, 0x62, 0x99, 0xe7, 0xd3, 0x2d, 0x00, 0x69, 0x03, + 0xa0, 0xc9, 0xfd, 0xaf, 0x52, 0xee, 0x23, 0x72, 0x9b, 0xd8, 0x5e, 0xb7, + 0xc0, 0x3b, 0x77, 0xae, 0x19, 0x4e, 0xdd, 0xf5, 0x24, 0x87, 0xce, 0xc0, + 0x7a, 0x34, 0x34, 0x39, 0x36, 0x1c, 0xbc, 0xa5, 0xab, 0x7f, 0xa3, 0xdf, + 0x5e, 0xc1, 0xbe, 0x2a, 0x17, 0xef, 0x2f, 0xde, 0x2c, 0x8a, 0x73, 0x36, + 0x8e, 0xfc, 0x30, 0xbb, 0x3d, 0x08, 0x71, 0xf3, 0x3a, 0x3c, 0x6a, 0xe8, + 0x2b, 0xea, 0x6f, 0x91, 0x34, 0xbc, 0x24, 0xea, 0xfa, 0x6e, 0xf8, 0x67, + 0x35, 0xaa, 0x43, 0xf5, 0x9a, 0xeb, 0x89, 0xf3, 0xe2, 0xf9, 0x46, 0x45, + 0x10, 0xa5, 0x11, 0x7c, 0x64, 0x60, 0xdd, 0xf4, 0xfb, 0x4f, 0x4f, 0xd6, + 0x17, 0x91, 0xce, 0x35, 0xec, 0xe2, 0x6c, 0x4d, 0xf5, 0x06, 0x6d, 0xcd, + 0x90, 0xf8, 0xa9, 0xdc, 0x10, 0x17, 0x27, 0xa7, 0xfe, 0x41, 0x5c, 0xd5, + 0xc3, 0x9c, 0x65, 0x9f, 0xf8, 0x7c, 0x68, 0xd4, 0x2e, 0xfc, 0x2b, 0x83, + 0x26, 0xa6, 0x13, 0x00, 0xd0, 0xf9, 0xff, 0xc7, 0x84, 0xae, 0x82, 0x64, + 0x62, 0x65, 0x05, 0x2e, 0xfe, 0x61, 0x3a, 0x8b, 0x21, 0x2c, 0x20, 0x44, + 0xa5, 0x6e, 0x33, 0xdd, 0x84, 0x90, 0xa1, 0x11, 0x4e, 0x6a, 0x6c, 0x6d, + 0x29, 0xff, 0x02, 0xd3, 0x6f, 0x21, 0x95, 0x17, 0x57, 0xcd, 0x8d, 0x41, + 0x9e, 0xeb, 0x5c, 0x3b, 0xdf, 0x88, 0x4c, 0xdb, 0xac, 0x66, 0xcf, 0x87, + 0xa5, 0x72, 0x25, 0x3e, 0x47, 0x9d, 0xcd, 0xf0, 0x6d, 0xa2, 0x91, 0xaf, + 0x9c, 0xd1, 0x9e, 0x96, 0x16, 0x47, 0x25, 0x76, 0xf1, 0x22, 0x2c, 0x49, + 0x7d, 0xff, 0x05, 0x73, 0xed, 0xb0, 0x5d, 0xe3, 0xdc, 0xcd, 0xb0, 0x52, + 0x1d, 0x37, 0x56, 0xfd, 0x12, 0x49, 0x4b, 0x6a, 0x7e, 0x93, 0x0a, 0x4c, + 0x8e, 0xbd, 0xca, 0xe0, 0x57, 0xe2, 0x32, 0x8c, 0x68, 0xc3, 0x55, 0x35, + 0x9b, 0xbb, 0xf8, 0xf3, 0x6b, 0x39, 0x7d, 0xaa, 0x9b, 0xc3, 0x9f, 0x17, + 0xed, 0x25, 0xd3, 0xd3, 0x72, 0xbe, 0xeb, 0x3b, 0x5c, 0x53, 0x8f, 0x5a, + 0x39, 0xb3, 0xb8, 0x22, 0xcc, 0x7f, 0xfd, 0xc7, 0x68, 0x6e, 0x00, 0xc0, + 0xc1, 0x43, 0xb3, 0x19, 0xf4, 0x20, 0xfc, 0x0e, 0x10, 0xa4, 0xa2, 0xc9, + 0xa1, 0xab, 0xa1, 0xff, 0x95, 0x8d, 0x18, 0x4c, 0x7f, 0x77, 0xf4, 0x15, + 0x6c, 0x96, 0x68, 0x95, 0x72, 0x67, 0x5e, 0x20, 0xc5, 0x1d, 0x91, 0xf3, + 0xe2, 0x24, 0xa5, 0x8c, 0xda, 0x94, 0x54, 0x35, 0x32, 0xf5, 0xfa, 0x20, + 0x23, 0xcc, 0xe6, 0xa2, 0xf6, 0x51, 0x1f, 0x1a, 0xf4, 0x05, 0x8c, 0x71, + 0x44, 0x7f, 0xaa, 0x5e, 0x32, 0xe0, 0x25, 0xb8, 0x7c, 0x77, 0x41, 0xee, + 0x06, 0xe3, 0xd3, 0xf1, 0xdd, 0x85, 0xcb, 0x31, 0x96, 0x6a, 0x4d, 0x83, + 0xef, 0xf2, 0x85, 0xc4, 0xdb, 0xd1, 0xfd, 0xae, 0x41, 0xb3, 0x6a, 0x32, + 0x97, 0xe9, 0xb8, 0x3c, 0x51, 0x27, 0xe1, 0x25, 0x13, 0x29, 0xef, 0x6d, + 0x2a, 0xb9, 0x0a, 0xf0, 0xca, 0xbc, 0x6f, 0x21, 0xfb, 0xd7, 0xdf, 0x97, + 0x75, 0xef, 0x8b, 0x5f, 0xb2, 0xf9, 0x85, 0x18, 0xa6, 0xd9, 0x63, 0x06, + 0x8c, 0xdc, 0x5d, 0xe5, 0xd9, 0xea, 0xfe, 0xaf, 0x86, 0xec, 0x1f, 0x74, + 0xee, 0x23, 0xc8, 0x86, 0x34, 0xda, 0x65, 0xb0, 0x3c, 0x67, 0x3e, 0x64, + 0x83, 0xee, 0x6b, 0x1d, 0x15, 0xdd, 0xad, 0xde, 0xa5, 0xa6, 0x8a, 0x9b, + 0x9c, 0x3a, 0x27, 0xd6, 0x60, 0xe2, 0xc7, 0x48, 0x4c, 0xc7, 0xf1, 0x67, + 0x85, 0x65, 0xc9, 0x36, 0x51, 0x41, 0xdf, 0xbe, 0xa3, 0x63, 0x90, 0x58, + 0x31, 0x11, 0x3b, 0xce, 0x07, 0xed, 0x33, 0x81, 0x46, 0x7d, 0xfc, 0x3b, + 0x05, 0xa9, 0x62, 0xd2, 0x77, 0x8b, 0x1d, 0x48, 0x09, 0xe3, 0xa2, 0x12, + 0x06, 0x8e, 0x1d, 0x9f, 0x50, 0x61, 0xfa, 0x06, 0xa5, 0x6a, 0x92, 0xe2, + 0x71, 0xda, 0x9d, 0xc4, 0xef, 0x28, 0x53, 0xd0, 0xc4, 0x2e, 0x29, 0xc0, + 0x5b, 0xa8, 0xd7, 0xbf, 0x27, 0x10, 0xc9, 0xa4, 0xb3, 0xe6, 0x61, 0x0b, + 0x89, 0xbe, 0x47, 0x39, 0x2b, 0x21, 0xc7, 0xcf, 0xac, 0xe2, 0xb6, 0xad, + 0x1f, 0x15, 0xad, 0x2d, 0x4f, 0x18, 0x5a, 0xd9, 0xde, 0xcc, 0xd4, 0xb3, + 0xe2, 0x9a, 0xdb, 0x08, 0xb9, 0x00, 0x68, 0x84, 0xff, 0x91, 0x62, 0x34, + 0x11, 0x7b, 0x63, 0xcb, 0x5d, 0x68, 0x54, 0x27, 0xd9, 0x28, 0x1e, 0x68, + 0x56, 0x11, 0xf1, 0x1c, 0x44, 0x74, 0xdc, 0x4a, 0xbc, 0x4a, 0x9c, 0xa2, + 0xd3, 0x33, 0xbd, 0xb4, 0xd6, 0xe2, 0xc7, 0xf7, 0x6e, 0xed, 0x0d, 0xab, + 0x9b, 0xe6, 0x69, 0xa9, 0x38, 0xa3, 0xc5, 0x07, 0x29, 0x56, 0xbb, 0xef, + 0x33, 0x39, 0x88, 0xc0, 0x58, 0x81, 0x4f, 0x26, 0x8b, 0x96, 0x0e, 0x72, + 0x86, 0xe9, 0xe7, 0x44, 0x5a, 0x8b, 0xa6, 0xc6, 0x2a, 0x3b, 0x04, 0xd7, + 0xa8, 0x3a, 0xc9, 0x9d, 0xc3, 0xe5, 0x42, 0x3f, 0xc6, 0xc0, 0xc9, 0x1b, + 0x0c, 0xd6, 0xdd, 0x43, 0x8f, 0x2a, 0x61, 0xa3, 0x92, 0x61, 0xe9, 0x14, + 0x82, 0x7d, 0x77, 0x6e, 0xd4, 0xaf, 0x40, 0xd4, 0xbb, 0x9e, 0xe7, 0xc4, + 0x3f, 0x0e, 0xa3, 0xb2, 0xda, 0xe4, 0x39, 0x17, 0x25, 0x75, 0x61, 0xdb, + 0x12, 0x0c, 0xe5, 0xab, 0xf2, 0xd3, 0x5e, 0xeb, 0x68, 0x0b, 0xbf, 0x39, + 0x03, 0xa6, 0x2c, 0x73, 0xa8, 0xbd, 0xe9, 0x84, 0x13, 0xbe, 0x47, 0x07, + 0xf4, 0xdf, 0x91, 0xc4, 0x32, 0x13, 0xfc, 0x57, 0xdf, 0x8f, 0x71, 0x01, + 0xf4, 0x27, 0xaf, 0x06, 0x70, 0x2c, 0xa9, 0xe6, 0x72, 0xd8, 0x61, 0xa6, + 0x5d, 0x18, 0x73, 0x42, 0xa5, 0x09, 0xf2, 0xac, 0x5a, 0x1d, 0x42, 0x06, + 0xa3, 0x50, 0xfa, 0x3d, 0x89, 0x2c, 0x25, 0x76, 0x4c, 0x2e, 0x3d, 0x91, + 0x06, 0x7e, 0xae, 0xf9, 0x74, 0x15, 0xdc, 0xd0, 0xaa, 0x99, 0x91, 0x6e, + 0xdf, 0x15, 0xf6, 0xcf, 0x5e, 0xad, 0xa4, 0x4b, 0xaa, 0xaf, 0x13, 0x20, + 0xdd, 0x7c, 0xf3, 0x1c, 0x79, 0x98, 0x6b, 0x5c, 0x69, 0xae, 0xa9, 0x44, + 0xd4, 0x51, 0x1d, 0x83, 0xe7, 0x6e, 0x4f, 0x4c, 0x1d, 0xe8, 0x08, 0xa2, + 0x6c, 0x49, 0x08, 0x1e, 0x0f, 0xb1, 0x7f, 0x44, 0xe9, 0x0a, 0x70, 0x88, + 0xc5, 0x17, 0xa7, 0xa9, 0x67, 0x28, 0xaa, 0xf7, 0xe1, 0xb9, 0x57, 0x38, + 0x77, 0x2d, 0x68, 0x1f, 0x41, 0x6f, 0x2b, 0xd9, 0x3c, 0x1c, 0x2c, 0xeb, + 0x48, 0x58, 0x60, 0xd0, 0x1a, 0x5d, 0x43, 0xf6, 0x62, 0xb5, 0x1e, 0x79, + 0xba, 0xa2, 0x1a, 0xdf, 0xb0, 0x2e, 0xbf, 0xf6, 0x5c, 0x93, 0x93, 0x6f, + 0x8f, 0x22, 0x12, 0x6d, 0x00, 0x46, 0x9d, 0xff, 0xb6, 0x13, 0x8c, 0x77, + 0x31, 0x09, 0x1a, 0x23, 0x41, 0xbd, 0x67, 0x4f, 0xde, 0x90, 0xaf, 0x0a, + 0x33, 0x87, 0xde, 0x7b, 0xc4, 0x6d, 0xb7, 0x58, 0xc5, 0x16, 0xfa, 0xbd, + 0xc8, 0x6a, 0xdc, 0xec, 0x54, 0x8c, 0xf2, 0x14, 0xd1, 0xd9, 0x59, 0x2b, + 0xba, 0x30, 0x6d, 0x78, 0x4f, 0xf1, 0xe2, 0xe0, 0x37, 0x53, 0xb0, 0xb2, + 0x20, 0xed, 0xe5, 0x8a, 0xff, 0x5d, 0x9e, 0xab, 0x48, 0x83, 0x91, 0x6a, + 0xe3, 0x17, 0xbe, 0x1c, 0x19, 0xf1, 0xb7, 0x33, 0xb0, 0x0e, 0x93, 0x06, + 0x23, 0x5e, 0xf1, 0xd8, 0x29, 0xf3, 0x0e, 0x83, 0x46, 0x31, 0x99, 0xfb, + 0xcc, 0xb4, 0x0f, 0xec, 0x3e, 0xea, 0xc1, 0xbe, 0x17, 0x9a, 0x7d, 0x39, + 0xdc, 0x07, 0x6a, 0xbd, 0xd4, 0xcf, 0xa4, 0x1b, 0xdc, 0x74, 0x89, 0x92, + 0x07, 0xe1, 0xf7, 0x6c, 0x4d, 0x0c, 0xc0, 0xc4, 0xf9, 0x94, 0xd9, 0x86, + 0x27, 0x7e, 0x5c, 0x77, 0xb8, 0xd0, 0xf7, 0x2b, 0x56, 0x87, 0x8f, 0x89, + 0xb7, 0xb4, 0xc8, 0xbb, 0x8d, 0xcd, 0x67, 0xf2, 0x52, 0xff, 0xae, 0x6c, + 0x00, 0x49, 0x2f, 0x80, 0x0e, 0xbc, 0xd2, 0xc3, 0xb6, 0x26, 0x77, 0x89, + 0x76, 0x58, 0xd2, 0xcf, 0x0e, 0xde, 0x75, 0x8d, 0xf1, 0x0d, 0x51, 0xce, + 0x99, 0x48, 0xcb, 0x6f, 0xd2, 0x43, 0x05, 0xb8, 0x22, 0x03, 0x2e, 0x5e, + 0xd1, 0xe4, 0x13, 0x6e, 0xee, 0xca, 0xc4, 0x31, 0xc9, 0xdd, 0x44, 0x51, + 0xb3, 0xb0, 0x9b, 0xa0, 0x40, 0xfa, 0x95, 0x8e, 0x6c, 0x81, 0x7e, 0xd7, + 0x1f, 0x3f, 0x32, 0x53, 0x0f, 0xb7, 0x96, 0x16, 0xeb, 0x92, 0xa9, 0x23, + 0x41, 0x2e, 0x17, 0xa6, 0xb2, 0x59, 0xef, 0x47, 0x32, 0x12, 0x2c, 0x36, + 0x0d, 0x25, 0xa8, 0x08, 0xb1, 0x58, 0x5f, 0x51, 0xfc, 0xba, 0x0a, 0x0e, + 0x96, 0x91, 0xa7, 0x8b, 0x87, 0x28, 0x99, 0x1a, 0x34, 0x2a, 0x8b, 0x4a, + 0x16, 0x53, 0x29, 0x2f, 0x81, 0xf2, 0x02, 0x5f, 0x3e, 0x87, 0xb3, 0xe5, + 0x76, 0x3d, 0x83, 0x47, 0xd3, 0x1e, 0x65, 0x1b, 0x42, 0xf8, 0x79, 0xa0, + 0x8a, 0xb0, 0x00, 0x5e, 0xef, 0xca, 0x96, 0x1f, 0xf4, 0x58, 0x3c, 0xe9, + 0x45, 0x65, 0x74, 0x88, 0x5a, 0xc8, 0x3b, 0x06, 0x05, 0xf0, 0x12, 0x80, + 0x7d, 0xfc, 0x8f, 0x21, 0x41, 0x2a, 0x29, 0x7f, 0x60, 0xba, 0x13, 0x93, + 0x7e, 0xc1, 0x29, 0xb5, 0x64, 0x83, 0xc0, 0x99, 0x84, 0xe8, 0xf6, 0x27, + 0x2f, 0x7d, 0x13, 0xe9, 0x3b, 0xaa, 0xaf, 0xa7, 0x18, 0x3a, 0x23, 0x9a, + 0xaa, 0xb8, 0x47, 0x16, 0x09, 0x28, 0x51, 0xcf, 0xe0, 0x05, 0x29, 0x63, + 0x63, 0xfb, 0x99, 0x80, 0x24, 0xf1, 0x1d, 0xfe, 0x0f, 0x1f, 0xdb, 0xcc, + 0xed, 0x3d, 0x34, 0x52, 0xcf, 0x3a, 0x35, 0xe7, 0xf3, 0xd4, 0xb7, 0xc0, + 0x1b, 0x93, 0xf3, 0xf6, 0x5d, 0x46, 0xc7, 0xe2, 0x21, 0x95, 0xf2, 0x27, + 0x6a, 0xbd, 0x7a, 0x9e, 0xfe, 0x05, 0x31, 0x1c, 0xcb, 0xda, 0xcd, 0x4b, + 0x07, 0x86, 0xb0, 0xa4, 0xc0, 0x24, 0x97, 0xf3, 0x9e, 0xdf, 0xe3, 0x74, + 0x22, 0x90, 0xd0, 0x82, 0x24, 0x2e, 0xfb, 0xf1, 0xd5, 0xc7, 0x56, 0x3c, + 0x97, 0x33, 0xe8, 0x0d, 0x7d, 0xc1, 0xb3, 0x60, 0x97, 0xb2, 0xe0, 0x2b, + 0x3c, 0xd1, 0xf8, 0x27, 0x23, 0x5f, 0x85, 0xc7, 0x06, 0xa4, 0x07, 0x15, + 0xe8, 0x3b, 0x42, 0xdb, 0xfb, 0xfc, 0x7b, 0x7c, 0xd2, 0x39, 0xd6, 0xee, + 0xb6, 0xb6, 0xec, 0xc9, 0xfe, 0xf1, 0xc3, 0x83, 0x03, 0x38, 0x96, 0x38, + 0x41, 0x94, 0x6c, 0x77, 0xc9, 0x37, 0x4a, 0x5b, 0x53, 0x36, 0xc9, 0xd8, + 0xc9, 0x46, 0x2f, 0xb3, 0x54, 0xff, 0x68, 0x51, 0xd7, 0x2e, 0xe3, 0xe6, + 0x2e, 0xdf, 0x08, 0x58, 0xec, 0x72, 0x47, 0x94, 0x36, 0x52, 0x44, 0x5d, + 0x81, 0x31, 0x3f, 0xe3, 0x0a, 0x7b, 0x32, 0x2f, 0x23, 0x10, 0x94, 0x30, + 0x75, 0xdd, 0xbd, 0x18, 0x99, 0x6a, 0xb6, 0x85, 0x62, 0xbd, 0xfd, 0x57, + 0xea, 0xb5, 0x84, 0x5c, 0x35, 0x62, 0xf9, 0x65, 0x64, 0x4a, 0xd1, 0x50, + 0x1c, 0x26, 0x32, 0x62, 0xe5, 0xc5, 0x04, 0xcd, 0x39, 0x63, 0xa1, 0x1c, + 0xbc, 0x1d, 0x96, 0x17, 0x85, 0x08, 0xf7, 0x70, 0x49, 0xd9, 0x82, 0xcf, + 0x84, 0x8d, 0x55, 0x3f, 0x30, 0x42, 0x5e, 0x54, 0xce, 0xbd, 0xbd, 0x30, + 0x64, 0x49, 0x9d, 0x9c, 0x19, 0xcd, 0xf2, 0xdb, 0xc4, 0x45, 0x36, 0x89, + 0x74, 0xbe, 0x6f, 0xf2, 0x3b, 0x01, 0x33, 0xa5, 0x39, 0x4b, 0x7c, 0x12, + 0x06, 0xaa, 0x2e, 0x0a, 0xd9, 0x32, 0xca, 0x83, 0x54, 0xa3, 0xba, 0x68, + 0xbe, 0xd2, 0x2c, 0xc1, 0xdd, 0x09, 0x66, 0x1c, 0x0a, 0x05, 0xbb, 0x86, + 0x15, 0x4a, 0x4b, 0x01, 0xfb, 0xff, 0x8c, 0x82, 0x34, 0x3d, 0x83, 0x41, + 0xea, 0x0e, 0xa5, 0x1e, 0x5d, 0x1b, 0xb9, 0xc4, 0x11, 0xc1, 0x81, 0x78, + 0xd4, 0xc0, 0xca, 0xf1, 0x07, 0x5d, 0x29, 0xfa, 0xb3, 0x8f, 0xbf, 0xfd, + 0x84, 0x87, 0xa6, 0xee, 0xb1, 0x8f, 0xf8, 0x3c, 0x6a, 0x4e, 0x39, 0x02, + 0xe6, 0xae, 0x8d, 0x9f, 0x39, 0x10, 0x9a, 0x22, 0x02, 0xaa, 0x78, 0x56, + 0x72, 0xeb, 0x8c, 0x36, 0xef, 0xa0, 0xc9, 0x62, 0x55, 0x2a, 0x73, 0xdd, + 0x4f, 0x64, 0x1d, 0x0b, 0x3f, 0xe5, 0x8a, 0x52, 0x39, 0x4e, 0xbd, 0xa8, + 0xe6, 0xd9, 0xa8, 0xaa, 0x84, 0x55, 0xad, 0xee, 0x49, 0x4c, 0xf2, 0xb7, + 0xc6, 0xb9, 0x94, 0x9b, 0xb8, 0x8a, 0x4f, 0x1a, 0xda, 0xe5, 0x18, 0x54, + 0x1a, 0xa0, 0xfc, 0x27, 0x03, 0xc0, 0x95, 0xd7, 0xe6, 0xc7, 0x6d, 0xbf, + 0x2c, 0xfc, 0x7f, 0x4a, 0x19, 0x1f, 0x4a, 0x61, 0x60, 0x9f, 0x67, 0xb9, + 0x6c, 0xd4, 0x5c, 0x85, 0xe9, 0x05, 0xf2, 0xf7, 0xd8, 0x2d, 0x53, 0x70, + 0x58, 0x63, 0x1c, 0x2e, 0x11, 0xa4, 0xa9, 0xe1, 0x9e, 0x8c, 0xe3, 0x0b, + 0x6f, 0x81, 0x4e, 0xd2, 0x4c, 0xb5, 0x1b, 0xcc, 0x4c, 0x66, 0x48, 0x0f, + 0xb5, 0x1b, 0x9d, 0xe7, 0x95, 0xfe, 0x31, 0x15, 0xea, 0x02, 0xc4, 0x71, + 0xf9, 0x49, 0x62, 0x9d, 0xb1, 0x3d, 0x9f, 0x17, 0x42, 0xce, 0x91, 0x9f, + 0xb8, 0x74, 0xad, 0x9f, 0x0f, 0x07, 0xbc, 0xd3, 0x55, 0xaf, 0xd7, 0x46, + 0xa5, 0x99, 0xb0, 0x62, 0xb5, 0x46, 0x7e, 0x48, 0x07, 0x7d, 0xd9, 0x7d, + 0x16, 0xce, 0xd4, 0xb0, 0xf4, 0x6a, 0x25, 0x1f, 0x6c, 0x3c, 0xde, 0xa2, + 0x5f, 0xc1, 0x4e, 0x93, 0xad, 0x8f, 0x74, 0xd7, 0x04, 0x7d, 0xe3, 0xa9, + 0xde, 0xca, 0x2f, 0xd5, 0x53, 0x7f, 0x09, 0xe5, 0x3e, 0x62, 0xaf, 0x76, + 0xc8, 0x2d, 0x24, 0x42, 0x3a, 0xf3, 0xe6, 0x4c, 0xb1, 0xb7, 0xce, 0x5b, + 0xb4, 0x1b, 0xf2, 0x65, 0xe2, 0x57, 0xa4, 0x9f, 0x70, 0x35, 0x6a, 0xf0, + 0x91, 0x4c, 0xcd, 0xc6, 0xfc, 0x18, 0x9c, 0xba, 0x56, 0x83, 0x43, 0x38, + 0xe5, 0x33, 0x8b, 0xe0, 0x33, 0x23, 0x3b, 0x18, 0xea, 0x79, 0xf3, 0x14, + 0x57, 0x31, 0x2f, 0x55, 0xfa, 0x4a, 0xe9, 0xf4, 0x27, 0x8f, 0x88, 0xb6, + 0x1c, 0x45, 0x61, 0x4b, 0x5d, 0xda, 0x09, 0x9c, 0xf1, 0x9f, 0x85, 0x94, + 0x52, 0x21, 0x2b, 0xb0, 0xee, 0x1e, 0xbd, 0xb3, 0xdd, 0x83, 0xc4, 0x94, + 0x5a, 0x8f, 0x64, 0x84, 0x0f, 0x7a, 0xaf, 0x6b, 0xb6, 0x2c, 0x19, 0xc1, + 0xbf, 0x46, 0x8e, 0x27, 0x80, 0x29, 0x89, 0xd9, 0x26, 0xa7, 0x5b, 0x61, + 0xe6, 0xba, 0xa0, 0x33, 0x6f, 0xe4, 0xff, 0xe1, 0xbc, 0xa1, 0x20, 0xfb, + 0x89, 0x8d, 0x49, 0x8a, 0x81, 0x33, 0x41, 0x7f, 0xed, 0x49, 0xe0, 0xfb, + 0x41, 0x99, 0x44, 0x34, 0x81, 0x69, 0x82, 0xee, 0x66, 0xa2, 0x8f, 0xef, + 0xde, 0x50, 0x93, 0xec, 0x4f, 0xfb, 0x54, 0xfc, 0xb6, 0x0a, 0x9b, 0xea, + 0x6e, 0x13, 0xdd, 0xa1, 0xff, 0x92, 0x79, 0xfa, 0x19, 0x32, 0x47, 0x4b, + 0x2d, 0xbb, 0xc1, 0x72, 0x04, 0xe9, 0x5e, 0x68, 0xf0, 0x5f, 0xe3, 0x57, + 0x7a, 0xa7, 0x57, 0xbf, 0xbc, 0x2f, 0x3e, 0xa9, 0x15, 0x9c, 0x61, 0x52, + 0x65, 0xb0, 0x67, 0x08, 0xe3, 0x37, 0x4a, 0xd4, 0xae, 0x5c, 0xe0, 0xce, + 0x94, 0x7e, 0x7e, 0xf7, 0xe4, 0xb8, 0xe4, 0xf4, 0xd9, 0x69, 0x6d, 0xa0, + 0xe1, 0x75, 0x9d, 0x6c, 0x40, 0x38, 0xcc, 0x2b, 0x0c, 0xe7, 0xcb, 0xe7, + 0x98, 0x31, 0xc3, 0xf7, 0xed, 0x0e, 0x8f, 0x9e, 0x0f, 0xdf, 0x0b, 0x87, + 0x47, 0xd7, 0x96, 0xb3, 0xf3, 0x84, 0xc6, 0x57, 0x9e, 0xc0, 0x43, 0x07, + 0x41, 0x32, 0x64, 0x36, 0xbd, 0xdf, 0x33, 0x8c, 0x62, 0x7b, 0x5c, 0xee, + 0x40, 0x3f, 0xef, 0xc9, 0xca, 0x1b, 0xca, 0x87, 0x33, 0xd4, 0x20, 0x42, + 0xb3, 0x03, 0x68, 0xdd, 0x0f, 0xa6, 0x0d, 0x0d, 0x31, 0x22, 0xa1, 0x6e, + 0x9d, 0x06, 0x72, 0xc9, 0xaa, 0x88, 0x95, 0x26, 0x83, 0xfd, 0xc4, 0x53, + 0x1d, 0x43, 0x7d, 0x21, 0x28, 0xbb, 0xe5, 0x71, 0xfa, 0xb1, 0x87, 0x0f, + 0x2f, 0xf3, 0x18, 0x8f, 0xc9, 0x42, 0x2a, 0xe9, 0x72, 0x67, 0x89, 0xd6, + 0x60, 0xe6, 0x57, 0xcc, 0xaf, 0x16, 0x41, 0x60, 0x61, 0xd4, 0xa8, 0xd3, + 0x23, 0xaa, 0xf5, 0xe1, 0x1f, 0xdf, 0x70, 0x63, 0x43, 0xd9, 0xe8, 0xf1, + 0x20, 0x7a, 0x13, 0xde, 0x5d, 0x46, 0x42, 0x99, 0x04, 0x6c, 0x0b, 0xd7, + 0x0a, 0xad, 0x3a, 0x7c, 0xe4, 0x1a, 0x98, 0xad, 0x28, 0xb1, 0x0a, 0x28, + 0x77, 0x3a, 0x68, 0x0b, 0x69, 0x4a, 0x5f, 0xac, 0xc8, 0x49, 0x02, 0x4d, + 0x19, 0xfe, 0x91, 0x1e, 0xd2, 0xa2, 0x38, 0x5c, 0xba, 0xa3, 0x1a, 0x1a, + 0xc2, 0xdc, 0x4d, 0x46, 0x07, 0x75, 0x8f, 0x11, 0x8f, 0x5c, 0x2d, 0x63, + 0xeb, 0x8a, 0xd2, 0xc7, 0x43, 0xd7, 0xe2, 0x22, 0x16, 0x63, 0x22, 0xe8, + 0x8a, 0x4a, 0x17, 0x61, 0x57, 0x81, 0xa2, 0x61, 0x71, 0xb0, 0xc9, 0x21, + 0xd3, 0x21, 0x2d, 0xda, 0x32, 0x96, 0x5a, 0x5e, 0xcb, 0x61, 0x23, 0x2b, + 0x25, 0xac, 0xe6, 0xb2, 0x3e, 0x0e, 0x3f, 0x3b, 0x04, 0xeb, 0x49, 0x93, + 0xe9, 0x0c, 0xea, 0x5b, 0x5b, 0x71, 0x9e, 0x3d, 0x24, 0x1c, 0x54, 0x08, + 0xc8, 0x00, 0x1e, 0xa2, 0xea, 0x54, 0x45, 0x11, 0xe0, 0xfe, 0x1f, 0x9c, + 0x44, 0x46, 0x67, 0x01, 0x74, 0x06, 0xa3, 0x89, 0xd5, 0x54, 0xae, 0x04, + 0x47, 0x19, 0xe7, 0xf2, 0x5c, 0x1f, 0x4d, 0xe4, 0x37, 0xab, 0x70, 0xad, + 0x27, 0xf1, 0xbb, 0x5e, 0x3d, 0x11, 0x79, 0xfe, 0x35, 0xf7, 0x0f, 0x3b, + 0xf1, 0xed, 0x9d, 0xf4, 0x27, 0xcb, 0xc6, 0x4f, 0xb5, 0x81, 0x3d, 0x8e, + 0xa3, 0x71, 0xbe, 0x48, 0x73, 0x97, 0xce, 0x1e, 0x06, 0x64, 0x92, 0x6d, + 0xa5, 0xd1, 0x5e, 0x16, 0x2c, 0x46, 0xa2, 0x0e, 0x5a, 0xab, 0xc7, 0x43, + 0x01, 0x4f, 0xa2, 0x2a, 0x79, 0x5a, 0xa5, 0xbb, 0x7b, 0x16, 0xcc, 0xc0, + 0x18, 0xa7, 0x72, 0x5f, 0x11, 0xba, 0x70, 0xc7, 0xdd, 0x9d, 0xb3, 0x77, + 0x6d, 0x54, 0x96, 0xed, 0x72, 0x1d, 0x1b, 0x97, 0xe7, 0x7c, 0x9d, 0xfd, + 0x3c, 0xdf, 0xe9, 0xfa, 0xad, 0x65, 0xa9, 0x83, 0x19, 0x44, 0xb8, 0xc6, + 0x36, 0xff, 0x33, 0x5a, 0xb3, 0x8d, 0x1b, 0x36, 0x5e, 0x93, 0x0d, 0x4f, + 0x32, 0x5d, 0xc9, 0xf7, 0x6e, 0x6d, 0xb7, 0x18, 0xd8, 0xd5, 0xe6, 0x79, + 0xa9, 0x68, 0x01, 0xef, 0xab, 0xd1, 0xde, 0xbe, 0x04, 0xf4, 0xdf, 0xf1, + 0x29, 0x15, 0x4f, 0x65, 0x55, 0xdf, 0x64, 0xc3, 0x44, 0x0d, 0xec, 0x0b, + 0x2a, 0xa2, 0x34, 0xb0, 0x10, 0xff, 0x33, 0xa9, 0xf8, 0xc3, 0x0f, 0x4f, + 0x34, 0x81, 0xfb, 0xbf, 0x96, 0x3e, 0x9a, 0xa0, 0xc2, 0x7b, 0xed, 0x8e, + 0x7e, 0x9d, 0x39, 0x80, 0xc9, 0x46, 0x4e, 0xc1, 0x55, 0x91, 0x85, 0xa0, + 0x66, 0x10, 0xb4, 0x67, 0xc3, 0x51, 0x37, 0xd8, 0xdf, 0xb9, 0x34, 0x5a, + 0x21, 0x76, 0xdd, 0x69, 0x75, 0x3e, 0xff, 0x21, 0x2c, 0xe8, 0x4b, 0x31, + 0x75, 0x93, 0x69, 0x7f, 0xaf, 0xdd, 0xde, 0xca, 0x8b, 0x0e, 0x88, 0x9c, + 0xe0, 0x2b, 0x15, 0xbb, 0x66, 0xa8, 0x05, 0xcc, 0x8b, 0x31, 0x6f, 0x8c, + 0x43, 0x78, 0xcf, 0x5d, 0xef, 0x29, 0x41, 0xd2, 0x20, 0xb2, 0x19, 0x57, + 0x96, 0x03, 0x8b, 0x3c, 0x16, 0x62, 0x9b, 0x18, 0x6a, 0x30, 0x12, 0x96, + 0x3d, 0x42, 0xdf, 0xac, 0xe2, 0x91, 0x3b, 0xcf, 0x47, 0x36, 0xa1, 0x45, + 0x39, 0x23, 0xab, 0x3b, 0x22, 0x4b, 0xa2, 0xff, 0x5c, 0xda, 0x6f, 0x50, + 0x0c, 0xdf, 0x48, 0xd4, 0x64, 0x46, 0xa9, 0x3f, 0xf5, 0x1b, 0xa2, 0x93, + 0xd7, 0xc1, 0xca, 0x45, 0x98, 0x0e, 0xbb, 0xac, 0x54, 0x10, 0x0b, 0xf8, + 0x43, 0x6d, 0x30, 0x94, 0x4d, 0x76, 0xac, 0x09, 0xbd, 0xda, 0xa3, 0xb3, + 0x75, 0x20, 0x8d, 0x3f, 0x59, 0xf5, 0x9e, 0x9f, 0x12, 0x0d, 0x12, 0x2d, + 0x5e, 0x39, 0xd9, 0x55, 0x28, 0x3f, 0xe4, 0xba, 0xe6, 0x90, 0x78, 0x74, + 0x08, 0x7c, 0x7e, 0xa8, 0x1c, 0x90, 0xbb, 0xad, 0xd8, 0xe1, 0xe0, 0x99, + 0x1e, 0x15, 0x64, 0xd5, 0x11, 0x7a, 0x14, 0x13, 0xd6, 0x4b, 0xe5, 0xf9, + 0xdb, 0xe4, 0x36, 0xc1, 0xf4, 0x30, 0x4b, 0xbc, 0x36, 0xe3, 0x7d, 0xac, + 0x7a, 0x77, 0x00, 0xd5, 0x77, 0x07, 0xda, 0x58, 0x12, 0x3d, 0x8c, 0xa7, + 0x35, 0x4f, 0xa9, 0x99, 0xff, 0x78, 0x27, 0x9c, 0xec, 0xf3, 0x8d, 0x55, + 0x60, 0x0e, 0x7c, 0xd5, 0xa4, 0xa1, 0x24, 0x20, 0x27, 0x59, 0xb5, 0x4a, + 0xdc, 0x60, 0xbf, 0x14, 0x88, 0x26, 0xeb, 0xd9, 0xb0, 0x87, 0x19, 0x53, + 0xa5, 0xf0, 0x4e, 0xee, 0x8b, 0x55, 0x70, 0xe3, 0x41, 0xe6, 0x47, 0x75, + 0x56, 0x69, 0x97, 0x6c, 0xe1, 0x9b, 0x92, 0xfd, 0x9d, 0x99, 0xef, 0xbc, + 0x33, 0xe9, 0xf0, 0x14, 0x85, 0x1c, 0xb0, 0x00, 0xc5, 0x39, 0x77, 0x45, + 0xe2, 0xd1, 0x34, 0xc4, 0x2b, 0xf0, 0x78, 0xda, 0x74, 0x11, 0xeb, 0x54, + 0x7a, 0xe1, 0x04, 0xd7, 0x54, 0xda, 0x9f, 0x04, 0xa2, 0x21, 0x9d, 0xf6, + 0x27, 0x3c, 0x1a, 0xfe, 0x01, 0xac, 0x0e, 0xa6, 0x57, 0x4e, 0x9c, 0x28, + 0x98, 0x2c, 0xe4, 0xfe, 0x83, 0x9f, 0xdc, 0x0f, 0xba, 0x19, 0xd8, 0x8d, + 0xe3, 0x90, 0x8e, 0x32, 0x55, 0xad, 0x36, 0xc7, 0xdc, 0xe9, 0xff, 0x52, + 0x6e, 0xf8, 0x15, 0x40, 0xd3, 0x8c, 0x68, 0xc1, 0x98, 0xa1, 0x49, 0x3b, + 0xcf, 0x6c, 0x03, 0x00, 0x7d, 0x00, 0x5f, 0x01, 0xdd, 0x05, 0x33, 0x82, + 0x6a, 0x68, 0xce, 0x4d, 0x94, 0xe6, 0xd2, 0xe3, 0xf6, 0x63, 0xfe, 0xaf, + 0x10, 0x01, 0xd0, 0x8e, 0x22, 0x45, 0x85, 0x0f, 0x2b, 0xf5, 0x3a, 0x2e, + 0x0f, 0xfe, 0x5d, 0xea, 0xb1, 0x73, 0x02, 0xc4, 0x42, 0x33, 0x50, 0x7c, + 0x75, 0xcc, 0x9c, 0xa1, 0xfe, 0xb2, 0x6d, 0xfd, 0x8d, 0x5e, 0xfd, 0x44, + 0x0b, 0x93, 0x4a, 0x02, 0x15, 0x9b, 0x14, 0xd9, 0xae, 0x86, 0x96, 0xb1, + 0xe9, 0xd3, 0xe0, 0xe8, 0xbb, 0x22, 0x75, 0x9a, 0xe2, 0xba, 0x83, 0xdf, + 0x3d, 0x49, 0xa8, 0x00, 0x52, 0xfd, 0xd0, 0x22, 0x94, 0xff, 0xdb, 0x98, + 0x13, 0x7f, 0x4a, 0xef, 0x04, 0x7b, 0xa4, 0x12, 0x12, 0x67, 0x8a, 0xdc, + 0xa7, 0xc4, 0xd9, 0xfd, 0x11, 0x19, 0x7e, 0x2c, 0x87, 0x65, 0x6e, 0xf5, + 0x2a, 0x7a, 0x5e, 0x15, 0x2f, 0x38, 0xbf, 0xa3, 0xa6, 0xb6, 0x47, 0x24, + 0x29, 0x8f, 0x3d, 0xd7, 0x17, 0x27, 0x75, 0x67, 0x4a, 0xe0, 0xef, 0xda, + 0x2d, 0x1b, 0x0c, 0x99, 0x17, 0x52, 0xcf, 0xd5, 0x66, 0x45, 0xf5, 0xd1, + 0x2a, 0x82, 0xc9, 0x1b, 0xc0, 0x18, 0xfe, 0x5f, 0x99, 0xd8, 0x08, 0x2e, + 0xb8, 0xff, 0xf1, 0x8e, 0x57, 0xd2, 0x1d, 0x68, 0xb6, 0xbc, 0x35, 0x3f, + 0x78, 0xcc, 0xd8, 0xe6, 0xf8, 0xbd, 0x6d, 0xc3, 0x1c, 0x6b, 0x8c, 0xef, + 0x36, 0x32, 0xad, 0xba, 0xd2, 0x14, 0xfe, 0x28, 0xa1, 0xcc, 0x45, 0x40, + 0x56, 0xa9, 0xac, 0x4c, 0xc7, 0x45, 0x00, 0x0b, 0xe3, 0xab, 0x1a, 0x07, + 0x88, 0x30, 0x26, 0x19, 0x2e, 0x72, 0xa1, 0x53, 0xc2, 0x2c, 0xe0, 0x11, + 0xb3, 0xae, 0xc5, 0x7f, 0x20, 0xaf, 0x42, 0xb4, 0xd9, 0x3e, 0xd3, 0xc4, + 0x33, 0x4a, 0x5d, 0x75, 0xb4, 0x66, 0x74, 0xf1, 0x57, 0x14, 0x7f, 0xb0, + 0xa5, 0x76, 0x22, 0x8c, 0xf2, 0x1d, 0xa1, 0xb0, 0x2a, 0x7d, 0x9b, 0x73, + 0xb6, 0x98, 0x06, 0x81, 0xde, 0x8c, 0xc7, 0x87, 0xbd, 0x49, 0xcc, 0xfd, + 0xb4, 0xbb, 0x26, 0x8b, 0x0a, 0xf5, 0x6e, 0xb0, 0x87, 0x7f, 0x2c, 0xe1, + 0x1b, 0xff, 0x3f, 0x57, 0x67, 0xee, 0xe2, 0x84, 0x51, 0x42, 0x36, 0xb8, + 0x8a, 0x11, 0x4e, 0x8f, 0x88, 0x95, 0xa2, 0x4e, 0x7f, 0xfe, 0xca, 0xdd, + 0xd4, 0xaf, 0x6b, 0x08, 0xa3, 0x7b, 0xa9, 0x90, 0xa0, 0x15, 0x2c, 0x21, + 0x22, 0x2d, 0xa8, 0x2b, 0x80, 0x59, 0x8c, 0xcd, 0x07, 0x00, 0x53, 0xff, + 0x1a, 0x97, 0x00, 0xe5, 0x47, 0xcd, 0x68, 0x99, 0x7d, 0xcb, 0xe6, 0x50, + 0x54, 0xc0, 0x67, 0xb3, 0xb7, 0x31, 0xc3, 0x07, 0xeb, 0xe1, 0x1d, 0x3d, + 0x3f, 0xc0, 0x56, 0x94, 0xf0, 0x55, 0xa3, 0x22, 0x66, 0xc8, 0x44, 0xba, + 0x26, 0x3f, 0xe1, 0xa0, 0x90, 0xb2, 0x31, 0x05, 0xd4, 0x57, 0xec, 0x0d, + 0x97, 0x86, 0xaf, 0x72, 0xc1, 0x23, 0xb5, 0x96, 0xa5, 0x10, 0x30, 0xc4, + 0x47, 0x59, 0x95, 0x90, 0xb6, 0x42, 0xb0, 0xd6, 0x97, 0xb7, 0x96, 0xb2, + 0x92, 0xef, 0xc8, 0xd1, 0xb7, 0x2d, 0x0b, 0xcb, 0x54, 0xcf, 0xa0, 0x9b, + 0x66, 0x97, 0x87, 0x41, 0x59, 0x51, 0xe7, 0x58, 0x89, 0x52, 0xc5, 0x34, + 0xdb, 0x20, 0xcb, 0xc9, 0x94, 0xe4, 0xa9, 0x6a, 0x8b, 0xc4, 0x56, 0x8f, + 0x0e, 0x8b, 0x66, 0x14, 0x0f, 0xe6, 0xf8, 0x39, 0xd7, 0x7a, 0x1d, 0xac, + 0x08, 0xfe, 0x9a, 0x6f, 0xb5, 0x5a, 0x3d, 0x09, 0x76, 0x56, 0x35, 0x98, + 0x15, 0x67, 0x9c, 0x89, 0x45, 0xc9, 0x11, 0xb8, 0x49, 0x4b, 0xd2, 0x69, + 0x20, 0x94, 0x89, 0xf7, 0x73, 0x58, 0x7c, 0xdb, 0x7c, 0x21, 0xa4, 0x0e, + 0xac, 0x62, 0x73, 0x41, 0x0c, 0x88, 0x47, 0x78, 0x03, 0x72, 0x53, 0x2c, + 0xa1, 0xec, 0x42, 0x61, 0xac, 0xbd, 0xe8, 0xec, 0x00, 0x50, 0xfd, 0x9f, + 0x6f, 0xac, 0x88, 0x0b, 0xfc, 0x2d, 0x5d, 0x00, 0xa3, 0xc8, 0x3c, 0xe6, + 0x2d, 0x51, 0x9e, 0xbc, 0x24, 0x7c, 0x14, 0x38, 0x7b, 0x5e, 0xef, 0x25, + 0xd0, 0xfb, 0x0b, 0x1f, 0x7b, 0xb8, 0xd4, 0x79, 0x0f, 0x5b, 0x29, 0xea, + 0x1b, 0xae, 0x2f, 0x39, 0x02, 0x99, 0x87, 0x27, 0x9e, 0xce, 0xda, 0xcd, + 0x22, 0xf7, 0xf0, 0xc2, 0x13, 0x47, 0x20, 0x4d, 0xd2, 0xe9, 0xe2, 0xca, + 0xba, 0xec, 0xc8, 0xa3, 0x99, 0xba, 0xc8, 0x30, 0x22, 0x6c, 0x68, 0x28, + 0xae, 0x16, 0xe3, 0x72, 0x3d, 0x05, 0x4a, 0xa0, 0xcb, 0x8b, 0x5e, 0xd6, + 0xa3, 0x27, 0x5d, 0x9a, 0xf2, 0x0b, 0x99, 0x9f, 0x24, 0x3d, 0xe9, 0x62, + 0xe6, 0x83, 0x2c, 0xe4, 0x17, 0x1b, 0xd2, 0x83, 0xd6, 0x43, 0xab, 0x03, + 0x84, 0x3e, 0x9a, 0x2b, 0x95, 0xf3, 0xd4, 0xa3, 0x7e, 0x95, 0xbf, 0x4b, + 0x44, 0xd7, 0x74, 0xf5, 0x2e, 0x55, 0x89, 0x02, 0xcb, 0xaa, 0xe9, 0x1d, + 0x98, 0x8f, 0xa4, 0x38, 0xbd, 0x35, 0x0f, 0xf6, 0x51, 0xf8, 0x5b, 0x0a, + 0xcf, 0xfb, 0xb1, 0x9c, 0x9f, 0xc9, 0x73, 0xb1, 0xdf, 0x3b, 0x6a, 0xc0, + 0x9f, 0x30, 0x18, 0xaf, 0xfc, 0x68, 0x48, 0xc1, 0x94, 0xf8, 0x5d, 0x26, + 0x49, 0xe4, 0x95, 0x37, 0xc3, 0x98, 0xd2, 0xe1, 0xfb, 0xd4, 0x65, 0xce, + 0x55, 0x31, 0xe1, 0xea, 0x7f, 0xd4, 0x41, 0xee, 0x00, 0xa6, 0x08, 0xfe, + 0x9c, 0x33, 0x47, 0x90, 0x06, 0x3f, 0x2a, 0xa2, 0x32, 0x9a, 0x77, 0xcc, + 0xed, 0xb2, 0xb2, 0x5a, 0x46, 0x53, 0xa8, 0x9d, 0x1c, 0x3c, 0xb6, 0x58, + 0xb8, 0xad, 0x3e, 0x9f, 0x45, 0xc8, 0xa0, 0x3e, 0x97, 0x29, 0xbb, 0x2d, + 0x35, 0xad, 0xf7, 0xa7, 0x88, 0x75, 0x74, 0x5e, 0x96, 0x1f, 0x73, 0x40, + 0x28, 0x9a, 0x93, 0xf0, 0xa9, 0x30, 0x9b, 0x0c, 0xa9, 0xd2, 0xaf, 0xad, + 0x47, 0x84, 0x4a, 0x42, 0x67, 0x8f, 0x08, 0x15, 0x9a, 0xa3, 0x71, 0x5d, + 0x9c, 0x48, 0x11, 0x4f, 0xbb, 0x10, 0xcc, 0x6a, 0xcc, 0x6a, 0xd2, 0x2a, + 0xba, 0x70, 0x3f, 0xfa, 0x41, 0x8a, 0x1f, 0xc2, 0xd3, 0xcc, 0x38, 0x0a, + 0x7b, 0x24, 0x95, 0x34, 0x95, 0xb4, 0x71, 0xb6, 0xea, 0xba, 0x99, 0x4e, + 0x14, 0x91, 0x42, 0x31, 0xdc, 0xb0, 0xda, 0xda, 0xfa, 0x44, 0xae, 0xfa, + 0x56, 0x86, 0xca, 0x05, 0x50, 0x63, 0x1c, 0xe8, 0x77, 0xf2, 0xee, 0x3e, + 0x5c, 0x8d, 0xaf, 0x78, 0xdc, 0xbe, 0x67, 0xbd, 0xe3, 0x9a, 0xa7, 0xf2, + 0xb0, 0xa0, 0x33, 0xf8, 0xd3, 0xe4, 0xf6, 0x7d, 0x08, 0x1b, 0x43, 0x29, + 0xab, 0xc8, 0xa3, 0x98, 0x88, 0x2d, 0x5c, 0x40, 0x0f, 0x7d, 0x80, 0xd0, + 0x99, 0x64, 0xfa, 0x37, 0xdf, 0x0f, 0x9a, 0x71, 0xcf, 0x83, 0xec, 0xcc, + 0x3c, 0x3b, 0xb0, 0x79, 0x91, 0xad, 0x52, 0xc7, 0xbf, 0x28, 0x92, 0x01, + 0xb4, 0x0e, 0x9c, 0x63, 0x6e, 0xbb, 0xb1, 0x97, 0x04, 0x01, 0x76, 0xac, + 0x4f, 0x4e, 0xa3, 0x56, 0x04, 0x6e, 0x95, 0x42, 0xf2, 0x91, 0x26, 0x30, + 0xc6, 0xf8, 0x6d, 0x10, 0xc4, 0xbf, 0x60, 0xd7, 0xf5, 0x73, 0x74, 0xd1, + 0x8f, 0xbd, 0xb7, 0x9e, 0xd9, 0xdb, 0xae, 0x8c, 0x0a, 0x88, 0xcd, 0x9a, + 0x40, 0xb2, 0xc8, 0xaf, 0x34, 0x2c, 0x94, 0x31, 0x48, 0x1a, 0x5f, 0xd6, + 0x98, 0xb2, 0x0c, 0xdd, 0x7a, 0x39, 0xac, 0xa1, 0x2b, 0x33, 0xc2, 0x7e, + 0x81, 0xa4, 0xf4, 0xb0, 0xb7, 0xcb, 0xaf, 0xa7, 0xd2, 0x44, 0xcc, 0x8c, + 0xce, 0xeb, 0x0b, 0xc8, 0x39, 0xae, 0x79, 0x83, 0xad, 0x2e, 0xae, 0x5b, + 0x05, 0x88, 0x2f, 0xfa, 0x04, 0xa1, 0x12, 0x2f, 0xe6, 0xba, 0x24, 0x3e, + 0x77, 0x5c, 0xfb, 0x73, 0x12, 0x47, 0x6e, 0xbb, 0x2d, 0xfd, 0xed, 0x07, + 0x55, 0x8f, 0x1d, 0x57, 0xd3, 0x3d, 0xd2, 0xf8, 0xd1, 0x9c, 0x1e, 0x13, + 0x2f, 0x5e, 0x60, 0x78, 0x1c, 0x14, 0x35, 0x0a, 0x22, 0xc2, 0x8c, 0x28, + 0x95, 0xc5, 0x00, 0x34, 0xc7, 0x49, 0xdd, 0x7d, 0x28, 0x46, 0x49, 0xa6, + 0xe5, 0xd0, 0x15, 0x5a, 0x1c, 0x8c, 0x79, 0xd4, 0xdb, 0x31, 0x2f, 0xf5, + 0x0d, 0x24, 0xb2, 0x72, 0xc2, 0x2c, 0x83, 0x62, 0x0e, 0x12, 0xad, 0x82, + 0x54, 0xca, 0x5d, 0x9e, 0x9d, 0x62, 0x2a, 0xca, 0x1f, 0xab, 0x2f, 0xfd, + 0x33, 0x2d, 0x68, 0x77, 0x11, 0x58, 0x91, 0x34, 0xba, 0x57, 0xe9, 0x43, + 0x69, 0x66, 0xd0, 0xb1, 0x8b, 0xe3, 0x00, 0x44, 0xf6, 0x1c, 0x6a, 0x27, + 0x41, 0x80, 0xfe, 0xd5, 0xb7, 0xab, 0x1e, 0xd5, 0x4c, 0xf6, 0xeb, 0x48, + 0xfb, 0x3c, 0x8e, 0xbc, 0x41, 0x1f, 0x05, 0x0a, 0xf4, 0xd2, 0x39, 0x65, + 0x9b, 0xc4, 0x4f, 0x4a, 0xb2, 0xed, 0xd9, 0x7b, 0x82, 0x99, 0xb7, 0xf3, + 0x7a, 0x08, 0x8b, 0xd7, 0xd3, 0x96, 0xd3, 0xcc, 0x5b, 0xcd, 0x4b, 0xb9, + 0x97, 0xf4, 0x51, 0xeb, 0xa7, 0x60, 0x53, 0x7e, 0xa9, 0xca, 0x54, 0xa8, + 0x32, 0xd5, 0xef, 0x04, 0xa6, 0x56, 0x6c, 0xdd, 0x68, 0x7a, 0x5d, 0x1c, + 0x2e, 0x56, 0x1c, 0x26, 0xbd, 0x68, 0xc9, 0x41, 0x02, 0x1f, 0x55, 0x26, + 0x3d, 0x4c, 0xa1, 0x51, 0x9a, 0x21, 0x5c, 0x85, 0x64, 0x29, 0x84, 0x0f, + 0x01, 0x33, 0xc2, 0x3e, 0xd5, 0x01, 0xd1, 0x86, 0x9a, 0xd4, 0x23, 0xa9, + 0xb4, 0x47, 0x55, 0x42, 0x12, 0x44, 0x28, 0x5c, 0x49, 0x9c, 0x14, 0x93, + 0xc0, 0x14, 0x20, 0xbd, 0x5d, 0x2d, 0x94, 0xf6, 0xf2, 0x5a, 0xd6, 0x0f, + 0x68, 0xa2, 0x48, 0x03, 0xa2, 0xbb, 0xeb, 0xf8, 0x72, 0x9e, 0x92, 0xd4, + 0xc3, 0xb5, 0x2f, 0xa1, 0x01, 0xea, 0xfc, 0xdb, 0x5a, 0x99, 0x2e, 0xcb, + 0xe7, 0x22, 0x84, 0x9b, 0x80, 0xf5, 0x17, 0x6f, 0xd4, 0x2f, 0x82, 0x52, + 0xea, 0x08, 0x42, 0x1b, 0x34, 0x1b, 0x00, 0x9d, 0x1e, 0xdd, 0x05, 0x4d, + 0x0e, 0x78, 0xf8, 0xfe, 0x4f, 0x34, 0x25, 0x15, 0x8a, 0x73, 0x95, 0x53, + 0x40, 0x44, 0x15, 0xdb, 0xed, 0xa1, 0xc7, 0x5e, 0x6d, 0x43, 0xc7, 0x47, + 0x57, 0x52, 0xbd, 0x47, 0xc7, 0xdf, 0x65, 0xa2, 0x5b, 0x17, 0xd8, 0x4f, + 0x76, 0x0b, 0xc1, 0x38, 0x38, 0xd1, 0x2a, 0x76, 0x0b, 0x2f, 0x28, 0x3a, + 0xe5, 0x38, 0x93, 0xd4, 0xed, 0xf5, 0x72, 0x87, 0x8b, 0xb9, 0x59, 0xa3, + 0x55, 0xbe, 0x0a, 0x5d, 0x69, 0x4a, 0xd0, 0x81, 0x62, 0x87, 0x6c, 0xbd, + 0x3f, 0x16, 0xe2, 0x41, 0xf2, 0x79, 0xb1, 0x7e, 0xf7, 0x7e, 0x89, 0x3a, + 0x09, 0xf7, 0xd8, 0x0e, 0xab, 0x3e, 0xbb, 0x69, 0x32, 0xdc, 0xbf, 0x0e, + 0xac, 0xbf, 0xdf, 0xbf, 0x13, 0x0b, 0xcf, 0xe7, 0xaa, 0x5b, 0x32, 0xcd, + 0x03, 0xd7, 0x16, 0x7f, 0x58, 0xed, 0xbb, 0xe9, 0x08, 0x14, 0x1c, 0x09, + 0xad, 0xf2, 0x70, 0xe5, 0x0d, 0x59, 0x51, 0x37, 0xb3, 0x2c, 0x68, 0x32, + 0x33, 0xcb, 0xde, 0x13, 0xd1, 0x7a, 0xfb, 0x05, 0x73, 0xde, 0x7f, 0x23, + 0x7b, 0xc8, 0x56, 0xa8, 0xd0, 0xe2, 0xf3, 0xf2, 0xb1, 0x76, 0xf3, 0x49, + 0xe4, 0x30, 0x95, 0x9e, 0xe9, 0x09, 0x49, 0xf4, 0x30, 0x13, 0x09, 0x97, + 0x01, 0x3a, 0x08, 0x37, 0x4a, 0xc1, 0x6e, 0xee, 0x9a, 0xcd, 0xc9, 0x96, + 0xbd, 0x44, 0x73, 0xdf, 0x20, 0x84, 0x5d, 0x7b, 0x43, 0xbf, 0x55, 0x07, + 0x96, 0x01, 0xa6, 0xd0, 0x16, 0xe6, 0xc8, 0xde, 0x10, 0x0c, 0x4d, 0x86, + 0x6b, 0x16, 0xb5, 0x27, 0xbb, 0x1a, 0x88, 0xdb, 0xe3, 0xd2, 0x08, 0x91, + 0x0f, 0x00, 0x68, 0xe6, 0xff, 0x85, 0x86, 0x2d, 0x2b, 0x16, 0xdd, 0x87, + 0xdb, 0x3d, 0x50, 0xfd, 0xa1, 0x70, 0x74, 0xec, 0xc5, 0xd8, 0x8e, 0xef, + 0xb5, 0xf9, 0x39, 0xf6, 0x40, 0xb4, 0x34, 0x48, 0x09, 0x4d, 0x32, 0x02, + 0x11, 0x75, 0x46, 0xf6, 0x8d, 0xdd, 0x44, 0xbb, 0xbc, 0xb3, 0xb0, 0x71, + 0x39, 0x47, 0xa0, 0xcf, 0x23, 0x58, 0xad, 0xf3, 0x0d, 0xaf, 0xc8, 0x14, + 0x9f, 0xc4, 0x1b, 0xc1, 0x52, 0x43, 0x70, 0x42, 0xaa, 0x4e, 0x64, 0x53, + 0xfd, 0x01, 0xb1, 0xd0, 0x77, 0xf7, 0x9e, 0xa9, 0x68, 0x53, 0x4e, 0xd9, + 0xa7, 0x53, 0x92, 0x51, 0x9f, 0x43, 0x62, 0x84, 0x34, 0xde, 0x33, 0x2d, + 0x8c, 0x93, 0xb5, 0x28, 0x93, 0x85, 0xa4, 0x30, 0x2d, 0x68, 0x70, 0x8d, + 0x15, 0x9f, 0xe2, 0xb1, 0xb5, 0xc2, 0x99, 0x76, 0x18, 0xdf, 0xe1, 0xcb, + 0xc5, 0xca, 0xbe, 0x4e, 0xd7, 0x40, 0xb8, 0xb2, 0x72, 0xc7, 0x0a, 0x8f, + 0x30, 0xa9, 0xd2, 0x8e, 0xda, 0xc4, 0x4b, 0x11, 0xe8, 0x0b, 0x4d, 0xb2, + 0x16, 0x61, 0xea, 0x4b, 0xd1, 0x37, 0x1e, 0x2a, 0x8b, 0xcc, 0xd3, 0x2e, + 0x34, 0x38, 0x0e, 0x92, 0x8d, 0xb4, 0x6c, 0x31, 0x7a, 0x67, 0x60, 0xa6, + 0x91, 0x9a, 0x18, 0x48, 0xe0, 0x00, 0x71, 0xef, 0x90, 0xcd, 0x35, 0x87, + 0x76, 0xf6, 0x5c, 0xc5, 0xd3, 0x5c, 0xa7, 0xb5, 0x45, 0x64, 0xaf, 0x21, + 0x0d, 0x73, 0xb5, 0x7e, 0xa0, 0x7a, 0x3c, 0x0c, 0xc1, 0x2c, 0xe3, 0x43, + 0x30, 0x83, 0xf1, 0x06, 0x9e, 0xe9, 0xc7, 0x4d, 0x2a, 0xc3, 0x68, 0xcd, + 0x10, 0xa0, 0x34, 0x02, 0xf0, 0xf8, 0x4f, 0xd2, 0x2c, 0xd1, 0x59, 0xce, + 0x5e, 0x1c, 0x92, 0xd0, 0xce, 0xd4, 0xe1, 0x17, 0x2e, 0x1f, 0x74, 0x4a, + 0xcf, 0x78, 0x46, 0xc9, 0x20, 0x86, 0xd7, 0x52, 0xf1, 0x63, 0x23, 0xab, + 0x92, 0x4b, 0x53, 0xce, 0x0c, 0xed, 0x1b, 0x70, 0x7b, 0x05, 0xd4, 0xdc, + 0x4b, 0x0f, 0x20, 0x87, 0x87, 0x6b, 0x89, 0x2f, 0x9e, 0xdd, 0x1b, 0xd7, + 0x1e, 0x85, 0xb5, 0x65, 0xdf, 0xe4, 0xdf, 0x3a, 0xca, 0x77, 0xc2, 0xf9, + 0xb7, 0xff, 0xbe, 0x5e, 0xd1, 0xd7, 0x2a, 0xee, 0xcf, 0x64, 0x7d, 0x1d, + 0x3e, 0xfb, 0x65, 0x82, 0xa1, 0x75, 0xd6, 0xd4, 0xb8, 0x62, 0xc7, 0x98, + 0xaf, 0x36, 0xbf, 0xe6, 0xf5, 0x6b, 0xdf, 0xbb, 0xf1, 0xe5, 0xbf, 0x55, + 0x4d, 0x1f, 0x6e, 0xdc, 0x8e, 0x5e, 0x22, 0xf3, 0x43, 0x9c, 0x0e, 0x2f, + 0xf7, 0x8e, 0x28, 0x5e, 0x76, 0x7c, 0x85, 0x40, 0x04, 0x57, 0x3c, 0xb3, + 0xdb, 0x73, 0xf6, 0x04, 0x62, 0xe7, 0x83, 0xbf, 0xa8, 0x6f, 0xdf, 0x1e, + 0x65, 0x4f, 0xb9, 0x9e, 0xdf, 0x6b, 0x29, 0x36, 0xca, 0xa5, 0x4c, 0xad, + 0x3f, 0x7b, 0x09, 0x23, 0x8b, 0x7f, 0x2d, 0xd6, 0x04, 0x51, 0x56, 0x2a, + 0x15, 0x1a, 0x27, 0xe0, 0x21, 0x44, 0x8f, 0x53, 0xd8, 0x4c, 0x0d, 0xda, + 0x82, 0xa8, 0xe0, 0x27, 0x29, 0xda, 0xcd, 0x99, 0x62, 0x4a, 0x40, 0x49, + 0x33, 0x9f, 0x6e, 0xcd, 0xe5, 0x2e, 0x81, 0x29, 0xc1, 0x51, 0xd3, 0xac, + 0xfe, 0x09, 0x7d, 0xb5, 0x6d, 0xf0, 0xee, 0x1f, 0x82, 0x3d, 0x08, 0xed, + 0x45, 0xba, 0xc6, 0xde, 0xef, 0xa8, 0x00, 0xdc, 0xe8, 0x2f, 0xbd, 0x03, + 0x08, 0xa1, 0x87, 0xf8, 0xd0, 0xb3, 0x01, 0xcc, 0x69, 0x0a, 0x34, 0x4b, + 0x61, 0xe2, 0x35, 0x9d, 0xba, 0x1a, 0xf4, 0x01, 0xaa, 0x57, 0xde, 0x30, + 0x52, 0x70, 0x2e, 0xb7, 0x16, 0x85, 0xb5, 0x55, 0xdd, 0x73, 0xd0, 0x44, + 0x76, 0x26, 0x37, 0xcb, 0x5d, 0x07, 0x8a, 0x49, 0x11, 0x9d, 0x5b, 0x72, + 0x55, 0x45, 0xaf, 0x36, 0xcb, 0xbf, 0x9e, 0xd3, 0xd0, 0xd8, 0xcc, 0x23, + 0x27, 0xcf, 0x63, 0x85, 0xd1, 0x27, 0xc7, 0xc2, 0x26, 0xbd, 0x22, 0x9b, + 0x4d, 0x9b, 0x42, 0x71, 0x24, 0xdf, 0x74, 0xab, 0xd0, 0x55, 0x35, 0xdb, + 0x76, 0x2b, 0x9e, 0x09, 0xca, 0x49, 0xf5, 0x82, 0x05, 0x97, 0x4c, 0x21, + 0x12, 0xb3, 0x57, 0x11, 0x42, 0x0f, 0xdd, 0x2a, 0xd4, 0xad, 0xcc, 0xb6, + 0x75, 0xa2, 0xb1, 0xc5, 0x49, 0xf5, 0x51, 0xa1, 0x81, 0x56, 0xd0, 0xcf, + 0xf3, 0xd1, 0xe8, 0x45, 0xd3, 0x7f, 0x8b, 0xc7, 0xfd, 0x1a, 0x43, 0xff, + 0x1d, 0x57, 0xa8, 0x9a, 0xe6, 0x29, 0x91, 0x2d, 0x3a, 0x57, 0x00, 0x5e, + 0x59, 0xb6, 0x68, 0xbc, 0x1f, 0xfd, 0x98, 0x0f, 0x9e, 0x5e, 0x66, 0x8c, + 0x08, 0x5e, 0xa4, 0x14, 0xde, 0x71, 0x60, 0xbc, 0x4b, 0x8a, 0x44, 0x60, + 0xe1, 0x69, 0xf6, 0xc4, 0x74, 0x61, 0x83, 0xdd, 0x72, 0xf0, 0xa0, 0x3a, + 0xbf, 0x79, 0x6f, 0x4f, 0xe6, 0x87, 0xf7, 0x43, 0x73, 0xec, 0x43, 0x06, + 0x96, 0x7b, 0x42, 0x5f, 0xd4, 0x17, 0x59, 0xd5, 0xb1, 0xe1, 0xe8, 0xa3, + 0x40, 0xb3, 0x02, 0x4e, 0x14, 0x4b, 0x1c, 0x63, 0xee, 0x30, 0xbb, 0xf7, + 0x04, 0x1f, 0x3a, 0x27, 0x5d, 0x8c, 0x8e, 0x33, 0x75, 0x41, 0xd5, 0xcf, + 0xd0, 0xf8, 0xf2, 0xc4, 0x35, 0x59, 0x75, 0x2d, 0x6f, 0x23, 0x05, 0xec, + 0x7f, 0xdd, 0x03, 0x13, 0xa2, 0xda, 0x34, 0x54, 0xe9, 0x53, 0x47, 0x7f, + 0x7c, 0xcb, 0x3a, 0x0c, 0xef, 0x81, 0xd5, 0xa6, 0x8b, 0xc4, 0x8d, 0xe0, + 0x0f, 0x6a, 0xa8, 0x19, 0xae, 0xdf, 0x09, 0xbd, 0xd2, 0x8f, 0x89, 0x23, + 0x47, 0x6d, 0x5a, 0xba, 0x30, 0xb3, 0x49, 0xb9, 0x5f, 0xa9, 0xd9, 0xb8, + 0x1c, 0x41, 0xe7, 0xa6, 0x71, 0x37, 0x6e, 0xdf, 0x64, 0x2f, 0x6a, 0x59, + 0xa7, 0xe5, 0x05, 0xa7, 0x1d, 0xb8, 0xd4, 0x7e, 0xb1, 0x9e, 0x90, 0xed, + 0xa9, 0x15, 0x3c, 0xff, 0xf2, 0xe6, 0x52, 0xd7, 0xd1, 0x5f, 0x6d, 0xbd, + 0x0f, 0x5a, 0xb7, 0xf0, 0xc4, 0x72, 0x3d, 0xed, 0x96, 0x07, 0x79, 0x13, + 0xf0, 0xa5, 0xf6, 0xcb, 0xc6, 0x5a, 0x5f, 0x00, 0xc5, 0x07, 0x2d, 0x43, + 0xe3, 0xb5, 0x3e, 0xe7, 0xa3, 0xa5, 0xde, 0xc4, 0xe5, 0xb7, 0x4d, 0x4b, + 0x8b, 0x37, 0xfd, 0xc6, 0x7c, 0xcb, 0xc5, 0x77, 0x72, 0x75, 0xfd, 0xf7, + 0xfd, 0x3f, 0x6f, 0x8a, 0x8c, 0x13, 0x45, 0xff, 0x8e, 0x6f, 0xe3, 0xbf, + 0xdb, 0x0d, 0xa7, 0x54, 0xf1, 0x2d, 0x49, 0xd1, 0x36, 0x91, 0x7b, 0xbe, + 0xff, 0xa7, 0xb7, 0xd9, 0xc2, 0x30, 0xb9, 0xab, 0xad, 0x96, 0x92, 0x81, + 0x12, 0x4f, 0x7b, 0x99, 0xd5, 0xe5, 0x13, 0xd9, 0xfc, 0x52, 0x03, 0x9f, + 0x22, 0x41, 0x83, 0x3f, 0xbb, 0xb6, 0x22, 0x4f, 0x4b, 0x20, 0xfb, 0x8c, + 0x6f, 0xa2, 0x96, 0xbb, 0x2d, 0x3e, 0x73, 0x74, 0xa9, 0xf9, 0x4e, 0xa3, + 0x12, 0xb1, 0xca, 0x3e, 0x7f, 0x65, 0x57, 0x7a, 0x31, 0x4c, 0x95, 0x92, + 0x08, 0xff, 0x95, 0x4d, 0x2e, 0xae, 0xbc, 0x75, 0x95, 0x57, 0xa7, 0x75, + 0xcc, 0xe7, 0xe1, 0x8d, 0xe8, 0xa5, 0x1b, 0xdb, 0x7d, 0xba, 0xff, 0xaa, + 0x17, 0x3d, 0x14, 0x00, 0xca, 0x30, 0x9a, 0xb9, 0x55, 0x5a, 0xf2, 0x8d, + 0xa5, 0xcd, 0x13, 0xda, 0x47, 0x7f, 0xb2, 0xbf, 0x65, 0x2b, 0xa2, 0x30, + 0xf0, 0x1f, 0x66, 0x67, 0x93, 0xcb, 0x2c, 0xda, 0xea, 0x3b, 0x9b, 0x39, + 0x6b, 0xc4, 0x6c, 0x68, 0x97, 0x33, 0x60, 0xa7, 0x10, 0x67, 0x53, 0x3e, + 0xab, 0x08, 0x60, 0x63, 0x37, 0x60, 0x17, 0x71, 0x89, 0xd4, 0x62, 0xdb, + 0x44, 0x48, 0xa6, 0x0f, 0x37, 0xdb, 0xbf, 0x17, 0x1a, 0x9c, 0xe5, 0x1a, + 0x42, 0xf0, 0x2d, 0xe2, 0xcb, 0x96, 0x13, 0x0a, 0x2d, 0xe2, 0x0b, 0x7d, + 0xc7, 0x93, 0x2d, 0x9f, 0x14, 0x6b, 0x21, 0xa6, 0x98, 0x57, 0x66, 0xd4, + 0x8d, 0x4d, 0x7f, 0xc1, 0xd9, 0xab, 0x17, 0x47, 0x36, 0x42, 0x62, 0x0b, + 0x49, 0x0f, 0x99, 0x11, 0x8a, 0x8a, 0x17, 0x1a, 0xd4, 0x7a, 0x31, 0xcb, + 0xd7, 0xaa, 0xe5, 0x73, 0x24, 0x16, 0xa9, 0xce, 0x34, 0x5a, 0x3c, 0x54, + 0x08, 0x65, 0xeb, 0xed, 0x28, 0x6c, 0x33, 0xd3, 0x15, 0x60, 0x3f, 0xe6, + 0x8f, 0x11, 0x8a, 0x6b, 0x8f, 0x4b, 0xc1, 0x72, 0x69, 0xb4, 0xcf, 0xad, + 0x16, 0xc6, 0x64, 0xc6, 0xf4, 0x2d, 0x52, 0xb6, 0x47, 0xc1, 0xa3, 0xc4, + 0x6a, 0x8c, 0x9f, 0x3f, 0x0f, 0x64, 0xb1, 0x84, 0x1d, 0xb1, 0xae, 0xa7, + 0x33, 0x2a, 0x05, 0x0b, 0xbe, 0x16, 0xa8, 0x22, 0xf2, 0xca, 0xc8, 0x09, + 0x2a, 0xfc, 0xd4, 0xd7, 0xd7, 0xb7, 0xd1, 0xdf, 0x77, 0x97, 0x73, 0x22, + 0xd4, 0x7f, 0x56, 0x29, 0x61, 0xf5, 0x28, 0x76, 0xfe, 0xca, 0xfd, 0x91, + 0xc3, 0x5e, 0xf0, 0xb3, 0x3e, 0xb6, 0x5b, 0xeb, 0xf2, 0xcf, 0xe0, 0x6c, + 0x9e, 0x2a, 0x91, 0x46, 0xe9, 0x46, 0x91, 0x2a, 0x96, 0x58, 0x22, 0x27, + 0x79, 0x09, 0x4f, 0xb2, 0x95, 0x44, 0x63, 0xfc, 0x0f, 0x69, 0x4a, 0x85, + 0x01, 0x6f, 0x93, 0x85, 0x75, 0xf0, 0x49, 0x00, 0xcf, 0x7f, 0x79, 0x78, + 0x86, 0x7f, 0x61, 0x7c, 0xe4, 0xb0, 0x3e, 0x3d, 0x4a, 0x98, 0xdd, 0xb0, + 0xd3, 0x30, 0x5a, 0xd4, 0x59, 0x94, 0x2d, 0x7b, 0x8e, 0x50, 0x21, 0xc0, + 0x22, 0xc0, 0xa2, 0xc7, 0x5c, 0x0f, 0xd5, 0x02, 0x7b, 0x1b, 0x8f, 0xda, + 0x1d, 0x41, 0x07, 0x7a, 0x41, 0xc3, 0xf5, 0x6a, 0xdb, 0xfe, 0xa6, 0x53, + 0x2f, 0x55, 0x7a, 0xdf, 0xac, 0x04, 0xcf, 0xae, 0x75, 0x07, 0xd3, 0x15, + 0xa0, 0xee, 0x02, 0xf4, 0xb5, 0xc2, 0xfa, 0x3b, 0xf5, 0x55, 0x0c, 0x96, + 0xb5, 0x0c, 0x0c, 0xb5, 0xc4, 0x0d, 0x6f, 0x04, 0x52, 0xbe, 0xbc, 0x71, + 0xb9, 0x2b, 0xec, 0x17, 0xf9, 0xcd, 0xfb, 0x38, 0x10, 0x7e, 0xeb, 0xbc, + 0x5b, 0xdd, 0xb9, 0xf3, 0x67, 0xe3, 0xcd, 0x73, 0xeb, 0x3e, 0xab, 0xbd, + 0xcb, 0x7b, 0xd5, 0xfb, 0x7b, 0xdd, 0xd5, 0x00, 0x27, 0x9e, 0xe3, 0xfd, + 0x65, 0x8b, 0xa3, 0x60, 0x12, 0x2c, 0x1b, 0x39, 0xa2, 0xb2, 0xa0, 0x70, + 0x29, 0x8b, 0x1f, 0xba, 0x5f, 0x0d, 0x79, 0x51, 0xcf, 0x54, 0xe2, 0x8c, + 0x0d, 0x83, 0x83, 0xcf, 0x9a, 0x3b, 0xdc, 0xbe, 0x58, 0xf1, 0xa7, 0xf0, + 0x6c, 0x7f, 0x5e, 0x28, 0xa2, 0x82, 0x7e, 0x5a, 0xad, 0x19, 0x8a, 0xa6, + 0x50, 0x51, 0xd3, 0x16, 0x86, 0xd4, 0xa8, 0x6b, 0x22, 0x52, 0xb5, 0x39, + 0x94, 0x39, 0xc0, 0xb8, 0xd3, 0x0e, 0xa2, 0x20, 0x74, 0x3b, 0x42, 0x6c, + 0x36, 0x6c, 0x28, 0x0a, 0xe1, 0x97, 0xbb, 0xd3, 0xed, 0xc8, 0x54, 0x29, + 0xd7, 0x14, 0x02, 0xf2, 0x53, 0xd7, 0xd5, 0x0a, 0x59, 0xbf, 0x24, 0x59, + 0x58, 0x85, 0x12, 0xf2, 0xcf, 0x72, 0x57, 0xa4, 0x0f, 0x19, 0xd8, 0x27, + 0xfa, 0x20, 0xe4, 0x58, 0x36, 0xc0, 0xee, 0x6c, 0x57, 0x8a, 0x75, 0x57, + 0x25, 0xab, 0xb5, 0x54, 0x14, 0x75, 0xa1, 0x55, 0xaa, 0x56, 0x61, 0xc4, + 0xff, 0x19, 0x4a, 0x34, 0x4c, 0x00, 0xb8, 0xc0, 0x20, 0xb1, 0x67, 0x40, + 0xec, 0x40, 0x9e, 0xb3, 0x89, 0x7b, 0xb8, 0x18, 0x06, 0x2a, 0x76, 0x88, + 0x64, 0xb9, 0x7c, 0x64, 0x76, 0x4a, 0xe9, 0xb1, 0x06, 0xc9, 0x72, 0x1c, + 0xc7, 0xc1, 0x0d, 0x13, 0x4c, 0x58, 0x6c, 0xb2, 0xec, 0x62, 0x12, 0x72, + 0x2a, 0x2c, 0x0a, 0xe1, 0xe2, 0xd5, 0xcd, 0x17, 0xb8, 0xae, 0x15, 0x14, + 0xba, 0xc9, 0x24, 0x65, 0xfc, 0x7c, 0x48, 0x38, 0xdb, 0x72, 0xa2, 0xa6, + 0xd2, 0x26, 0x25, 0xf7, 0x4f, 0xa9, 0xd1, 0xde, 0xb1, 0xc2, 0x85, 0x09, + 0xb6, 0x0c, 0x7a, 0x3f, 0x2d, 0x1f, 0x07, 0x12, 0x7b, 0x4c, 0xbe, 0x05, + 0x33, 0x26, 0x6f, 0x5a, 0x66, 0x03, 0x61, 0x0c, 0x12, 0xee, 0x64, 0xda, + 0x48, 0x5c, 0x85, 0x7d, 0xa9, 0xf7, 0xdc, 0xe8, 0x42, 0x76, 0xb8, 0xc2, + 0x10, 0xae, 0x48, 0x0a, 0x16, 0x2c, 0x5b, 0x6d, 0x3b, 0xf8, 0x66, 0x66, + 0x54, 0x85, 0x61, 0x3c, 0xb2, 0x65, 0xfa, 0x1d, 0xd5, 0x73, 0x70, 0xbc, + 0x11, 0xee, 0xfc, 0x04, 0xad, 0x23, 0x6f, 0xe6, 0xae, 0x48, 0x6e, 0x72, + 0x00, 0x29, 0xc1, 0xc8, 0x53, 0x9e, 0x22, 0x18, 0x24, 0x6b, 0xcb, 0x8c, + 0x9b, 0x24, 0x91, 0x99, 0x0d, 0x26, 0x22, 0x5d, 0x46, 0xe9, 0xa9, 0xd1, + 0x9e, 0x30, 0x21, 0x91, 0xa3, 0x21, 0x1a, 0x2f, 0x39, 0x18, 0x1f, 0x78, + 0xce, 0x20, 0x9b, 0xac, 0x9a, 0x7a, 0x68, 0x6e, 0x4d, 0x4d, 0xfd, 0x24, + 0x8e, 0xe9, 0xda, 0x10, 0x67, 0xe4, 0xb8, 0xd6, 0x40, 0x54, 0x67, 0xa9, + 0x54, 0x3d, 0xbf, 0x30, 0xec, 0x5d, 0xd0, 0xad, 0x55, 0xe3, 0x9a, 0x60, + 0xd6, 0x8d, 0xc7, 0x2f, 0x2d, 0xf2, 0xf0, 0x3e, 0x58, 0xd8, 0xef, 0x67, + 0x95, 0xfc, 0x19, 0x36, 0x05, 0xb0, 0xad, 0xbf, 0xe4, 0x98, 0x9d, 0xb3, + 0x2f, 0x6f, 0xee, 0xaf, 0x82, 0x71, 0xd1, 0xb1, 0x5e, 0xf2, 0x28, 0xdf, + 0xf3, 0xde, 0xb3, 0xdf, 0xb3, 0x76, 0xf4, 0xc6, 0x67, 0xbf, 0xf8, 0x8a, + 0xfd, 0xc6, 0xb2, 0x33, 0x71, 0x48, 0x27, 0x5c, 0x7e, 0xa1, 0x3b, 0x1c, + 0x9f, 0x49, 0xd6, 0x1b, 0x84, 0x1e, 0x41, 0x86, 0xa6, 0x80, 0x31, 0x80, + 0x0d, 0x00, 0xbf, 0x00, 0xb4, 0x7f, 0x29, 0x23, 0x03, 0xfe, 0xef, 0xc0, + 0x02, 0xfe, 0xff, 0x83, 0x04, 0x00, 0x88, 0x01, 0xf4, 0x21, 0x3d, 0xd7, + 0x06, 0x3a, 0xa6, 0x4e, 0xb4, 0x46, 0x9c, 0x52, 0xba, 0x57, 0xad, 0xe2, + 0xce, 0xed, 0x4b, 0x89, 0xf3, 0x9d, 0x8f, 0x67, 0x83, 0x95, 0xaf, 0x8a, + 0xc4, 0x2b, 0xfa, 0x9c, 0xae, 0x1b, 0xa0, 0x7f, 0x35, 0xfe, 0x5c, 0x93, + 0x1f, 0x05, 0xaf, 0xde, 0x3d, 0xb1, 0xda, 0x78, 0xbc, 0xfa, 0x85, 0xd3, + 0xaa, 0x3f, 0x2c, 0xe3, 0xe0, 0x59, 0xff, 0x42, 0xe6, 0x6b, 0x73, 0xc1, + 0xf6, 0xea, 0xc5, 0xbd, 0xbb, 0x70, 0xea, 0xe8, 0x21, 0xc7, 0x90, 0x7b, + 0xd7, 0x37, 0x16, 0x12, 0x01, 0xfe, 0xdd, 0x77, 0x25, 0x1f, 0xad, 0x24, + 0x1a, 0x6a, 0x38, 0x5f, 0x1f, 0x38, 0xbb, 0x4a, 0xb6, 0x0b, 0x92, 0x67, + 0xb4, 0x05, 0x65, 0xc9, 0x3d, 0x32, 0x4e, 0xd0, 0x0b, 0x99, 0xbf, 0xeb, + 0x16, 0x35, 0x2e, 0xf8, 0x90, 0xb5, 0xbf, 0xaa, 0xf4, 0xa9, 0x3d, 0x65, + 0xb7, 0xb6, 0x6e, 0x3f, 0xfe, 0x27, 0xf7, 0x76, 0xb8, 0xd3, 0x0b, 0xe5, + 0xc2, 0xd7, 0x30, 0x96, 0x34, 0xda, 0xd4, 0x44, 0x5f, 0xb5, 0x0e, 0x48, + 0x40, 0x80, 0xa3, 0x14, 0x07, 0x5b, 0xa2, 0x01, 0x0b, 0xa9, 0xc1, 0x94, + 0x83, 0x3e, 0xbb, 0xee, 0x46, 0x11, 0x3c, 0xc6, 0x51, 0x84, 0x34, 0x17, + 0xee, 0xc0, 0x8a, 0x5a, 0x99, 0xdc, 0x31, 0x25, 0x3b, 0x60, 0xd9, 0xc0, + 0xab, 0xd2, 0x23, 0x89, 0x67, 0xb5, 0x9c, 0x33, 0x4e, 0xb3, 0x98, 0x08, + 0xf0, 0xab, 0x9f, 0x52, 0xaa, 0xc3, 0x33, 0x19, 0x49, 0x8d, 0x77, 0xb2, + 0x2f, 0x33, 0x99, 0x12, 0x55, 0xaf, 0x60, 0xed, 0xb6, 0x48, 0xde, 0x79, + 0xca, 0x4d, 0x0f, 0x67, 0x21, 0x5d, 0x8f, 0xb6, 0xeb, 0x89, 0x7f, 0xad, + 0x87, 0xb2, 0x54, 0x36, 0x2f, 0xb3, 0x48, 0x1e, 0xd1, 0xeb, 0x29, 0xe2, + 0x3b, 0x74, 0x4c, 0x63, 0x53, 0x47, 0x65, 0x4e, 0x23, 0xf9, 0xe7, 0x6a, + 0x99, 0x59, 0x53, 0x88, 0xa8, 0xf0, 0xc0, 0x58, 0x40, 0x33, 0x20, 0xf4, + 0xdf, 0x6d, 0xeb, 0xff, 0x4d, 0x10, 0x1f, 0x60, 0x23, 0x64, 0xcc, 0xb4, + 0x47, 0x89, 0xa3, 0x93, 0x40, 0xc9, 0xc1, 0xbc, 0xae, 0xc2, 0xc0, 0xc2, + 0x77, 0x68, 0x2f, 0x99, 0xac, 0xdf, 0xad, 0x3e, 0x58, 0x93, 0xac, 0x97, + 0x35, 0x69, 0xcc, 0x3c, 0x17, 0x98, 0xe7, 0xec, 0x6a, 0x32, 0xad, 0xd4, + 0x32, 0x9e, 0xc1, 0x8e, 0xe9, 0x9a, 0xbd, 0xa5, 0x5f, 0x59, 0x34, 0x9d, + 0x6d, 0xc7, 0xbd, 0xaa, 0xcc, 0x4c, 0x8b, 0xc8, 0x62, 0xa1, 0x55, 0xab, + 0x54, 0x65, 0x19, 0x8f, 0x77, 0xf8, 0xcd, 0xac, 0x03, 0x57, 0x61, 0xb1, + 0xac, 0xad, 0xaf, 0x6f, 0x44, 0x34, 0x16, 0x8f, 0x1b, 0xf7, 0xf8, 0x35, + 0x14, 0x2b, 0x8d, 0xab, 0x23, 0x45, 0x98, 0xad, 0x50, 0x15, 0xd6, 0xda, + 0x46, 0x9a, 0x81, 0xc8, 0x1b, 0xdd, 0x9a, 0x76, 0x58, 0x9f, 0xb1, 0xa9, + 0xb8, 0xd4, 0x0b, 0x71, 0xda, 0x3b, 0xf2, 0x8c, 0x30, 0xe1, 0x92, 0x45, + 0xfa, 0x05, 0x70, 0xd3, 0xd1, 0x78, 0xe1, 0x7a, 0x6f, 0xe2, 0xcf, 0xa3, + 0x83, 0xa9, 0xc2, 0xb3, 0x97, 0xee, 0x3f, 0xce, 0x47, 0x3c, 0x3d, 0xbd, + 0x38, 0xfb, 0x59, 0x75, 0x2e, 0x05, 0x3b, 0x39, 0x58, 0x7d, 0x3d, 0x1b, + 0x9b, 0xc8, 0xd7, 0x48, 0x03, 0xfc, 0x0a, 0xc8, 0x6b, 0x61, 0xd9, 0x29, + 0x35, 0x9f, 0xcd, 0x24, 0x58, 0x36, 0x39, 0x7c, 0xb8, 0xcc, 0xa8, 0xbf, + 0xe8, 0xfb, 0x50, 0x93, 0xd7, 0x68, 0x59, 0x58, 0x93, 0xe9, 0xf2, 0x7c, + 0x6a, 0x98, 0xfd, 0x19, 0xdf, 0xdd, 0xf4, 0x73, 0xaa, 0x77, 0xb5, 0x20, + 0xfe, 0x63, 0xfe, 0x99, 0x60, 0x35, 0x8c, 0xec, 0xbb, 0x9a, 0x95, 0x87, + 0xd6, 0xa9, 0x49, 0x6e, 0x42, 0xcf, 0x9f, 0x9e, 0xcf, 0x7f, 0x3f, 0xd6, + 0x25, 0x26, 0xd6, 0xf5, 0xae, 0xfd, 0x3c, 0xc8, 0xcd, 0xed, 0xca, 0x4b, + 0x44, 0xad, 0xe7, 0xe6, 0x7e, 0x5e, 0xef, 0xc9, 0x6b, 0x40, 0xa8, 0x67, + 0x57, 0x6c, 0x0d, 0x0f, 0x8f, 0xb0, 0x27, 0xd9, 0xf9, 0xde, 0x2e, 0x75, + 0x0a, 0x56, 0xb1, 0x9c, 0x86, 0xc0, 0xc4, 0x9f, 0x3d, 0x38, 0x42, 0x20, + 0xc2, 0xda, 0x7a, 0x4b, 0xf6, 0x9b, 0x33, 0xf5, 0x5c, 0x16, 0x87, 0xce, + 0xb2, 0xd5, 0x88, 0xe5, 0xa6, 0x6e, 0x5b, 0x41, 0x82, 0x9e, 0x1f, 0xac, + 0xb3, 0xb1, 0xce, 0x6f, 0xa9, 0x83, 0x1f, 0xdf, 0x5e, 0xb7, 0xa3, 0xe6, + 0xcf, 0x70, 0xb9, 0xaf, 0xdf, 0x8d, 0x53, 0x15, 0x47, 0x63, 0x15, 0x8b, + 0x5d, 0x63, 0xb9, 0x6e, 0x80, 0xb9, 0xe9, 0xfe, 0x9f, 0xfc, 0xba, 0x59, + 0x3b, 0x5d, 0x1f, 0xca, 0x9a, 0x3c, 0xa5, 0x60, 0x4e, 0x0e, 0x9d, 0x4c, + 0x4b, 0x65, 0xc7, 0xad, 0x51, 0x4d, 0x03, 0x65, 0x5f, 0x8b, 0x0e, 0x4d, + 0x65, 0x55, 0x36, 0xa4, 0xda, 0x3a, 0xe2, 0x6d, 0x71, 0xfe, 0x8c, 0xe1, + 0x96, 0xc3, 0xd6, 0x36, 0xf2, 0x86, 0x47, 0x64, 0xbe, 0x26, 0xfe, 0xa0, + 0x16, 0x5e, 0x53, 0x9c, 0xab, 0x64, 0xda, 0xc7, 0x75, 0x61, 0x0d, 0x81, + 0x55, 0xb5, 0xee, 0x81, 0xe3, 0x8b, 0x11, 0x09, 0x7b, 0x7a, 0x16, 0x0b, + 0xd9, 0x3f, 0x27, 0x93, 0x97, 0xd9, 0xaa, 0x33, 0xb3, 0xac, 0x9f, 0xa9, + 0x38, 0x6e, 0x3b, 0x96, 0x9b, 0x1e, 0x6a, 0xa4, 0xc7, 0xc7, 0x1f, 0x18, + 0x6e, 0xb1, 0xea, 0x1a, 0x35, 0x39, 0x21, 0xdd, 0x1a, 0xc0, 0x75, 0xbb, + 0xf5, 0xc5, 0xed, 0xca, 0x28, 0x64, 0x0a, 0x85, 0x06, 0xaf, 0x45, 0xa7, + 0xa7, 0x83, 0x8a, 0x53, 0x2a, 0xd4, 0x1c, 0xef, 0xdc, 0x5a, 0xc5, 0x57, + 0x9d, 0x6d, 0xf4, 0x4d, 0xb0, 0x1b, 0xaf, 0xa1, 0xc8, 0x48, 0xe6, 0x6b, + 0xf6, 0x2f, 0x2b, 0x0d, 0x2a, 0x3b, 0x5a, 0x86, 0x06, 0xe7, 0xc8, 0x9b, + 0xa5, 0x74, 0xb2, 0x06, 0xc3, 0xf2, 0xe0, 0xe0, 0x10, 0x03, 0xf1, 0x97, + 0xff, 0x07, 0x50, 0x4b, 0x07, 0x08, 0xe7, 0x3e, 0x4f, 0xbb, 0x6a, 0x29, + 0x00, 0x00, 0xc2, 0x29, 0x00, 0x00, 0x50, 0x4b, 0x01, 0x02, 0x14, 0x03, + 0x14, 0x00, 0x08, 0x00, 0x08, 0x00, 0xf0, 0x00, 0x85, 0x4b, 0xe7, 0x3e, + 0x4f, 0xbb, 0x6a, 0x29, 0x00, 0x00, 0xc2, 0x29, 0x00, 0x00, 0x12, 0x00, + 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb4, 0x81, + 0x00, 0x00, 0x00, 0x00, 0x65, 0x72, 0x69, 0x6b, 0x5f, 0x67, 0x75, 0x6e, + 0x5f, 0x66, 0x78, 0x5f, 0x31, 0x2e, 0x66, 0x6c, 0x61, 0x63, 0x55, 0x54, + 0x0d, 0x00, 0x07, 0x35, 0xd5, 0x25, 0x5a, 0x5a, 0x86, 0x9f, 0x5c, 0x46, + 0x86, 0x9f, 0x5c, 0x75, 0x78, 0x0b, 0x00, 0x01, 0x04, 0xe8, 0x03, 0x00, + 0x00, 0x04, 0xe8, 0x03, 0x00, 0x00, 0x50, 0x4b, 0x05, 0x06, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x60, 0x00, 0x00, 0x00, 0xca, 0x29, + 0x00, 0x00, 0x00, 0x00 +}; +unsigned int erik_gun_fx_1_zip_len = 10816; diff --git a/framework/sound/test/start_test.cpp b/framework/sound/test/start_test.cpp new file mode 100644 index 0000000..61553a2 --- /dev/null +++ b/framework/sound/test/start_test.cpp @@ -0,0 +1,86 @@ +#include + +#include + +#include +#include + +char* argv0; // HACK + +TEST(sound_service, add_en_dis) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sound_ss_ptr = engine.tryService(); + ASSERT_NE(sound_ss_ptr, nullptr); + + auto& sound = *sound_ss_ptr; + + sound.printErrorString(SoLoud::SOLOUD_ERRORS::DLL_NOT_FOUND); + sound.printErrorString(SoLoud::SOLOUD_ERRORS::FILE_LOAD_FAILED); + sound.printErrorString(SoLoud::SOLOUD_ERRORS::FILE_NOT_FOUND); + sound.printErrorString(SoLoud::SOLOUD_ERRORS::INVALID_PARAMETER); + sound.printErrorString(SoLoud::SOLOUD_ERRORS::NOT_IMPLEMENTED); + sound.printErrorString(SoLoud::SOLOUD_ERRORS::OUT_OF_MEMORY); + sound.printErrorString(SoLoud::SOLOUD_ERRORS::SO_NO_ERROR); + sound.printErrorString(SoLoud::SOLOUD_ERRORS::UNKNOWN_ERROR); + + engine.disableService(); +} + +TEST(sound_service, sfxr_test) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sound_ss_ptr = engine.tryService(); + ASSERT_NE(sound_ss_ptr, nullptr); + + auto& sound = *sound_ss_ptr; + + SoLoud::Sfxr fx1; + + for (int i = SoLoud::Sfxr::COIN; i < 10; i++) { + fx1.loadPreset(i, 0); + + sound.engine.play(fx1); + + while (sound.engine.getActiveVoiceCount()) { + } + } + + engine.disableService(); +} + +TEST(sound_service, speech_test) { + MM::Engine engine; + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + auto* sound_ss_ptr = engine.tryService(); + ASSERT_NE(sound_ss_ptr, nullptr); + + auto& sound = *sound_ss_ptr; + + SoLoud::Speech sp; + + sp.setText("I am the ship computer."); + + sound.engine.play(sp); + + while (sound.engine.getActiveVoiceCount()) { + } + + engine.disableService(); +} + +int main(int argc, char** argv) { + argv0 = argv[0]; + + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/framework/std_utils/CMakeLists.txt b/framework/std_utils/CMakeLists.txt new file mode 100644 index 0000000..7ac129e --- /dev/null +++ b/framework/std_utils/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.2) +project(std_utils CXX) + +add_library(std_utils INTERFACE) + +target_include_directories(std_utils INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/src") + +# TODO: test +#if (BUILD_TESTING) + #add_subdirectory(test) +#endif() + + diff --git a/framework/std_utils/src/mm/string_view_split.hpp b/framework/std_utils/src/mm/string_view_split.hpp new file mode 100644 index 0000000..c7ff40d --- /dev/null +++ b/framework/std_utils/src/mm/string_view_split.hpp @@ -0,0 +1,27 @@ +#pragma once + +#include + +namespace MM::std_utils { + +// src : https://marcoarena.wordpress.com/2017/01/03/string_view-odi-et-amo/ +inline std::vector split(std::string_view str, const char* delims) { + std::vector ret; + + std::string_view::size_type start = 0; + auto pos = str.find_first_of(delims, start); + while (pos != std::string_view::npos) { + if (pos != start) { + ret.push_back(str.substr(start, pos - start)); + } + start = pos + 1; + pos = str.find_first_of(delims, start); + } + if (start < str.length()) + ret.push_back(str.substr(start, str.length() - start)); + + return ret; +} + +} // MM::std_utils + diff --git a/framework/tilemap/CMakeLists.txt b/framework/tilemap/CMakeLists.txt new file mode 100644 index 0000000..42e9af4 --- /dev/null +++ b/framework/tilemap/CMakeLists.txt @@ -0,0 +1,23 @@ +cmake_minimum_required(VERSION 3.2) +project(tilemap CXX) + +add_library(tilemap + ./src/mm/tilemap.hpp + ./src/mm/tilemap.cpp +) + +target_include_directories(tilemap PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(tilemap + filesystem_service + tilemap_render_task +) + +########################## + +# TODO: test!! +#if (BUILD_TESTING) + #add_subdirectory(test) +#endif() + + diff --git a/framework/tilemap/src/mm/tilemap.cpp b/framework/tilemap/src/mm/tilemap.cpp new file mode 100644 index 0000000..330bb34 --- /dev/null +++ b/framework/tilemap/src/mm/tilemap.cpp @@ -0,0 +1,404 @@ +#include "./tilemap.hpp" + +#include +#include + +#include + +#include +#include + +#include +#include + +#include + +#include + +#include +#define LOG_CRIT(...) __LOG_CRIT( "Tilemap", __VA_ARGS__) +#define LOG_ERROR(...) __LOG_ERROR("Tilemap", __VA_ARGS__) +#define LOG_WARN(...) __LOG_WARN( "Tilemap", __VA_ARGS__) +#define LOG_INFO(...) __LOG_INFO( "Tilemap", __VA_ARGS__) +#define LOG_DEBUG(...) __LOG_DEBUG("Tilemap", __VA_ARGS__) +#define LOG_TRACE(...) __LOG_TRACE("Tilemap", __VA_ARGS__) + +namespace MM { + +Tilemap::Tilemap(void) { + MM::Logger::initSectionLogger("Tilemap"); +} + +bool Tilemap::parseTiled_Map(MM::Engine& engine, MM::Scene& scene, MM::Services::FilesystemService::fs_file_t file) { + auto& fs = engine.getService(); + auto jmap = fs.readJson(file); + + { + if (!jmap.contains("tilesets")) { + LOG_ERROR("tilemap without tilesets"); + return false; + } + + bool r = parseTiled_Tilesets(engine, jmap["tilesets"]); + assert(r); + } + + + { + if (!jmap.contains("layers")) { + LOG_ERROR("tilemap without tile-layers"); + return false; + } + + bool r = parseTiled_Layers(engine, scene, jmap["layers"]); + assert(r); + } + + return true; +} + +bool Tilemap::parseTiled_Map(MM::Engine& engine, MM::Scene& scene, std::string_view path) { + auto& fs = engine.getService(); + map_file_path = path; + + if (!fs.isFile(map_file_path.c_str())) { + LOG_ERROR("Tiled map '{}' not found!", map_file_path); + return false; + } + + auto file = fs.open(map_file_path.c_str()); + if (!file) { + LOG_ERROR("opening file '{}'!", map_file_path); + return false; + } + + //return parseTiled_Map(engine, scene, file); + auto r = parseTiled_Map(engine, scene, file); + fs.close(file); + return r; +} + +bool Tilemap::parseTiled_LayerCollision(MM::Engine&, MM::Scene&, nlohmann::json&, entt::entity) { + LOG_WARN("no collision implementation!"); + return true; +} + +bool Tilemap::parseTiled_ObjectLayer(MM::Engine&, MM::Scene&, nlohmann::json&) { + LOG_WARN("no object layer implementation!"); + return true; +} + +bool Tilemap::parseTiled_LayerRenderable(MM::Engine&, MM::Scene& scene, nlohmann::json& jlayer, entt::entity e) { + assert(jlayer.contains("width")); + assert(jlayer.contains("height")); + + uint32_t layer_width = jlayer["width"]; + uint32_t layer_height = jlayer["height"]; + + auto& tilemap_rend = scene.emplace(e); + + tilemap_rend.z = Tiled_get_z_prop(jlayer); + + // TODO: inefficient + for (auto& it : _sprite_sheet_map) { + auto& layer = tilemap_rend.sprite_layer.emplace_back(); + layer.sprite_sheet = it.sp; + } + + assert(jlayer.contains("data")); + + // fill sprite layers + for (uint32_t curr_y = 0; curr_y < layer_height; curr_y++) { + for (uint32_t curr_x = 0; curr_x < layer_width; curr_x++) { + uint32_t curr_tile_id = jlayer["data"][curr_x+curr_y*layer_width]; + if (curr_tile_id != 0) { + auto [id, l] = _get_sid_and_layer(curr_tile_id, tilemap_rend); + + auto& tile = l.map.emplace_back(); + + tile.pos[0] = curr_x; + tile.pos[1] = curr_y; + + tile.sprite_sheet_index = id; + } + } + } + + + // remove unused sprite layer + for (auto it = tilemap_rend.sprite_layer.begin(); it != tilemap_rend.sprite_layer.end();) { + if (it->map.empty()) { + it = tilemap_rend.sprite_layer.erase(it); + continue; + } + + it->syncMapBuffer(); + assert(it->map_buffer->getSize()); + it++; + } + + return true; +} + +bool Tilemap::parseTiled_Layer(MM::Engine& engine, MM::Scene& scene, nlohmann::json& jlayer) { + assert(jlayer.contains("width")); + assert(jlayer.contains("height")); + + //uint32_t layer_width = jlayer["width"]; + //uint32_t layer_height = jlayer["height"]; + + { + uint32_t layer_width; + jlayer["width"].get_to(layer_width); + _width = glm::max(_width, layer_width); + } + { + uint32_t layer_height; + jlayer["height"].get_to(layer_height); + _height = glm::max(_height, layer_height); + } + + auto e = scene.create(); + + if (jlayer.contains("name")) { + auto& name = scene.emplace(e); + name.str = jlayer["name"]; + } + + auto& t = scene.emplace(e); + t.position = {0, 0}; + t.scale = {1, 1}; + + + if (Tiled_is_collision_layer(jlayer)) { + return parseTiled_LayerCollision(engine, scene, jlayer, e); + } else { // assume renderable + return parseTiled_LayerRenderable(engine, scene, jlayer, e); + } + + return false; +} + +bool Tilemap::parseTiled_Layers(MM::Engine& engine, MM::Scene& scene, nlohmann::json& jlayers) { + assert(jlayers.is_array()); + + bool succ = true; + + for (auto& e : jlayers) { + if (!e.contains("type")) { + LOG_ERROR("layer without type?"); + //return false; + continue; + } + + std::string type = e["type"]; + if (type == "group") { + assert(e.contains("layers")); + succ &= parseTiled_Layers(engine, scene, e["layers"]); + } else if (type == "objectgroup") { + succ &= parseTiled_ObjectLayer(engine, scene, e); + } else if (type == "tilelayer") { + succ &= parseTiled_Layer(engine, scene, e); + } else if (type == "imagelayer") { + LOG_DEBUG("TODO: implement image layers"); + } else { + LOG_ERROR("unknown layer type '{}'", type); + } + } + + return succ; +} + +bool Tilemap::parseTiled_Tileset(MM::Engine& engine, std::string_view src_path, nlohmann::json& jts, uint32_t first_g_id) { + auto& fs = engine.getService(); + auto& rm_t = MM::ResourceManager::ref(); + + + if (jts.contains("source")) { // external file + std::string path = MM::base_path(src_path); + path += jts["source"]; + bool r = MM::path_shorten(path); assert(r); + + assert(fs.isFile(path.c_str())); + + auto external_jts = fs.readJson(path.c_str()); + + assert(jts.contains("firstgid")); + + // call self + parseTiled_Tileset(engine, path, external_jts, jts["firstgid"]); + } else if (jts.contains("grid")) { + assert(jts.contains("type")); + assert(jts["type"].get() == "tileset"); + LOG_DEBUG("grid Tiled tilesets are not yet supported!"); + return true; // TODO: implement + } else { + assert(jts.contains("type")); + assert(jts["type"].get() == "tileset"); + if (!jts.contains("image")) { + LOG_ERROR("missing image path from tileset?!"); + return false; + } + + std::string img_path = MM::base_path(src_path); + img_path += jts["image"]; + + //std::cerr << "got tileset image: '" << img_path << "'\n"; + + assert(!img_path.empty()); + MM::path_shorten(img_path); + assert(MM::std_utils::split(img_path, "/")[0] == "textures"); + + // TODO: use somthing different than the full path of the image file + if (!rm_t.load(img_path.c_str(), engine, img_path)) { + LOG_ERROR("could not load texture '{}'!", img_path); + } + + MM::OpenGL::SpriteSheet sprite_sheet; + + sprite_sheet.tex = rm_t.get(entt::hashed_string{img_path.c_str()}.value()); + if (!sprite_sheet.tex) { + sprite_sheet.tex = rm_t.get("default"_hs); // defaulting + } + + // x + if (jts.contains("columns")) { + sprite_sheet.tile_count.x = jts["columns"]; + } else if (jts.contains("imagewidth") && jts.contains("tilewidth")) { + uint32_t img_width = jts["imagewidth"]; + uint32_t img_tile_width = jts["tilewidth"]; + sprite_sheet.tile_count.x = img_width / img_tile_width; + } else { + LOG_ERROR("no way to determain horizontal tile count! ({})", src_path); + return false; + } + + // y + if (jts.contains("imageheight") && jts.contains("tileheight")) { + uint32_t img_height = jts["imageheight"]; + uint32_t img_tile_height = jts["tileheight"]; + sprite_sheet.tile_count.y = img_height / img_tile_height; + } else { + LOG_ERROR("no way to determain vertical tile count! ({})", src_path); + return false; + } + + if (first_g_id == 0) { + first_g_id = jts["firstgid"]; + assert(jts.contains("firstgid")); + } + + uint32_t last_g_id = 0; + if (jts.contains("tilecount")) { + last_g_id = jts["tilecount"]; + } else { + last_g_id = sprite_sheet.tile_count.x * sprite_sheet.tile_count.y; + } + last_g_id += first_g_id-1; + + // create entry for tileid mapper + { + auto& ref = _sprite_sheet_map.emplace_back(); + ref.first_id = first_g_id; + ref.last_id = last_g_id; + ref.sp = sprite_sheet; + } + } + + return true; +} + +bool Tilemap::parseTiled_Tilesets(MM::Engine& engine, nlohmann::json& jtss) { + assert(jtss.is_array()); + + bool succ = true; + + for (auto& jts : jtss) { + succ &= parseTiled_Tileset(engine, map_file_path, jts, 0); + } + + std::sort(_sprite_sheet_map.begin(), _sprite_sheet_map.end(), + [](auto& a, auto& b) { + return a.first_id < b.first_id; + } + ); + + return succ; +} + +std::pair Tilemap::_get_sid_and_layer(uint32_t gid, OpenGL::TilemapRenderable& tilemap_rend) { + assert(gid); + + for (auto& it : _sprite_sheet_map) { + if (it.first_id <= gid && it.last_id >= gid) { + auto a_tile_id = gid - it.first_id; + + for (auto& l : tilemap_rend.sprite_layer) { + if (l.sprite_sheet.tex == it.sp.tex) { + return {a_tile_id, l}; + } + } + } + } + + assert(!"not found"); +} + +nlohmann::json Tilemap::Tiled_get_custom_prop(nlohmann::json& j, std::string_view name, std::string_view type) { + if (!j.contains("properties")) { + return {}; + } + + auto& props = j["properties"]; + + if (!props.is_array()) { + return {}; + } + + for (auto& entry : props) { + if (!entry.contains("name")) { + LOG_ERROR("property without a name !!({})", map_file_path); + continue; + } + + if (entry["name"].get() != name) + continue; + + if (!entry.contains("type")) { + LOG_ERROR("property without a type !!(name: {})({})", name, map_file_path); + continue; + } + + if (entry["type"].get() != type) { + LOG_WARN("property type mismatch, expected '{}', got '{}' !!(name: {})({})", type, entry["type"], name, map_file_path); + continue; + } + + if (!entry.contains("value")) { + LOG_ERROR("property without a value !!(name: {})({})", name, map_file_path); + continue; + } + + return entry["value"]; + } + + return {}; +} + +bool Tilemap::Tiled_is_collision_layer(nlohmann::json& jlayer) { + auto prop = Tiled_get_custom_prop(jlayer, "collision", "bool"); + + return prop.is_boolean() && prop; +} + +float Tilemap::Tiled_get_z_prop(nlohmann::json& jlayer) { + auto prop = Tiled_get_custom_prop(jlayer, "z", "float"); + + if (prop.is_number()) + return prop; + + return 0.f; // default +} + +} // MM + diff --git a/framework/tilemap/src/mm/tilemap.hpp b/framework/tilemap/src/mm/tilemap.hpp new file mode 100644 index 0000000..b6a0bfa --- /dev/null +++ b/framework/tilemap/src/mm/tilemap.hpp @@ -0,0 +1,66 @@ +#pragma once + +#include + +#include +#include + +#include + +namespace MM { + +// TODO: test, clear asserts +class Tilemap { + protected: + struct SpriteSheetEntry { + uint32_t first_id; + uint32_t last_id; + MM::OpenGL::SpriteSheet sp; + }; + std::vector _sprite_sheet_map; // used to map tileids to the spritesheet ids + + // tiles + uint32_t _width = 0; + uint32_t _height = 0; + + public: + std::string map_file_path; + + public: + inline uint32_t getWidth(void) { + return _width; + } + + inline uint32_t getHeight(void) { + return _height; + } + + public: + Tilemap(void); + Tilemap(const Tilemap&) = delete; + virtual ~Tilemap(void) = default; + + bool parseTiled_Map(MM::Engine& engine, MM::Scene& scene, MM::Services::FilesystemService::fs_file_t file); + bool parseTiled_Map(MM::Engine& engine, MM::Scene& scene, std::string_view path); + + virtual bool parseTiled_LayerCollision(MM::Engine& engine, MM::Scene& scene, nlohmann::json& jlayer, entt::entity e); + virtual bool parseTiled_LayerRenderable(MM::Engine& engine, MM::Scene& scene, nlohmann::json& jlayer, entt::entity e); + virtual bool parseTiled_ObjectLayer(MM::Engine& engine, MM::Scene& scene, nlohmann::json& jlayer); + + bool parseTiled_Layer(MM::Engine& engine, MM::Scene& scene, nlohmann::json& jlayer); + bool parseTiled_Layers(MM::Engine& engine, MM::Scene& scene, nlohmann::json& jlayers); + + bool parseTiled_Tileset(MM::Engine& engine, std::string_view src_path, nlohmann::json& jts, uint32_t first_g_id); + // populate sprite_sheet_map and load textures + bool parseTiled_Tilesets(MM::Engine& engine, nlohmann::json& jtss); + + protected: + std::pair _get_sid_and_layer(uint32_t gid, OpenGL::TilemapRenderable& tilemap_rend); + + nlohmann::json Tiled_get_custom_prop(nlohmann::json& j, std::string_view name, std::string_view type); + bool Tiled_is_collision_layer(nlohmann::json& jlayer); + float Tiled_get_z_prop(nlohmann::json& jlayer); +}; + +} // MM + diff --git a/mm_options_and_defines.cmake b/mm_options_and_defines.cmake new file mode 100644 index 0000000..8219160 --- /dev/null +++ b/mm_options_and_defines.cmake @@ -0,0 +1,33 @@ + +# include guard +if(NOT MM_INTERNAL_OPTIONS) + set(MM_INTERNAL_OPTIONS TRUE) + + # MM options + option(BUILD_TESTING "Enable testing with ctest." OFF) + option(MM_HEADLESS "Headless mode for MM, disables all kind of rendering stuff." OFF) + option(MM_NETWORKING "control networking implementations for MM." OFF) + + if(NOT MM_HEADLESS) + option(MM_OPENGL_3 "use the MM opengl 3 implementations (opengl 3.3 or opengl es 3.0 (webgl 2)" ON) + option(MM_OPENGL_3_GLES "use gles over gl" OFF) + if(NOT MM_OPENGL_3 AND MM_OPENGL_3_GLES) + message(WARN "MM_OPENGL_3_GLES on, but MM_OPENGL_3 off, ignoring") + set(MM_OPENGL_3_GLES OFF) + endif() + endif() + + # MM options defines + macro(GEN_COMPILE_DEFINITION OPTION_NAME) + if(${OPTION_NAME}) + add_definitions("-D${OPTION_NAME}") + #set_property(GLOBAL PROPERTY COMPILE_DEFINITIONS "-D${OPTION_NAME}") + endif() + endmacro() + + gen_compile_definition(MM_HEADLESS) + gen_compile_definition(MM_NETWORKING) + gen_compile_definition(MM_OPENGL_3) + gen_compile_definition(MM_OPENGL_3_GLES) +endif() + diff --git a/res/mm_card.png b/res/mm_card.png new file mode 100644 index 0000000..acf6074 Binary files /dev/null and b/res/mm_card.png differ diff --git a/res/mush_machine_logo_1.svg b/res/mush_machine_logo_1.svg new file mode 100644 index 0000000..b49f65a --- /dev/null +++ b/res/mush_machine_logo_1.svg @@ -0,0 +1,209 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/screens/CMakeLists.txt b/screens/CMakeLists.txt new file mode 100644 index 0000000..2db0498 --- /dev/null +++ b/screens/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.2) +project(screens CXX) + +if(NOT MM_HEADLESS) + add_subdirectory(mm_logo) +endif() + diff --git a/screens/mm_logo/CMakeLists.txt b/screens/mm_logo/CMakeLists.txt new file mode 100644 index 0000000..2513a21 --- /dev/null +++ b/screens/mm_logo/CMakeLists.txt @@ -0,0 +1,30 @@ +cmake_minimum_required(VERSION 3.2) +project(mm_logo_screen CXX) + +add_library(mm_logo_screen + res/mush_machine_logo_1.svg.png.h + + src/mm/screens/mm_logo_screen.hpp + src/mm/screens/mm_logo_screen.cpp +) + +target_include_directories(mm_logo_screen PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(mm_logo_screen + entt + glm + engine + screen_director + simple_scene + + opengl_renderer_s + simple_sprite_render_task + + common_components +) + +#if (BUILD_TESTING) + #add_subdirectory(test) +#endif() + + diff --git a/screens/mm_logo/res/mush_machine_logo_1.svg.png.h b/screens/mm_logo/res/mush_machine_logo_1.svg.png.h new file mode 100644 index 0000000..5ddfa9a --- /dev/null +++ b/screens/mm_logo/res/mush_machine_logo_1.svg.png.h @@ -0,0 +1,8300 @@ +unsigned char mush_machine_logo_1_svg_png[] = { + 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, + 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x08, 0x06, 0x00, 0x00, 0x07, 0x20, + 0x08, 0x06, 0x00, 0x00, 0x00, 0x4e, 0x5d, 0xd6, 0xa8, 0x00, 0x00, 0x02, + 0xf1, 0x7a, 0x54, 0x58, 0x74, 0x52, 0x61, 0x77, 0x20, 0x70, 0x72, 0x6f, + 0x66, 0x69, 0x6c, 0x65, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x65, 0x78, + 0x69, 0x66, 0x00, 0x00, 0x78, 0xda, 0xed, 0x97, 0x5b, 0x92, 0xe4, 0x28, + 0x0c, 0x45, 0xff, 0x59, 0xc5, 0x2c, 0x01, 0x49, 0x08, 0x89, 0xe5, 0x60, + 0x1e, 0x11, 0xbd, 0x83, 0x59, 0xfe, 0x5c, 0x30, 0x59, 0x95, 0xf5, 0x98, + 0xe9, 0xee, 0xe8, 0xf9, 0x4c, 0x13, 0x36, 0x94, 0x90, 0x25, 0xe5, 0x3d, + 0x80, 0xa3, 0xc2, 0xf8, 0xfb, 0xc7, 0x0c, 0x7f, 0xe1, 0x22, 0x2f, 0x1e, + 0x92, 0x9a, 0xe7, 0x92, 0x73, 0xc4, 0x95, 0x4a, 0x2a, 0x5c, 0x31, 0xf0, + 0x78, 0x5f, 0x65, 0x3f, 0x29, 0xa6, 0xfd, 0xbc, 0xaf, 0x7c, 0x66, 0xe9, + 0xa3, 0x3d, 0x70, 0x8c, 0xb6, 0x47, 0x0c, 0x93, 0xa0, 0x97, 0x7b, 0xc2, + 0xea, 0xdd, 0x53, 0x85, 0x5d, 0xdf, 0x5f, 0x78, 0xe4, 0xa0, 0xeb, 0xa3, + 0x3d, 0xf8, 0x99, 0x61, 0x3f, 0x81, 0x1e, 0x99, 0x4f, 0x40, 0x59, 0x99, + 0x91, 0x2d, 0xf6, 0xe7, 0x22, 0x61, 0xe7, 0xdb, 0x4e, 0xe9, 0x04, 0x2a, + 0xe3, 0x54, 0x5c, 0xdc, 0x9e, 0x4b, 0xbd, 0xf8, 0xee, 0xdb, 0x71, 0xdc, + 0xa5, 0x9c, 0x3b, 0x53, 0x9c, 0xdb, 0x76, 0xaa, 0x5e, 0x7f, 0x87, 0x67, + 0x43, 0x32, 0xa8, 0xd4, 0x15, 0x89, 0x84, 0x79, 0x08, 0x49, 0xdc, 0xcf, + 0x74, 0x57, 0x20, 0xf7, 0x5d, 0x77, 0x5f, 0x61, 0x77, 0xf8, 0x91, 0x14, + 0x8c, 0x55, 0x24, 0xa0, 0x63, 0xe1, 0x53, 0x09, 0x04, 0xf9, 0xf0, 0xf3, + 0x1e, 0x7d, 0x8c, 0xcf, 0x02, 0x7d, 0x14, 0xff, 0x8c, 0xc2, 0x67, 0xf5, + 0xc7, 0xd1, 0xe6, 0xb3, 0xf8, 0x5c, 0x8f, 0x87, 0x7c, 0xd2, 0x32, 0x1f, + 0x8d, 0x30, 0xf8, 0x76, 0x82, 0xf4, 0x7b, 0xf1, 0xb7, 0xc4, 0x4f, 0x89, + 0xe5, 0xad, 0x22, 0xfe, 0x34, 0x21, 0x8f, 0x50, 0x5f, 0x45, 0x9e, 0xb3, + 0xfb, 0x9c, 0xe3, 0xfe, 0x75, 0x35, 0x65, 0x28, 0x9a, 0xcf, 0x8a, 0x8a, + 0xe1, 0xa1, 0xce, 0x7a, 0x07, 0x8e, 0x17, 0x24, 0x97, 0xfd, 0x5a, 0x46, + 0x33, 0xdc, 0x8a, 0xb1, 0xed, 0x56, 0xd0, 0x1c, 0x60, 0x1a, 0x90, 0xf7, + 0xd8, 0xe2, 0x85, 0xd6, 0xa8, 0x10, 0x83, 0xca, 0x0c, 0x94, 0xa8, 0x53, + 0xa5, 0x49, 0x63, 0xf7, 0x8d, 0x1a, 0x4a, 0x4c, 0x3c, 0xd8, 0xd0, 0x33, + 0x37, 0x96, 0x6d, 0x73, 0x31, 0x2e, 0xdc, 0x64, 0x71, 0x4a, 0xab, 0xd1, + 0x64, 0x03, 0xb1, 0x2e, 0x0e, 0x58, 0x8d, 0x47, 0x10, 0x81, 0x99, 0xdf, + 0x6a, 0xa1, 0x9d, 0xb7, 0xec, 0x7c, 0x8d, 0x1c, 0x99, 0x3b, 0xc1, 0x95, + 0x09, 0xc1, 0x68, 0xf1, 0xfd, 0xb7, 0x16, 0xfe, 0x6b, 0xf2, 0x77, 0x5a, + 0x98, 0xb3, 0x2d, 0x89, 0x68, 0x89, 0x39, 0x64, 0x6b, 0x85, 0x27, 0xaf, + 0x95, 0x85, 0x32, 0x16, 0xb9, 0xf5, 0x84, 0x17, 0x80, 0xd0, 0x3c, 0xdc, + 0x74, 0x0b, 0xfc, 0x68, 0x07, 0x7f, 0x7c, 0x5a, 0x58, 0x58, 0xaa, 0x20, + 0xa8, 0x5b, 0x66, 0xc7, 0x0f, 0xac, 0xf1, 0xba, 0x43, 0x5c, 0x4a, 0xef, + 0x6b, 0x4b, 0x36, 0x67, 0x81, 0x9f, 0xa2, 0xbf, 0xb7, 0x10, 0x05, 0xeb, + 0x27, 0x00, 0x24, 0x42, 0x6e, 0x45, 0x31, 0x24, 0x20, 0x80, 0x0d, 0x24, + 0x4a, 0xd8, 0x45, 0xc6, 0x6c, 0x44, 0xd0, 0xd1, 0x01, 0xa8, 0xa2, 0x72, + 0x96, 0xc4, 0x17, 0x08, 0x90, 0x2a, 0x77, 0x14, 0xc9, 0x49, 0x24, 0x73, + 0x30, 0xc6, 0x96, 0x41, 0x6e, 0xbc, 0x63, 0xb4, 0x7d, 0x59, 0x39, 0xf3, + 0x32, 0xe3, 0x6c, 0x02, 0x08, 0x95, 0x2c, 0x06, 0x36, 0xd8, 0x53, 0x80, + 0x95, 0x92, 0x62, 0xfd, 0x58, 0x72, 0xac, 0xa1, 0xaa, 0xa2, 0x49, 0x55, + 0xb3, 0x9a, 0x7a, 0xd0, 0xa2, 0x35, 0x4b, 0x4e, 0x59, 0x73, 0xce, 0x96, + 0xd7, 0x21, 0x57, 0x4d, 0x2c, 0x99, 0x5a, 0x36, 0x33, 0xb7, 0x62, 0xd5, + 0xc5, 0x93, 0xab, 0x67, 0x37, 0x77, 0x1c, 0x86, 0xb5, 0x70, 0x11, 0x9c, + 0x81, 0x5a, 0x72, 0xb1, 0xe2, 0xa5, 0x94, 0x5a, 0x39, 0x54, 0x24, 0xaa, + 0x88, 0x55, 0xe1, 0x5f, 0x61, 0xb9, 0xf8, 0x92, 0x2b, 0x5d, 0x7a, 0xe5, + 0xcb, 0x2e, 0xbf, 0xca, 0x55, 0x1b, 0x96, 0x4f, 0x4b, 0x4d, 0x5b, 0x6e, + 0xd6, 0xbc, 0x95, 0x56, 0x3b, 0x77, 0xe9, 0x38, 0x26, 0x7a, 0xee, 0xd6, + 0xbd, 0x97, 0x5e, 0x07, 0x85, 0x81, 0x93, 0x62, 0xa4, 0xa1, 0x23, 0x0f, + 0x1b, 0x3e, 0xca, 0xa8, 0x13, 0x6b, 0x6d, 0xca, 0x4c, 0x53, 0x67, 0x9e, + 0x36, 0x7d, 0x96, 0x59, 0xdf, 0xa8, 0x1d, 0xaa, 0x5f, 0xda, 0x6f, 0x50, + 0xa3, 0x43, 0x8d, 0x37, 0xa9, 0xe5, 0x67, 0x6f, 0xd4, 0x60, 0x0d, 0x66, + 0x8f, 0x10, 0xb4, 0x8e, 0x13, 0x5d, 0xcc, 0x40, 0x8c, 0x13, 0x81, 0xb8, + 0x2d, 0x02, 0x58, 0xd0, 0xbc, 0x98, 0x45, 0xa7, 0x94, 0x78, 0x91, 0x5b, + 0xcc, 0x62, 0x61, 0x6c, 0x0a, 0x65, 0x14, 0xa9, 0x8b, 0x4d, 0xe8, 0xb4, + 0x88, 0x01, 0x61, 0x1a, 0xc4, 0x3a, 0xe9, 0x8d, 0xdd, 0x3b, 0xb9, 0x5f, + 0xe2, 0x16, 0xd4, 0x7f, 0x89, 0x1b, 0xff, 0x8c, 0x5c, 0x58, 0xe8, 0xfe, + 0x0f, 0x72, 0x01, 0xe8, 0xbe, 0x72, 0xfb, 0x86, 0x5a, 0x5f, 0x1f, 0x88, + 0x16, 0xef, 0xdd, 0xb8, 0x76, 0xe1, 0xd2, 0x34, 0x0a, 0x76, 0x1f, 0x7c, + 0x2a, 0x7b, 0xc0, 0x8d, 0xaf, 0x08, 0xfb, 0x9f, 0xf6, 0xaf, 0x40, 0xaf, + 0x40, 0xaf, 0x40, 0xaf, 0x40, 0xaf, 0x40, 0xaf, 0x40, 0xaf, 0x40, 0x7f, + 0x1a, 0x48, 0x26, 0x3e, 0xdd, 0xf8, 0x17, 0x32, 0xfc, 0x03, 0x45, 0xb0, + 0x7f, 0x15, 0x4e, 0x39, 0xca, 0x49, 0x00, 0x00, 0x01, 0x84, 0x69, 0x43, + 0x43, 0x50, 0x49, 0x43, 0x43, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, + 0x65, 0x00, 0x00, 0x28, 0x91, 0x7d, 0x91, 0x3d, 0x48, 0xc3, 0x40, 0x1c, + 0xc5, 0x5f, 0x53, 0x45, 0x29, 0x15, 0x41, 0x3b, 0x88, 0x38, 0x64, 0xa8, + 0x4e, 0x16, 0x44, 0x45, 0x1d, 0xb5, 0x0a, 0x45, 0xa8, 0x10, 0x6a, 0x85, + 0x56, 0x1d, 0x4c, 0x2e, 0xfd, 0x82, 0x26, 0x0d, 0x49, 0x8a, 0x8b, 0xa3, + 0xe0, 0x5a, 0x70, 0xf0, 0x63, 0xb1, 0xea, 0xe0, 0xe2, 0xac, 0xab, 0x83, + 0xab, 0x20, 0x08, 0x7e, 0x80, 0x38, 0x39, 0x3a, 0x29, 0xba, 0x48, 0x89, + 0xff, 0x4b, 0x0a, 0x2d, 0x62, 0x3c, 0x38, 0xee, 0xc7, 0xbb, 0x7b, 0x8f, + 0xbb, 0x77, 0x80, 0x50, 0x2f, 0x33, 0xcd, 0xea, 0x18, 0x03, 0x34, 0xdd, + 0x36, 0x53, 0x89, 0xb8, 0x98, 0xc9, 0xae, 0x8a, 0x5d, 0xaf, 0x10, 0xd0, + 0x87, 0x10, 0xa2, 0x98, 0x96, 0x99, 0x65, 0xcc, 0x49, 0x52, 0x12, 0xbe, + 0xe3, 0xeb, 0x1e, 0x01, 0xbe, 0xde, 0xc5, 0x78, 0x96, 0xff, 0xb9, 0x3f, + 0x47, 0x8f, 0x9a, 0xb3, 0x18, 0x10, 0x10, 0x89, 0x67, 0x99, 0x61, 0xda, + 0xc4, 0x1b, 0xc4, 0x53, 0x9b, 0xb6, 0xc1, 0x79, 0x9f, 0x38, 0xc2, 0x8a, + 0xb2, 0x4a, 0x7c, 0x4e, 0x3c, 0x6a, 0xd2, 0x05, 0x89, 0x1f, 0xb9, 0xae, + 0x78, 0xfc, 0xc6, 0xb9, 0xe0, 0xb2, 0xc0, 0x33, 0x23, 0x66, 0x3a, 0x35, + 0x4f, 0x1c, 0x21, 0x16, 0x0b, 0x6d, 0xac, 0xb4, 0x31, 0x2b, 0x9a, 0x1a, + 0xf1, 0x24, 0x71, 0x54, 0xd5, 0x74, 0xca, 0x17, 0x32, 0x1e, 0xab, 0x9c, + 0xb7, 0x38, 0x6b, 0xe5, 0x2a, 0x6b, 0xde, 0x93, 0xbf, 0x30, 0x9c, 0xd3, + 0x57, 0x96, 0xb9, 0x4e, 0x73, 0x08, 0x09, 0x2c, 0x62, 0x09, 0x12, 0x44, + 0x28, 0xa8, 0xa2, 0x84, 0x32, 0x6c, 0xc4, 0x68, 0xd5, 0x49, 0xb1, 0x90, + 0xa2, 0xfd, 0xb8, 0x8f, 0x7f, 0xd0, 0xf5, 0x4b, 0xe4, 0x52, 0xc8, 0x55, + 0x02, 0x23, 0xc7, 0x02, 0x2a, 0xd0, 0x20, 0xbb, 0x7e, 0xf0, 0x3f, 0xf8, + 0xdd, 0xad, 0x95, 0x9f, 0x18, 0xf7, 0x92, 0xc2, 0x71, 0xa0, 0xf3, 0xc5, + 0x71, 0x3e, 0x86, 0x81, 0xae, 0x5d, 0xa0, 0x51, 0x73, 0x9c, 0xef, 0x63, + 0xc7, 0x69, 0x9c, 0x00, 0xc1, 0x67, 0xe0, 0x4a, 0x6f, 0xf9, 0x2b, 0x75, + 0x60, 0xe6, 0x93, 0xf4, 0x5a, 0x4b, 0x8b, 0x1e, 0x01, 0xbd, 0xdb, 0xc0, + 0xc5, 0x75, 0x4b, 0x53, 0xf6, 0x80, 0xcb, 0x1d, 0x60, 0xe0, 0xc9, 0x90, + 0x4d, 0xd9, 0x95, 0x82, 0x34, 0x85, 0x7c, 0x1e, 0x78, 0x3f, 0xa3, 0x6f, + 0xca, 0x02, 0xfd, 0xb7, 0x40, 0x68, 0xcd, 0xeb, 0xad, 0xb9, 0x8f, 0xd3, + 0x07, 0x20, 0x4d, 0x5d, 0x25, 0x6f, 0x80, 0x83, 0x43, 0x60, 0xa4, 0x40, + 0xd9, 0xeb, 0x3e, 0xef, 0xee, 0x6e, 0xef, 0xed, 0xdf, 0x33, 0xcd, 0xfe, + 0x7e, 0x00, 0x98, 0x20, 0x72, 0xb6, 0x99, 0x92, 0xa0, 0x62, 0x00, 0x00, + 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0xa0, 0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, + 0x00, 0x00, 0x99, 0xca, 0x00, 0x00, 0x99, 0xca, 0x01, 0xe3, 0x91, 0xa4, + 0x22, 0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xe4, 0x02, + 0x12, 0x12, 0x35, 0x16, 0x88, 0x96, 0x3f, 0xb9, 0x00, 0x00, 0x20, 0x00, + 0x49, 0x44, 0x41, 0x54, 0x78, 0xda, 0xec, 0xdd, 0x79, 0xbc, 0xae, 0x75, + 0x5d, 0xef, 0xff, 0xd7, 0xde, 0x4c, 0x1b, 0x44, 0x04, 0x35, 0x31, 0x05, + 0x3d, 0x28, 0x24, 0x82, 0xa2, 0xa6, 0xc7, 0x09, 0x35, 0x53, 0x9c, 0x05, + 0x47, 0xf4, 0x68, 0x6a, 0x9d, 0x9c, 0xd3, 0xa4, 0x4c, 0x11, 0x6d, 0x10, + 0xfd, 0x39, 0x64, 0xa5, 0xa7, 0xb4, 0x52, 0xc9, 0xf3, 0xab, 0x13, 0x6a, + 0xc7, 0xd0, 0x1c, 0x20, 0x67, 0xad, 0x14, 0x41, 0x53, 0xc2, 0x9c, 0xc9, + 0x39, 0x11, 0x34, 0x45, 0x10, 0x41, 0x99, 0xf6, 0x5e, 0xe7, 0x8f, 0x6b, + 0x11, 0x12, 0xd3, 0x1e, 0xd6, 0xba, 0xd7, 0x7d, 0x5d, 0xf7, 0xf3, 0xf9, + 0x78, 0xdc, 0x8f, 0xb5, 0xf6, 0x63, 0xb3, 0xd6, 0xba, 0xae, 0xf7, 0xf7, + 0x66, 0xaf, 0x7b, 0x78, 0x5f, 0x9f, 0xef, 0xba, 0xa5, 0xa5, 0xa5, 0x00, + 0x00, 0x00, 0x80, 0xb9, 0x72, 0xfb, 0xea, 0x77, 0xaa, 0xbd, 0x97, 0xff, + 0xbc, 0xae, 0xda, 0x7d, 0x1b, 0xbf, 0xe7, 0xce, 0xd5, 0x86, 0x6d, 0xf8, + 0xfa, 0x2d, 0x39, 0x86, 0x9f, 0x54, 0x17, 0x54, 0x67, 0x57, 0x3f, 0x5e, + 0xfe, 0xf3, 0x0f, 0xab, 0xf3, 0x96, 0x3f, 0xff, 0x51, 0x75, 0xee, 0xf2, + 0xe7, 0xe7, 0x57, 0xe7, 0x2c, 0x7f, 0xfe, 0x9d, 0xea, 0x5f, 0xaa, 0xef, + 0xbb, 0x0b, 0x00, 0x00, 0x00, 0xc0, 0xca, 0x59, 0xa7, 0x18, 0x00, 0x00, + 0x00, 0x00, 0x73, 0xe3, 0x96, 0xd5, 0x8b, 0xaa, 0x47, 0x36, 0xbc, 0x11, + 0xbf, 0xa8, 0xce, 0xac, 0x4e, 0xf9, 0xa9, 0xdb, 0xc7, 0xab, 0xef, 0xb9, + 0x7b, 0x00, 0x00, 0x00, 0xc0, 0xd6, 0x51, 0x0c, 0x00, 0x00, 0x00, 0x80, + 0xb5, 0xb7, 0x6f, 0x75, 0x74, 0xf5, 0x98, 0x6a, 0xbd, 0x38, 0xae, 0xd4, + 0x57, 0xab, 0x8f, 0x54, 0xcf, 0x6c, 0x98, 0x42, 0x00, 0x00, 0x00, 0x00, + 0x6c, 0x26, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x58, 0x3b, 0x7b, 0x57, 0xcf, + 0xa9, 0x9e, 0x56, 0xed, 0x28, 0x8e, 0xcd, 0xf2, 0xc1, 0xea, 0xd0, 0x86, + 0xad, 0x0a, 0x00, 0x00, 0x00, 0x80, 0xcd, 0xa0, 0x18, 0x00, 0x00, 0x00, + 0x00, 0xb3, 0xf7, 0x33, 0xd5, 0x6f, 0x55, 0x47, 0x54, 0x1b, 0xc4, 0xb1, + 0xc5, 0xde, 0xd9, 0xb0, 0xdd, 0xc2, 0x25, 0xa2, 0x00, 0x00, 0x00, 0x80, + 0x6b, 0xa6, 0x18, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x73, 0xdd, 0xea, 0x59, + 0xd5, 0xb3, 0xab, 0x6b, 0x8b, 0x63, 0x9b, 0xbc, 0xb1, 0xfa, 0xe5, 0x6a, + 0x93, 0x28, 0x00, 0x00, 0x00, 0xe0, 0xea, 0x6d, 0x2f, 0x02, 0x00, 0x00, + 0x00, 0x58, 0x75, 0xbb, 0x56, 0xcf, 0xa8, 0x8e, 0xaa, 0x76, 0x17, 0xc7, + 0x8a, 0x78, 0x5c, 0x75, 0xee, 0x72, 0xae, 0x00, 0x00, 0x00, 0xc0, 0xd5, + 0x50, 0x0c, 0x00, 0x00, 0x00, 0x80, 0xd5, 0xb3, 0x4b, 0xf5, 0xe4, 0xea, + 0xf9, 0xd5, 0x9e, 0xe2, 0x58, 0x71, 0xbf, 0x56, 0x5d, 0x54, 0xfd, 0xa6, + 0x28, 0x00, 0x00, 0x00, 0xe0, 0xaa, 0xd9, 0x4a, 0x00, 0x00, 0x00, 0x00, + 0x56, 0xde, 0x8e, 0xd5, 0xaf, 0x54, 0x2f, 0xac, 0x6e, 0x24, 0x8e, 0x55, + 0xf7, 0x82, 0xea, 0xe5, 0x62, 0x00, 0x00, 0x00, 0x80, 0x2b, 0xa7, 0x18, + 0x00, 0x00, 0x00, 0x00, 0x2b, 0x67, 0xfb, 0xea, 0xb1, 0x0d, 0x85, 0x80, + 0x9b, 0x89, 0x63, 0xa6, 0x7e, 0xab, 0x7a, 0x95, 0x18, 0x00, 0x00, 0x00, + 0xe0, 0x8a, 0x14, 0x03, 0x00, 0x00, 0x00, 0x60, 0xdb, 0xad, 0xaf, 0x1e, + 0x51, 0xbd, 0xa4, 0xfa, 0x39, 0x71, 0xac, 0x89, 0xa5, 0x86, 0x6d, 0x1b, + 0xfe, 0xb7, 0x28, 0x00, 0x00, 0x00, 0xe0, 0xf2, 0x14, 0x03, 0x00, 0x00, + 0x00, 0x60, 0xdb, 0x1c, 0x52, 0xfd, 0x61, 0x75, 0x5b, 0x51, 0xac, 0xb9, + 0x8d, 0x0d, 0x13, 0x1b, 0xfe, 0x56, 0x14, 0x00, 0x00, 0x00, 0x70, 0x19, + 0xc5, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x3a, 0x37, 0xaf, 0xde, 0x52, 0xdd, + 0x5e, 0x14, 0x73, 0xe5, 0xa2, 0xea, 0xb0, 0xea, 0x7d, 0xa2, 0x00, 0x00, + 0x00, 0x80, 0xc1, 0x7a, 0x11, 0x00, 0x00, 0x00, 0xc0, 0x56, 0xb9, 0x57, + 0x4a, 0x01, 0xf3, 0x68, 0xc7, 0xea, 0xed, 0xd5, 0x3d, 0x44, 0x01, 0x00, + 0x00, 0x00, 0x03, 0xc5, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x3a, 0xfb, 0x89, + 0x60, 0x6e, 0xed, 0x5c, 0x1d, 0x5f, 0xdd, 0x41, 0x14, 0x00, 0x00, 0x00, + 0xa0, 0x18, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x6b, 0x5f, 0x11, 0xcc, 0xb5, + 0xdd, 0xaa, 0xf7, 0x54, 0x07, 0x8a, 0x02, 0x00, 0x00, 0x80, 0x45, 0xa7, + 0x18, 0x00, 0x00, 0x00, 0x00, 0x5b, 0xc7, 0xc4, 0x80, 0xf9, 0x77, 0xfd, + 0xea, 0x43, 0xd5, 0x2d, 0x44, 0x01, 0x00, 0x00, 0xc0, 0x22, 0x5b, 0xb7, + 0xb4, 0xb4, 0x24, 0x05, 0x00, 0x00, 0x00, 0xd8, 0xc2, 0xe7, 0xd3, 0xd5, + 0xf9, 0x0d, 0x23, 0xeb, 0x99, 0x7f, 0xff, 0x5e, 0xdd, 0xa3, 0xfa, 0xa6, + 0x28, 0x00, 0x00, 0x00, 0x58, 0x44, 0x26, 0x06, 0x00, 0x00, 0x00, 0xc0, + 0x96, 0xdb, 0x2b, 0xa5, 0x80, 0x31, 0xb9, 0x49, 0xf5, 0x81, 0x6a, 0x4f, + 0x51, 0x00, 0x00, 0x00, 0xb0, 0x88, 0x14, 0x03, 0x00, 0x00, 0x00, 0x60, + 0xcb, 0xed, 0x2b, 0x82, 0xd1, 0xd9, 0xaf, 0x7a, 0x7f, 0xb5, 0x87, 0x28, + 0x00, 0x00, 0x00, 0x58, 0x34, 0x8a, 0x01, 0x00, 0x00, 0x00, 0xb0, 0xe5, + 0xf6, 0x13, 0xc1, 0x28, 0x1d, 0x54, 0xbd, 0xbb, 0xda, 0x55, 0x14, 0x00, + 0x00, 0x00, 0x2c, 0x12, 0xc5, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x72, 0x26, + 0x06, 0x8c, 0xd7, 0x9d, 0xab, 0x77, 0x54, 0x1b, 0x44, 0x01, 0x00, 0x00, + 0xc0, 0xa2, 0x50, 0x0c, 0x00, 0x00, 0x00, 0x80, 0x2d, 0x67, 0x62, 0xc0, + 0xb8, 0xdd, 0xbb, 0xba, 0xa1, 0x18, 0x00, 0x00, 0x00, 0x58, 0x14, 0x8a, + 0x01, 0x00, 0x00, 0x00, 0xb0, 0xe5, 0x4c, 0x0c, 0x18, 0xb7, 0xb3, 0xab, + 0x6f, 0x8a, 0x01, 0x00, 0x00, 0x80, 0x45, 0xa1, 0x18, 0x00, 0x00, 0x00, + 0x00, 0x5b, 0x66, 0x5d, 0x75, 0x73, 0x31, 0x8c, 0xda, 0x29, 0xd5, 0x92, + 0x18, 0x00, 0x00, 0x00, 0x58, 0x14, 0x8a, 0x01, 0x00, 0x00, 0x00, 0xb0, + 0x65, 0xf6, 0xaa, 0x76, 0x16, 0xc3, 0xa8, 0xfd, 0x8b, 0x08, 0x00, 0x00, + 0x00, 0x58, 0x24, 0x8a, 0x01, 0x00, 0x00, 0x00, 0xb0, 0x65, 0xf6, 0x13, + 0xc1, 0xe8, 0x9d, 0x2a, 0x02, 0x00, 0x00, 0x00, 0x16, 0x89, 0x62, 0x00, + 0x00, 0x00, 0x00, 0x6c, 0x99, 0x7d, 0x45, 0x30, 0x7a, 0x26, 0x06, 0x00, + 0x00, 0x00, 0xb0, 0x50, 0x14, 0x03, 0x00, 0x00, 0x00, 0x60, 0xcb, 0x98, + 0x18, 0x30, 0x6e, 0xe7, 0x55, 0x5f, 0x11, 0x03, 0x00, 0x00, 0x00, 0x8b, + 0x44, 0x31, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x8c, 0x89, 0x01, 0xe3, 0xf6, + 0x2f, 0xd5, 0x26, 0x31, 0x00, 0x00, 0x00, 0xb0, 0x48, 0x14, 0x03, 0x00, + 0x00, 0x00, 0x60, 0xcb, 0x98, 0x18, 0x30, 0x6e, 0xb6, 0x11, 0x00, 0x00, + 0x00, 0x60, 0xe1, 0x28, 0x06, 0x00, 0x00, 0x00, 0xc0, 0x96, 0x3d, 0x8f, + 0xbe, 0x99, 0x18, 0x46, 0xed, 0x54, 0x11, 0x00, 0x00, 0x00, 0xb0, 0x68, + 0x14, 0x03, 0x00, 0x00, 0x00, 0x60, 0xf3, 0xed, 0x55, 0xed, 0x2c, 0x86, + 0x51, 0x33, 0x31, 0x00, 0x00, 0x00, 0x80, 0x85, 0xb3, 0xbd, 0x08, 0x00, + 0x00, 0x60, 0x21, 0x5c, 0xbf, 0xe1, 0x0d, 0xcd, 0xbd, 0xab, 0x9b, 0x2c, + 0x7f, 0xbe, 0x57, 0xb5, 0xa1, 0x7a, 0x79, 0xde, 0x28, 0x83, 0xcd, 0xb5, + 0xaf, 0x08, 0x46, 0xed, 0x27, 0xd5, 0x97, 0xc4, 0x00, 0x00, 0x00, 0xc0, + 0xa2, 0x51, 0x0c, 0x00, 0x00, 0x80, 0xe9, 0xd9, 0xb7, 0xba, 0x57, 0x75, + 0xef, 0xea, 0x36, 0x0d, 0x45, 0x80, 0xab, 0xbb, 0xc2, 0xf9, 0xe1, 0xd5, + 0x1b, 0xab, 0xdf, 0xae, 0x4e, 0x17, 0x1f, 0x5c, 0xe3, 0xff, 0x5f, 0x8c, + 0xd7, 0x67, 0xab, 0x4b, 0xc4, 0x00, 0x00, 0x00, 0xc0, 0xa2, 0x51, 0x0c, + 0x00, 0x00, 0x80, 0xf1, 0xbb, 0x41, 0xf5, 0x0b, 0xd5, 0x21, 0xd5, 0x7d, + 0xaa, 0x7d, 0xb6, 0xf0, 0xeb, 0xd7, 0x57, 0x4f, 0xa8, 0x1e, 0x59, 0xbd, + 0xa6, 0x7a, 0x59, 0x75, 0xae, 0x58, 0xe1, 0x4a, 0xed, 0x27, 0x82, 0x51, + 0x3b, 0x45, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x22, 0xc5, 0x00, 0x00, 0x00, + 0x18, 0x9f, 0x5d, 0xab, 0x3b, 0x37, 0x14, 0x01, 0x0e, 0xa9, 0x7e, 0xbe, + 0x5a, 0xb7, 0x02, 0xdf, 0x77, 0x97, 0xea, 0x79, 0xd5, 0x13, 0xab, 0x97, + 0x54, 0x7f, 0x5a, 0x6d, 0x14, 0x37, 0x5c, 0x8e, 0x62, 0xc0, 0xb8, 0x9d, + 0x2a, 0x02, 0x00, 0x00, 0x00, 0x16, 0xd1, 0xba, 0xa5, 0xa5, 0x25, 0x29, + 0x00, 0x00, 0xc0, 0x7c, 0xdb, 0xb9, 0x3a, 0xb8, 0xba, 0xdb, 0xf2, 0xc7, + 0x5f, 0xa8, 0x76, 0x98, 0xc1, 0xcf, 0xfd, 0x62, 0xf5, 0x9c, 0xea, 0xdd, + 0x96, 0x00, 0xfe, 0xd3, 0xe7, 0xaa, 0x03, 0xc5, 0x30, 0x5a, 0x77, 0xc8, + 0xd4, 0x00, 0x00, 0x00, 0x00, 0x16, 0x90, 0x62, 0x00, 0x00, 0x00, 0xcc, + 0x9f, 0xed, 0xab, 0x3b, 0x55, 0xf7, 0xaa, 0xee, 0xdd, 0x30, 0x1d, 0x60, + 0xa7, 0x35, 0x3c, 0x9e, 0x13, 0xaa, 0x23, 0x1b, 0x8a, 0x02, 0xb0, 0xc8, + 0xd6, 0x57, 0xe7, 0x35, 0x94, 0x75, 0x18, 0x9f, 0x8b, 0xab, 0x6b, 0x57, + 0x17, 0x8a, 0x02, 0xb6, 0xd9, 0x2e, 0xd5, 0xad, 0xaa, 0xdb, 0xfc, 0xd4, + 0x6d, 0xf7, 0xea, 0xbd, 0xd5, 0xf1, 0xd5, 0xc7, 0x32, 0x75, 0x08, 0x00, + 0x00, 0xe6, 0x8a, 0x62, 0x00, 0x00, 0x00, 0xac, 0xbd, 0xf5, 0xd5, 0x41, + 0x0d, 0x45, 0x80, 0x7b, 0x35, 0x4c, 0x04, 0xd8, 0x75, 0xce, 0x8e, 0xf1, + 0x92, 0xea, 0x98, 0xea, 0x85, 0xd5, 0xf7, 0x2d, 0x19, 0x0b, 0x6a, 0xa7, + 0xea, 0xe3, 0xd5, 0x6d, 0x45, 0x31, 0x4a, 0x9f, 0xae, 0x6e, 0x27, 0x06, + 0xd8, 0x62, 0x37, 0x59, 0x7e, 0x9c, 0xf2, 0xd3, 0x25, 0x80, 0x7d, 0x97, + 0x1f, 0xbf, 0x5c, 0x95, 0xb3, 0x1a, 0x26, 0x0e, 0x1d, 0xdf, 0x50, 0x16, + 0xf8, 0x91, 0x18, 0x01, 0x00, 0x60, 0x6d, 0x29, 0x06, 0x00, 0x00, 0xc0, + 0xda, 0xb8, 0x6e, 0xf5, 0xa0, 0xea, 0x81, 0xd5, 0x21, 0xd5, 0xf5, 0x47, + 0x72, 0xdc, 0x3f, 0xac, 0x5e, 0x5a, 0xbd, 0x3a, 0x57, 0xdd, 0xb2, 0x98, + 0xf6, 0x68, 0x78, 0x93, 0xeb, 0x8e, 0xa2, 0x18, 0x9d, 0xff, 0xbf, 0x7a, + 0xa2, 0x18, 0xe0, 0x2a, 0x6d, 0x68, 0xd8, 0x2a, 0xe5, 0xb6, 0x0d, 0x45, + 0x80, 0x4b, 0xcb, 0x00, 0x7b, 0x6c, 0xe3, 0xf7, 0xbd, 0xa8, 0xfa, 0xc7, + 0xea, 0x5d, 0x0d, 0x45, 0x81, 0x7f, 0x17, 0x35, 0x00, 0x00, 0xcc, 0x9e, + 0x62, 0x00, 0x00, 0x00, 0xcc, 0xce, 0xcf, 0x54, 0x0f, 0xa8, 0x0e, 0xaf, + 0xee, 0x5b, 0xed, 0x38, 0xe2, 0x73, 0xf9, 0x56, 0xf5, 0x3b, 0xd5, 0xb1, + 0x95, 0x27, 0x15, 0x2c, 0x9a, 0x6b, 0x35, 0xbc, 0xc1, 0x75, 0x2f, 0x51, + 0x8c, 0xca, 0x33, 0xab, 0x3f, 0x13, 0x03, 0x54, 0xc3, 0x9b, 0xfd, 0x07, + 0x56, 0xb7, 0x5f, 0xbe, 0x1d, 0xd0, 0xb0, 0x35, 0xc0, 0x2c, 0xb6, 0x2e, + 0xfa, 0x42, 0x43, 0x41, 0xe0, 0x84, 0x86, 0x2d, 0x07, 0x3c, 0x8e, 0x00, + 0x00, 0x80, 0x19, 0x50, 0x0c, 0x00, 0x00, 0x80, 0xd5, 0x75, 0xcb, 0xea, + 0xa1, 0xd5, 0xc3, 0xaa, 0x3b, 0x54, 0xeb, 0x26, 0x76, 0x7e, 0x27, 0x57, + 0xcf, 0x6e, 0x18, 0xaf, 0x0e, 0x8b, 0x64, 0x97, 0xea, 0x1d, 0xd5, 0x7d, + 0x44, 0x31, 0x1a, 0x07, 0x57, 0x27, 0x89, 0x81, 0x05, 0xb3, 0x43, 0xc3, + 0x1b, 0xfe, 0x97, 0x5e, 0xfd, 0x7f, 0x50, 0xc3, 0x44, 0x80, 0xeb, 0xcd, + 0xc9, 0xf1, 0x9d, 0xd1, 0x50, 0x12, 0x38, 0xbe, 0xfa, 0x50, 0x75, 0x81, + 0x25, 0x03, 0x00, 0x80, 0xd5, 0xa1, 0x18, 0x00, 0x00, 0x00, 0x2b, 0xef, + 0xc0, 0x86, 0xa9, 0x00, 0x87, 0x37, 0x5c, 0x81, 0xb7, 0x08, 0x4e, 0xa8, + 0x8e, 0xa8, 0xbe, 0x66, 0xf9, 0x59, 0x20, 0x3b, 0x56, 0x6f, 0x69, 0x28, + 0xff, 0x30, 0xdf, 0x36, 0x56, 0xd7, 0xa9, 0xce, 0x17, 0x05, 0x0b, 0xe6, + 0x0f, 0xaa, 0xe7, 0x8e, 0xe4, 0x58, 0x7f, 0xd2, 0x30, 0x41, 0xe0, 0x84, + 0xea, 0xb8, 0x86, 0xd2, 0x00, 0x00, 0x00, 0xb0, 0x42, 0x14, 0x03, 0x00, + 0x00, 0x60, 0xdb, 0x6d, 0x57, 0xdd, 0xa5, 0xa1, 0x08, 0xf0, 0xf0, 0x6a, + 0xaf, 0x05, 0xcd, 0xe1, 0xa2, 0xea, 0x75, 0xd5, 0xef, 0x55, 0x3f, 0x74, + 0xb7, 0x60, 0x41, 0x6c, 0x5f, 0xfd, 0x65, 0xf5, 0x38, 0x51, 0xcc, 0xb5, + 0xcf, 0x37, 0x5c, 0x35, 0x0d, 0x8b, 0xe4, 0x3a, 0xd5, 0x37, 0x97, 0x3f, + 0x8e, 0xcd, 0xa6, 0xea, 0xd4, 0x86, 0x92, 0xc0, 0xf1, 0xd5, 0x29, 0x96, + 0x13, 0x00, 0x00, 0xb6, 0x8d, 0x62, 0x00, 0x00, 0x00, 0x6c, 0x9d, 0x9d, + 0xab, 0x43, 0xaa, 0x07, 0x37, 0x5c, 0x2d, 0x7c, 0x03, 0x91, 0xfc, 0xa7, + 0xb3, 0xaa, 0xff, 0xaf, 0x61, 0x2f, 0xef, 0x4b, 0xc4, 0xc1, 0x02, 0xd8, + 0xae, 0x7a, 0x43, 0xf5, 0x2b, 0xa2, 0x98, 0x5b, 0xc7, 0x56, 0x4f, 0x10, + 0x03, 0x0b, 0xe6, 0x77, 0x96, 0x7f, 0x1f, 0x4f, 0xc1, 0x37, 0xaa, 0xf7, + 0x37, 0x14, 0x05, 0xde, 0xd7, 0x50, 0x46, 0x04, 0x00, 0x00, 0xb6, 0x80, + 0x62, 0x00, 0x00, 0x00, 0x6c, 0xbe, 0xeb, 0x75, 0x59, 0x11, 0xe0, 0x7e, + 0x0d, 0xe5, 0x00, 0xae, 0xda, 0x17, 0xaa, 0xbb, 0x66, 0x7a, 0x00, 0x8b, + 0x61, 0x7d, 0xf5, 0xda, 0xea, 0x29, 0xa2, 0x98, 0x4b, 0xbf, 0x55, 0xbd, + 0x4a, 0x0c, 0x2c, 0x90, 0x9d, 0x1b, 0xde, 0x4c, 0x9f, 0x62, 0x71, 0xf1, + 0xec, 0xea, 0xbd, 0xd5, 0x3b, 0x1b, 0x4a, 0x02, 0xe7, 0x58, 0x6e, 0x00, + 0x00, 0xb8, 0x66, 0x8a, 0x01, 0x00, 0x00, 0x70, 0xf5, 0xf6, 0xae, 0x1e, + 0x50, 0x1d, 0xda, 0x50, 0x06, 0xd8, 0x41, 0x24, 0x5b, 0xe4, 0xe7, 0x1b, + 0x46, 0x01, 0xc3, 0x42, 0x3c, 0xc7, 0xae, 0x5e, 0x59, 0xfd, 0xa6, 0x28, + 0xe6, 0xce, 0x3d, 0xab, 0x7f, 0x12, 0x03, 0x0b, 0xe4, 0x99, 0xd5, 0x6b, + 0x16, 0xe0, 0x3c, 0x37, 0x56, 0x1f, 0x6f, 0xd8, 0x6e, 0xe0, 0x1d, 0xd5, + 0x69, 0x96, 0x1e, 0x00, 0x00, 0xae, 0x9c, 0x62, 0x00, 0x00, 0x00, 0x5c, + 0xd1, 0x2d, 0xab, 0x87, 0x2d, 0xdf, 0x6e, 0xdf, 0xf0, 0x66, 0x1f, 0x5b, + 0xe7, 0x21, 0xd5, 0xbb, 0xc4, 0xc0, 0x82, 0x79, 0x59, 0xf5, 0x7c, 0x31, + 0xcc, 0x8d, 0x0f, 0x37, 0x4c, 0x7a, 0xf9, 0x91, 0x28, 0x58, 0x10, 0xdb, + 0x57, 0x5f, 0xae, 0xfe, 0xdb, 0x02, 0x9e, 0xfb, 0x67, 0x1b, 0x4a, 0x02, + 0xef, 0xaa, 0x3e, 0x59, 0x6d, 0x72, 0x77, 0x00, 0x00, 0x80, 0xcb, 0x9e, + 0x28, 0x00, 0x00, 0x00, 0x75, 0x60, 0x75, 0xf8, 0xf2, 0xed, 0x00, 0x71, + 0xac, 0x98, 0xbd, 0x45, 0xc0, 0x02, 0x7a, 0x41, 0xc3, 0x16, 0x1a, 0xbf, + 0x2f, 0x8a, 0x35, 0xb3, 0xa9, 0x7a, 0x77, 0xf5, 0x92, 0xea, 0x13, 0xe2, + 0x60, 0xc1, 0xfc, 0x8f, 0x16, 0xb3, 0x14, 0x50, 0x75, 0xeb, 0xe5, 0xdb, + 0x0b, 0xaa, 0xef, 0x57, 0xef, 0x69, 0x28, 0x0a, 0xbc, 0x37, 0xe5, 0x20, + 0x00, 0x00, 0x16, 0x9c, 0x89, 0x01, 0x00, 0x00, 0x2c, 0xaa, 0xed, 0xaa, + 0xbb, 0x34, 0x14, 0x01, 0x1e, 0x5e, 0xed, 0x25, 0x92, 0x55, 0xf1, 0x8a, + 0xea, 0x28, 0x31, 0xb0, 0xa0, 0x9e, 0xd1, 0x30, 0xca, 0xdb, 0xd4, 0x91, + 0xd9, 0x39, 0xaf, 0x7a, 0x73, 0xf5, 0x47, 0x0d, 0x57, 0x4c, 0xc3, 0xa2, + 0x59, 0x57, 0x7d, 0xa6, 0xba, 0x95, 0x28, 0x2e, 0xe7, 0x82, 0xea, 0xc4, + 0xea, 0x84, 0xea, 0xad, 0xd5, 0xb7, 0x45, 0x02, 0x00, 0xc0, 0xc2, 0x3d, + 0x59, 0x50, 0x0c, 0x00, 0x00, 0x60, 0x01, 0x3d, 0xaa, 0x7a, 0x5d, 0xb5, + 0x87, 0x28, 0x56, 0xdd, 0x9b, 0xab, 0x5f, 0x12, 0x03, 0x0b, 0xec, 0x69, + 0xd5, 0x9f, 0x55, 0xeb, 0x45, 0xb1, 0xaa, 0xce, 0xac, 0x5e, 0x5d, 0xbd, + 0xbe, 0x3a, 0x5b, 0x1c, 0x2c, 0xb0, 0x07, 0x37, 0x5c, 0x21, 0xcf, 0x55, + 0xdb, 0x54, 0x7d, 0x6a, 0xf9, 0x31, 0xca, 0x9b, 0x1a, 0x26, 0x0b, 0x00, + 0x00, 0xc0, 0xe4, 0x29, 0x06, 0x00, 0x00, 0xb0, 0x68, 0x0e, 0x6f, 0x78, + 0x21, 0xd8, 0xb6, 0x5a, 0xb3, 0xf1, 0xd1, 0xea, 0x1e, 0x62, 0x60, 0xc1, + 0x3d, 0xb6, 0xfa, 0x3f, 0xfe, 0xdd, 0x59, 0x15, 0x5f, 0x6e, 0x28, 0x5e, + 0x1c, 0x53, 0xfd, 0x44, 0x1c, 0xd0, 0x89, 0xd5, 0xc1, 0x62, 0xd8, 0x6c, + 0x1b, 0xab, 0x7f, 0xa8, 0x8e, 0xad, 0xde, 0x56, 0x9d, 0x2f, 0x12, 0x00, + 0x00, 0xa6, 0x4a, 0x31, 0x00, 0x00, 0x80, 0x45, 0xf2, 0xa8, 0x86, 0x2b, + 0xc3, 0xbc, 0x39, 0x37, 0x3b, 0xdf, 0xa8, 0xf6, 0x11, 0x03, 0xf4, 0xa8, + 0xea, 0x8d, 0xd5, 0x0e, 0xa2, 0x58, 0x11, 0x1f, 0x6b, 0xd8, 0xaa, 0xe4, + 0x84, 0xca, 0x0b, 0x1b, 0x30, 0xb8, 0x7b, 0xf5, 0x11, 0x31, 0x6c, 0xb5, + 0x9f, 0x2c, 0xff, 0x9b, 0x72, 0x6c, 0xf5, 0x9e, 0xea, 0x12, 0x91, 0x00, + 0x00, 0x30, 0x25, 0x8a, 0x01, 0x00, 0x00, 0x2c, 0x0a, 0xa5, 0x80, 0xb5, + 0x71, 0x71, 0xb5, 0xa1, 0x61, 0x6c, 0x2f, 0x2c, 0xba, 0x07, 0x35, 0xec, + 0x6d, 0xbd, 0x41, 0x14, 0x5b, 0x65, 0x53, 0xf5, 0xee, 0xea, 0xa5, 0xd5, + 0xc7, 0xc5, 0x01, 0x57, 0xf0, 0xf7, 0xd5, 0x03, 0xc5, 0xb0, 0x22, 0xce, + 0x58, 0xfe, 0xf7, 0xfa, 0xb8, 0x86, 0x29, 0x0c, 0x00, 0x00, 0x30, 0x7a, + 0x8a, 0x01, 0x00, 0x00, 0x2c, 0x82, 0x47, 0x37, 0x5c, 0xa9, 0xab, 0x14, + 0xb0, 0x36, 0x6e, 0xd4, 0xb0, 0xff, 0x37, 0x50, 0xf7, 0x6c, 0xd8, 0xff, + 0x7b, 0x57, 0x51, 0x6c, 0xb6, 0xf3, 0x1a, 0xb6, 0x80, 0x79, 0x65, 0xf5, + 0x6f, 0xe2, 0x80, 0x2b, 0x75, 0x50, 0xf5, 0xe9, 0x6a, 0x9d, 0x28, 0x56, + 0xdc, 0x17, 0x1a, 0x0a, 0x02, 0x7f, 0x5d, 0x7d, 0x4d, 0x1c, 0x00, 0x00, + 0x8c, 0x95, 0x62, 0x00, 0x00, 0x00, 0x53, 0xf7, 0xf8, 0xea, 0x2f, 0xab, + 0xed, 0x44, 0xb1, 0x66, 0xee, 0x54, 0xfd, 0xb3, 0x18, 0xe0, 0x3f, 0xfd, + 0x42, 0x43, 0x39, 0xe0, 0xda, 0xa2, 0xb8, 0x5a, 0xdf, 0xa9, 0x5e, 0x53, + 0xbd, 0xb6, 0x3a, 0x5b, 0x1c, 0x70, 0xb5, 0xde, 0x54, 0x3d, 0x56, 0x0c, + 0xab, 0x6a, 0x53, 0xc3, 0x56, 0x0d, 0xaf, 0x5a, 0xfe, 0x37, 0x1c, 0x00, + 0x00, 0x46, 0x45, 0x31, 0x00, 0x00, 0x80, 0x29, 0x7b, 0x4c, 0xc3, 0x3e, + 0xb1, 0x4a, 0x01, 0x6b, 0xeb, 0x91, 0xd5, 0xdb, 0xc4, 0x00, 0x97, 0x73, + 0x87, 0xea, 0xbd, 0xd5, 0xf5, 0x44, 0x71, 0x05, 0x5f, 0xa9, 0xfe, 0xb4, + 0x3a, 0xa6, 0x61, 0xcf, 0x6f, 0xe0, 0xea, 0xed, 0xd3, 0x30, 0x4d, 0xc3, + 0x64, 0xa4, 0xd9, 0xf9, 0x44, 0xf5, 0xdb, 0xd5, 0x87, 0x44, 0x01, 0x00, + 0xc0, 0x58, 0x78, 0xc2, 0x00, 0x00, 0xc0, 0x54, 0xfd, 0xcf, 0xea, 0x0d, + 0xd5, 0x7a, 0x51, 0xac, 0xb9, 0xbd, 0x45, 0x00, 0x57, 0xf0, 0xa9, 0xea, + 0xc6, 0xcb, 0xb7, 0x03, 0xab, 0x03, 0xaa, 0x9b, 0xfd, 0xd4, 0x6d, 0x9f, + 0x16, 0x6f, 0x24, 0xf8, 0xc7, 0xaa, 0x3f, 0xa9, 0xfe, 0xae, 0xda, 0xe8, + 0x2e, 0x02, 0x9b, 0xed, 0xb9, 0x79, 0x8d, 0x6f, 0xd6, 0xee, 0x54, 0x7d, + 0x70, 0xf9, 0xdf, 0xad, 0xe7, 0x57, 0x1f, 0x15, 0x09, 0x00, 0x00, 0xf3, + 0xce, 0xc4, 0x00, 0x00, 0x00, 0xa6, 0xe8, 0x57, 0xab, 0xbf, 0x48, 0x29, + 0x60, 0x5e, 0xbc, 0xb2, 0x7a, 0x8e, 0x18, 0x60, 0x8b, 0xec, 0x5a, 0xed, + 0xd7, 0x95, 0x4f, 0x14, 0xd8, 0xd6, 0xb1, 0xfa, 0x3f, 0xaa, 0x2e, 0xd9, + 0x86, 0xaf, 0xbf, 0xa0, 0xab, 0xbf, 0x92, 0x7f, 0x5d, 0xb5, 0xfb, 0xf2, + 0x39, 0xec, 0x5a, 0x5d, 0x6b, 0xf9, 0xcf, 0xd7, 0x5e, 0xfe, 0x7c, 0xd7, + 0xea, 0x3a, 0xcb, 0x7f, 0xde, 0xb5, 0xba, 0xa8, 0x61, 0x3a, 0xc0, 0x27, + 0x2d, 0x3b, 0x6c, 0xb1, 0x3d, 0xab, 0xaf, 0x57, 0x3b, 0x8b, 0x62, 0xcd, + 0x2c, 0x55, 0xef, 0xa8, 0x7e, 0xb7, 0xfa, 0xbc, 0x38, 0x00, 0x00, 0x98, + 0x57, 0xda, 0xc4, 0x00, 0x00, 0x4c, 0xcd, 0x93, 0xaa, 0xd7, 0xa7, 0x14, + 0x30, 0x4f, 0x4c, 0x0c, 0x80, 0x2d, 0x77, 0x5e, 0x75, 0xea, 0x88, 0x8f, + 0xff, 0x07, 0x96, 0x10, 0x66, 0xe2, 0x88, 0x94, 0x02, 0xd6, 0xda, 0xba, + 0xea, 0x61, 0xd5, 0x43, 0xaa, 0x97, 0x54, 0x2f, 0x14, 0x09, 0x00, 0x00, + 0x73, 0xf9, 0xc0, 0xd5, 0xc4, 0x00, 0x00, 0x00, 0x26, 0xe4, 0x89, 0x0d, + 0x57, 0x9d, 0x2a, 0x05, 0xcc, 0x97, 0x93, 0xab, 0xbb, 0x8a, 0x01, 0x00, + 0x56, 0xd4, 0x6e, 0xd5, 0x37, 0x1b, 0x26, 0x72, 0x30, 0x1f, 0x2e, 0xae, + 0x6e, 0xd1, 0x30, 0xc5, 0x01, 0x00, 0x00, 0xe6, 0x8a, 0x17, 0x4c, 0x01, + 0x00, 0x98, 0x8a, 0x27, 0xa5, 0x14, 0x30, 0xaf, 0x4c, 0x0c, 0x00, 0x80, + 0x95, 0xf7, 0xf4, 0x94, 0x02, 0xe6, 0xcd, 0x0e, 0xd5, 0xf3, 0xc4, 0x00, + 0x00, 0xc0, 0x3c, 0x32, 0x31, 0x00, 0x00, 0x80, 0x29, 0x78, 0x72, 0xf5, + 0xba, 0x94, 0x02, 0xe6, 0xd5, 0xc6, 0x6a, 0x43, 0xdb, 0xb6, 0xa7, 0x39, + 0x00, 0x70, 0x99, 0x9d, 0x1a, 0xae, 0x4a, 0xff, 0x59, 0x51, 0xcc, 0x9d, + 0x8b, 0xab, 0x9f, 0xab, 0xbe, 0x21, 0x0a, 0x00, 0x00, 0xe6, 0x89, 0x17, + 0x4e, 0x01, 0x00, 0x18, 0xbb, 0xa7, 0x54, 0xaf, 0xf7, 0xd8, 0x76, 0xae, + 0x6d, 0x97, 0x37, 0x2e, 0x00, 0x60, 0x25, 0xfd, 0x4f, 0xbf, 0x5b, 0xe7, + 0xd6, 0x0e, 0xd5, 0x91, 0x62, 0x00, 0x00, 0x60, 0xde, 0x78, 0xf1, 0x14, + 0x00, 0x80, 0x31, 0x7b, 0x6a, 0xc3, 0xa4, 0x80, 0x75, 0xa2, 0x98, 0x7b, + 0xb6, 0x13, 0x00, 0x80, 0x95, 0xb1, 0x5d, 0xf5, 0x6c, 0x31, 0xcc, 0xb5, + 0x27, 0x56, 0x37, 0x15, 0x03, 0x00, 0x00, 0xf3, 0x44, 0x31, 0x00, 0x00, + 0x80, 0xb1, 0x7a, 0x5a, 0xf5, 0xda, 0x94, 0x02, 0xc6, 0x42, 0x31, 0x00, + 0x00, 0x56, 0xc6, 0xe1, 0xd5, 0x7e, 0x62, 0x98, 0x6b, 0x3b, 0x56, 0xcf, + 0x11, 0x03, 0x00, 0x00, 0xf3, 0x44, 0x31, 0x00, 0x00, 0x80, 0x31, 0xfa, + 0x8d, 0xea, 0xcf, 0x53, 0x0a, 0x18, 0x13, 0xc5, 0x00, 0x00, 0x58, 0x19, + 0xf7, 0x13, 0xc1, 0x28, 0x3c, 0xa9, 0xba, 0xb1, 0x18, 0x00, 0x00, 0x98, + 0x17, 0x8a, 0x01, 0x00, 0x00, 0x8c, 0xcd, 0x6f, 0x56, 0xff, 0x2b, 0xa5, + 0x80, 0xb1, 0x51, 0x0c, 0x00, 0x80, 0x95, 0xf1, 0xfb, 0xd5, 0xc5, 0x62, + 0x98, 0x7b, 0x1b, 0xaa, 0x23, 0xc5, 0x00, 0x00, 0xc0, 0xbc, 0x50, 0x0c, + 0x00, 0x00, 0x60, 0x4c, 0x9e, 0x5d, 0xbd, 0x4a, 0x0c, 0xa3, 0xa4, 0x18, + 0x00, 0x00, 0x2b, 0xe3, 0xb4, 0xea, 0x2f, 0xc4, 0x30, 0x0a, 0x4f, 0xc9, + 0xd4, 0x00, 0x00, 0x00, 0xe6, 0x84, 0x62, 0x00, 0x00, 0x00, 0x63, 0x71, + 0xab, 0xea, 0x95, 0x62, 0x18, 0xad, 0xbd, 0x44, 0x00, 0x00, 0x2b, 0xe6, + 0x45, 0xd5, 0xb9, 0x62, 0x98, 0x7b, 0x1b, 0xaa, 0xe7, 0x88, 0x01, 0x00, + 0x80, 0x79, 0xa0, 0x18, 0x00, 0x00, 0xc0, 0x58, 0x9c, 0x2e, 0x82, 0x51, + 0xbb, 0x89, 0x08, 0x00, 0x60, 0xc5, 0xfc, 0x47, 0xf5, 0x72, 0x31, 0x8c, + 0xc2, 0xd3, 0xaa, 0x1b, 0x89, 0x01, 0x00, 0x80, 0xb5, 0xa6, 0x18, 0x00, + 0x00, 0xc0, 0x58, 0x9c, 0x53, 0x9d, 0x29, 0x86, 0xd1, 0xba, 0x41, 0xb5, + 0x93, 0x18, 0x00, 0x60, 0xc5, 0xfc, 0x71, 0xf5, 0x4d, 0x31, 0xcc, 0xbd, + 0x0d, 0x0d, 0xdb, 0x61, 0x01, 0x00, 0xc0, 0x9a, 0x52, 0x0c, 0x00, 0x00, + 0x60, 0x4c, 0xbe, 0x20, 0x82, 0xd1, 0xfa, 0x54, 0xb5, 0x4e, 0x0c, 0x00, + 0xb0, 0x62, 0x2e, 0xa8, 0x7e, 0x5b, 0x0c, 0xa3, 0xf0, 0xf4, 0x86, 0x92, + 0x24, 0x00, 0x00, 0xac, 0x19, 0xc5, 0x00, 0x00, 0x00, 0xc6, 0xe4, 0x8b, + 0x22, 0x18, 0xa5, 0x0f, 0x56, 0xf7, 0x6e, 0x78, 0x03, 0x03, 0x00, 0x58, + 0x39, 0x6f, 0xae, 0x3e, 0x29, 0x86, 0xb9, 0xb7, 0x4b, 0xf5, 0x1c, 0x31, + 0x00, 0x00, 0xb0, 0x96, 0x14, 0x03, 0x00, 0x00, 0x18, 0x13, 0xc5, 0x80, + 0xf1, 0x39, 0xb6, 0x7a, 0x60, 0xf5, 0x23, 0x51, 0x00, 0xc0, 0x8a, 0x5b, + 0xaa, 0x8e, 0x58, 0xfe, 0xc8, 0x7c, 0xfb, 0xb5, 0x4c, 0x0d, 0x00, 0x00, + 0x60, 0x0d, 0x29, 0x06, 0x00, 0x00, 0x30, 0x26, 0xb6, 0x12, 0x18, 0x97, + 0x57, 0x57, 0xbf, 0x5c, 0x5d, 0x2c, 0x0a, 0x00, 0x58, 0x35, 0x27, 0x57, + 0xef, 0x14, 0xc3, 0xdc, 0xbb, 0x56, 0xf5, 0x9b, 0x62, 0x00, 0x00, 0x60, + 0xad, 0xac, 0x5b, 0x5a, 0x52, 0x28, 0x06, 0x00, 0x60, 0x34, 0xf6, 0xac, + 0xbe, 0x23, 0x86, 0xb9, 0xb7, 0x54, 0x3d, 0xb7, 0x7a, 0xa5, 0x28, 0x00, + 0x60, 0x26, 0x6e, 0xde, 0x50, 0xa0, 0xdc, 0x51, 0x14, 0x73, 0xed, 0xfc, + 0x6a, 0x9f, 0xea, 0x7b, 0xa2, 0x00, 0x00, 0x60, 0xd6, 0x4c, 0x0c, 0x00, + 0x00, 0x60, 0x4c, 0xbe, 0x5b, 0x9d, 0x25, 0x86, 0xb9, 0x76, 0x61, 0xf5, + 0x98, 0x94, 0x02, 0x00, 0x60, 0x96, 0xbe, 0x5a, 0xbd, 0x4e, 0x0c, 0x73, + 0xef, 0x5a, 0xd5, 0x6f, 0x88, 0x01, 0x00, 0x80, 0xb5, 0x60, 0x62, 0x00, + 0x00, 0x00, 0x63, 0xf3, 0xd1, 0xea, 0x6e, 0x62, 0x98, 0x4b, 0xe7, 0x54, + 0x0f, 0xad, 0xfe, 0x49, 0x14, 0x00, 0x30, 0x73, 0x7b, 0x54, 0x5f, 0xa9, + 0xae, 0x2b, 0x8a, 0xb9, 0x76, 0x5e, 0xc3, 0xd4, 0x80, 0xef, 0x8b, 0x02, + 0x00, 0x80, 0x59, 0x32, 0x31, 0x00, 0x00, 0x80, 0xb1, 0xf9, 0x82, 0x08, + 0xe6, 0xd2, 0x99, 0xd5, 0x2f, 0xa6, 0x14, 0x00, 0x00, 0x6b, 0xe5, 0xec, + 0xea, 0xe5, 0x62, 0x98, 0x7b, 0xbb, 0x56, 0x47, 0x88, 0x01, 0x00, 0x80, + 0x59, 0x53, 0x0c, 0x00, 0x00, 0x60, 0x6c, 0xbe, 0x28, 0x82, 0xb9, 0x5c, + 0x93, 0x3b, 0x57, 0x9f, 0x16, 0x05, 0x00, 0xac, 0xa9, 0x57, 0x37, 0x6c, + 0x2b, 0xc0, 0x7c, 0x7b, 0x56, 0x26, 0x3b, 0x00, 0x00, 0x30, 0x63, 0x8a, + 0x01, 0x00, 0x00, 0x8c, 0x8d, 0x62, 0xc0, 0x7c, 0xf9, 0x78, 0x75, 0x8f, + 0xea, 0xdf, 0x45, 0x01, 0x00, 0x6b, 0xee, 0xa2, 0xea, 0xb7, 0xc5, 0x30, + 0xf7, 0x76, 0x6b, 0x28, 0x07, 0x00, 0x00, 0xc0, 0xcc, 0xac, 0x5b, 0x5a, + 0x5a, 0x92, 0x02, 0x00, 0x00, 0x63, 0xb2, 0x77, 0xde, 0x84, 0x9e, 0x17, + 0xef, 0xac, 0x1e, 0x53, 0xfd, 0x44, 0x14, 0x00, 0x30, 0x37, 0xd6, 0x55, + 0x1f, 0xad, 0x0e, 0x16, 0xc5, 0x5c, 0xfb, 0x61, 0xb5, 0x4f, 0xc3, 0x16, + 0x10, 0x00, 0x00, 0xb0, 0xea, 0x4c, 0x0c, 0x00, 0x00, 0x60, 0x6c, 0x4e, + 0xaf, 0x7e, 0x24, 0x86, 0x35, 0xf7, 0xba, 0xea, 0x11, 0x29, 0x05, 0x00, + 0xc0, 0xbc, 0x59, 0xaa, 0x8e, 0x5c, 0xfe, 0xc8, 0xfc, 0xba, 0x4e, 0xf5, + 0x68, 0x31, 0x00, 0x00, 0x30, 0x2b, 0x8a, 0x01, 0x00, 0x00, 0x8c, 0xcd, + 0x52, 0xb6, 0x13, 0x58, 0x6b, 0xaf, 0xa8, 0x9e, 0x5e, 0x6d, 0x14, 0x05, + 0x00, 0xcc, 0xa5, 0x93, 0xaa, 0xb7, 0x89, 0x61, 0xae, 0x9d, 0x5f, 0xbd, + 0x43, 0x0c, 0x00, 0x00, 0xcc, 0x8a, 0x62, 0x00, 0x00, 0x00, 0x63, 0xa4, + 0x18, 0xb0, 0x36, 0x36, 0x56, 0x4f, 0xad, 0x8e, 0x12, 0x05, 0x00, 0xcc, + 0xbd, 0x23, 0xab, 0x0b, 0xc5, 0x30, 0xb7, 0xfe, 0x57, 0xf5, 0x1d, 0x31, + 0x00, 0x00, 0x30, 0x2b, 0x8a, 0x01, 0x00, 0x00, 0x8c, 0x91, 0x62, 0xc0, + 0xec, 0xfd, 0xb8, 0x7a, 0x68, 0x75, 0x8c, 0x28, 0x00, 0x60, 0x14, 0xbe, + 0x5e, 0xfd, 0x99, 0x18, 0xe6, 0xd2, 0xd9, 0xd5, 0xab, 0xc4, 0x00, 0x00, + 0xc0, 0x2c, 0x29, 0x06, 0x00, 0x00, 0x30, 0x46, 0x5f, 0x10, 0xc1, 0x4c, + 0xfd, 0xa0, 0xba, 0x6f, 0x75, 0x82, 0x28, 0x00, 0x60, 0x54, 0x5e, 0x52, + 0x9d, 0x25, 0x86, 0xb9, 0xf3, 0xb2, 0x86, 0x72, 0x00, 0x00, 0x00, 0xcc, + 0x8c, 0x62, 0x00, 0x00, 0x00, 0x63, 0x64, 0x62, 0xc0, 0xec, 0x7c, 0xa3, + 0xba, 0x6b, 0xf5, 0x31, 0x51, 0x00, 0xc0, 0xe8, 0x9c, 0xdd, 0x50, 0x0e, + 0x60, 0x7e, 0x9c, 0x51, 0xfd, 0xb9, 0x18, 0x00, 0x00, 0x98, 0xb5, 0x75, + 0x4b, 0x4b, 0x4b, 0x52, 0x00, 0x00, 0x60, 0x6c, 0xd6, 0x57, 0xe7, 0x55, + 0x3b, 0x8b, 0x62, 0x55, 0x7d, 0xae, 0x7a, 0x40, 0x75, 0xba, 0x28, 0x00, + 0x60, 0xb4, 0x76, 0xa8, 0x3e, 0x5f, 0xed, 0x27, 0x8a, 0xb9, 0xf0, 0xe4, + 0xea, 0x0d, 0x62, 0x00, 0x00, 0x60, 0xd6, 0x4c, 0x0c, 0x00, 0x00, 0x60, + 0x8c, 0x36, 0x55, 0xa7, 0x89, 0x61, 0x55, 0xfc, 0xb8, 0x7a, 0x7f, 0x75, + 0x54, 0x75, 0x70, 0x4a, 0x01, 0x00, 0x30, 0x76, 0x17, 0x57, 0x77, 0xa9, + 0x8e, 0xce, 0xb6, 0x02, 0x6b, 0xed, 0xb4, 0xea, 0xaf, 0xc4, 0x00, 0x00, + 0xc0, 0x5a, 0x30, 0x31, 0x00, 0x00, 0x80, 0xb1, 0x7a, 0x73, 0xf5, 0x18, + 0x31, 0x6c, 0xb3, 0x8d, 0xd5, 0xa7, 0xab, 0x0f, 0x2e, 0xdf, 0x4e, 0xac, + 0x2e, 0x10, 0x0b, 0x00, 0x4c, 0xd2, 0xb5, 0xaa, 0x27, 0x55, 0xcf, 0xae, + 0x6e, 0x22, 0x8e, 0x99, 0x7b, 0x64, 0xf5, 0x36, 0x31, 0x00, 0x00, 0xb0, + 0x16, 0x14, 0x03, 0x00, 0x00, 0x18, 0xab, 0xdf, 0xad, 0x5e, 0x2c, 0x86, + 0xad, 0xf2, 0xb5, 0x2e, 0x2b, 0x02, 0x7c, 0xa0, 0x3a, 0x47, 0x24, 0x00, + 0xb0, 0x50, 0x76, 0x68, 0x28, 0x58, 0x1e, 0x59, 0x1d, 0x28, 0x8e, 0x99, + 0xf8, 0x54, 0x75, 0xc7, 0xca, 0x8b, 0xb1, 0x00, 0x00, 0xac, 0x09, 0xc5, + 0x00, 0x00, 0x00, 0xc6, 0xea, 0x11, 0xd5, 0x5b, 0xc5, 0xb0, 0x59, 0xbe, + 0x5c, 0x7d, 0xa8, 0xfa, 0x70, 0xf5, 0x0f, 0xd5, 0xf7, 0x45, 0x02, 0x00, + 0x34, 0x6c, 0x33, 0x7a, 0x68, 0xf5, 0xf4, 0xea, 0x9e, 0xd5, 0x4e, 0x22, + 0x59, 0x35, 0xf7, 0x69, 0x28, 0x65, 0x02, 0x00, 0xc0, 0x9a, 0x50, 0x0c, + 0x00, 0x00, 0x60, 0xac, 0x0e, 0xa8, 0x3e, 0x2f, 0x86, 0x2b, 0xf5, 0xdd, + 0xea, 0x23, 0x0d, 0x2f, 0x3e, 0xbf, 0xbf, 0xfa, 0x86, 0x48, 0x00, 0x80, + 0x6b, 0xb0, 0x4b, 0x75, 0xef, 0xea, 0xc1, 0xd5, 0x61, 0xd5, 0x0d, 0x45, + 0xb2, 0x62, 0x3e, 0x50, 0xdd, 0x57, 0x0c, 0x00, 0x00, 0xac, 0x25, 0xc5, + 0x00, 0x00, 0x00, 0xc6, 0x6a, 0x87, 0xea, 0xfc, 0xe5, 0x8f, 0x8b, 0xee, + 0x07, 0xd5, 0x3f, 0x36, 0x4c, 0x04, 0xf8, 0x50, 0xf5, 0x25, 0x91, 0x00, + 0x00, 0xdb, 0x60, 0xbb, 0xea, 0xe0, 0x86, 0x69, 0x02, 0x87, 0x55, 0x3f, + 0x27, 0x92, 0xad, 0xb6, 0xd4, 0xb0, 0x85, 0xc0, 0xa7, 0x44, 0x01, 0x00, + 0xc0, 0x5a, 0x52, 0x0c, 0x00, 0x00, 0x60, 0xcc, 0x6e, 0x5d, 0xfd, 0x6e, + 0xc3, 0xb6, 0x02, 0xeb, 0x17, 0xe8, 0xbc, 0x97, 0xaa, 0x53, 0xaa, 0xb7, + 0x57, 0xef, 0xab, 0x4e, 0xad, 0x36, 0xb9, 0x3b, 0x00, 0x00, 0xab, 0xe4, + 0x16, 0x0d, 0x05, 0x81, 0xc3, 0xaa, 0xbb, 0x34, 0x14, 0x07, 0xd8, 0x3c, + 0x6f, 0xad, 0x0e, 0x17, 0x03, 0x00, 0x00, 0x6b, 0x4d, 0x31, 0x00, 0x00, + 0x80, 0x29, 0x38, 0xa0, 0x3a, 0xaa, 0x7a, 0x6c, 0xd3, 0x7d, 0xa1, 0x7a, + 0x63, 0xf5, 0xf1, 0xea, 0xf8, 0xea, 0x6d, 0xd5, 0x57, 0x2c, 0x3b, 0x00, + 0xb0, 0x06, 0xae, 0xdb, 0xb0, 0xe5, 0xc0, 0xa1, 0xd5, 0x43, 0xaa, 0xdd, + 0x44, 0x72, 0xb5, 0x8f, 0xdf, 0x6e, 0x5d, 0x7d, 0x51, 0x14, 0x00, 0x00, + 0xac, 0x35, 0xc5, 0x00, 0x00, 0x00, 0xa6, 0xe4, 0x96, 0xd5, 0xf3, 0xab, + 0xc7, 0x54, 0xdb, 0x4f, 0xe0, 0x7c, 0x2e, 0xa8, 0x4e, 0xac, 0x4e, 0xa8, + 0xde, 0x52, 0x7d, 0xc7, 0x12, 0x03, 0x00, 0x73, 0x64, 0xfb, 0xea, 0xce, + 0x0d, 0x57, 0xc4, 0x3f, 0xac, 0xda, 0x5b, 0x24, 0x97, 0x73, 0x4c, 0xf5, + 0x54, 0x31, 0x00, 0x00, 0x30, 0x0f, 0x14, 0x03, 0x00, 0x00, 0x98, 0xa2, + 0x9b, 0x55, 0xcf, 0xab, 0x7e, 0xb5, 0xf1, 0x15, 0x04, 0xce, 0xaf, 0xfe, + 0xa1, 0x3a, 0xae, 0x7a, 0x47, 0x75, 0xae, 0xe5, 0x04, 0x00, 0x46, 0xe2, + 0xc0, 0xea, 0xc1, 0x0d, 0xd3, 0x04, 0xee, 0x5a, 0xad, 0x5b, 0xe0, 0x2c, + 0x2e, 0xa8, 0x7e, 0xae, 0xfa, 0x96, 0xbb, 0x05, 0x00, 0x00, 0xf3, 0x40, + 0x31, 0x00, 0x00, 0x80, 0x29, 0xdb, 0xa7, 0x61, 0x8b, 0x81, 0x79, 0x2f, + 0x08, 0x7c, 0xbf, 0x7a, 0x4f, 0x43, 0x19, 0xe0, 0x7d, 0xd5, 0x45, 0x96, + 0x0e, 0x00, 0x18, 0xb9, 0x1b, 0x54, 0xf7, 0x6f, 0x98, 0x26, 0x70, 0x9f, + 0x6a, 0xa7, 0x05, 0x3b, 0xff, 0x3f, 0x68, 0x28, 0xaa, 0x02, 0x00, 0xc0, + 0x5c, 0x50, 0x0c, 0x00, 0x00, 0x60, 0x11, 0xfc, 0xb7, 0x86, 0x2d, 0x06, + 0xe6, 0xa9, 0x20, 0xf0, 0x8d, 0xea, 0x5d, 0xd5, 0xf1, 0xd5, 0x3f, 0x56, + 0x97, 0x58, 0x26, 0x00, 0x60, 0xa2, 0x76, 0xa9, 0xee, 0xdd, 0x30, 0x4d, + 0xe0, 0xb0, 0xea, 0x86, 0x13, 0x3f, 0xdf, 0x73, 0xaa, 0x7d, 0xab, 0xb3, + 0x2c, 0x3d, 0x00, 0x00, 0xf3, 0x42, 0x31, 0x00, 0x00, 0x80, 0x45, 0x72, + 0xd3, 0xea, 0xd9, 0x0d, 0x7b, 0xbd, 0xae, 0xc5, 0x55, 0x6b, 0x5f, 0x68, + 0x98, 0x0a, 0x70, 0x7c, 0x75, 0x8a, 0xe5, 0x00, 0x00, 0x16, 0xd0, 0xfa, + 0xea, 0x76, 0x0d, 0xdb, 0x0d, 0x3c, 0xb8, 0xba, 0xfd, 0x04, 0xcf, 0xf1, + 0x05, 0xd5, 0xcb, 0x2d, 0x35, 0x00, 0x00, 0xf3, 0x44, 0x31, 0x00, 0x00, + 0x80, 0x45, 0x74, 0x69, 0x41, 0xe0, 0x29, 0xd5, 0x86, 0x55, 0xfc, 0x39, + 0x9b, 0xaa, 0x93, 0x1b, 0x8a, 0x00, 0x6f, 0xaf, 0xfe, 0x4d, 0xf4, 0x00, + 0x00, 0x97, 0x73, 0xb3, 0x2e, 0x2b, 0x09, 0xfc, 0x42, 0xb5, 0xc3, 0xc8, + 0xcf, 0xe7, 0xcc, 0x6a, 0xbf, 0xea, 0x7c, 0x4b, 0x0b, 0x00, 0xc0, 0x3c, + 0x51, 0x0c, 0x00, 0x00, 0x60, 0x91, 0xdd, 0xa4, 0xfa, 0xad, 0x56, 0xb6, + 0x20, 0x70, 0x61, 0xf5, 0xd1, 0xea, 0x84, 0xea, 0x6f, 0x1b, 0x5e, 0x1c, + 0x06, 0x00, 0xe0, 0x9a, 0x5d, 0xb7, 0x61, 0xcb, 0x81, 0x43, 0x1b, 0xb6, + 0x1c, 0xb8, 0xce, 0x08, 0xcf, 0xe1, 0xd7, 0xaa, 0xd7, 0x5a, 0x4a, 0x00, + 0x00, 0xe6, 0x8d, 0x62, 0x00, 0x00, 0x00, 0xd4, 0xde, 0xd5, 0x73, 0xaa, + 0x27, 0x57, 0x3b, 0x6f, 0xc5, 0xd7, 0xff, 0xb8, 0xfa, 0x70, 0xc3, 0x36, + 0x01, 0xef, 0xa8, 0xce, 0x15, 0x29, 0x00, 0xc0, 0x36, 0xd9, 0xbe, 0xba, + 0x73, 0x75, 0x78, 0xf5, 0xb0, 0xe5, 0xc7, 0x6b, 0xf3, 0xee, 0xeb, 0xd5, + 0xfe, 0xd5, 0x45, 0x96, 0x0f, 0x00, 0x80, 0x79, 0xa3, 0x18, 0x00, 0x00, + 0x00, 0x97, 0xd9, 0xab, 0x7a, 0x5e, 0xf5, 0xa4, 0xae, 0x7e, 0x82, 0xc0, + 0x99, 0xd5, 0xe7, 0xab, 0xcf, 0x55, 0xef, 0x6f, 0x28, 0x05, 0x5c, 0x28, + 0x3e, 0x00, 0x80, 0x55, 0x73, 0xbb, 0xea, 0x91, 0xd5, 0xc3, 0x1b, 0xde, + 0x7c, 0x9f, 0x47, 0x8f, 0xad, 0xfe, 0xc6, 0x52, 0x01, 0x00, 0x30, 0x8f, + 0x14, 0x03, 0x00, 0x00, 0xe0, 0x8a, 0x6e, 0x54, 0x1d, 0xd9, 0x70, 0x75, + 0xda, 0x97, 0xab, 0x2f, 0x34, 0x14, 0x01, 0x2e, 0xbd, 0x9d, 0x2d, 0x22, + 0x00, 0x80, 0x35, 0x73, 0x50, 0xf5, 0xb8, 0x86, 0x37, 0xe2, 0x6f, 0xbc, + 0x86, 0xc7, 0xf1, 0x83, 0xea, 0x6b, 0x0d, 0x93, 0x02, 0x4e, 0xab, 0x5e, + 0x58, 0x6d, 0xb2, 0x3c, 0x00, 0x00, 0xcc, 0x23, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x60, 0x8c, 0xd6, 0x57, 0x77, 0x6d, 0xd8, 0x6e, 0xe0, 0x97, + 0xaa, 0xeb, 0xad, 0xf0, 0xf7, 0xbf, 0xa8, 0x3a, 0xbd, 0xe1, 0xcd, 0xff, + 0xff, 0x7a, 0xfb, 0x6a, 0x75, 0x8e, 0x25, 0x00, 0x00, 0x60, 0x2c, 0x14, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x80, 0xb1, 0xdb, 0xa9, 0xba, 0x6f, 0xf5, + 0xf8, 0xea, 0x21, 0xd5, 0x8e, 0x9b, 0xf9, 0x75, 0x67, 0x77, 0xe5, 0x6f, + 0xfc, 0x7f, 0xad, 0xfa, 0x46, 0x26, 0x00, 0x00, 0x00, 0x30, 0x11, 0x8a, + 0x01, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x94, 0x5c, 0xaf, 0x7a, 0x74, 0xc3, + 0x14, 0x81, 0xfd, 0x1a, 0x46, 0xfd, 0x5f, 0xd9, 0xed, 0x9b, 0xd5, 0xc5, + 0xe2, 0x02, 0x00, 0x60, 0x11, 0x28, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0x84, 0xad, 0x17, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x4c, 0x97, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, + 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, + 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, + 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, + 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, + 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, + 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x4c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x4c, 0xd8, 0xf6, 0x22, 0x00, 0x80, 0xb9, 0xb7, 0xae, 0xba, + 0x5f, 0xf5, 0xf8, 0xea, 0xeb, 0xd5, 0x27, 0xaa, 0x7f, 0xae, 0xbe, 0x2b, + 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x9a, 0x28, 0x06, 0x00, 0xc0, + 0xfc, 0xda, 0x50, 0x3d, 0xaa, 0x3a, 0xb2, 0x3a, 0xf0, 0x4a, 0xfe, 0xfe, + 0xcc, 0xea, 0x94, 0xe5, 0xdb, 0x89, 0xd5, 0x49, 0xd5, 0x8f, 0xc5, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xb4, 0x75, 0x4b, 0x4b, 0x4b, 0x52, + 0x00, 0x80, 0xf9, 0xf2, 0xb3, 0xd5, 0x53, 0xab, 0x67, 0x56, 0xd7, 0xdb, + 0x82, 0xaf, 0xdb, 0x58, 0x9d, 0xd6, 0xe5, 0xcb, 0x02, 0xa7, 0x56, 0x9b, + 0x44, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x4b, 0x31, 0x00, 0x00, + 0xe6, 0xc7, 0x1d, 0xaa, 0xe7, 0x55, 0x0f, 0x6d, 0xe5, 0xa6, 0xfa, 0x9c, + 0x5b, 0x7d, 0xaa, 0xcb, 0xb6, 0x1f, 0xf8, 0xe7, 0xea, 0x0c, 0x51, 0x03, + 0x00, 0x00, 0x00, 0x00, 0xc0, 0xe2, 0x50, 0x0c, 0x00, 0x80, 0xb5, 0xb7, + 0x7b, 0xf5, 0xa2, 0xea, 0x19, 0xd5, 0x76, 0x33, 0xf8, 0x79, 0x3f, 0xbd, + 0x05, 0xc1, 0xa5, 0x93, 0x05, 0xce, 0xb6, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x30, 0x4d, 0x8a, 0x01, 0x00, 0xb0, 0xb6, 0x1e, 0x57, 0xfd, 0x51, + 0xb5, 0xe7, 0x1a, 0x1e, 0xc3, 0xc6, 0xea, 0xf3, 0x0d, 0x53, 0x05, 0x2e, + 0xbd, 0x7d, 0xce, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x34, 0x28, + 0x06, 0x00, 0xc0, 0xda, 0xd8, 0xb7, 0xfa, 0xb3, 0xea, 0xbe, 0x73, 0x7a, + 0x7c, 0xb7, 0xa9, 0x3e, 0x63, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, + 0xfc, 0xd6, 0x8b, 0x00, 0x00, 0x66, 0x6a, 0xe7, 0xea, 0xe8, 0x86, 0x2b, + 0xf2, 0xef, 0x3b, 0xc7, 0xc7, 0xf9, 0x0c, 0x4b, 0x05, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xd3, 0x60, 0x62, 0x00, 0x00, 0xcc, 0xce, 0x2f, 0x56, 0x7f, + 0x5e, 0xed, 0x3f, 0x82, 0x63, 0xfd, 0x49, 0xb5, 0x77, 0x75, 0x96, 0x65, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x80, 0x71, 0xdb, 0x5e, 0x04, 0x00, 0xb0, + 0xea, 0x6e, 0x54, 0xfd, 0x71, 0x75, 0xf8, 0x88, 0x8e, 0x79, 0xe7, 0xea, + 0x49, 0xd5, 0x2b, 0x2c, 0x1f, 0x00, 0x00, 0x00, 0x2c, 0xbc, 0xe7, 0x56, + 0xbb, 0x54, 0xa7, 0x57, 0xdf, 0xae, 0xbe, 0xb5, 0xfc, 0xf9, 0x0f, 0x45, + 0x03, 0x00, 0xe3, 0x60, 0x62, 0x00, 0x00, 0xac, 0x9e, 0xf5, 0x0d, 0x6f, + 0xae, 0xff, 0x61, 0xb5, 0xdb, 0x08, 0x8f, 0xff, 0xdb, 0xd5, 0x3e, 0xd5, + 0xc5, 0x96, 0x12, 0x00, 0x00, 0x00, 0x16, 0xd6, 0xd1, 0xd5, 0x0b, 0xaf, + 0xe2, 0xef, 0x2e, 0xa8, 0xce, 0xa8, 0xce, 0x5c, 0xfe, 0xf8, 0xb5, 0x2b, + 0xf9, 0xfc, 0xcc, 0xca, 0x1b, 0x11, 0x00, 0xb0, 0xc6, 0x14, 0x03, 0x00, + 0x60, 0x75, 0xfc, 0x7c, 0xf5, 0xda, 0xea, 0x8e, 0x23, 0x3f, 0x8f, 0x47, + 0x55, 0xc7, 0x59, 0x4e, 0x00, 0x00, 0x00, 0x58, 0x48, 0x4f, 0xae, 0x8e, + 0xd9, 0xc6, 0xef, 0x71, 0x61, 0xf5, 0x83, 0xae, 0xba, 0x38, 0x70, 0x46, + 0xf5, 0xcd, 0x6a, 0xa3, 0xb8, 0x01, 0x60, 0xf5, 0x28, 0x06, 0x00, 0xc0, + 0xca, 0xda, 0xbd, 0x7a, 0x59, 0xf5, 0xd4, 0x86, 0x89, 0x01, 0x63, 0xf7, + 0xb1, 0xea, 0x6e, 0x96, 0x15, 0x00, 0x00, 0x00, 0x16, 0xce, 0x61, 0xd5, + 0xdf, 0x55, 0xdb, 0xcd, 0xe0, 0x67, 0x5d, 0xd8, 0x30, 0xb9, 0xf0, 0xdb, + 0xd5, 0x27, 0xaa, 0x17, 0x57, 0x3f, 0xb2, 0x04, 0x00, 0xb0, 0x72, 0x14, + 0x03, 0x00, 0x60, 0xe5, 0x1c, 0x5e, 0xbd, 0xa6, 0xda, 0x73, 0x62, 0xe7, + 0x75, 0xc7, 0xea, 0x93, 0x96, 0x17, 0x00, 0x00, 0x00, 0x16, 0xc6, 0x1d, + 0xab, 0x0f, 0x57, 0xd7, 0x5a, 0xa3, 0x9f, 0x7f, 0x46, 0xf5, 0xb4, 0xea, + 0x78, 0x4b, 0x01, 0x00, 0x2b, 0x63, 0xbd, 0x08, 0x00, 0x60, 0x9b, 0xed, + 0x5b, 0xbd, 0xaf, 0xfa, 0xdb, 0xa6, 0x57, 0x0a, 0xa8, 0xfa, 0x75, 0x4b, + 0x0c, 0x00, 0x00, 0x00, 0x0b, 0x63, 0xbf, 0xea, 0x84, 0xd6, 0xae, 0x14, + 0x50, 0x75, 0xa3, 0xea, 0x5d, 0x0d, 0xaf, 0xb5, 0x5c, 0xd7, 0x92, 0x00, + 0xc0, 0xb6, 0x33, 0x31, 0x00, 0x00, 0xb6, 0xde, 0xce, 0xd5, 0xf3, 0xaa, + 0xa3, 0xaa, 0x9d, 0x26, 0x7c, 0x9e, 0x17, 0x55, 0x37, 0xad, 0xbe, 0x63, + 0xc9, 0x01, 0x00, 0x00, 0x60, 0xd2, 0x6e, 0x54, 0x9d, 0xb4, 0xfc, 0x3a, + 0xc0, 0xbc, 0x38, 0xb3, 0x7a, 0x7a, 0xf5, 0x4e, 0xcb, 0x03, 0x00, 0x5b, + 0xcf, 0xc4, 0x00, 0x00, 0xd8, 0x3a, 0x77, 0xab, 0x3e, 0x5b, 0xbd, 0xb0, + 0x69, 0x97, 0x02, 0xaa, 0x76, 0x6c, 0x18, 0xdf, 0x07, 0x00, 0x00, 0x00, + 0x4c, 0xd7, 0x75, 0xaa, 0xf7, 0x34, 0x5f, 0xa5, 0x80, 0xaa, 0x9f, 0xad, + 0xde, 0x51, 0xfd, 0x65, 0xb5, 0x87, 0x65, 0x02, 0x80, 0xad, 0x63, 0x62, + 0x00, 0x00, 0x6c, 0x99, 0x1d, 0xab, 0x17, 0x55, 0xcf, 0xad, 0xb6, 0x5b, + 0xa0, 0xf3, 0xfe, 0xee, 0xf2, 0x0b, 0x03, 0x17, 0xba, 0x0b, 0x00, 0x00, + 0x00, 0xc0, 0xe4, 0xec, 0x54, 0xbd, 0xb7, 0xba, 0xe7, 0x9c, 0x1f, 0xe7, + 0x19, 0x0d, 0x17, 0x2f, 0x1c, 0x6f, 0xc9, 0x00, 0x60, 0xcb, 0x98, 0x18, + 0x00, 0x00, 0x9b, 0xef, 0xc0, 0xea, 0xe3, 0x0d, 0x5b, 0x07, 0x6c, 0xb7, + 0x60, 0xe7, 0xbe, 0x67, 0xf5, 0x68, 0x77, 0x01, 0x00, 0x00, 0x00, 0x98, + 0x9c, 0xf5, 0xd5, 0xb1, 0xcd, 0x7f, 0x29, 0xa0, 0x86, 0xad, 0x0e, 0xde, + 0x55, 0xfd, 0x6d, 0x75, 0x7d, 0x4b, 0x07, 0x00, 0x5b, 0xf6, 0x0b, 0x1f, + 0x00, 0xb8, 0xe6, 0xdf, 0x97, 0x47, 0x54, 0xa7, 0x54, 0xb7, 0x5b, 0xe0, + 0x1c, 0x7e, 0xc3, 0x5d, 0x01, 0x00, 0x00, 0x00, 0x26, 0xe7, 0x95, 0xd5, + 0xe1, 0x23, 0x3b, 0xe6, 0xc3, 0xab, 0xcf, 0x55, 0x8f, 0xb4, 0x7c, 0x00, + 0xb0, 0x79, 0x6c, 0x25, 0x00, 0x00, 0x57, 0x6f, 0x9f, 0xea, 0xaf, 0xaa, + 0x7b, 0x88, 0xa2, 0xaa, 0xbb, 0x57, 0x27, 0x8a, 0x01, 0x00, 0x00, 0x00, + 0x26, 0xe1, 0xa8, 0xea, 0xe5, 0x23, 0x3f, 0x87, 0xe3, 0xaa, 0x67, 0x54, + 0xdf, 0xb3, 0x9c, 0x00, 0x70, 0xd5, 0x4c, 0x0c, 0x00, 0x80, 0xab, 0xf6, + 0x84, 0xea, 0x33, 0x29, 0x05, 0xfc, 0xb4, 0x23, 0x44, 0x00, 0x00, 0x00, + 0x00, 0x93, 0xf0, 0xd8, 0xea, 0x65, 0x13, 0x38, 0x8f, 0xc3, 0xab, 0xd3, + 0xaa, 0xa7, 0x58, 0x52, 0x00, 0xb8, 0x6a, 0x26, 0x06, 0x00, 0xc0, 0x15, + 0xdd, 0xb0, 0x3a, 0xa6, 0x3a, 0x54, 0x14, 0x57, 0xb0, 0xb1, 0xda, 0xaf, + 0xfa, 0xba, 0x28, 0x00, 0x00, 0x00, 0x60, 0xb4, 0xee, 0x55, 0xbd, 0xa7, + 0xda, 0x71, 0x62, 0xe7, 0x75, 0x42, 0xf5, 0xb4, 0xea, 0xdb, 0x96, 0x18, + 0x00, 0x2e, 0xcf, 0xc4, 0x00, 0x00, 0xb8, 0xbc, 0x4b, 0xf7, 0xa8, 0x53, + 0x0a, 0xb8, 0x72, 0xdb, 0x2d, 0x3f, 0xc1, 0x06, 0x00, 0x00, 0x00, 0xc6, + 0xe9, 0xf6, 0xd5, 0x3b, 0x9b, 0x5e, 0x29, 0xa0, 0xea, 0xc1, 0x0d, 0xaf, + 0xeb, 0x98, 0x1e, 0x00, 0x00, 0xff, 0x85, 0x89, 0x01, 0x00, 0x30, 0xd8, + 0xbd, 0x7a, 0x75, 0xf5, 0x78, 0x51, 0x5c, 0xa3, 0xb3, 0xab, 0xbd, 0xab, + 0xf3, 0x45, 0x01, 0x00, 0x00, 0x00, 0xa3, 0x72, 0xb3, 0xea, 0xa4, 0x6a, + 0xcf, 0x05, 0x38, 0xd7, 0x77, 0x57, 0x4f, 0xad, 0x4e, 0xb7, 0xec, 0x00, + 0x60, 0x62, 0x00, 0x00, 0x54, 0xdd, 0xaf, 0xa1, 0x4d, 0xae, 0x14, 0xb0, + 0x79, 0xf6, 0xa8, 0x1e, 0x27, 0x06, 0x00, 0x00, 0x00, 0x18, 0x95, 0xeb, + 0x37, 0x6c, 0x1f, 0xb0, 0xe7, 0x82, 0x9c, 0xef, 0x03, 0xbb, 0x6c, 0x7a, + 0xc0, 0x3a, 0xcb, 0x0f, 0xc0, 0xa2, 0x33, 0x31, 0x00, 0x80, 0x45, 0xb6, + 0x4b, 0xf5, 0xf2, 0xea, 0xd7, 0x3d, 0x41, 0xdc, 0x62, 0x5f, 0xa8, 0x6e, + 0x55, 0x79, 0x20, 0x01, 0x00, 0x00, 0x00, 0xf3, 0x6f, 0x97, 0xea, 0x43, + 0xd5, 0x9d, 0x17, 0xf4, 0xfc, 0xdf, 0xdb, 0x50, 0x10, 0xf8, 0x96, 0xbb, + 0x02, 0x00, 0x8b, 0xca, 0xc4, 0x00, 0x00, 0x16, 0xd5, 0x5d, 0xaa, 0x4f, + 0x57, 0xcf, 0x4a, 0x29, 0x60, 0x6b, 0x1c, 0x50, 0x1d, 0x22, 0x06, 0x00, + 0x00, 0x00, 0x98, 0x7b, 0x3b, 0x54, 0x6f, 0x6b, 0x71, 0x4b, 0x01, 0x55, + 0xf7, 0xcf, 0xf4, 0x00, 0x00, 0x16, 0x9c, 0x62, 0x00, 0x00, 0x8b, 0xf8, + 0x64, 0xf8, 0xe8, 0xea, 0xa3, 0xd5, 0x7e, 0xe2, 0xd8, 0x26, 0x47, 0x88, + 0x00, 0x00, 0x00, 0x00, 0xe6, 0xda, 0xba, 0xea, 0x98, 0x86, 0x37, 0xc6, + 0x17, 0xdd, 0x6e, 0xd5, 0xeb, 0x1b, 0xa6, 0x07, 0xdc, 0x54, 0x1c, 0x00, + 0x2c, 0xdc, 0x83, 0x02, 0x5b, 0x09, 0x00, 0xb0, 0x40, 0x6e, 0x5b, 0x1d, + 0xdb, 0x30, 0x02, 0x9f, 0x6d, 0xb7, 0xa9, 0xda, 0xbf, 0xfa, 0xb2, 0x28, + 0x00, 0x00, 0x00, 0x60, 0x2e, 0x3d, 0xa9, 0xfa, 0x0b, 0x31, 0x5c, 0xc1, + 0xb9, 0xd5, 0x91, 0x0d, 0xa5, 0x09, 0x6f, 0x92, 0x00, 0xb0, 0x10, 0x4c, + 0x0c, 0x00, 0x60, 0x11, 0x6c, 0x5f, 0xbd, 0xa0, 0xfa, 0x44, 0x4a, 0x01, + 0x2b, 0xfd, 0x38, 0xe2, 0x89, 0x62, 0x00, 0x00, 0x00, 0x80, 0xb9, 0xf5, + 0x5d, 0x11, 0x5c, 0xa9, 0xdd, 0xaa, 0xd7, 0x55, 0x1f, 0xac, 0xf6, 0x11, + 0x07, 0x00, 0x8b, 0x40, 0x31, 0x00, 0x80, 0xa9, 0xbb, 0x59, 0xf5, 0xe1, + 0xea, 0xa5, 0xd5, 0x8e, 0xe2, 0x58, 0x51, 0x9b, 0xaa, 0x77, 0x88, 0x01, + 0x00, 0x00, 0x00, 0xe6, 0xd6, 0x49, 0xb9, 0x22, 0xfe, 0xea, 0xdc, 0xab, + 0xfa, 0x5c, 0xf5, 0xbc, 0xbc, 0x5f, 0x02, 0xc0, 0xc4, 0xf9, 0x45, 0x07, + 0xc0, 0x54, 0xad, 0xab, 0x9e, 0x52, 0xfd, 0x6b, 0x75, 0x77, 0x71, 0xac, + 0x8a, 0xff, 0x5d, 0x7d, 0x5c, 0x0c, 0x00, 0x00, 0x00, 0x30, 0xb7, 0xce, + 0xaa, 0xbe, 0x22, 0x86, 0xab, 0xb5, 0x4b, 0xf5, 0xfb, 0xd5, 0x47, 0xaa, + 0x5b, 0x88, 0x03, 0x80, 0xa9, 0x52, 0x0c, 0x00, 0x60, 0x8a, 0x6e, 0x58, + 0x1d, 0x5f, 0xbd, 0xbe, 0xda, 0x55, 0x1c, 0xab, 0xe2, 0x07, 0x0d, 0xdb, + 0x33, 0x00, 0x00, 0x00, 0x00, 0xf3, 0xed, 0x24, 0x11, 0x6c, 0x96, 0x83, + 0xab, 0x53, 0x1b, 0xa6, 0x07, 0x6c, 0x27, 0x0e, 0x00, 0xa6, 0x46, 0x31, + 0x00, 0x80, 0xa9, 0x79, 0x5c, 0xf5, 0xc5, 0xea, 0x41, 0xa2, 0x58, 0x55, + 0x47, 0x55, 0xdf, 0x17, 0x03, 0x00, 0x00, 0x00, 0xcc, 0xbd, 0x93, 0x45, + 0xb0, 0xd9, 0x76, 0x6e, 0x98, 0x1e, 0xf0, 0x9e, 0xea, 0xfa, 0xe2, 0x00, + 0x60, 0x4a, 0x14, 0x03, 0x00, 0x98, 0x8a, 0xdd, 0xab, 0x37, 0x56, 0xc7, + 0x2e, 0x7f, 0xce, 0xea, 0xf9, 0x54, 0xc3, 0x36, 0x02, 0x00, 0x00, 0x00, + 0xc0, 0xfc, 0x53, 0x0c, 0xd8, 0x72, 0xf7, 0xa9, 0x3e, 0x57, 0xdd, 0x5f, + 0x14, 0x00, 0x4c, 0x85, 0x62, 0x00, 0x00, 0x53, 0xf0, 0xe0, 0x86, 0x29, + 0x01, 0xbf, 0x24, 0x8a, 0x55, 0xb7, 0xb1, 0x7a, 0x5a, 0xb5, 0x49, 0x14, + 0x00, 0x00, 0x00, 0x30, 0x0a, 0x9f, 0xaf, 0xce, 0x15, 0xc3, 0x16, 0xdb, + 0xb3, 0xfa, 0xfb, 0xea, 0xa5, 0xd5, 0xf6, 0xe2, 0x00, 0x60, 0xec, 0x14, + 0x03, 0x00, 0x18, 0xbb, 0xfd, 0xab, 0xb7, 0x57, 0x37, 0x14, 0xc5, 0x4c, + 0xbc, 0xbe, 0x3a, 0x45, 0x0c, 0x00, 0x00, 0x00, 0x30, 0x1a, 0x1b, 0xab, + 0x7f, 0x16, 0xc3, 0x56, 0x59, 0x5f, 0xbd, 0xa0, 0x3a, 0xa9, 0xda, 0x57, + 0x1c, 0x00, 0x8c, 0xfd, 0x97, 0x1a, 0x00, 0x8c, 0xd9, 0x2b, 0xd2, 0xda, + 0x9e, 0x95, 0xb3, 0xaa, 0xdf, 0x13, 0x03, 0x00, 0x00, 0x00, 0x8c, 0xce, + 0x49, 0x22, 0xd8, 0x26, 0xff, 0xbd, 0xe1, 0x42, 0x09, 0xd3, 0x2a, 0x01, + 0x18, 0x2d, 0xc5, 0x00, 0x00, 0xc6, 0xec, 0xce, 0xd5, 0xa1, 0x62, 0x98, + 0x99, 0xe7, 0x34, 0x94, 0x03, 0x00, 0x00, 0x00, 0x80, 0x71, 0x39, 0x59, + 0x04, 0xdb, 0x6c, 0xb7, 0xea, 0x8d, 0xd5, 0x5f, 0x57, 0xbb, 0x8a, 0x03, + 0x80, 0xb1, 0x59, 0xb7, 0xb4, 0xb4, 0x24, 0x05, 0x00, 0xc6, 0xea, 0xc4, + 0xea, 0x60, 0x31, 0xcc, 0xc4, 0xc7, 0xaa, 0xbb, 0x57, 0x1e, 0x38, 0x00, + 0x00, 0x00, 0xc0, 0xf8, 0xec, 0xde, 0x50, 0xf6, 0x77, 0xb1, 0xe0, 0xca, + 0x38, 0xad, 0x7a, 0x4c, 0x75, 0xaa, 0x28, 0x00, 0x18, 0x0b, 0x0f, 0x02, + 0x00, 0x18, 0xab, 0x87, 0xa4, 0x14, 0x30, 0x2b, 0x1b, 0xab, 0x67, 0xa6, + 0x14, 0x00, 0x00, 0x00, 0x00, 0x63, 0x75, 0x4e, 0xf5, 0x25, 0x31, 0xac, + 0x98, 0x5b, 0x54, 0x9f, 0xa8, 0x8e, 0xce, 0xfb, 0x2c, 0x00, 0x8c, 0x84, + 0x5f, 0x58, 0x00, 0x8c, 0xd1, 0x76, 0xd5, 0x4b, 0xc5, 0x30, 0x33, 0xaf, + 0xa9, 0x3e, 0x2d, 0x06, 0x00, 0x00, 0x00, 0x18, 0x35, 0xdb, 0x09, 0xac, + 0xac, 0x1d, 0xaa, 0x17, 0x56, 0xef, 0xab, 0x7e, 0x56, 0x1c, 0x00, 0xcc, + 0x3b, 0xc5, 0x00, 0x00, 0xc6, 0xe8, 0x57, 0xaa, 0x03, 0xc5, 0x30, 0x13, + 0xdf, 0xad, 0x5e, 0x24, 0x06, 0x00, 0x00, 0x00, 0x18, 0x3d, 0xc5, 0x80, + 0xd5, 0x71, 0x48, 0xc3, 0x05, 0x15, 0x0f, 0x10, 0x05, 0x00, 0xf3, 0x4c, + 0x31, 0x00, 0x80, 0xb1, 0xd9, 0xd0, 0xd0, 0xc6, 0x66, 0x36, 0x9e, 0xdd, + 0x30, 0x6e, 0x10, 0x00, 0x00, 0x00, 0x18, 0xb7, 0x93, 0x44, 0xb0, 0x6a, + 0x6e, 0x50, 0xfd, 0x7d, 0xf5, 0x27, 0xd5, 0x8e, 0xe2, 0x00, 0x60, 0x1e, + 0x29, 0x06, 0x00, 0x30, 0x36, 0x47, 0x54, 0x7b, 0x8b, 0x61, 0x26, 0x3e, + 0x5a, 0xfd, 0x8d, 0x18, 0x00, 0x00, 0x00, 0x60, 0x12, 0xbe, 0x54, 0xfd, + 0x40, 0x0c, 0xab, 0x66, 0x5d, 0xf5, 0xac, 0xea, 0x63, 0xd5, 0xbe, 0xe2, + 0x00, 0x60, 0xde, 0x28, 0x06, 0x00, 0x30, 0x26, 0x7b, 0x54, 0xcf, 0x13, + 0xc3, 0x4c, 0x5c, 0x5c, 0x3d, 0xbd, 0x5a, 0x12, 0x05, 0x00, 0x00, 0x00, + 0x4c, 0xc2, 0x52, 0xf5, 0x09, 0x31, 0xac, 0xba, 0x3b, 0x54, 0xa7, 0x54, + 0x87, 0x89, 0x02, 0x80, 0x79, 0xa2, 0x18, 0x00, 0xc0, 0x98, 0x3c, 0xbf, + 0xa1, 0x1c, 0xc0, 0xea, 0xfb, 0xe3, 0xea, 0xf3, 0x62, 0x00, 0x00, 0x00, + 0x80, 0x49, 0x39, 0x59, 0x04, 0x33, 0xb1, 0x5b, 0xf5, 0xd6, 0xea, 0x61, + 0xa2, 0x00, 0x60, 0x5e, 0xac, 0x5b, 0x5a, 0x72, 0x21, 0x20, 0x00, 0xa3, + 0x70, 0xe3, 0xea, 0xdf, 0xaa, 0x5d, 0x44, 0xb1, 0xea, 0xce, 0xac, 0xf6, + 0xaf, 0xce, 0x15, 0x05, 0x00, 0x00, 0x00, 0x4c, 0xca, 0x21, 0xd5, 0x07, + 0xc4, 0x30, 0x33, 0x17, 0x57, 0x8f, 0xae, 0xde, 0x2e, 0x0a, 0x00, 0xd6, + 0x9a, 0x89, 0x01, 0x00, 0x8c, 0xc5, 0x8b, 0x53, 0x0a, 0x98, 0x95, 0x23, + 0x52, 0x0a, 0x00, 0x00, 0x00, 0x80, 0x29, 0xfa, 0x44, 0xb5, 0x51, 0x0c, + 0x33, 0xb3, 0x43, 0xf5, 0x96, 0x4c, 0x0e, 0x00, 0x60, 0x0e, 0x98, 0x18, + 0x00, 0xc0, 0x18, 0xec, 0x5f, 0x7d, 0xb6, 0xda, 0x5e, 0x14, 0xab, 0xee, + 0x83, 0xd5, 0x7d, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x93, 0xf5, 0xe9, 0xea, + 0x36, 0x62, 0x98, 0x29, 0x93, 0x03, 0x00, 0x58, 0x73, 0x26, 0x06, 0x00, + 0x30, 0x06, 0xaf, 0x48, 0x29, 0x60, 0x16, 0x2e, 0xaa, 0x7e, 0x5d, 0x0c, + 0x00, 0x00, 0x00, 0x30, 0x69, 0x27, 0x8b, 0x60, 0xe6, 0x4c, 0x0e, 0x00, + 0x60, 0xcd, 0x29, 0x06, 0x00, 0x30, 0xef, 0x0e, 0xae, 0x0e, 0x13, 0xc3, + 0x4c, 0xfc, 0x51, 0xf5, 0x25, 0x31, 0x00, 0x00, 0x00, 0xc0, 0xa4, 0x29, + 0x06, 0xac, 0x8d, 0x4b, 0xcb, 0x01, 0x77, 0x15, 0x05, 0x00, 0x6b, 0x41, + 0x31, 0x00, 0x80, 0x79, 0xf7, 0xfb, 0x22, 0x98, 0x89, 0xaf, 0x57, 0x2f, + 0x15, 0x03, 0x00, 0x00, 0x00, 0x4c, 0x9e, 0x62, 0xc0, 0xda, 0xd9, 0xa1, + 0x3a, 0x44, 0x0c, 0x00, 0xac, 0x05, 0xc5, 0x00, 0x00, 0xe6, 0xd9, 0x43, + 0xaa, 0xbb, 0x89, 0x61, 0x55, 0x2d, 0x55, 0xc7, 0x56, 0x77, 0xaa, 0x7e, + 0x2c, 0x0e, 0x00, 0x00, 0x00, 0x98, 0xbc, 0xaf, 0x54, 0xdf, 0x13, 0xc3, + 0x9a, 0xb9, 0x95, 0x08, 0x00, 0x58, 0x0b, 0x8a, 0x01, 0x00, 0xcc, 0xab, + 0xed, 0x72, 0x05, 0xfb, 0x6a, 0xfb, 0x6c, 0x75, 0xf7, 0xea, 0x09, 0x5e, + 0x10, 0x00, 0x00, 0x00, 0x80, 0x85, 0xb1, 0x54, 0x9d, 0x24, 0x86, 0x35, + 0x73, 0x6b, 0x11, 0x00, 0xb0, 0x16, 0x14, 0x03, 0x00, 0x98, 0x57, 0xbf, + 0x52, 0x1d, 0x28, 0x86, 0x55, 0xf1, 0xe3, 0xea, 0x45, 0xd5, 0x1d, 0xaa, + 0x8f, 0x89, 0x03, 0x00, 0x00, 0x00, 0x16, 0xce, 0xd3, 0xab, 0x53, 0xc5, + 0xb0, 0x26, 0xf6, 0xad, 0x36, 0x88, 0x01, 0x80, 0x59, 0x5b, 0xb7, 0xb4, + 0xb4, 0x24, 0x05, 0x00, 0xe6, 0xcd, 0x86, 0xea, 0xdf, 0xaa, 0xbd, 0x45, + 0xb1, 0xe2, 0x4e, 0xa8, 0x7e, 0xbd, 0xfa, 0x86, 0x28, 0x00, 0x00, 0x00, + 0x60, 0xa1, 0xed, 0x5a, 0x1d, 0x57, 0xdd, 0x5f, 0x14, 0x33, 0x77, 0xbb, + 0xea, 0xd3, 0x62, 0x00, 0x60, 0x96, 0x4c, 0x0c, 0x00, 0x60, 0x1e, 0x1d, + 0x91, 0x52, 0xc0, 0x4a, 0x3b, 0xa3, 0xfa, 0xe5, 0xea, 0xd0, 0x94, 0x02, + 0x00, 0x00, 0x00, 0x80, 0x3a, 0xaf, 0x7a, 0x48, 0xf5, 0x26, 0x51, 0xcc, + 0x9c, 0xed, 0x04, 0x00, 0x98, 0x39, 0xc5, 0x00, 0x00, 0xe6, 0xcd, 0xee, + 0xd5, 0x91, 0x62, 0x58, 0x31, 0x97, 0x54, 0xaf, 0xae, 0xf6, 0xaf, 0xfe, + 0x5a, 0x1c, 0x00, 0x00, 0x00, 0xc0, 0x4f, 0xb9, 0xa8, 0x7a, 0x7c, 0xc3, + 0x96, 0x83, 0xcc, 0xce, 0xad, 0x44, 0x00, 0xc0, 0xac, 0x6d, 0x2f, 0x02, + 0x00, 0xe6, 0xcc, 0xb3, 0xaa, 0xeb, 0x8a, 0x61, 0x45, 0x9c, 0x5c, 0x3d, + 0xad, 0xfa, 0x8c, 0x28, 0x00, 0x00, 0x00, 0x80, 0xab, 0xb0, 0x54, 0x1d, + 0x5d, 0x7d, 0xbf, 0xfa, 0x93, 0x5c, 0x50, 0x38, 0x0b, 0x26, 0x06, 0x00, + 0x30, 0x73, 0x7e, 0xc1, 0x03, 0x30, 0x6f, 0x4e, 0x14, 0xc1, 0x36, 0x3b, + 0xbb, 0x7a, 0x6a, 0x75, 0xb7, 0x94, 0x02, 0x00, 0x00, 0x00, 0x80, 0xcd, + 0xf3, 0xa7, 0xd5, 0x23, 0xab, 0x73, 0x44, 0xb1, 0xea, 0x4c, 0x0c, 0x00, + 0x60, 0xe6, 0xd6, 0x2d, 0x2d, 0x2d, 0x49, 0x01, 0x80, 0x79, 0xf3, 0x91, + 0xea, 0xee, 0x62, 0xd8, 0x2a, 0xc7, 0x55, 0xcf, 0xac, 0xfe, 0x43, 0x14, + 0x00, 0x00, 0x00, 0xc0, 0x56, 0xb8, 0x61, 0xf5, 0xe7, 0xd5, 0xc3, 0x44, + 0xb1, 0xaa, 0xf6, 0x48, 0x09, 0x03, 0x80, 0x19, 0x32, 0x31, 0x00, 0x80, + 0x79, 0xf4, 0x52, 0x11, 0x6c, 0xb1, 0xaf, 0x54, 0xf7, 0xad, 0x1e, 0x95, + 0x52, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xf5, 0xbe, 0x53, 0x3d, 0xbc, 0xe1, + 0x35, 0x86, 0xb3, 0xc4, 0xb1, 0x6a, 0x4c, 0x0d, 0x00, 0x60, 0xa6, 0x14, + 0x03, 0x00, 0x98, 0x47, 0xef, 0xab, 0x4e, 0x12, 0xc3, 0x66, 0xb9, 0xa0, + 0x7a, 0xd1, 0xf2, 0x93, 0xc9, 0x0f, 0x88, 0x03, 0x00, 0x00, 0x00, 0x58, + 0x21, 0xc7, 0x55, 0x07, 0x56, 0x7f, 0x27, 0x8a, 0x55, 0xa1, 0x18, 0x00, + 0xc0, 0x4c, 0x29, 0x06, 0x00, 0x30, 0xaf, 0x5e, 0x26, 0x82, 0x6b, 0xf4, + 0xc1, 0xe5, 0x27, 0x91, 0x47, 0x57, 0x17, 0x8a, 0x03, 0x00, 0x00, 0x00, + 0x58, 0x61, 0xdf, 0xad, 0x1e, 0x51, 0x3d, 0x2e, 0xd3, 0x03, 0x56, 0xda, + 0xad, 0x45, 0x00, 0xc0, 0x2c, 0x29, 0x06, 0x00, 0x30, 0xaf, 0xde, 0x5d, + 0x9d, 0x22, 0x86, 0x2b, 0x75, 0x4e, 0xf5, 0xe4, 0xea, 0x7e, 0xd5, 0x57, + 0xc5, 0x01, 0x00, 0x00, 0x00, 0xac, 0xb2, 0x37, 0x35, 0x5c, 0x9c, 0xf0, + 0x76, 0x51, 0xac, 0x18, 0x13, 0x03, 0x00, 0x98, 0x29, 0xc5, 0x00, 0x00, + 0xe6, 0xd5, 0x52, 0xf5, 0x12, 0x31, 0x5c, 0xc1, 0x87, 0xaa, 0x83, 0xaa, + 0x37, 0x54, 0x9b, 0xc4, 0x01, 0x00, 0x00, 0x00, 0xcc, 0xc8, 0x77, 0xaa, + 0x87, 0x57, 0x8f, 0xaa, 0xbe, 0x27, 0x8e, 0x6d, 0x66, 0x62, 0x00, 0x00, + 0x33, 0xa5, 0x18, 0x00, 0xc0, 0x3c, 0x7b, 0x67, 0xf5, 0xaf, 0x62, 0xa8, + 0xea, 0x82, 0xea, 0xa8, 0xea, 0xbe, 0xd5, 0xb7, 0xc4, 0x01, 0x00, 0x00, + 0x00, 0xac, 0x91, 0xe3, 0x1a, 0xae, 0x76, 0x3f, 0x4e, 0x14, 0xdb, 0x64, + 0x8f, 0xea, 0xc6, 0x62, 0x00, 0x60, 0x56, 0x14, 0x03, 0x00, 0x98, 0x67, + 0x4b, 0xd5, 0x4b, 0xc5, 0xd0, 0x67, 0xaa, 0x3b, 0x55, 0xaf, 0xc8, 0x94, + 0x00, 0x00, 0x00, 0x00, 0x60, 0xed, 0xfd, 0x47, 0xc3, 0xe4, 0x80, 0xc3, + 0xaa, 0x33, 0xc4, 0xb1, 0xd5, 0x6c, 0x27, 0x00, 0xc0, 0xcc, 0x28, 0x06, + 0x00, 0x30, 0xef, 0xde, 0x5a, 0x7d, 0x6e, 0x41, 0xcf, 0xfd, 0x92, 0x86, + 0x32, 0xc0, 0x7f, 0x6f, 0x28, 0x07, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x93, + 0xe3, 0x1b, 0xde, 0xdc, 0x3e, 0x46, 0x14, 0x5b, 0xc5, 0x76, 0x02, 0x00, + 0xcc, 0x8c, 0x62, 0x00, 0x00, 0xf3, 0x6e, 0xa9, 0x7a, 0xf9, 0x02, 0x9e, + 0xf7, 0xd7, 0xab, 0x5f, 0x6c, 0xd8, 0x3e, 0xe0, 0x22, 0x77, 0x03, 0x00, + 0x00, 0x00, 0x60, 0x4e, 0x9d, 0x5d, 0x3d, 0xb5, 0x3a, 0x34, 0xd3, 0x03, + 0xb6, 0x94, 0x89, 0x01, 0x00, 0xcc, 0x8c, 0x62, 0x00, 0x00, 0x63, 0xf0, + 0x96, 0xea, 0xb4, 0x05, 0x39, 0xd7, 0xa5, 0x86, 0x96, 0xfd, 0x41, 0xd5, + 0x89, 0x96, 0x1e, 0x00, 0x00, 0x00, 0x18, 0x89, 0x13, 0xaa, 0x03, 0x33, + 0x3d, 0x60, 0x4b, 0x28, 0x06, 0x00, 0x30, 0x33, 0x8a, 0x01, 0x00, 0x8c, + 0xc1, 0xc6, 0xea, 0x65, 0x0b, 0x70, 0x9e, 0xdf, 0x6d, 0xd8, 0x9b, 0xef, + 0xa9, 0xd5, 0x79, 0x96, 0x1d, 0x00, 0x00, 0x00, 0x18, 0x99, 0x73, 0x1a, + 0x5e, 0xd7, 0x78, 0x50, 0xf5, 0x6d, 0x71, 0x5c, 0xa3, 0x03, 0xaa, 0xed, + 0xc4, 0x00, 0xc0, 0x2c, 0x28, 0x06, 0x00, 0x30, 0x16, 0x6f, 0xaa, 0xbe, + 0x3c, 0xe1, 0xf3, 0x7b, 0x6b, 0x43, 0xab, 0xfe, 0x04, 0x4b, 0x0d, 0x00, + 0x00, 0x00, 0x8c, 0xdc, 0xbb, 0x1b, 0xae, 0x86, 0x37, 0x3d, 0xe0, 0xea, + 0xed, 0x5c, 0xdd, 0x5c, 0x0c, 0x00, 0xcc, 0x82, 0x62, 0x00, 0x00, 0x63, + 0x0c, 0xa8, 0x9d, 0x50, 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, + 0xb1, 0xb1, 0x7a, 0xc5, 0x04, 0xcf, 0xeb, 0x87, 0x0d, 0x4d, 0xfa, 0xc3, + 0xab, 0xb3, 0x2c, 0x33, 0x00, 0x00, 0x00, 0x30, 0x11, 0x97, 0x4e, 0x0f, + 0x78, 0x60, 0x75, 0xba, 0x38, 0xae, 0xd2, 0xad, 0x45, 0x00, 0xc0, 0x2c, + 0x28, 0x06, 0x00, 0x30, 0x26, 0x7f, 0x5d, 0x7d, 0x7d, 0x42, 0xe7, 0xf3, + 0xc1, 0xe5, 0x27, 0x7f, 0xda, 0xf3, 0x00, 0x00, 0x00, 0xc0, 0x54, 0xbd, + 0x27, 0xd3, 0x03, 0xae, 0xce, 0xad, 0x44, 0x00, 0xc0, 0x2c, 0x28, 0x06, + 0x00, 0x30, 0x26, 0x17, 0x37, 0x8d, 0xa9, 0x01, 0x17, 0x54, 0x47, 0x55, + 0xf7, 0xab, 0xbe, 0x65, 0x59, 0x01, 0x00, 0x00, 0x80, 0x89, 0xbb, 0x74, + 0x62, 0xe2, 0x03, 0xf2, 0x5a, 0xc8, 0x7f, 0xa5, 0x18, 0x00, 0xc0, 0x4c, + 0xac, 0x5b, 0x5a, 0x5a, 0x92, 0x02, 0x00, 0x63, 0xb2, 0x43, 0xf5, 0xe5, + 0xea, 0xa6, 0x23, 0x3d, 0xfe, 0x4f, 0x56, 0x4f, 0xa8, 0xbe, 0x64, 0x29, + 0x01, 0x00, 0x00, 0x80, 0x05, 0x74, 0x9d, 0xea, 0x0f, 0xaa, 0x27, 0x57, + 0xeb, 0xc4, 0xd1, 0x69, 0xd5, 0xfe, 0x62, 0x00, 0x60, 0xb5, 0x99, 0x18, + 0x00, 0xc0, 0xd8, 0x5c, 0x5c, 0xfd, 0xe1, 0x08, 0x8f, 0xfb, 0x92, 0xea, + 0xc5, 0xd5, 0xc1, 0x29, 0x05, 0x00, 0x00, 0x00, 0x00, 0x8b, 0xeb, 0xd2, + 0xe9, 0x01, 0x0f, 0xaa, 0x4e, 0x17, 0x47, 0xff, 0x24, 0x02, 0x00, 0x66, + 0xc1, 0xc4, 0x00, 0x00, 0xc6, 0x68, 0xa7, 0xea, 0xab, 0xd5, 0x8d, 0x47, + 0x72, 0xbc, 0x5f, 0xab, 0x7e, 0xb9, 0x3a, 0xd1, 0xd2, 0x01, 0x00, 0x00, + 0x00, 0xfc, 0xa7, 0xdd, 0x1a, 0x2e, 0x00, 0x59, 0xd4, 0xe9, 0x01, 0x7f, + 0x55, 0x3d, 0xb1, 0xda, 0xe4, 0xae, 0x00, 0xc0, 0x6a, 0x33, 0x31, 0x00, + 0x80, 0x31, 0xba, 0xb0, 0xfa, 0xa3, 0x11, 0x1c, 0xe7, 0x52, 0x75, 0x4c, + 0x75, 0x50, 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0xff, 0xd5, 0xb9, 0x0d, + 0xd3, 0x03, 0xee, 0x5f, 0xfd, 0xfb, 0x82, 0x9d, 0xfb, 0x5b, 0xaa, 0x27, + 0xa5, 0x14, 0x00, 0xc0, 0x8c, 0x98, 0x18, 0x00, 0xc0, 0x58, 0xed, 0xd2, + 0x70, 0x25, 0xfe, 0x9e, 0x73, 0x7a, 0x7c, 0xdf, 0xae, 0x7e, 0xb5, 0x7a, + 0xbf, 0xa5, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x46, 0xbb, 0x55, 0xaf, 0x6a, + 0xb8, 0x82, 0x7e, 0xea, 0xde, 0x5c, 0x3d, 0xa1, 0xda, 0x68, 0xd9, 0x01, + 0x98, 0x15, 0x13, 0x03, 0x00, 0x18, 0xab, 0x1f, 0x57, 0xaf, 0x9c, 0xd3, + 0x63, 0x3b, 0xae, 0xba, 0x4d, 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x9b, + 0xeb, 0xdc, 0x86, 0x2b, 0xe8, 0x1f, 0x51, 0xfd, 0x60, 0xc2, 0xe7, 0xf9, + 0xb6, 0x86, 0x2d, 0x27, 0x95, 0x02, 0x00, 0x98, 0x29, 0x13, 0x03, 0x00, + 0x18, 0xb3, 0x6b, 0x55, 0x5f, 0xaf, 0x7e, 0x66, 0x4e, 0x8e, 0xe7, 0x87, + 0xd5, 0x91, 0x0d, 0xdb, 0x07, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x75, 0x6e, + 0x52, 0xbd, 0xa9, 0xba, 0xdb, 0xc4, 0xce, 0xeb, 0xef, 0xaa, 0xff, 0x51, + 0x5d, 0x6c, 0x89, 0x01, 0x98, 0x35, 0xc5, 0x00, 0x00, 0xc6, 0x6e, 0x43, + 0xb5, 0xff, 0xf2, 0xed, 0x56, 0xcb, 0x1f, 0x0f, 0xac, 0x6e, 0x5e, 0xed, + 0x30, 0xa3, 0x63, 0x58, 0xaa, 0xde, 0x55, 0x3d, 0xa3, 0x61, 0x0b, 0x01, + 0x00, 0x00, 0x00, 0x00, 0xb6, 0xcd, 0xf6, 0xd5, 0xd1, 0xd5, 0x51, 0xd5, + 0x76, 0x13, 0x38, 0x9f, 0x77, 0x56, 0x87, 0xa7, 0x14, 0x00, 0xc0, 0x1a, + 0x51, 0x0c, 0x00, 0x60, 0xaa, 0x76, 0xa8, 0xf6, 0x6e, 0x28, 0x09, 0x1c, + 0xf0, 0x53, 0x1f, 0x6f, 0x59, 0xed, 0xb2, 0x42, 0x3f, 0x63, 0xa9, 0xfa, + 0xfb, 0xea, 0xc5, 0xd5, 0x27, 0x45, 0x0e, 0x00, 0x00, 0x00, 0xb0, 0xe2, + 0xee, 0x59, 0x1d, 0x5b, 0xed, 0x35, 0xe2, 0x73, 0x78, 0x6f, 0xf5, 0xd0, + 0xea, 0x42, 0xcb, 0x09, 0xc0, 0x5a, 0x51, 0x0c, 0x00, 0x60, 0xd1, 0x6c, + 0xdf, 0x30, 0x8e, 0xee, 0x66, 0x5d, 0xbe, 0x34, 0x70, 0xdb, 0x86, 0xad, + 0x09, 0x36, 0xc7, 0xa6, 0xea, 0xdd, 0xd5, 0xef, 0x55, 0xa7, 0x8a, 0x14, + 0x00, 0x00, 0x00, 0x60, 0x55, 0xed, 0x5e, 0xbd, 0xbe, 0x7a, 0xd4, 0x08, + 0x8f, 0xfd, 0xfd, 0xd5, 0x43, 0xaa, 0x0b, 0x2c, 0x23, 0x00, 0x6b, 0x49, + 0x31, 0x00, 0x00, 0x2e, 0x73, 0xa3, 0x2e, 0x3f, 0x5d, 0xe0, 0xc0, 0xea, + 0xa0, 0xea, 0xda, 0xcb, 0x7f, 0x7f, 0x71, 0xf5, 0x7f, 0xab, 0x97, 0x56, + 0xa7, 0x89, 0x0b, 0x00, 0x00, 0x00, 0x60, 0xa6, 0x9e, 0x50, 0xbd, 0xb6, + 0x95, 0x9b, 0x06, 0xb9, 0xda, 0x3e, 0x50, 0x1d, 0x96, 0x52, 0x00, 0x00, + 0x73, 0x40, 0x31, 0x00, 0x00, 0xae, 0xd9, 0x4d, 0xab, 0xfd, 0xab, 0x2f, + 0x55, 0xdf, 0x14, 0x07, 0x00, 0x00, 0x00, 0xc0, 0x9a, 0x39, 0xa8, 0xfa, + 0x9b, 0x86, 0x8b, 0x3a, 0xe6, 0xd9, 0x87, 0xaa, 0x43, 0xab, 0x9f, 0x58, + 0x32, 0x00, 0xe6, 0x81, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, + 0x26, 0x1b, 0xaa, 0x57, 0x54, 0xcf, 0x9a, 0xd3, 0xe3, 0x3b, 0xb1, 0x7a, + 0x40, 0x75, 0x9e, 0xa5, 0x02, 0x60, 0x5e, 0x28, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x63, 0xf4, 0xb0, 0xea, 0x0d, 0xd5, 0x75, 0xe7, 0xe8, + 0x98, 0x4e, 0xaa, 0xee, 0x5f, 0xfd, 0xc8, 0xf2, 0x00, 0x30, 0x4f, 0x14, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xb1, 0xda, 0xbb, 0x7a, 0x53, + 0x75, 0xf7, 0x39, 0x38, 0x96, 0x93, 0xab, 0xfb, 0xa5, 0x14, 0x00, 0xc0, + 0x1c, 0x5a, 0x2f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xa4, 0xbe, + 0x55, 0xfd, 0x62, 0xf5, 0xa2, 0x6a, 0xe3, 0x1a, 0x1e, 0xc7, 0xbf, 0x54, + 0x0f, 0x4a, 0x29, 0x00, 0x80, 0x39, 0x65, 0x62, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x30, 0x05, 0x37, 0xab, 0x6e, 0x5b, 0xdd, 0xa2, 0xba, 0xe5, + 0xf2, 0xed, 0x16, 0xd5, 0xb5, 0x57, 0xf9, 0xe7, 0x7e, 0xaa, 0xba, 0x4f, + 0x75, 0x8e, 0x25, 0x00, 0x60, 0x5e, 0x29, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x53, 0xb6, 0x47, 0x75, 0x60, 0x75, 0x40, 0x43, 0x79, 0xe0, + 0xd2, 0xcf, 0xf7, 0xa9, 0xd6, 0x6d, 0xe3, 0xf7, 0xfe, 0x74, 0x75, 0x48, + 0x75, 0x96, 0x98, 0x01, 0x98, 0x67, 0x8a, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc0, 0x22, 0xba, 0x4e, 0xb5, 0x6f, 0x97, 0x2f, 0x0b, 0x5c, 0xfa, + 0xf9, 0x86, 0xcd, 0xf8, 0xfa, 0xcf, 0x54, 0xf7, 0x4a, 0x29, 0x00, 0x80, + 0x11, 0x50, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0xcc, 0xf6, + 0xd5, 0x4d, 0xba, 0x7c, 0x61, 0xe0, 0xc0, 0xea, 0xd6, 0xd5, 0x6e, 0xcb, + 0xff, 0xcd, 0x97, 0xaa, 0x7b, 0x56, 0xdf, 0x15, 0x17, 0x00, 0x63, 0xa0, + 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x79, 0xf6, 0xaa, 0xf6, + 0xaf, 0xfe, 0xb5, 0xfa, 0x9e, 0x38, 0x00, 0x18, 0x0b, 0xc5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0xb0, 0xf5, 0x22, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xe9, 0x52, 0x0c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, + 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, + 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, + 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, + 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, + 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, + 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, + 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, + 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, + 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, + 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, + 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, + 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x09, 0x53, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xfe, 0x1f, 0x7b, 0xf7, 0x1d, 0x6e, 0xd9, 0x59, 0xd0, 0x7d, 0xff, + 0x3b, 0x33, 0x99, 0xf4, 0x36, 0x21, 0x05, 0x12, 0x02, 0x01, 0xe9, 0x01, + 0x44, 0x02, 0x52, 0x12, 0x3a, 0xa1, 0x24, 0x43, 0x09, 0x10, 0x42, 0x12, + 0x3a, 0x0a, 0x22, 0x88, 0xaf, 0x58, 0x02, 0xd1, 0x47, 0x50, 0xf1, 0x05, + 0xbd, 0x14, 0x45, 0x41, 0x91, 0x87, 0x22, 0x2a, 0x45, 0x50, 0x10, 0x41, + 0x11, 0x69, 0xbe, 0x94, 0x47, 0x41, 0x40, 0x1e, 0x05, 0x02, 0x8a, 0x09, + 0x24, 0x10, 0x40, 0x04, 0x82, 0xa1, 0x84, 0x94, 0x39, 0xef, 0x1f, 0x6b, + 0x0f, 0x99, 0x84, 0x94, 0xd3, 0xcf, 0xde, 0x6b, 0x7f, 0x3e, 0xd7, 0xb5, + 0xae, 0x73, 0xe6, 0x64, 0x32, 0x7b, 0xad, 0xdf, 0xbd, 0xcf, 0x39, 0x7b, + 0xaf, 0xf5, 0x5b, 0xf7, 0x0d, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, + 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, + 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8c, 0xd8, 0x6e, 0x22, 0x00, 0xd6, 0xc1, 0x01, 0xd5, + 0x21, 0xd5, 0xc1, 0xd5, 0x75, 0x76, 0xf9, 0xf8, 0xba, 0xea, 0x4b, 0xe2, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xb5, 0xb3, 0x69, 0x61, 0x61, + 0x41, 0x0a, 0xc0, 0x52, 0xec, 0x55, 0x6d, 0xdb, 0x65, 0xbb, 0x5e, 0x75, + 0xf8, 0x95, 0xbe, 0xb6, 0xeb, 0xd7, 0xaf, 0x53, 0xed, 0x7e, 0x35, 0xff, + 0xd6, 0x47, 0xab, 0xbb, 0x57, 0xdf, 0x11, 0x2b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xac, 0x0d, 0xc5, 0x00, 0x60, 0x57, 0x07, 0x55, 0xa7, 0x77, + 0xc5, 0x3b, 0xfb, 0x0f, 0xed, 0x8a, 0x77, 0xf9, 0xef, 0xb1, 0xca, 0x8f, + 0xf9, 0xfa, 0xea, 0xb4, 0xca, 0x0f, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x58, 0x03, 0x96, 0x12, 0x00, 0x76, 0xfa, 0xa1, 0xea, 0x6d, 0xd5, + 0x2d, 0xd6, 0xf9, 0x71, 0x1f, 0x55, 0x7d, 0xba, 0xfa, 0x15, 0x43, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0xcf, 0x8c, 0x01, 0x40, 0xd5, + 0xb1, 0xd5, 0x9b, 0xab, 0x43, 0x36, 0xe8, 0xf1, 0x17, 0xaa, 0x47, 0x57, + 0xaf, 0x35, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xba, 0x14, + 0x03, 0x80, 0x27, 0x56, 0x7f, 0x58, 0xed, 0xbe, 0xc1, 0xfb, 0x71, 0x51, + 0x75, 0xcf, 0xea, 0x43, 0x86, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x56, 0xcf, 0x66, 0x11, 0xc0, 0xdc, 0xda, 0x54, 0x3d, 0xb7, 0x7a, 0x45, + 0x1b, 0x5f, 0x0a, 0xa8, 0xda, 0xb3, 0xfa, 0xab, 0xea, 0x48, 0x43, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0xc7, 0x8c, 0x01, 0x30, 0x9f, + 0xf6, 0xa9, 0xfe, 0xb4, 0x3a, 0x69, 0x0a, 0xf7, 0xed, 0xe3, 0xd5, 0x71, + 0xd5, 0xb7, 0x0d, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0x9c, + 0x19, 0x03, 0x60, 0xfe, 0xec, 0x59, 0xbd, 0xbd, 0xe9, 0x2c, 0x05, 0x54, + 0xdd, 0xae, 0xa1, 0xb4, 0xe0, 0xe7, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xac, 0x02, 0x17, 0xde, 0x60, 0xbe, 0x6c, 0xa9, 0x5e, 0x53, 0xdd, + 0x6d, 0xca, 0xf7, 0xf3, 0xa4, 0xea, 0xd7, 0x0d, 0x17, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x5c, 0xa5, 0x1b, 0x55, 0xbb, 0x89, 0x01, 0x58, 0x2c, 0xc5, + 0x00, 0x98, 0x2f, 0x2f, 0xac, 0x1e, 0x36, 0x23, 0xfb, 0xfa, 0xac, 0xea, + 0xc7, 0x0c, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xdf, 0x3e, 0xd5, + 0x0b, 0xaa, 0xff, 0xa8, 0xce, 0x9d, 0x7c, 0x7e, 0x84, 0x58, 0x80, 0x6b, + 0xb3, 0x69, 0x61, 0x61, 0x41, 0x0a, 0x30, 0x1f, 0xce, 0x6c, 0xf6, 0xee, + 0xc2, 0xbf, 0xa4, 0x3a, 0xbe, 0xfa, 0xff, 0x0c, 0x1f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x73, 0xee, 0x41, 0xd5, 0x4b, 0xaa, 0x23, 0xaf, 0xf4, 0xf5, + 0x8b, 0xab, 0xb7, 0x54, 0x2f, 0xab, 0xde, 0x25, 0x26, 0xe0, 0xaa, 0x28, + 0x06, 0xc0, 0x7c, 0x38, 0xbd, 0xfa, 0xd3, 0x6a, 0xd3, 0x0c, 0xee, 0xfb, + 0xd7, 0xaa, 0x3b, 0x55, 0xff, 0x69, 0x18, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x98, 0x43, 0x37, 0xaa, 0x5e, 0x5c, 0x9d, 0xb0, 0x88, 0xbf, 0xfb, 0xb1, + 0xea, 0x8f, 0xaa, 0x3f, 0xab, 0xbe, 0x23, 0x3a, 0x60, 0x27, 0xc5, 0x00, + 0x18, 0xbf, 0xfb, 0x54, 0x7f, 0x5b, 0xed, 0x3e, 0xc3, 0xc7, 0x70, 0x56, + 0x75, 0x97, 0xea, 0x9b, 0x86, 0x13, 0x00, 0x00, 0x00, 0x00, 0x80, 0x39, + 0xb1, 0xb5, 0xfa, 0xc9, 0xea, 0x79, 0xd5, 0xbe, 0x4b, 0xfc, 0x7f, 0xbf, + 0x59, 0xbd, 0xba, 0x7a, 0x51, 0x75, 0xb6, 0x28, 0x01, 0xc5, 0x00, 0x18, + 0xb7, 0x3b, 0x54, 0xef, 0x5d, 0xc6, 0x0b, 0x86, 0x69, 0xf4, 0x8e, 0xea, + 0xc4, 0xea, 0x32, 0xc3, 0x0a, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc8, 0x1d, + 0x57, 0xfd, 0x61, 0x75, 0xeb, 0x15, 0xfe, 0x3b, 0x3b, 0xaa, 0xf7, 0x34, + 0x2c, 0x33, 0xf0, 0xa6, 0x9c, 0x63, 0x87, 0xb9, 0xa5, 0x18, 0x00, 0xe3, + 0x75, 0xe3, 0xea, 0xff, 0x54, 0x87, 0x8d, 0xe8, 0x98, 0x7e, 0xa7, 0x7a, + 0xa6, 0xa1, 0x05, 0x00, 0x00, 0x00, 0x00, 0x60, 0xa4, 0xb6, 0x55, 0xcf, + 0xad, 0x9e, 0x5e, 0x6d, 0x5e, 0xe5, 0x7f, 0xfb, 0x3f, 0xab, 0xff, 0x5d, + 0xbd, 0xbc, 0x61, 0x19, 0x5f, 0x60, 0x8e, 0x28, 0x06, 0xc0, 0x38, 0x1d, + 0x5c, 0x7d, 0xb0, 0xba, 0xd9, 0x08, 0x8f, 0xed, 0xa9, 0xd5, 0x4b, 0x0d, + 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x73, 0x72, 0xf5, 0xe2, 0xea, + 0xd0, 0x35, 0x7e, 0x9c, 0x8b, 0xaa, 0x37, 0x56, 0x2f, 0xac, 0x3e, 0x2e, + 0x76, 0x98, 0x0f, 0x8a, 0x01, 0x30, 0x3e, 0x7b, 0x57, 0xef, 0xae, 0xee, + 0x3c, 0xd2, 0xe3, 0xbb, 0xa4, 0x7a, 0xe0, 0xe4, 0x18, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x60, 0xd6, 0xdd, 0xa4, 0xfa, 0x83, 0xea, 0xf8, 0x0d, 0x78, + 0xec, 0x8f, 0x56, 0xbf, 0x57, 0xbd, 0xae, 0xe1, 0xfc, 0x3b, 0x30, 0x52, + 0x8a, 0x01, 0x30, 0x2e, 0x5b, 0xab, 0xb7, 0x34, 0x5c, 0x38, 0x1f, 0xb3, + 0xaf, 0x57, 0x77, 0xa9, 0xfe, 0xdd, 0x90, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x30, 0xa3, 0xf6, 0xac, 0x9e, 0x35, 0xd9, 0xf6, 0xd8, 0xe0, 0x7d, 0xf9, + 0x4a, 0xf5, 0xc7, 0x0d, 0x05, 0x85, 0x73, 0x0d, 0x0d, 0x8c, 0x8f, 0x62, + 0x00, 0x8c, 0xe8, 0xfb, 0xb9, 0x7a, 0x45, 0xf5, 0x84, 0x39, 0x39, 0xde, + 0xcf, 0x34, 0x94, 0x03, 0xbe, 0x61, 0xe8, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x98, 0x31, 0xf7, 0xac, 0xfe, 0xb0, 0xba, 0xc5, 0x94, 0xed, 0xd7, 0x65, + 0xd5, 0xdb, 0xab, 0x17, 0x35, 0xcc, 0xdc, 0xeb, 0x42, 0x22, 0x8c, 0x84, + 0x62, 0x00, 0x8c, 0xc7, 0xaf, 0x57, 0x67, 0xce, 0xd9, 0x31, 0xbf, 0xab, + 0x61, 0x76, 0x84, 0x4b, 0x0d, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, + 0xe0, 0xba, 0xd5, 0x0b, 0xab, 0x53, 0x67, 0x60, 0x5f, 0xff, 0xa1, 0x3a, + 0xa1, 0xfa, 0xae, 0x61, 0x83, 0xd9, 0xb7, 0x59, 0x04, 0x30, 0x0a, 0x4f, + 0x69, 0xfe, 0x4a, 0x01, 0x55, 0xf7, 0xad, 0xee, 0x6a, 0xf8, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x98, 0x72, 0x9b, 0xab, 0xa7, 0x56, 0x67, 0x35, 0x1b, + 0xa5, 0x80, 0x1a, 0x66, 0x35, 0x78, 0x65, 0xc3, 0x8c, 0xc5, 0xc0, 0x8c, + 0x33, 0x63, 0x00, 0xcc, 0xbe, 0x7b, 0x57, 0x7f, 0x57, 0x6d, 0x9d, 0xc3, + 0x63, 0xff, 0x5e, 0xb5, 0x2d, 0x6d, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xa6, 0xd7, 0xed, 0x1a, 0x96, 0x0d, 0xb8, 0xf3, 0x8c, 0xee, 0xff, 0x73, + 0xab, 0x5f, 0x31, 0x8c, 0x30, 0xdb, 0xcc, 0x18, 0x00, 0xb3, 0xed, 0x86, + 0xd5, 0xeb, 0x9b, 0xcf, 0x52, 0x40, 0xd5, 0x3f, 0xa6, 0x14, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc0, 0x74, 0xda, 0xbb, 0xe1, 0xa2, 0xfa, 0x87, 0x9a, + 0xdd, 0x52, 0x40, 0xd5, 0x73, 0xaa, 0xd3, 0x0c, 0x27, 0xcc, 0x36, 0xc5, + 0x00, 0x98, 0x5d, 0x7b, 0x55, 0x6f, 0xaa, 0x0e, 0x99, 0xe3, 0x0c, 0xde, + 0xeb, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x94, 0x7a, 0x54, 0xc3, + 0x45, 0xf5, 0xdd, 0x67, 0xfc, 0x38, 0x36, 0x55, 0xaf, 0x68, 0xb6, 0xcb, + 0x0d, 0x30, 0xf7, 0x14, 0x03, 0x60, 0x76, 0x7f, 0x09, 0xbf, 0xaa, 0xba, + 0xfd, 0x9c, 0xe7, 0xf0, 0x1e, 0x4f, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xa6, 0xd4, 0xb6, 0x11, 0x1d, 0xcb, 0x9e, 0xd5, 0x9b, 0xab, 0x1b, 0x18, + 0x56, 0x98, 0x4d, 0x8a, 0x01, 0x30, 0x9b, 0xce, 0xac, 0x4e, 0x99, 0xf3, + 0x0c, 0xbe, 0x5d, 0x7d, 0xd8, 0x53, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x29, 0xb5, 0x6d, 0x64, 0xc7, 0x73, 0xdd, 0xea, 0x6f, 0xab, 0xfd, 0x0d, + 0x2d, 0xcc, 0x1e, 0xc5, 0x00, 0x98, 0x3d, 0xf7, 0xaf, 0x7e, 0x45, 0x0c, + 0xbd, 0xaf, 0xba, 0x58, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0xa9, + 0x83, 0x46, 0x78, 0x4c, 0x47, 0x57, 0xaf, 0xaf, 0xb6, 0x18, 0x5e, 0x98, + 0x2d, 0x8a, 0x01, 0x30, 0x5b, 0x6e, 0xe6, 0x17, 0xee, 0xf7, 0xbd, 0x57, + 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0xb1, 0x6d, 0x23, 0x3d, 0xae, + 0x07, 0x56, 0xcf, 0x37, 0xbc, 0x30, 0x5b, 0x14, 0x03, 0x60, 0x76, 0xec, + 0xd7, 0xb0, 0x7e, 0xcf, 0x81, 0xa2, 0xa8, 0xea, 0x3d, 0x22, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x60, 0x8a, 0x6d, 0x1b, 0xf1, 0xb1, 0xfd, 0x7c, 0xf5, + 0x14, 0x43, 0x0c, 0xb3, 0x43, 0x31, 0x00, 0x66, 0xe7, 0x7b, 0xf5, 0xb5, + 0xd5, 0xad, 0x44, 0x51, 0xd5, 0x05, 0xd5, 0xc7, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0x14, 0x3b, 0x68, 0xe4, 0xc7, 0xf7, 0xfb, 0xd5, 0xbd, + 0x0d, 0x33, 0xcc, 0x06, 0xc5, 0x00, 0x98, 0x0d, 0xbf, 0x56, 0x6d, 0x17, + 0xc3, 0xf7, 0xbd, 0xb7, 0xba, 0x4c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x4c, 0xb1, 0x6d, 0x23, 0x3f, 0xbe, 0xad, 0xd5, 0x1b, 0xab, 0x9b, 0x1a, + 0x6a, 0x98, 0x7e, 0x8a, 0x01, 0x30, 0xfd, 0x4e, 0xaa, 0x9e, 0x2d, 0x86, + 0x2b, 0x78, 0xaf, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x72, 0x07, + 0xcd, 0xc9, 0x31, 0xbe, 0xb5, 0xf1, 0x97, 0x20, 0x60, 0xe6, 0x29, 0x06, + 0xc0, 0x74, 0xbb, 0x6d, 0xf5, 0xa7, 0xd5, 0x26, 0x51, 0x5c, 0xc1, 0xbb, + 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x14, 0xdb, 0x54, 0x1d, 0x30, + 0x27, 0xc7, 0x7a, 0xf3, 0xea, 0xcd, 0xd5, 0xee, 0x86, 0x1d, 0xa6, 0x97, + 0x62, 0x00, 0x4c, 0xaf, 0x83, 0xaa, 0x37, 0x55, 0xfb, 0x88, 0xe2, 0x0a, + 0xbe, 0x52, 0x9d, 0x25, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xd8, + 0x01, 0xd5, 0x96, 0x39, 0x3a, 0xde, 0x7b, 0x54, 0x7f, 0x60, 0xd8, 0x61, + 0x7a, 0x29, 0x06, 0xc0, 0x74, 0xda, 0x52, 0xbd, 0xa6, 0xfa, 0x21, 0x51, + 0xfc, 0x80, 0x77, 0x57, 0x0b, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, + 0x8a, 0xcd, 0xe3, 0xd4, 0xfa, 0x4f, 0xaa, 0x9e, 0x61, 0xe8, 0x61, 0x3a, + 0x29, 0x06, 0xc0, 0x74, 0xfa, 0xed, 0xea, 0x01, 0x62, 0xb8, 0x4a, 0xef, + 0x15, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x6e, 0xdb, 0x9c, 0x1e, + 0xf7, 0x0b, 0xab, 0xed, 0x86, 0x1f, 0xa6, 0x8f, 0x62, 0x00, 0x4c, 0x9f, + 0xc7, 0x54, 0x3f, 0x2d, 0x86, 0xab, 0xf5, 0x1e, 0x11, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x30, 0xe5, 0x0e, 0x9a, 0xd3, 0xe3, 0xde, 0x52, 0xbd, 0xb6, + 0xba, 0x8d, 0xa7, 0x00, 0x4c, 0x17, 0xc5, 0x00, 0x98, 0x2e, 0xb7, 0xaf, + 0xfe, 0x48, 0x0c, 0x57, 0xeb, 0xdc, 0xea, 0x6c, 0x31, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x30, 0xe5, 0xb6, 0xcd, 0xf1, 0xb1, 0xef, 0x57, 0xfd, 0x75, + 0x75, 0xa8, 0xa7, 0x01, 0x4c, 0x0f, 0xc5, 0x00, 0x98, 0x1e, 0x87, 0x55, + 0x6f, 0xa9, 0xf6, 0x12, 0xc5, 0xd5, 0x7a, 0x97, 0x08, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x98, 0x01, 0x07, 0xcd, 0xf9, 0xf1, 0x1f, 0x55, 0xbd, 0xb9, + 0xda, 0xc3, 0x53, 0x01, 0xa6, 0x83, 0x62, 0x00, 0x4c, 0x87, 0xad, 0xd5, + 0x1b, 0xaa, 0xeb, 0x8b, 0xe2, 0x1a, 0xbd, 0x57, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xcc, 0x80, 0x6d, 0x22, 0xe8, 0xae, 0xd5, 0xab, 0xab, 0x4d, + 0xa2, 0x80, 0x8d, 0xa7, 0x18, 0x00, 0xd3, 0xe1, 0xc5, 0xd5, 0xdd, 0xc5, + 0x70, 0xad, 0x14, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x05, 0x8a, + 0x01, 0x83, 0x53, 0xaa, 0x67, 0x8b, 0x01, 0x36, 0x9e, 0x62, 0x00, 0x6c, + 0xbc, 0xa7, 0x56, 0x4f, 0x16, 0xc3, 0xb5, 0x3a, 0xab, 0xfa, 0xa2, 0x18, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x01, 0x8a, 0x01, 0x97, 0x7b, 0x5e, + 0xf5, 0x28, 0x31, 0xc0, 0xc6, 0x52, 0x0c, 0x80, 0x8d, 0x75, 0xd7, 0xea, + 0x77, 0xc5, 0xb0, 0x28, 0xef, 0x11, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x33, 0xe2, 0x20, 0x11, 0x7c, 0xdf, 0xa6, 0xea, 0x95, 0xd5, 0x8f, 0x8a, + 0x02, 0x36, 0x8e, 0x62, 0x00, 0x6c, 0x9c, 0x23, 0xab, 0x37, 0x55, 0xbb, + 0x8b, 0x62, 0x51, 0x2c, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xac, + 0x38, 0x50, 0x04, 0x57, 0xb0, 0x57, 0xf5, 0xe6, 0xea, 0x08, 0x51, 0xc0, + 0xc6, 0x50, 0x0c, 0x80, 0x8d, 0xfd, 0x05, 0x78, 0x98, 0x28, 0x16, 0x65, + 0x47, 0xf5, 0x0f, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x46, 0x58, + 0x4a, 0xe0, 0x07, 0x1d, 0x5e, 0xbd, 0xa1, 0xda, 0x2a, 0x0a, 0x58, 0x7f, + 0x8a, 0x01, 0xb0, 0x31, 0x5e, 0x52, 0x1d, 0x23, 0x86, 0x45, 0xfb, 0xbf, + 0xd5, 0xd7, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x8c, 0xb8, 0x8e, + 0x08, 0xae, 0xd2, 0x5d, 0xab, 0x17, 0x88, 0x01, 0xd6, 0x9f, 0x62, 0x00, + 0xac, 0xbf, 0x9f, 0xad, 0x9e, 0x20, 0x86, 0x25, 0x79, 0x85, 0x08, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x98, 0x21, 0x96, 0x12, 0xb8, 0x7a, 0x3f, 0x53, + 0x9d, 0x24, 0x06, 0x58, 0x5f, 0x9b, 0x16, 0x16, 0x16, 0xa4, 0x00, 0xeb, + 0xe7, 0xbe, 0xd5, 0xdb, 0xab, 0xdd, 0x44, 0xb1, 0x68, 0x2f, 0xad, 0x9e, + 0x2a, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0xc4, 0x6e, 0xd5, 0xc5, + 0xd5, 0x26, 0x51, 0x5c, 0xad, 0x0b, 0xab, 0x3b, 0x56, 0x9f, 0x11, 0x05, + 0xac, 0x0f, 0xc5, 0x00, 0x58, 0x3f, 0x47, 0x55, 0xff, 0x5c, 0x1d, 0x2c, + 0x8a, 0x45, 0x7b, 0x6b, 0x43, 0x6b, 0xf0, 0x32, 0x51, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x30, 0x23, 0x0e, 0xae, 0xbe, 0x2a, 0x86, 0x6b, 0xf5, 0xaf, + 0xd5, 0x9d, 0xab, 0xef, 0x8a, 0x02, 0xd6, 0x9e, 0xa5, 0x04, 0x60, 0x7d, + 0xec, 0xdb, 0x70, 0x91, 0x5b, 0x29, 0x60, 0xf1, 0x3e, 0x58, 0x9d, 0x92, + 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0x65, 0x9b, 0x08, 0x16, + 0xe5, 0xb6, 0xd5, 0xef, 0x8a, 0x01, 0xd6, 0x87, 0x62, 0x00, 0xac, 0xbd, + 0x4d, 0xd5, 0x2b, 0xab, 0x5b, 0x8b, 0x62, 0xd1, 0x3e, 0xdb, 0x30, 0x53, + 0x80, 0x96, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0xe6, 0x9c, 0xea, + 0xe3, 0x62, 0x58, 0x94, 0x27, 0x57, 0x8f, 0x15, 0x03, 0xac, 0x3d, 0xc5, + 0x00, 0x58, 0x7b, 0xbf, 0x5c, 0x9d, 0x2c, 0x86, 0x45, 0xfb, 0x52, 0x75, + 0x7c, 0xa6, 0x59, 0x02, 0x00, 0x00, 0x00, 0x00, 0x60, 0x36, 0x5d, 0x5a, + 0x3d, 0xa5, 0xda, 0x21, 0x8a, 0x45, 0xf9, 0x83, 0xea, 0x68, 0x31, 0xc0, + 0xda, 0x52, 0x0c, 0x80, 0xb5, 0xf5, 0xe0, 0x86, 0x62, 0x00, 0x8b, 0x73, + 0x61, 0x75, 0x62, 0xf5, 0x39, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, + 0xc3, 0x3e, 0x5c, 0xbd, 0x4c, 0x0c, 0x8b, 0xb2, 0x4f, 0xf5, 0xa6, 0x6a, + 0x3f, 0x51, 0xc0, 0xda, 0xd9, 0xb4, 0xb0, 0xb0, 0x20, 0x05, 0x58, 0x1b, + 0x87, 0x57, 0x67, 0x55, 0xfb, 0x8b, 0x62, 0x51, 0x2e, 0xa9, 0x1e, 0x54, + 0xbd, 0x43, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0xc0, 0x81, 0x0d, + 0xd7, 0x09, 0xae, 0x2b, 0x8a, 0x45, 0x79, 0x4d, 0xf5, 0x68, 0x31, 0xc0, + 0xda, 0x30, 0x63, 0x00, 0xac, 0x9d, 0x7b, 0xa6, 0x14, 0xb0, 0x58, 0x0b, + 0x0d, 0xd3, 0x2a, 0x29, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x16, + 0x17, 0x54, 0x3f, 0x23, 0x86, 0x45, 0x3b, 0xbd, 0xe1, 0x5a, 0x01, 0xb0, + 0x06, 0x14, 0x03, 0x60, 0xed, 0xdc, 0x51, 0x04, 0x8b, 0xf6, 0xcb, 0xd5, + 0xab, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc8, 0xbc, 0xbe, 0xfa, + 0x1b, 0x31, 0x2c, 0xda, 0x8b, 0xaa, 0x63, 0xc4, 0x00, 0xab, 0x4f, 0x31, + 0x00, 0xd6, 0x8e, 0x62, 0xc0, 0xe2, 0xbc, 0xbc, 0x7a, 0x9e, 0x18, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0xa9, 0xa7, 0x55, 0xdf, 0x16, 0xc3, 0xa2, + 0xec, 0x51, 0xfd, 0x65, 0x75, 0x90, 0x28, 0x60, 0x75, 0x29, 0x06, 0xc0, + 0xda, 0xd8, 0x52, 0xdd, 0x4e, 0x0c, 0xd7, 0xea, 0x6d, 0xd5, 0x53, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x88, 0x7d, 0xbe, 0xfa, 0x59, 0x31, + 0x2c, 0xda, 0x0d, 0xab, 0x57, 0x54, 0x9b, 0x44, 0x01, 0xab, 0x47, 0x31, + 0x00, 0xd6, 0xc6, 0xd1, 0xd5, 0x3e, 0x62, 0xb8, 0x46, 0x1f, 0xa9, 0x1e, + 0x55, 0x5d, 0x2a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0xee, 0x8f, + 0xaa, 0xdf, 0x13, 0xc3, 0xa2, 0x3d, 0xb4, 0x7a, 0xa6, 0x18, 0x60, 0xf5, + 0x28, 0x06, 0xc0, 0xda, 0xb0, 0x8c, 0xc0, 0x35, 0xfb, 0x72, 0x75, 0x52, + 0xa6, 0x4e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x60, 0x7e, 0x3c, 0xb3, 0x61, + 0x26, 0x5d, 0x16, 0xe7, 0x05, 0xd5, 0x71, 0x62, 0x80, 0xd5, 0xa1, 0x18, + 0x00, 0x6b, 0x43, 0x31, 0xe0, 0xea, 0x5d, 0x52, 0x3d, 0xb2, 0xfa, 0x82, + 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x23, 0x97, 0x55, 0xa7, 0x55, + 0xff, 0x26, 0x8a, 0x45, 0xd9, 0xad, 0x7a, 0x5d, 0x75, 0x88, 0x28, 0x60, + 0xe5, 0x14, 0x03, 0x60, 0x6d, 0x28, 0x06, 0x5c, 0xbd, 0xa7, 0x55, 0xef, + 0x17, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0xe8, 0xc2, 0xea, 0xc1, + 0xd5, 0x7f, 0x89, 0x62, 0x51, 0xae, 0xdf, 0x50, 0x0e, 0xd8, 0x22, 0x0a, + 0x58, 0x19, 0xc5, 0x00, 0x58, 0x7d, 0x7b, 0x56, 0xb7, 0x16, 0xc3, 0x55, + 0x7a, 0x49, 0xf5, 0xbf, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x1c, + 0xfb, 0x5c, 0xf5, 0xb0, 0xea, 0x7b, 0xa2, 0x58, 0x94, 0xfb, 0x54, 0x67, + 0x8a, 0x01, 0x56, 0x66, 0xd3, 0xc2, 0xc2, 0x82, 0x14, 0x60, 0x75, 0xdd, + 0xa9, 0xfa, 0x27, 0x31, 0xfc, 0x80, 0x0f, 0x56, 0xf7, 0xae, 0x2e, 0x16, + 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf4, 0xd8, 0xea, 0xd5, 0x62, 0x58, + 0x94, 0x1d, 0xd5, 0x03, 0xaa, 0x77, 0x8a, 0x02, 0x96, 0xc7, 0x8c, 0x01, + 0xb0, 0xfa, 0x2c, 0x23, 0xf0, 0x83, 0xce, 0x6d, 0x68, 0x3f, 0x2a, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xe0, 0x4f, 0xaa, 0x17, 0x88, 0x61, + 0x51, 0x36, 0x57, 0x7f, 0x56, 0x1d, 0x21, 0x0a, 0x58, 0xfe, 0x37, 0x11, + 0xb0, 0xba, 0x14, 0x03, 0xae, 0xe8, 0xa2, 0xea, 0xe1, 0x59, 0x2f, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xec, 0xcc, 0xea, 0xcf, 0xc5, 0xb0, + 0x28, 0x87, 0x56, 0x6f, 0xac, 0xb6, 0x8a, 0x02, 0x96, 0x4e, 0x31, 0x00, + 0x56, 0xdf, 0x1d, 0x44, 0x70, 0x05, 0x4f, 0xaa, 0x3e, 0x22, 0x06, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xf8, 0x01, 0x0b, 0x0d, 0xe7, 0xd1, 0x3f, 0x26, + 0x8a, 0x45, 0xb9, 0x4b, 0xf5, 0x2c, 0x31, 0xc0, 0xd2, 0x6d, 0x5a, 0x58, + 0x58, 0x90, 0x02, 0xac, 0x9e, 0xfd, 0xaa, 0x0b, 0x52, 0xba, 0xd9, 0xe9, + 0x37, 0xab, 0x33, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd7, 0xe8, + 0xf0, 0xea, 0x43, 0xd5, 0xf5, 0x45, 0x71, 0xad, 0xbe, 0x5b, 0xdd, 0xbc, + 0x3a, 0x4f, 0x14, 0xb0, 0x78, 0x2e, 0x5e, 0xc2, 0xea, 0x3a, 0xc6, 0xf7, + 0xd5, 0xf7, 0xbd, 0xb3, 0x61, 0x0a, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xe0, 0x9a, 0x9d, 0x5f, 0x3d, 0xa4, 0xfa, 0xb6, 0x28, 0xae, 0xd5, 0x5e, + 0xd5, 0x73, 0xc5, 0x00, 0x4b, 0xe3, 0x02, 0x26, 0xac, 0xae, 0x3b, 0x8a, + 0xa0, 0xaa, 0x73, 0xaa, 0x53, 0xab, 0xcb, 0x44, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x8b, 0xf2, 0xb1, 0xea, 0x71, 0xd5, 0x0e, 0x51, 0x5c, 0xab, + 0xc7, 0x57, 0xb7, 0x17, 0x03, 0x2c, 0x9e, 0x62, 0x00, 0xac, 0x2e, 0xc5, + 0x80, 0xfa, 0x56, 0xf5, 0xe0, 0xea, 0x6b, 0xa2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x25, 0xf9, 0xcb, 0xdc, 0x0d, 0xbf, 0x18, 0x9b, 0xab, 0xdf, + 0x12, 0x03, 0x2c, 0xed, 0x9b, 0x06, 0x58, 0x3d, 0xf3, 0x5e, 0x0c, 0x58, + 0xa8, 0x9e, 0x50, 0x7d, 0xc2, 0x53, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x96, 0xe5, 0x79, 0xd5, 0x9f, 0x89, 0xe1, 0x5a, 0xdd, 0xab, 0x3a, 0x41, + 0x0c, 0xb0, 0x38, 0x9b, 0x16, 0x16, 0x16, 0xa4, 0x00, 0xab, 0xe3, 0xe0, + 0xea, 0xab, 0x73, 0x9e, 0xc1, 0x73, 0xaa, 0x5f, 0xf5, 0x54, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x15, 0xd9, 0xb3, 0x7a, 0x4f, 0x75, 0x17, 0x51, + 0x5c, 0xa3, 0xb3, 0xaa, 0xdb, 0x56, 0x97, 0x8a, 0x02, 0xae, 0x99, 0x19, + 0x03, 0x60, 0xf5, 0xdc, 0x61, 0xce, 0x8f, 0xff, 0xaf, 0xaa, 0x5f, 0xf3, + 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x15, 0xbb, 0xa8, 0x3a, 0xa9, + 0xfa, 0xbc, 0x28, 0xae, 0xd1, 0x2d, 0xab, 0xc7, 0x89, 0x01, 0xae, 0x9d, + 0x62, 0x00, 0xac, 0x9e, 0x1f, 0x9d, 0xe3, 0x63, 0xff, 0xf4, 0xe4, 0x17, + 0xaf, 0x29, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x75, 0x7c, 0xa5, + 0x61, 0xaa, 0xfc, 0x6f, 0x8a, 0xe2, 0x1a, 0x1d, 0x26, 0x02, 0xb8, 0x76, + 0x8a, 0x01, 0xb0, 0x7a, 0xee, 0x38, 0xa7, 0xc7, 0xfd, 0x8d, 0xea, 0x41, + 0xd5, 0xff, 0x78, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xaa, 0xfa, + 0x54, 0x75, 0x6a, 0x75, 0x99, 0x28, 0xae, 0xd6, 0xb9, 0x22, 0x80, 0x6b, + 0xa7, 0x18, 0x00, 0xab, 0xe7, 0x98, 0x39, 0x3c, 0xe6, 0x1d, 0xd5, 0xe9, + 0xd5, 0x67, 0x0d, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0x89, 0xb7, + 0x57, 0x67, 0x88, 0xe1, 0x6a, 0x29, 0x06, 0xc0, 0x22, 0x28, 0x06, 0xc0, + 0xea, 0xb8, 0x7e, 0x75, 0xbd, 0x39, 0x3c, 0xee, 0x5f, 0x98, 0xbc, 0x20, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0xce, 0x6f, 0x57, 0x2f, 0x15, + 0xc3, 0x55, 0x3a, 0x4f, 0x04, 0x70, 0xed, 0x14, 0x03, 0x60, 0x75, 0xcc, + 0xe3, 0x32, 0x02, 0xaf, 0x99, 0xbc, 0x10, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xd6, 0xde, 0x33, 0xaa, 0x77, 0x8b, 0xe1, 0x0a, 0x76, 0x54, 0x5f, + 0x14, 0x03, 0x5c, 0x3b, 0xc5, 0x00, 0x58, 0x1d, 0xf3, 0x56, 0x0c, 0xf8, + 0x78, 0xf5, 0x64, 0xc3, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0xe6, + 0x92, 0xea, 0x91, 0xd5, 0xbf, 0x8b, 0xe2, 0xfb, 0xbe, 0x5c, 0x5d, 0x2c, + 0x06, 0xb8, 0x76, 0x8a, 0x01, 0xb0, 0x3a, 0xfe, 0xaa, 0xfa, 0xd6, 0x9c, + 0x1c, 0xeb, 0xd7, 0xaa, 0x87, 0x55, 0xdf, 0x31, 0xec, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xb0, 0xae, 0xbe, 0x5e, 0x3d, 0xb8, 0xfa, 0x86, 0x28, 0xaa, + 0x3a, 0x57, 0x04, 0xb0, 0x38, 0x8a, 0x01, 0xb0, 0x3a, 0x3e, 0x5c, 0x3d, + 0xa2, 0xf1, 0xb7, 0xd2, 0x2e, 0x69, 0x28, 0x05, 0x9c, 0x63, 0xc8, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x43, 0x7c, 0xa6, 0x61, 0xe6, 0x80, 0x4b, + 0x45, 0xd1, 0x79, 0x22, 0x80, 0xc5, 0x51, 0x0c, 0x80, 0xd5, 0xf3, 0x8e, + 0xea, 0x51, 0xd5, 0x65, 0x23, 0x3e, 0xc6, 0x67, 0x54, 0xef, 0x33, 0xd4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xa1, 0xde, 0x55, 0x9d, 0x29, 0x06, + 0x33, 0x06, 0xc0, 0x62, 0x29, 0x06, 0xc0, 0xea, 0x7a, 0x73, 0xf5, 0xf4, + 0x91, 0x1e, 0xdb, 0x1f, 0x57, 0x2f, 0x35, 0xc4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x30, 0x15, 0x7e, 0xab, 0xe1, 0xba, 0xc4, 0x3c, 0x33, 0x63, 0x00, + 0x2c, 0x92, 0x62, 0x00, 0xac, 0xbe, 0x97, 0x56, 0xbf, 0x3c, 0xb2, 0x63, + 0xfa, 0xc7, 0xea, 0x27, 0x0c, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, + 0x8d, 0x85, 0xea, 0x89, 0xd5, 0xd9, 0x73, 0x9c, 0x81, 0x19, 0x03, 0x60, + 0x91, 0x14, 0x03, 0x60, 0x6d, 0xfc, 0x5a, 0xf5, 0xc2, 0x91, 0x1c, 0xcb, + 0x97, 0xaa, 0x47, 0x54, 0xdf, 0x33, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x30, 0x55, 0x2e, 0xa8, 0x1e, 0x56, 0x7d, 0x77, 0x4e, 0x8f, 0x5f, 0x31, + 0x00, 0x16, 0x49, 0x31, 0x00, 0xd6, 0xce, 0xcf, 0x55, 0xaf, 0x9a, 0xf1, + 0x63, 0xb8, 0xa8, 0x7a, 0x68, 0x75, 0xbe, 0xe1, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x80, 0xa9, 0xf4, 0x7f, 0x1b, 0xae, 0x49, 0xcc, 0x23, 0x4b, 0x09, + 0xc0, 0x22, 0x29, 0x06, 0xc0, 0xda, 0x59, 0xa8, 0x7e, 0xbc, 0x7a, 0xd3, + 0x0c, 0x1f, 0xc3, 0xd3, 0xaa, 0x0f, 0x1b, 0x4a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x98, 0x6a, 0x7f, 0x50, 0xfd, 0xe9, 0x9c, 0x1d, 0xf3, 0x45, 0xd5, + 0x57, 0x0d, 0x3d, 0x2c, 0x8e, 0x62, 0x00, 0xac, 0xad, 0xcb, 0xaa, 0x47, + 0x57, 0xef, 0x9b, 0xc1, 0x7d, 0xff, 0x9d, 0xea, 0x95, 0x86, 0x10, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x66, 0xc2, 0x4f, 0x56, 0x9f, 0x9a, 0xa3, 0xe3, + 0x3d, 0xaf, 0xe1, 0x26, 0x4d, 0x60, 0x11, 0x14, 0x03, 0x60, 0xed, 0x7d, + 0xb7, 0x7a, 0x50, 0xf5, 0x2f, 0x33, 0xb4, 0xcf, 0xef, 0xae, 0x7e, 0xc1, + 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xcc, 0xf8, 0x56, 0xf5, 0xc8, + 0xea, 0xdb, 0x73, 0x72, 0xbc, 0xe7, 0x1a, 0x72, 0x58, 0x3c, 0xc5, 0x00, + 0x58, 0x1f, 0xff, 0x53, 0x9d, 0x50, 0xfd, 0xe7, 0x0c, 0xec, 0xeb, 0x7f, + 0x54, 0xa7, 0x54, 0x97, 0x1a, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, + 0x29, 0x9f, 0x6c, 0x98, 0x39, 0x60, 0x1e, 0x9c, 0x67, 0xb8, 0x61, 0xf1, + 0x14, 0x03, 0x60, 0xfd, 0x7c, 0xb9, 0xba, 0x5f, 0xf5, 0xa5, 0x29, 0x7f, + 0xc1, 0x70, 0xaf, 0xea, 0x6b, 0x86, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x66, 0xd2, 0x9f, 0x54, 0x2f, 0x9f, 0x83, 0xe3, 0x34, 0x63, 0x00, 0x2c, + 0x81, 0x62, 0x00, 0xac, 0xaf, 0xb3, 0x1b, 0xca, 0x01, 0x5f, 0x9f, 0xc2, + 0x7d, 0xfb, 0xa7, 0xea, 0x1e, 0xd5, 0x17, 0x0d, 0x13, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xcc, 0xb4, 0x9f, 0xaa, 0x3e, 0x36, 0xf2, 0x63, 0x34, 0x63, + 0x00, 0x2c, 0x81, 0x62, 0x00, 0xac, 0xbf, 0x4f, 0x34, 0x2c, 0x2b, 0x30, + 0x4d, 0x6b, 0xfc, 0xbc, 0xad, 0xba, 0x77, 0x66, 0x0a, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x31, 0xb8, 0xa8, 0x61, 0xd9, 0xe0, 0x6f, 0x8e, 0xf8, + 0x18, 0xcd, 0x18, 0x00, 0x4b, 0xa0, 0x18, 0x00, 0x1b, 0xe3, 0x43, 0xd5, + 0x43, 0xab, 0xef, 0x4d, 0xc1, 0xbe, 0xfc, 0x59, 0xf5, 0xb0, 0xea, 0xbb, + 0x86, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0xe3, 0xb3, 0xd5, 0x63, + 0xab, 0x85, 0x91, 0x1e, 0x9f, 0x62, 0x00, 0x2c, 0x81, 0x62, 0x00, 0x6c, + 0x9c, 0x77, 0x55, 0x4f, 0xa8, 0x76, 0x6c, 0xe0, 0x3e, 0xfc, 0x7e, 0xf5, + 0xb8, 0xea, 0x12, 0xc3, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa3, 0xf3, + 0xd7, 0xd5, 0xef, 0x8d, 0xf4, 0xd8, 0xbe, 0x60, 0x78, 0x61, 0xf1, 0x36, + 0x2d, 0x2c, 0x2c, 0x48, 0x01, 0x36, 0xd6, 0xd3, 0x1b, 0x2e, 0xd0, 0xaf, + 0xb5, 0x4b, 0x1b, 0xd6, 0xdb, 0xf9, 0x5c, 0x75, 0x4e, 0xf5, 0x81, 0xea, + 0x55, 0xe2, 0x07, 0x00, 0x00, 0x00, 0x00, 0x80, 0x51, 0xdb, 0x5a, 0xbd, + 0xaf, 0xba, 0xf3, 0x88, 0x8e, 0xe9, 0xeb, 0xd5, 0x75, 0x0c, 0x2d, 0x2c, + 0xde, 0x6e, 0x22, 0x80, 0x0d, 0xf7, 0xe2, 0xea, 0xe0, 0xea, 0x39, 0xab, + 0xf0, 0x6f, 0x7d, 0xa3, 0x3a, 0xfb, 0x6a, 0xb6, 0x73, 0x1b, 0xca, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xfc, 0xb8, 0xa4, 0x7a, 0x64, 0xf5, + 0xb1, 0x86, 0xeb, 0x11, 0x63, 0xf0, 0x79, 0xc3, 0x0a, 0x4b, 0xa3, 0x18, + 0x00, 0xd3, 0xe1, 0xb9, 0xd5, 0xfe, 0xd5, 0xcf, 0x5c, 0xcb, 0xdf, 0xbb, + 0xaa, 0x0b, 0xff, 0x5f, 0xaa, 0xce, 0xaf, 0xce, 0xaa, 0xbe, 0x23, 0x4a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x4a, 0xce, 0xab, 0x1e, 0x5b, 0xbd, + 0xad, 0x71, 0x2c, 0x35, 0x7e, 0x9e, 0x21, 0x85, 0xa5, 0x51, 0x0c, 0x80, + 0xe9, 0xf1, 0x73, 0xd5, 0x01, 0xd5, 0xad, 0x1b, 0xa6, 0xfb, 0xff, 0x5c, + 0xc3, 0x94, 0xff, 0x9f, 0xdb, 0x65, 0xbb, 0x48, 0x4c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0x32, 0xbc, 0xbd, 0x7a, 0x7e, 0xf5, 0x8b, 0x23, 0x38, + 0x16, 0xc5, 0x00, 0x58, 0xa2, 0x4d, 0x0b, 0x0b, 0x0b, 0x52, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0xf1, 0xdb, 0x52, 0xbd, 0xb3, 0xba, 0xd7, + 0x0c, 0x1f, 0xc3, 0x8e, 0xea, 0x09, 0xd5, 0x9f, 0x18, 0x4e, 0x58, 0xbc, + 0xcd, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xb9, 0x70, 0x59, + 0x75, 0x6a, 0xc3, 0x12, 0xc5, 0xb3, 0xe8, 0x5d, 0xd5, 0x31, 0x29, 0x05, + 0xc0, 0x92, 0x29, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xfc, + 0xf8, 0x4a, 0x75, 0x8f, 0xea, 0x8f, 0xab, 0x4b, 0x66, 0x64, 0x9f, 0xff, + 0xad, 0x7a, 0x40, 0x75, 0x7c, 0xf5, 0x71, 0x43, 0x08, 0x4b, 0x67, 0x29, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x4f, 0x37, 0xa8, 0x7e, + 0xb6, 0xfa, 0xb1, 0x6a, 0xef, 0x29, 0xdc, 0xbf, 0xf3, 0xab, 0x5f, 0xa9, + 0x5e, 0xd1, 0x30, 0xdb, 0x01, 0xb0, 0x4c, 0x8a, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x30, 0xdf, 0x0e, 0xae, 0x9e, 0x5e, 0x3d, 0xa3, 0xda, + 0x36, 0x05, 0xfb, 0xf3, 0xed, 0xea, 0xc5, 0xd5, 0xaf, 0x57, 0x17, 0x1a, + 0x1e, 0x58, 0x39, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, + 0x6a, 0xbf, 0xea, 0x89, 0xd5, 0x2f, 0x54, 0x87, 0x6f, 0xc0, 0xe3, 0xef, + 0xa8, 0x5e, 0x53, 0x9d, 0x51, 0x7d, 0xc9, 0x70, 0xc0, 0xea, 0x51, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xb5, 0x47, 0x75, 0x4a, + 0xf5, 0x4b, 0xd5, 0x4d, 0xd7, 0xe9, 0x31, 0xdf, 0xd5, 0xb0, 0xac, 0xc1, + 0xbf, 0x8a, 0x1f, 0x56, 0x9f, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x70, 0x55, 0x36, 0x57, 0x0f, 0xaf, 0x9e, 0x53, 0x1d, 0xbd, 0x46, + 0x8f, 0xf1, 0xa9, 0xea, 0xe7, 0xab, 0xbf, 0x15, 0x37, 0xac, 0x1d, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x9a, 0x6c, 0xaa, 0xb6, + 0x57, 0x67, 0x56, 0x77, 0x5e, 0xa5, 0x7f, 0xf3, 0x8b, 0xd5, 0xaf, 0x56, + 0xaf, 0xa8, 0x2e, 0x13, 0x31, 0xac, 0xf1, 0x37, 0xb1, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x48, 0xc7, 0x55, 0x67, 0x34, 0x14, + 0x05, 0x96, 0xe3, 0xdb, 0xd5, 0x8b, 0xab, 0xe7, 0x55, 0xdf, 0x12, 0x27, + 0xac, 0x0f, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xa9, + 0x6e, 0x57, 0x3d, 0xb3, 0x3a, 0xad, 0xda, 0xb2, 0x88, 0xbf, 0x7f, 0x69, + 0xf5, 0xca, 0x86, 0x65, 0x09, 0xbe, 0x2c, 0x3e, 0x58, 0x5f, 0x8a, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x72, 0xdd, 0xa4, 0xfa, 0xf9, + 0xea, 0x09, 0xd5, 0xd6, 0xab, 0xf9, 0x3b, 0xef, 0x6a, 0x28, 0x11, 0xfc, + 0x9b, 0xb8, 0x60, 0x63, 0x28, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x2b, 0x75, 0xc3, 0x86, 0x8b, 0xff, 0x3f, 0x56, 0xed, 0x3d, 0xf9, + 0xda, 0x47, 0xab, 0x9f, 0xab, 0xfe, 0x41, 0x3c, 0xb0, 0xb1, 0x14, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xd5, 0x72, 0x58, 0xf5, 0xd3, + 0xd5, 0x27, 0xab, 0xd7, 0x56, 0x2e, 0x46, 0xc2, 0x14, 0x50, 0x0c, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x11, 0xdb, 0x2c, 0x02, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x2f, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, + 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, + 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, + 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, + 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, + 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, + 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, + 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x18, 0x31, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0xb1, 0xdd, 0x44, 0x00, 0x00, 0x73, 0xe3, 0x2e, 0xd5, 0x3e, + 0x62, 0xa0, 0xfa, 0x5c, 0xf5, 0x59, 0x31, 0xc0, 0xb2, 0xec, 0x59, 0x1d, + 0x27, 0x86, 0xb9, 0xf2, 0xa9, 0xea, 0x7c, 0x31, 0xcc, 0x84, 0x7b, 0x55, + 0x5b, 0xc4, 0x30, 0x37, 0xce, 0xad, 0xfe, 0x5d, 0x0c, 0xb0, 0x2c, 0x7b, + 0x54, 0x77, 0x13, 0x03, 0x13, 0x1f, 0xab, 0xbe, 0x2e, 0x06, 0x00, 0x18, + 0xbf, 0x4d, 0x0b, 0x0b, 0x0b, 0x52, 0x00, 0x80, 0xf1, 0xdb, 0xbf, 0xfa, + 0x6a, 0xb5, 0xbb, 0x28, 0xa8, 0x7e, 0xa3, 0x7a, 0x96, 0x18, 0x60, 0x59, + 0x4e, 0xad, 0x5e, 0x2b, 0x86, 0xb9, 0xf2, 0xa4, 0xea, 0x95, 0x62, 0x98, + 0x09, 0x17, 0x56, 0xfb, 0x8a, 0x61, 0x6e, 0xfc, 0x63, 0x75, 0x57, 0x31, + 0xc0, 0xb2, 0x1c, 0x51, 0x7d, 0x41, 0x0c, 0x4c, 0x9c, 0x51, 0xfd, 0xa6, + 0x18, 0x00, 0x60, 0xfc, 0x2c, 0x25, 0x00, 0x00, 0xf3, 0xe1, 0xfe, 0x29, + 0x05, 0x00, 0xac, 0x86, 0xd3, 0x45, 0x00, 0x30, 0x15, 0xee, 0x52, 0xdd, + 0x4c, 0x0c, 0x00, 0x2b, 0x76, 0xa2, 0x08, 0x00, 0x60, 0x3e, 0x28, 0x06, + 0x00, 0x80, 0x37, 0xfa, 0x00, 0x2c, 0xce, 0x21, 0xd5, 0xfd, 0xc4, 0x00, + 0x30, 0x35, 0x4e, 0x15, 0x01, 0xc0, 0x8a, 0x1d, 0x5b, 0x5d, 0x47, 0x0c, + 0x00, 0x30, 0x7e, 0x8a, 0x01, 0x00, 0x30, 0x1f, 0xbf, 0xef, 0x1f, 0x20, + 0x06, 0x80, 0x15, 0x7b, 0x54, 0xb5, 0x55, 0x0c, 0x00, 0x53, 0xe3, 0xd1, + 0xd5, 0x26, 0x31, 0x00, 0xac, 0xc8, 0x96, 0x86, 0x59, 0x06, 0x01, 0x80, + 0x91, 0x53, 0x0c, 0x00, 0x80, 0xf1, 0xbb, 0x53, 0x75, 0x98, 0x18, 0x00, + 0x56, 0xcc, 0x32, 0x02, 0x00, 0xd3, 0xe5, 0x26, 0xd5, 0x8f, 0x8a, 0x01, + 0x60, 0xc5, 0xcc, 0x32, 0x08, 0x00, 0x73, 0x40, 0x31, 0x00, 0x00, 0xbc, + 0xc1, 0x07, 0xe0, 0xda, 0xb9, 0xf8, 0x04, 0x30, 0x9d, 0x94, 0xb6, 0x00, + 0x56, 0xee, 0x81, 0xd5, 0x6e, 0x62, 0x00, 0x80, 0x71, 0x53, 0x0c, 0x00, + 0x80, 0xf1, 0xdb, 0x2e, 0x02, 0x80, 0x15, 0x33, 0x5d, 0x35, 0xc0, 0x74, + 0xb2, 0xcc, 0x0b, 0xc0, 0xca, 0x6d, 0xab, 0xee, 0x2a, 0x06, 0x00, 0x18, + 0x37, 0xc5, 0x00, 0x00, 0x18, 0xb7, 0x23, 0xab, 0xdb, 0x8a, 0x01, 0x60, + 0xc5, 0x4e, 0x15, 0x01, 0xc0, 0x54, 0x3a, 0xa4, 0xba, 0x9f, 0x18, 0x00, + 0x56, 0xcc, 0x6c, 0x83, 0x00, 0x30, 0x72, 0x8a, 0x01, 0x00, 0x30, 0x6e, + 0xdb, 0x73, 0x87, 0x2b, 0xc0, 0x4a, 0xdd, 0xa5, 0xba, 0x99, 0x18, 0x00, + 0xa6, 0x96, 0xe5, 0x04, 0x00, 0x56, 0xce, 0x6c, 0x83, 0x00, 0x30, 0x72, + 0x8a, 0x01, 0x00, 0x30, 0x6e, 0x1a, 0xff, 0x00, 0x2b, 0xe7, 0x82, 0x13, + 0xc0, 0x74, 0x7b, 0x68, 0x75, 0x80, 0x18, 0x00, 0x56, 0xe4, 0x56, 0xd5, + 0x4d, 0xc4, 0x00, 0x00, 0xe3, 0xa5, 0x18, 0x00, 0x00, 0xe3, 0xb5, 0x57, + 0x75, 0x2f, 0x31, 0x00, 0xac, 0xc8, 0xd6, 0xea, 0x14, 0x31, 0x00, 0x4c, + 0xfd, 0xeb, 0xde, 0x87, 0x8a, 0x01, 0x60, 0xc5, 0x4e, 0x10, 0x01, 0x00, + 0x8c, 0xd7, 0x6e, 0x22, 0x00, 0x60, 0x91, 0x76, 0xaf, 0x0e, 0xbc, 0x9a, + 0x6d, 0xdb, 0xe4, 0xe3, 0xd6, 0x6a, 0xbf, 0x6a, 0xcf, 0x86, 0x93, 0x73, + 0xfb, 0x4e, 0xbe, 0x76, 0x60, 0x3f, 0x38, 0x9d, 0xfd, 0xce, 0xbf, 0xb3, + 0xd3, 0x05, 0xd5, 0x42, 0xb5, 0xa3, 0xfa, 0xe6, 0xe4, 0x6b, 0x97, 0x54, + 0xdf, 0x9a, 0xfc, 0xb7, 0xab, 0xda, 0xfe, 0xbb, 0xfa, 0x42, 0xf5, 0xe5, + 0xc9, 0xff, 0xc7, 0x15, 0xdd, 0xb7, 0xda, 0x5b, 0x0c, 0x00, 0x2b, 0xf2, + 0x80, 0xea, 0x60, 0x31, 0x00, 0x4c, 0xbd, 0xd3, 0xab, 0x57, 0x8b, 0x01, + 0x60, 0x45, 0x4e, 0xac, 0x7e, 0x4f, 0x0c, 0x57, 0x69, 0x73, 0x75, 0xdd, + 0xea, 0xfa, 0xd5, 0x21, 0x5d, 0xf5, 0xf9, 0xb1, 0x03, 0xba, 0xfc, 0x5c, + 0x58, 0x93, 0x3f, 0x6f, 0x6e, 0x38, 0x27, 0x76, 0xe0, 0x2e, 0xff, 0xd6, + 0x77, 0xab, 0x8b, 0xae, 0xf4, 0xef, 0x2f, 0x34, 0x9c, 0xeb, 0xda, 0x79, + 0x2e, 0x6c, 0xe7, 0xdf, 0xb9, 0xb0, 0xba, 0xb8, 0xcb, 0xcf, 0x85, 0x7d, + 0xa3, 0xe1, 0xbc, 0xd9, 0x95, 0xcf, 0x91, 0x5d, 0x6c, 0x88, 0x00, 0xb8, + 0x36, 0x8a, 0x01, 0x00, 0xf3, 0x6d, 0xcb, 0xe4, 0x4d, 0xcd, 0x91, 0xd5, + 0xf5, 0xaa, 0xc3, 0x27, 0x6f, 0x6e, 0x0e, 0x99, 0xfc, 0x79, 0xe7, 0xe7, + 0x87, 0x5d, 0xe9, 0x0d, 0xcc, 0xb4, 0xb9, 0xa4, 0xa1, 0x1c, 0x70, 0x5e, + 0xf5, 0xc5, 0xc9, 0xc7, 0x4f, 0x57, 0x9f, 0xac, 0x3e, 0x35, 0x79, 0x83, + 0x34, 0xaf, 0x6f, 0xe8, 0x01, 0x58, 0x19, 0xcb, 0x08, 0x00, 0xcc, 0x86, + 0xfb, 0x54, 0x47, 0x4c, 0xde, 0x0f, 0x00, 0xb0, 0x3c, 0xf7, 0x6c, 0xb8, + 0xe1, 0xe3, 0xc2, 0x39, 0x3d, 0xfe, 0x6d, 0x0d, 0x4b, 0x2a, 0xdc, 0xaa, + 0xba, 0x45, 0x75, 0x83, 0x86, 0x73, 0x65, 0x37, 0x68, 0x38, 0x7f, 0x36, + 0xcd, 0xd7, 0x53, 0x2e, 0x68, 0x38, 0x37, 0xf6, 0xdf, 0xd5, 0x7f, 0x4d, + 0x3e, 0xff, 0xea, 0x64, 0x3b, 0x7f, 0xb2, 0x9d, 0x57, 0x7d, 0xa5, 0xba, + 0xcc, 0x53, 0x1d, 0x60, 0x3e, 0x29, 0x06, 0x00, 0x8c, 0xdb, 0x41, 0xd5, + 0x51, 0xd5, 0x8d, 0x26, 0x1f, 0x6f, 0xd0, 0x50, 0x02, 0x38, 0xbc, 0xa1, + 0xe1, 0x7c, 0xdd, 0x86, 0x72, 0xc0, 0xac, 0xdb, 0x3a, 0x39, 0xae, 0x23, + 0xaf, 0xe6, 0xbf, 0x9f, 0xdf, 0x50, 0x10, 0xf8, 0x64, 0xf5, 0x7f, 0xaa, + 0x0f, 0x4c, 0xbe, 0x36, 0x66, 0x9b, 0x52, 0x0c, 0x00, 0x58, 0xa9, 0xfd, + 0xab, 0x07, 0x89, 0x01, 0x60, 0x26, 0x6c, 0xae, 0x1e, 0x55, 0xfd, 0xb6, + 0x28, 0x00, 0x96, 0x6d, 0xf7, 0xea, 0xf8, 0xea, 0x4d, 0x73, 0x70, 0xac, + 0x47, 0x54, 0xc7, 0x55, 0x77, 0xa9, 0x6e, 0xdd, 0x50, 0x06, 0xb8, 0xde, + 0x0c, 0x1f, 0xcf, 0xce, 0x59, 0x0b, 0xae, 0xcd, 0x65, 0x5d, 0x7e, 0x73, + 0xcd, 0xf9, 0x0d, 0x33, 0x71, 0x9e, 0x5b, 0x9d, 0x53, 0x7d, 0x6e, 0xf2, + 0xf1, 0x1b, 0xbe, 0x15, 0x00, 0xc6, 0x49, 0x31, 0x00, 0x60, 0xf6, 0x1d, + 0x3a, 0x79, 0xf3, 0x72, 0xf3, 0xea, 0x66, 0xd5, 0x8d, 0xbb, 0xbc, 0x08, + 0x70, 0x80, 0x78, 0xaa, 0xa1, 0x08, 0x71, 0x78, 0xc3, 0xd4, 0xfa, 0x3f, + 0x3d, 0xf9, 0xda, 0x39, 0x0d, 0x05, 0x81, 0x0f, 0x56, 0x7f, 0x3f, 0xf9, + 0xf3, 0x98, 0xdc, 0xae, 0xa1, 0xfc, 0x01, 0xc0, 0xf2, 0x3d, 0x3c, 0x4b, + 0xb2, 0x00, 0xcc, 0x92, 0xd3, 0x53, 0x0c, 0x00, 0x58, 0xa9, 0x13, 0x1b, + 0x67, 0x31, 0xe0, 0xc6, 0xd5, 0xfd, 0xaa, 0x63, 0x1b, 0x0a, 0x01, 0x47, + 0xcd, 0xe9, 0xf8, 0x6e, 0x69, 0x28, 0x45, 0x1c, 0x71, 0x0d, 0x7f, 0xe7, + 0x82, 0x2e, 0x2f, 0x09, 0x9c, 0x53, 0x7d, 0x66, 0xb2, 0x7d, 0xaa, 0x61, + 0x06, 0x02, 0x00, 0x66, 0x94, 0x62, 0x00, 0xc0, 0xec, 0xfc, 0xbc, 0xbe, + 0xc1, 0xe4, 0x4d, 0xcc, 0xd1, 0x0d, 0x45, 0x80, 0x21, 0x73, 0x4f, 0xe7, + 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, 0x1b, 0x37, 0x34, 0x9a, + 0xaf, 0x2b, 0x9e, 0x65, 0xb9, 0xd1, 0x64, 0x7b, 0xcc, 0xe4, 0xcf, 0x9f, + 0xaa, 0xde, 0x58, 0xbd, 0x61, 0xf2, 0xf9, 0xac, 0xdb, 0x6e, 0x88, 0x01, + 0x56, 0xcc, 0x32, 0x02, 0x00, 0xb3, 0xe5, 0x47, 0x26, 0xef, 0x91, 0x3e, + 0x21, 0x0a, 0x80, 0x65, 0xdb, 0xde, 0x30, 0x0b, 0xcb, 0x8e, 0x11, 0x1c, + 0xcb, 0x8d, 0x1b, 0x66, 0x00, 0x3b, 0xb9, 0xba, 0x6b, 0xc3, 0xec, 0x8a, + 0x5c, 0xbb, 0x03, 0x1b, 0x6e, 0x38, 0xb9, 0xdd, 0x55, 0xfc, 0xb7, 0x0b, + 0xaa, 0xff, 0xac, 0xce, 0xee, 0xf2, 0xd9, 0x39, 0xcf, 0x9e, 0xfc, 0xee, + 0xfd, 0x9e, 0xe8, 0x00, 0xa6, 0x9b, 0x62, 0x00, 0xc0, 0x74, 0xd9, 0xb3, + 0xe1, 0x44, 0xd6, 0x2d, 0x27, 0xdb, 0xcd, 0x1b, 0xd6, 0x34, 0xbb, 0x49, + 0xc3, 0x74, 0x6e, 0xac, 0x9d, 0x5b, 0x55, 0xcf, 0x99, 0x6c, 0x9f, 0xac, + 0x5e, 0x55, 0xbd, 0xbc, 0xfa, 0xe6, 0x8c, 0x1e, 0x8f, 0x65, 0x04, 0x00, + 0x56, 0xe6, 0xf0, 0x86, 0x35, 0x56, 0x01, 0x98, 0x2d, 0xa7, 0x55, 0x67, + 0x8a, 0x01, 0x60, 0xd9, 0x0e, 0xad, 0xee, 0x50, 0x7d, 0x78, 0x46, 0xf7, + 0xff, 0xc0, 0xea, 0xc7, 0xab, 0xc7, 0x37, 0x9c, 0xeb, 0x61, 0xf5, 0xf3, + 0x3d, 0x66, 0xb2, 0xed, 0xea, 0xe2, 0xea, 0xb3, 0xd5, 0x59, 0x0d, 0xb3, + 0x0b, 0x9c, 0x35, 0xd9, 0x14, 0x06, 0x00, 0xa6, 0x88, 0x62, 0x00, 0xc0, + 0xc6, 0xd9, 0xb7, 0xe1, 0xc2, 0xff, 0xd1, 0xbb, 0xbc, 0xa0, 0xbe, 0x43, + 0xb5, 0x87, 0x68, 0x36, 0xdc, 0xd1, 0xd5, 0x6f, 0x55, 0xcf, 0xad, 0x5e, + 0xdb, 0x30, 0x1d, 0xe9, 0xbf, 0xcf, 0xd8, 0x9b, 0xf8, 0x3b, 0x1a, 0x46, + 0x80, 0x15, 0x79, 0x74, 0xc3, 0x34, 0x9b, 0x00, 0xcc, 0x96, 0xd3, 0xab, + 0x5f, 0x6a, 0x1c, 0x77, 0xba, 0x02, 0x6c, 0x94, 0x13, 0x9b, 0xbd, 0x62, + 0xc0, 0x8d, 0xaa, 0xa7, 0x4c, 0xb6, 0x03, 0x0d, 0xe1, 0xba, 0xdb, 0xbd, + 0xa1, 0x88, 0x71, 0xe5, 0x32, 0xc6, 0xa5, 0x0d, 0xe7, 0xd4, 0x3e, 0x3a, + 0xd9, 0x3e, 0x59, 0x7d, 0xac, 0xfa, 0xba, 0xc8, 0x00, 0xd6, 0x9f, 0x62, + 0x00, 0xc0, 0xfa, 0xd8, 0x56, 0xdd, 0xbe, 0x61, 0x6a, 0xcb, 0xdb, 0x4f, + 0xb6, 0x9b, 0x36, 0x4c, 0xcd, 0xc6, 0xf4, 0xda, 0xb7, 0x7a, 0x72, 0xf5, + 0xa4, 0xea, 0xcf, 0xab, 0x67, 0x57, 0xe7, 0xce, 0xc8, 0x1b, 0x78, 0xcf, + 0x2d, 0x80, 0x95, 0xb1, 0x8c, 0x00, 0xc0, 0x6c, 0xba, 0x41, 0x75, 0xf7, + 0xea, 0x1f, 0x44, 0x01, 0xb0, 0x6c, 0xdb, 0x1b, 0x66, 0x54, 0x9c, 0x05, + 0x47, 0x55, 0xcf, 0x6f, 0x58, 0x2e, 0x40, 0xb1, 0x77, 0xfa, 0xec, 0xd6, + 0xe5, 0x85, 0x81, 0x9d, 0xcb, 0x79, 0xee, 0x68, 0x28, 0x0b, 0x7c, 0x6c, + 0xb2, 0xfd, 0xcb, 0xe4, 0xe3, 0x05, 0xe2, 0x02, 0x58, 0xfb, 0x1f, 0xca, + 0x00, 0xac, 0xae, 0x3d, 0x1b, 0xee, 0xd6, 0x3e, 0xae, 0x61, 0x16, 0x80, + 0xdb, 0x37, 0xb4, 0x96, 0x99, 0x5d, 0x5b, 0x1a, 0xa6, 0x24, 0x3d, 0xa9, + 0x7a, 0xc1, 0xe4, 0x0d, 0xe7, 0x25, 0x53, 0xbc, 0xbf, 0x96, 0x11, 0x00, + 0x58, 0x99, 0xa3, 0xab, 0xdb, 0x8a, 0x01, 0x60, 0x66, 0x9d, 0x9e, 0x62, + 0x00, 0xc0, 0x4a, 0xfc, 0x48, 0x75, 0xfd, 0xea, 0x0b, 0x53, 0xbc, 0x8f, + 0x5b, 0xab, 0x5f, 0xac, 0xce, 0x68, 0x38, 0x17, 0xc7, 0xec, 0xd8, 0xdc, + 0xb0, 0x74, 0xea, 0x2d, 0x1a, 0xce, 0xb7, 0xed, 0x74, 0x76, 0x43, 0x41, + 0xe0, 0xa3, 0xd5, 0x07, 0xaa, 0x7f, 0xce, 0x32, 0x04, 0x00, 0xab, 0x4a, + 0x31, 0x00, 0x60, 0xe5, 0x0e, 0xac, 0x8e, 0x6d, 0x28, 0x02, 0xdc, 0x2d, + 0xcb, 0x01, 0x8c, 0xd9, 0x5e, 0xd5, 0xaf, 0x54, 0x0f, 0x9e, 0xbc, 0x71, + 0x99, 0xc6, 0xe5, 0x05, 0x76, 0xaf, 0xee, 0x67, 0xa8, 0x00, 0x56, 0xe4, + 0xb1, 0x22, 0x00, 0x98, 0x69, 0x8f, 0xac, 0x9e, 0x51, 0x7d, 0x57, 0x14, + 0x00, 0xcb, 0xb2, 0xa9, 0x3a, 0xa1, 0x7a, 0xd9, 0x94, 0xee, 0xdf, 0xcd, + 0x1b, 0x96, 0x7e, 0xbc, 0xbd, 0xa1, 0x1a, 0x95, 0x1b, 0x4f, 0xb6, 0x47, + 0x4c, 0xfe, 0xfc, 0xbd, 0x86, 0x72, 0xc0, 0xfb, 0x1b, 0x8a, 0x02, 0x1f, + 0xac, 0xbe, 0x29, 0x26, 0x80, 0xe5, 0x53, 0x0c, 0x00, 0x58, 0xba, 0x23, + 0x1a, 0x0a, 0x00, 0x3b, 0x8b, 0x00, 0xb7, 0xce, 0xb4, 0xed, 0xf3, 0xe6, + 0x98, 0xea, 0x43, 0xd5, 0x29, 0xd5, 0xdf, 0x4f, 0xd9, 0xbe, 0xdd, 0xb3, + 0xda, 0xcf, 0x10, 0x01, 0x2c, 0xdb, 0xe6, 0xea, 0x54, 0x31, 0x00, 0xcc, + 0xb4, 0xfd, 0x1b, 0x66, 0xd1, 0xfa, 0x0b, 0x51, 0x00, 0x2c, 0xdb, 0xf6, + 0xa6, 0xb3, 0x18, 0x70, 0x42, 0x43, 0x29, 0xe0, 0x00, 0x43, 0x34, 0x7a, + 0x7b, 0x34, 0x9c, 0x7f, 0x3d, 0x6e, 0xf2, 0xe7, 0x1d, 0xd5, 0x27, 0xaa, + 0xf7, 0x35, 0x14, 0x05, 0xde, 0x5f, 0x9d, 0x2f, 0x26, 0x80, 0xc5, 0x53, + 0x0c, 0x00, 0xb8, 0x76, 0x87, 0x37, 0xdc, 0x81, 0x7d, 0xef, 0xc9, 0x0b, + 0x51, 0xcb, 0x02, 0x50, 0xc3, 0x4c, 0x11, 0x6f, 0x6b, 0xb8, 0x78, 0xf4, + 0x97, 0x53, 0xb4, 0x5f, 0x96, 0x11, 0x00, 0x58, 0x99, 0x7b, 0x56, 0x47, + 0x8a, 0x01, 0x60, 0xe6, 0x9d, 0x9e, 0x62, 0x00, 0xc0, 0x4a, 0xdc, 0xb7, + 0xda, 0xbb, 0xfa, 0xce, 0x14, 0xed, 0xd3, 0x29, 0xd5, 0x9f, 0xe5, 0xba, + 0xc6, 0xbc, 0xda, 0xdc, 0xb0, 0xe4, 0xdb, 0x6d, 0xab, 0xa7, 0x4f, 0xbe, + 0x76, 0x76, 0x43, 0x49, 0xe0, 0x3d, 0x0d, 0x37, 0xef, 0x7c, 0x49, 0x4c, + 0x00, 0x57, 0xcf, 0x2f, 0x50, 0x80, 0x1f, 0xb4, 0x57, 0x75, 0xf7, 0x86, + 0x32, 0xc0, 0xf1, 0xd5, 0x6d, 0x44, 0xc2, 0xd5, 0xd8, 0x5a, 0xbd, 0xae, + 0x7a, 0x48, 0xf5, 0xf6, 0x29, 0xd9, 0xa7, 0x13, 0x0c, 0x0b, 0xc0, 0x8a, + 0x9c, 0x2e, 0x02, 0x80, 0x51, 0x38, 0xa1, 0xba, 0x4e, 0xf5, 0x35, 0x51, + 0x00, 0x2c, 0xcb, 0x5e, 0xd5, 0xbd, 0xaa, 0xbf, 0x99, 0x92, 0xfd, 0xd9, + 0x9e, 0x52, 0x00, 0x3f, 0x68, 0xe7, 0xf2, 0x03, 0x3b, 0x97, 0x83, 0xfb, + 0xd7, 0x86, 0x82, 0xc0, 0xdf, 0x37, 0x14, 0x06, 0x2c, 0x2b, 0x04, 0xb0, + 0x0b, 0x53, 0x5f, 0x03, 0x0c, 0x0e, 0xad, 0x9e, 0x54, 0xbd, 0xa5, 0xe1, + 0xc4, 0xd1, 0xdf, 0x55, 0xcf, 0x4c, 0x29, 0x80, 0x6b, 0xb7, 0xb5, 0x61, + 0x0a, 0xbb, 0x9b, 0x4c, 0xc1, 0xbe, 0xdc, 0x6a, 0x4a, 0xf6, 0x03, 0x60, + 0x56, 0xed, 0x59, 0x3d, 0x4c, 0x0c, 0x00, 0xa3, 0xb0, 0x7b, 0x75, 0xb2, + 0x18, 0x00, 0x56, 0x64, 0x5a, 0x66, 0x25, 0xbc, 0x79, 0x4a, 0x01, 0x2c, + 0xce, 0x6d, 0xab, 0x9f, 0x6b, 0x28, 0x06, 0xfc, 0x77, 0xf5, 0xe6, 0xea, + 0x09, 0xd5, 0x21, 0xa2, 0x01, 0x50, 0x0c, 0x00, 0xe6, 0xdb, 0x0d, 0xab, + 0x9f, 0xaf, 0x3e, 0xd8, 0x30, 0xcd, 0xd4, 0xcb, 0xab, 0x07, 0x37, 0x34, + 0xa2, 0x61, 0x29, 0x0e, 0xac, 0x5e, 0x51, 0x6d, 0xda, 0xe0, 0xfd, 0xd8, + 0x6e, 0x28, 0x00, 0x56, 0xe4, 0xc1, 0x93, 0x9f, 0xe9, 0x00, 0x8c, 0x83, + 0x59, 0x60, 0x00, 0x56, 0x66, 0x7b, 0x1b, 0x7f, 0xae, 0x63, 0x73, 0xf5, + 0xca, 0xea, 0x00, 0xc3, 0xc1, 0x12, 0xed, 0x5d, 0x3d, 0x74, 0xf2, 0xfc, + 0xf9, 0x52, 0xf5, 0xfe, 0xea, 0x67, 0xb3, 0x74, 0x1c, 0x30, 0xc7, 0x14, + 0x03, 0x80, 0x79, 0x73, 0x58, 0xc3, 0x1a, 0x54, 0x1f, 0xa8, 0xce, 0xa9, + 0x7e, 0xb3, 0xba, 0xab, 0x9f, 0x87, 0xac, 0x82, 0xbb, 0x57, 0xa7, 0x6d, + 0xf0, 0x3e, 0x9c, 0x68, 0x18, 0x00, 0x56, 0xc4, 0x05, 0x24, 0x80, 0x71, + 0x39, 0xb6, 0x61, 0x7a, 0x61, 0x00, 0x96, 0xe7, 0xc8, 0x86, 0x3b, 0xb0, + 0x37, 0xd2, 0xa3, 0x1b, 0xce, 0xdd, 0xc1, 0x4a, 0x6c, 0xa9, 0x8e, 0xab, + 0x7e, 0xab, 0xfa, 0x7c, 0x43, 0x49, 0xe0, 0x69, 0x0d, 0xb3, 0xc8, 0x02, + 0xcc, 0x0d, 0x17, 0xc2, 0x80, 0x79, 0xf9, 0x59, 0x77, 0xdf, 0xea, 0x0d, + 0xd5, 0x17, 0xaa, 0xdf, 0x6f, 0x38, 0x41, 0xb4, 0x49, 0x34, 0xac, 0xb2, + 0x5f, 0xdc, 0xc0, 0xdf, 0xad, 0xdb, 0xbc, 0x51, 0x06, 0x58, 0x91, 0x83, + 0xaa, 0x07, 0x88, 0x01, 0x60, 0x54, 0x36, 0xb5, 0xf1, 0xe5, 0x5d, 0x80, + 0x59, 0xb7, 0x91, 0xb3, 0x13, 0x6e, 0xaa, 0xce, 0x30, 0x04, 0xac, 0xc1, + 0xf3, 0xea, 0xb8, 0xea, 0xc5, 0x0d, 0x33, 0x09, 0xbc, 0xb3, 0x61, 0xf9, + 0x21, 0x4b, 0x55, 0x00, 0xa3, 0xa7, 0x18, 0x00, 0x8c, 0xd9, 0x81, 0xd5, + 0x99, 0xd5, 0xd9, 0x5e, 0xe0, 0xb1, 0x4e, 0x6e, 0xd9, 0xc6, 0x5d, 0x9c, + 0x7f, 0xa0, 0xe7, 0x37, 0xc0, 0x8a, 0x3c, 0xaa, 0x61, 0x3d, 0x6a, 0x00, + 0xc6, 0xe5, 0xb1, 0x22, 0x00, 0x58, 0x91, 0x8d, 0x9c, 0x9d, 0xf0, 0x1e, + 0xd5, 0xad, 0x0c, 0x01, 0x6b, 0x68, 0xd7, 0x1b, 0xca, 0xfe, 0xa3, 0x7a, + 0x76, 0x96, 0xad, 0x00, 0x46, 0xfe, 0x43, 0x0f, 0x60, 0x6c, 0x0e, 0xa9, + 0x7e, 0xbd, 0x61, 0x5a, 0xa8, 0x5f, 0xaf, 0x6e, 0x28, 0x12, 0xd6, 0xd1, + 0x43, 0xe7, 0xf0, 0x8d, 0x3a, 0xc0, 0x18, 0x58, 0x46, 0x00, 0x60, 0x9c, + 0x6e, 0x5a, 0xdd, 0x41, 0x0c, 0x00, 0xcb, 0x76, 0xa7, 0x86, 0xa5, 0x39, + 0x37, 0xc2, 0x43, 0xc4, 0xcf, 0x3a, 0x3a, 0xaa, 0xfa, 0x7f, 0x1b, 0xce, + 0x29, 0x3f, 0xaf, 0x3a, 0x58, 0x24, 0xc0, 0xd8, 0x28, 0x06, 0x00, 0x63, + 0xb2, 0xa9, 0xe1, 0x6e, 0x90, 0x4f, 0x37, 0xcc, 0x14, 0xb0, 0xbf, 0x48, + 0xd8, 0x00, 0xc7, 0x6e, 0xc0, 0x63, 0x6e, 0xa9, 0xee, 0x2f, 0x7a, 0x80, + 0x65, 0x3b, 0xaa, 0xba, 0x8b, 0x18, 0x00, 0x46, 0x4b, 0xf9, 0x0b, 0x60, + 0xf9, 0x36, 0xb7, 0x71, 0x4b, 0x6e, 0x1d, 0x27, 0x7e, 0x36, 0xc0, 0x01, + 0x0d, 0xcb, 0x85, 0x7e, 0xb6, 0xfa, 0xe9, 0x5c, 0x47, 0x03, 0x46, 0xf6, + 0x4b, 0x1d, 0x60, 0x0c, 0xae, 0x53, 0xbd, 0xaf, 0x7a, 0x75, 0xc3, 0x1a, + 0xc1, 0xb0, 0x51, 0x6e, 0xdd, 0x50, 0x52, 0x59, 0x4f, 0xc7, 0x4e, 0xbe, + 0x07, 0x00, 0x58, 0x9e, 0xc7, 0x6e, 0xc0, 0xcf, 0x6e, 0x00, 0xd6, 0xcf, + 0x69, 0x59, 0x76, 0x0b, 0x60, 0x25, 0x36, 0x62, 0x96, 0xc2, 0xcd, 0x59, + 0x46, 0x80, 0x8d, 0x75, 0x40, 0xf5, 0xbb, 0xd5, 0x7b, 0xab, 0x6d, 0xe2, + 0x00, 0xc6, 0x40, 0x31, 0x00, 0x18, 0xcb, 0x8b, 0xb4, 0xf7, 0xa4, 0x45, + 0xcc, 0x74, 0xd8, 0x77, 0xb2, 0x8d, 0xfd, 0x0d, 0x3a, 0xc0, 0x98, 0x9c, + 0x26, 0x02, 0x80, 0x51, 0x3b, 0xb4, 0x61, 0xfd, 0x60, 0x00, 0x96, 0xe7, + 0xfe, 0xd5, 0xee, 0xeb, 0xfc, 0x98, 0xfb, 0x55, 0x7b, 0x8b, 0x9e, 0x29, + 0x70, 0xf7, 0x86, 0x73, 0xcf, 0x66, 0xa7, 0x05, 0x66, 0x9e, 0x62, 0x00, + 0x30, 0x06, 0x8f, 0xab, 0x6e, 0x2b, 0x06, 0xa6, 0xc8, 0x7e, 0xeb, 0xfc, + 0x78, 0xdb, 0x45, 0x0e, 0xb0, 0x6c, 0x3f, 0x5a, 0xdd, 0x5c, 0x0c, 0x00, + 0xa3, 0x67, 0x39, 0x01, 0x80, 0xe5, 0xdb, 0xbf, 0xba, 0xdb, 0x3a, 0x3f, + 0xe6, 0x3e, 0x62, 0x67, 0x8a, 0xdc, 0xae, 0x61, 0xa6, 0x39, 0x80, 0x99, + 0xa6, 0x18, 0x00, 0x8c, 0xc1, 0xe7, 0x45, 0xc0, 0x94, 0xf9, 0xde, 0x3a, + 0x3e, 0xd6, 0x8d, 0x32, 0xb5, 0x1e, 0xc0, 0x4a, 0xb8, 0x50, 0x04, 0x30, + 0x1f, 0x4e, 0x6a, 0xfd, 0x67, 0xf6, 0x02, 0x18, 0x93, 0xf5, 0x9e, 0xad, + 0xf0, 0x62, 0x91, 0x33, 0x65, 0x9c, 0x83, 0x06, 0x66, 0x9e, 0x62, 0x00, + 0x30, 0x06, 0x6f, 0xa9, 0x7e, 0x53, 0x0c, 0x4c, 0x89, 0x1d, 0xd5, 0x05, + 0xeb, 0xf8, 0x78, 0x0f, 0x12, 0x39, 0xc0, 0xb2, 0xed, 0x56, 0x9d, 0x22, + 0x06, 0x80, 0xb9, 0xb0, 0x4f, 0xf5, 0x50, 0x31, 0x00, 0x2c, 0xdb, 0x83, + 0xd7, 0xf9, 0xf1, 0x2e, 0xa8, 0x16, 0xc4, 0xce, 0x94, 0x78, 0x7e, 0xf5, + 0x56, 0x31, 0x00, 0xb3, 0x4e, 0x31, 0x00, 0x18, 0x8b, 0x33, 0xaa, 0xa7, + 0x56, 0xff, 0x23, 0x0a, 0x36, 0xd8, 0xd9, 0xd5, 0x65, 0xeb, 0xf8, 0x78, + 0x27, 0x8a, 0x1c, 0x60, 0xd9, 0xee, 0x57, 0x1d, 0x26, 0x06, 0x80, 0xb9, + 0x61, 0x96, 0x18, 0x80, 0xe5, 0xfb, 0xa1, 0xd6, 0x77, 0x09, 0xae, 0x4b, + 0xab, 0xcf, 0x89, 0x9d, 0x0d, 0xf6, 0xcd, 0xea, 0x29, 0xd5, 0x99, 0xa2, + 0x00, 0xc6, 0x40, 0x31, 0x00, 0x18, 0x93, 0x97, 0x56, 0xb7, 0xac, 0xfe, + 0x3c, 0x8d, 0x62, 0x36, 0xce, 0x47, 0xd7, 0xf1, 0xb1, 0xf6, 0xad, 0xee, + 0x21, 0x72, 0x80, 0x65, 0x73, 0x81, 0x08, 0x60, 0xbe, 0x1c, 0x5f, 0x5d, + 0x57, 0x0c, 0x00, 0xcb, 0xb6, 0x7d, 0x9d, 0x1f, 0xef, 0xa3, 0x22, 0x67, + 0x83, 0xec, 0xa8, 0x5e, 0xdb, 0x70, 0xae, 0xf9, 0x65, 0xe2, 0x00, 0xc6, + 0x42, 0x31, 0x60, 0xbc, 0x6e, 0x5c, 0xfd, 0x6a, 0xf5, 0x40, 0x51, 0x30, + 0x67, 0xce, 0xaf, 0x1e, 0x55, 0xdd, 0xa6, 0xfa, 0xd3, 0x86, 0x76, 0x31, + 0xac, 0xa7, 0xbf, 0x5d, 0xc7, 0xc7, 0xba, 0x5f, 0xb5, 0x87, 0xc8, 0x01, + 0x96, 0x65, 0x9f, 0xd6, 0x7f, 0x3a, 0x54, 0x00, 0x36, 0xd6, 0x96, 0xc9, + 0xfb, 0x45, 0x00, 0x96, 0x67, 0xbd, 0x67, 0x2d, 0xfc, 0x3b, 0x91, 0xb3, + 0xce, 0x76, 0x54, 0x6f, 0x6c, 0x38, 0xb7, 0x7c, 0x7a, 0xf5, 0x25, 0x91, + 0x00, 0x63, 0xa2, 0x18, 0x30, 0x2e, 0x7b, 0x56, 0x27, 0x57, 0xef, 0xac, + 0x3e, 0x5b, 0xfd, 0xaf, 0x86, 0x0b, 0x54, 0x6f, 0xa8, 0xae, 0x23, 0x1e, + 0xe6, 0xcc, 0x27, 0xab, 0xc7, 0x36, 0x4c, 0x71, 0xf6, 0x9b, 0xd5, 0x7f, + 0x89, 0x84, 0x75, 0xf0, 0xdd, 0xea, 0xaf, 0x47, 0xfc, 0x86, 0x1c, 0x60, + 0x4c, 0x1e, 0xde, 0x30, 0xf3, 0x0a, 0x00, 0xf3, 0xc5, 0x6c, 0x31, 0x00, + 0xcb, 0x77, 0xb7, 0xea, 0xc0, 0x75, 0x7c, 0xbc, 0xbf, 0xaa, 0xbe, 0x27, + 0x76, 0xd6, 0xc1, 0x57, 0xaa, 0x17, 0x54, 0x37, 0xa9, 0x1e, 0x59, 0x7d, + 0x4a, 0x24, 0xc0, 0x18, 0x29, 0x06, 0x8c, 0xc3, 0x31, 0xd5, 0x8b, 0xaa, + 0x2f, 0x36, 0x94, 0x00, 0xee, 0x5b, 0x6d, 0xda, 0xe5, 0xbf, 0x9f, 0x5c, + 0x7d, 0xa2, 0x3a, 0x49, 0x54, 0xcc, 0xa1, 0xb3, 0xab, 0x33, 0xaa, 0x23, + 0x27, 0x2f, 0xea, 0xde, 0xd1, 0xfa, 0xae, 0xff, 0xce, 0x7c, 0x79, 0x45, + 0x75, 0xc1, 0x3a, 0xfe, 0x0e, 0x3f, 0x41, 0xe4, 0x00, 0xcb, 0xe6, 0xc2, + 0x10, 0xc0, 0x7c, 0xba, 0x43, 0x75, 0xb4, 0x18, 0x00, 0x96, 0x65, 0xb7, + 0xea, 0xfe, 0xeb, 0xf8, 0x78, 0x5f, 0xab, 0x5e, 0x25, 0x76, 0xd6, 0xc8, + 0xa5, 0xd5, 0xdb, 0xab, 0x47, 0x34, 0x9c, 0x3b, 0x7e, 0x76, 0x75, 0x8e, + 0x58, 0x80, 0x31, 0x53, 0x0c, 0x98, 0x5d, 0xdb, 0xaa, 0x27, 0x57, 0x1f, + 0xaf, 0x3e, 0x52, 0x3d, 0xa3, 0x3a, 0xe8, 0x1a, 0xfe, 0xfe, 0x75, 0xab, + 0x37, 0x35, 0x14, 0x07, 0x0e, 0x16, 0x1f, 0x73, 0xe8, 0xe2, 0x86, 0x69, + 0xa0, 0x1e, 0x50, 0x1d, 0x5e, 0x3d, 0xbd, 0xfa, 0x40, 0xb5, 0x20, 0x1a, + 0x56, 0xc9, 0x85, 0xd5, 0x6f, 0xac, 0xe3, 0xe3, 0xdd, 0x21, 0xeb, 0xa3, + 0x02, 0x2c, 0xd7, 0xf5, 0xaa, 0xfb, 0x88, 0x01, 0x60, 0x6e, 0x59, 0x4e, + 0x00, 0x60, 0xf9, 0xd6, 0x7b, 0xf6, 0xc2, 0xe7, 0x57, 0xdf, 0x16, 0x3b, + 0xab, 0x64, 0x47, 0xf5, 0xfe, 0xea, 0x69, 0x0d, 0xe7, 0x88, 0x4f, 0xa8, + 0xfe, 0xb2, 0xba, 0x44, 0x34, 0xc0, 0x3c, 0x50, 0x0c, 0x98, 0x2d, 0x5b, + 0x1a, 0x66, 0x03, 0x78, 0x43, 0xc3, 0xd4, 0x36, 0x7f, 0x54, 0xfd, 0xf0, + 0x12, 0xff, 0x8d, 0x9d, 0xb3, 0x07, 0x3c, 0x5c, 0x9c, 0xcc, 0xb1, 0xff, + 0xaa, 0x5e, 0xd2, 0x30, 0xfd, 0xd9, 0x51, 0x0d, 0xc5, 0x9a, 0x77, 0x7b, + 0x01, 0xc8, 0x0a, 0x9d, 0x59, 0x7d, 0x61, 0xc4, 0x6f, 0xc4, 0x01, 0xc6, + 0xe4, 0xd4, 0xc9, 0x6b, 0x6b, 0x00, 0xe6, 0xd3, 0x63, 0xba, 0xe2, 0x4c, + 0x8b, 0x00, 0x2c, 0xde, 0x89, 0xeb, 0xfc, 0x5a, 0xfa, 0xdc, 0x86, 0x25, + 0x73, 0x61, 0xb9, 0x2e, 0x6e, 0x58, 0x7e, 0xf9, 0xa7, 0x1a, 0xce, 0x05, + 0xdf, 0xbd, 0xfa, 0x83, 0xea, 0xab, 0xa2, 0x01, 0xe6, 0x8d, 0x62, 0xc0, + 0x6c, 0xb8, 0x79, 0xf5, 0xdc, 0x86, 0x29, 0xd1, 0xdf, 0xd9, 0x70, 0x71, + 0x7f, 0xeb, 0x0a, 0xfe, 0xbd, 0xc3, 0xaa, 0xbf, 0x68, 0x28, 0x18, 0x1c, + 0x22, 0x5e, 0xe6, 0xdc, 0xb9, 0xd5, 0xef, 0x37, 0x94, 0x6e, 0x0e, 0x6d, + 0xb8, 0x50, 0xf0, 0xfa, 0xea, 0xeb, 0xa2, 0x61, 0x09, 0xfe, 0xb2, 0xa1, + 0x6c, 0xb2, 0x9e, 0xb6, 0x8b, 0x1d, 0x60, 0xd9, 0x2c, 0x23, 0x00, 0x30, + 0xdf, 0x6e, 0x58, 0x1d, 0x2b, 0x06, 0x80, 0x65, 0x39, 0xa8, 0xba, 0xf3, + 0x3a, 0x3f, 0xe6, 0x8b, 0xaa, 0xb7, 0x88, 0x9e, 0x25, 0xf8, 0x5a, 0xf5, + 0xda, 0x86, 0x59, 0x82, 0x0e, 0xad, 0xee, 0x57, 0xbd, 0xb8, 0x3a, 0x4f, + 0x34, 0xc0, 0x3c, 0xdb, 0x4d, 0x04, 0x53, 0x6b, 0xff, 0xea, 0xa1, 0x0d, + 0x2d, 0xf6, 0xfb, 0xb4, 0x36, 0x4d, 0xf6, 0x93, 0xab, 0x7b, 0x34, 0x4c, + 0xa9, 0xfe, 0x46, 0x91, 0x43, 0x17, 0x34, 0x94, 0x02, 0x5e, 0xdf, 0xd0, + 0x7c, 0xbe, 0xc3, 0xe4, 0x45, 0xe3, 0xfd, 0xab, 0x3b, 0xf9, 0x99, 0xc9, + 0xd5, 0xf8, 0xa7, 0xea, 0x71, 0xad, 0xef, 0xb2, 0x14, 0x87, 0x57, 0x3f, + 0x22, 0x7a, 0x80, 0x65, 0xb9, 0x65, 0x75, 0x7b, 0x31, 0x00, 0xcc, 0xbd, + 0xd3, 0x1b, 0x96, 0x97, 0x03, 0x60, 0xe9, 0x4e, 0xac, 0x3e, 0xb8, 0x8e, + 0x8f, 0xb7, 0xa3, 0xe1, 0x3c, 0xf9, 0x7b, 0x1a, 0xce, 0xd7, 0xc1, 0x95, + 0x5d, 0xda, 0x70, 0x8e, 0xee, 0x1d, 0xd5, 0xdf, 0x37, 0x2c, 0xbf, 0xbc, + 0x43, 0x2c, 0x00, 0x57, 0x64, 0xc6, 0x80, 0xe9, 0x73, 0x4c, 0xc3, 0x12, + 0x01, 0x5f, 0xac, 0x5e, 0xdd, 0x70, 0x17, 0xf3, 0x5a, 0x4e, 0x6f, 0x77, + 0x68, 0xc3, 0xcc, 0x01, 0x6f, 0x6d, 0xb8, 0xd0, 0x04, 0x0c, 0x2e, 0xab, + 0x3e, 0x54, 0xfd, 0x5a, 0x75, 0x5c, 0x75, 0x70, 0x43, 0x59, 0xe7, 0x85, + 0xd5, 0x87, 0x27, 0x2f, 0x36, 0xe1, 0x03, 0x0d, 0xc5, 0x91, 0xf5, 0x5e, + 0xeb, 0x6e, 0x7b, 0xa6, 0x3e, 0x05, 0x58, 0xae, 0x47, 0x8b, 0x00, 0x80, + 0xea, 0x94, 0x6a, 0x0f, 0x31, 0x00, 0x2c, 0xcb, 0x46, 0xcc, 0x62, 0x78, + 0x61, 0x75, 0x7c, 0xc3, 0xc5, 0x5f, 0xb8, 0xb4, 0xe1, 0xdc, 0xed, 0x6f, + 0x57, 0x0f, 0x69, 0x38, 0x77, 0x7b, 0xb7, 0xea, 0x79, 0x0d, 0xe7, 0x6e, + 0x95, 0x02, 0x00, 0xae, 0x82, 0xbb, 0x5f, 0xa7, 0xc3, 0xe1, 0x0d, 0x8d, + 0xc7, 0x1f, 0xab, 0x6e, 0xb2, 0x81, 0x2f, 0xe6, 0x3e, 0x51, 0x3d, 0xab, + 0x7a, 0x99, 0x21, 0x81, 0x1f, 0xf0, 0xcd, 0x86, 0x29, 0xcb, 0x76, 0x4e, + 0x5b, 0xb6, 0x77, 0xc3, 0xdd, 0x86, 0xc7, 0x36, 0x14, 0x07, 0xee, 0x56, + 0x1d, 0x20, 0xa6, 0xb9, 0xf2, 0xba, 0xea, 0x49, 0xd5, 0x77, 0x37, 0xe0, + 0xb1, 0x4f, 0x14, 0x3f, 0xc0, 0xb2, 0x6c, 0x6a, 0x58, 0x36, 0x08, 0x00, + 0xb6, 0x55, 0x0f, 0xac, 0xfe, 0x4a, 0x14, 0x00, 0x4b, 0x76, 0x9b, 0x86, + 0xb5, 0xda, 0x3f, 0xb7, 0xce, 0x8f, 0x7b, 0x41, 0x75, 0xcf, 0xea, 0xa5, + 0xd5, 0xe3, 0x0d, 0xc3, 0x5c, 0xf9, 0x4e, 0xf5, 0x2f, 0x0d, 0x37, 0xe9, + 0x7c, 0xb0, 0x7a, 0x5f, 0xc3, 0xf9, 0x5a, 0x00, 0x96, 0x40, 0x31, 0x60, + 0xe3, 0xec, 0xde, 0x70, 0x97, 0xe9, 0x63, 0xaa, 0x93, 0xa6, 0x64, 0x2c, + 0xb6, 0x35, 0xcc, 0x56, 0xf0, 0xe0, 0xea, 0x29, 0x0d, 0xb3, 0x16, 0x00, + 0x57, 0xff, 0x62, 0xf4, 0x03, 0x93, 0xed, 0x37, 0x26, 0xdf, 0xc3, 0xc7, + 0x74, 0x79, 0x49, 0xe0, 0xd8, 0x86, 0xa6, 0x2a, 0xe3, 0xf3, 0xcd, 0xea, + 0x99, 0xd5, 0x2b, 0x37, 0xe8, 0xf1, 0xf7, 0x6a, 0x58, 0x62, 0x06, 0x80, + 0xa5, 0xbb, 0x5b, 0x75, 0x23, 0x31, 0x00, 0x30, 0x71, 0x7a, 0x8a, 0x01, + 0x00, 0xcb, 0x75, 0x62, 0xf5, 0x92, 0x0d, 0x78, 0xdc, 0xef, 0x55, 0x4f, + 0x68, 0xb8, 0x38, 0xfc, 0xdb, 0x0d, 0x4b, 0xf2, 0x32, 0x3e, 0x5f, 0xed, + 0xf2, 0x02, 0xc0, 0x07, 0xab, 0x8f, 0x65, 0x06, 0x57, 0x80, 0x15, 0x53, + 0x0c, 0xd8, 0x38, 0xaf, 0xab, 0x1e, 0x36, 0xc5, 0x2f, 0xea, 0x3e, 0x51, + 0x9d, 0x91, 0xd9, 0x03, 0x60, 0xb1, 0x76, 0x4e, 0x5f, 0xb5, 0x73, 0x0a, + 0xab, 0x4d, 0x0d, 0x6b, 0x18, 0xdf, 0xa1, 0x61, 0x66, 0x81, 0xdb, 0x57, + 0xb7, 0xab, 0xf6, 0x13, 0xd5, 0xcc, 0x5a, 0xa8, 0xde, 0x58, 0xfd, 0x5c, + 0x75, 0xde, 0x06, 0xee, 0xc7, 0xbd, 0xab, 0x7d, 0x0c, 0x07, 0xc0, 0xb2, + 0x9c, 0x2e, 0x02, 0x00, 0x76, 0xb1, 0xbd, 0x3a, 0xb0, 0xe1, 0x0e, 0x54, + 0x00, 0x96, 0xfe, 0x33, 0xf4, 0x25, 0x1b, 0xf8, 0xf8, 0x2f, 0xaf, 0xde, + 0xd9, 0x70, 0x1e, 0xee, 0xe1, 0x86, 0x63, 0xa6, 0x5d, 0xd8, 0x30, 0x1b, + 0xc0, 0xc7, 0x26, 0x1f, 0xff, 0xb9, 0xfa, 0x74, 0xc3, 0xb9, 0x38, 0x00, + 0x56, 0x91, 0x62, 0xc0, 0xc6, 0x38, 0xbd, 0xe9, 0x2d, 0x05, 0xec, 0x74, + 0x60, 0xc3, 0xec, 0x01, 0x0f, 0x69, 0x98, 0x3d, 0xe0, 0x0b, 0x86, 0x0d, + 0x96, 0x64, 0xa1, 0xfa, 0xd4, 0x64, 0xfb, 0x93, 0xc9, 0xd7, 0x36, 0x57, + 0x37, 0xed, 0xf2, 0xa2, 0xc0, 0xce, 0xed, 0x40, 0x71, 0x4d, 0xfd, 0x58, + 0xbe, 0xa3, 0x61, 0x8d, 0xb2, 0x0f, 0x4e, 0xc1, 0xfe, 0x58, 0x46, 0x00, + 0x60, 0x79, 0x76, 0xcf, 0x09, 0x43, 0x00, 0xae, 0x68, 0xcf, 0xea, 0x11, + 0x0d, 0x17, 0x97, 0x00, 0x58, 0x9a, 0x7b, 0x35, 0xdc, 0x00, 0x73, 0xe1, + 0x06, 0xee, 0xc3, 0xe7, 0x27, 0x3f, 0xc7, 0xef, 0x56, 0xfd, 0x52, 0x75, + 0x7c, 0xc3, 0xcd, 0x3a, 0x4c, 0xaf, 0x6f, 0x34, 0x14, 0x00, 0x76, 0xdd, + 0x3e, 0x5b, 0xed, 0x10, 0x0d, 0xc0, 0xda, 0x53, 0x0c, 0x58, 0x7f, 0x87, + 0x54, 0xbf, 0x33, 0x43, 0xfb, 0x7b, 0x42, 0xc3, 0xec, 0x01, 0xbf, 0x90, + 0xd9, 0x03, 0x60, 0xa5, 0x76, 0x54, 0x9f, 0x99, 0x6c, 0xaf, 0xdb, 0xe5, + 0xeb, 0x37, 0xee, 0x8a, 0x45, 0x81, 0x1f, 0xa9, 0x0e, 0x15, 0xd7, 0x86, + 0xbb, 0xa8, 0x7a, 0xcd, 0xe4, 0x67, 0xf6, 0x27, 0xa7, 0xec, 0xe7, 0x32, + 0x00, 0x4b, 0xb7, 0xbd, 0xba, 0x8e, 0x18, 0x00, 0xb8, 0x92, 0xd3, 0x53, + 0x0c, 0x00, 0x58, 0x8e, 0x3d, 0x1a, 0x96, 0x3a, 0x9c, 0x86, 0x25, 0x59, + 0xde, 0xdf, 0xb0, 0x6c, 0xef, 0x6d, 0xaa, 0x9f, 0xa9, 0x4e, 0x9b, 0xec, + 0x1f, 0x1b, 0xeb, 0xbf, 0xfa, 0xc1, 0x12, 0xc0, 0x39, 0x62, 0x01, 0xd8, + 0x38, 0x8a, 0x01, 0xeb, 0xef, 0x0f, 0x1b, 0xca, 0x01, 0xb3, 0xe4, 0x80, + 0x86, 0xd9, 0x03, 0x4e, 0xaa, 0x9e, 0xdc, 0xc6, 0x4e, 0xa1, 0x0d, 0x63, + 0x74, 0xf6, 0x64, 0xfb, 0x8b, 0x5d, 0xbe, 0x76, 0x70, 0x75, 0x8b, 0x86, + 0xe5, 0x08, 0x6e, 0x3e, 0xf9, 0x78, 0x8b, 0xea, 0xa8, 0x86, 0x99, 0x07, + 0x58, 0x1b, 0x0b, 0xd5, 0x47, 0x27, 0x63, 0xf1, 0xc7, 0xd5, 0x57, 0xa6, + 0x6c, 0xff, 0x7e, 0xb8, 0xba, 0xa1, 0x61, 0x02, 0x58, 0x16, 0xcb, 0x08, + 0x00, 0x70, 0x55, 0xee, 0x31, 0x79, 0x9f, 0xf5, 0x39, 0x51, 0x00, 0x2c, + 0xd9, 0x89, 0x4d, 0x47, 0x31, 0x60, 0xa7, 0x7f, 0xab, 0x9e, 0x58, 0x9d, + 0x59, 0x3d, 0xa1, 0x61, 0xc6, 0xb0, 0x63, 0x0c, 0xd3, 0x9a, 0xba, 0x6c, + 0xf2, 0x3b, 0xf4, 0xd3, 0xd5, 0x59, 0x0d, 0x37, 0x44, 0xed, 0xfc, 0xfc, + 0x6b, 0xe2, 0x01, 0x98, 0x2e, 0x8a, 0x01, 0xeb, 0xeb, 0x94, 0x66, 0x7b, + 0xfa, 0xd2, 0x07, 0x4c, 0x5e, 0x5c, 0x3d, 0xb3, 0x7a, 0x55, 0xd6, 0xf8, + 0x81, 0xb5, 0xf4, 0xdf, 0xd5, 0x07, 0x26, 0xdb, 0xae, 0xb6, 0x56, 0x47, + 0x56, 0x47, 0x57, 0xb7, 0x6a, 0x98, 0x6d, 0xe0, 0xe8, 0x86, 0x0b, 0xc6, + 0xfb, 0x8a, 0x6d, 0x59, 0x76, 0x34, 0xac, 0x5f, 0xf6, 0xb6, 0x86, 0x19, + 0x02, 0xfe, 0x63, 0x8a, 0xf7, 0x75, 0xbb, 0xe1, 0x02, 0x58, 0x96, 0x6d, + 0x59, 0x8a, 0x05, 0x80, 0xab, 0xb6, 0xa9, 0x7a, 0x54, 0xf5, 0x02, 0x51, + 0x00, 0x2c, 0xd9, 0x89, 0x93, 0x9f, 0xa3, 0xd3, 0x76, 0x9e, 0xf8, 0xcb, + 0xd5, 0xf3, 0x27, 0xdb, 0x0d, 0x1a, 0x6e, 0x78, 0xdb, 0x5e, 0xdd, 0x33, + 0xd7, 0x44, 0x96, 0xeb, 0xe2, 0x86, 0x29, 0xff, 0x3f, 0xd9, 0x70, 0x83, + 0xd3, 0xa7, 0x26, 0x9f, 0x7f, 0xba, 0xfa, 0xb6, 0x78, 0x80, 0xea, 0x88, + 0x86, 0x65, 0x1c, 0xcd, 0x0c, 0x32, 0xc5, 0xfc, 0x12, 0x5c, 0x3f, 0x87, + 0x56, 0xbf, 0x3f, 0x82, 0xe3, 0x38, 0xa0, 0x7a, 0x45, 0xc3, 0x1d, 0xcb, + 0xa6, 0xda, 0x83, 0xf5, 0x77, 0x49, 0x97, 0xcf, 0x30, 0xf0, 0xd6, 0x5d, + 0xbe, 0xbe, 0xa9, 0xe1, 0x4e, 0xf2, 0x9b, 0x35, 0x94, 0x05, 0x8e, 0xaa, + 0x6e, 0x34, 0xd9, 0x8e, 0x6a, 0xf6, 0x66, 0x2a, 0x59, 0x4b, 0xdf, 0xab, + 0x3e, 0xd2, 0xe5, 0xc5, 0x8b, 0x0f, 0x36, 0xac, 0x6f, 0x36, 0x2b, 0x6f, + 0xb8, 0x01, 0x58, 0xba, 0x93, 0x33, 0x95, 0x28, 0x00, 0x57, 0xef, 0x31, + 0x29, 0x06, 0x00, 0x2c, 0xc7, 0xf5, 0x1a, 0xee, 0xc8, 0xff, 0xc8, 0x14, + 0xef, 0xe3, 0xb9, 0xd5, 0x8b, 0x26, 0xdb, 0x41, 0xd5, 0xb1, 0xd5, 0x71, + 0x93, 0xed, 0x0e, 0x0d, 0x17, 0xb1, 0x18, 0x7c, 0xb5, 0xe1, 0x82, 0xde, + 0x39, 0x0d, 0xb3, 0x00, 0xec, 0xfc, 0xfc, 0x33, 0x93, 0x1c, 0xdd, 0x28, + 0x08, 0xec, 0x6a, 0xff, 0x86, 0xc2, 0xd5, 0x7d, 0x27, 0xdb, 0x2d, 0xab, + 0xff, 0x69, 0x58, 0xce, 0xe5, 0x6f, 0xc4, 0x33, 0x9d, 0x14, 0x03, 0xd6, + 0xcf, 0x4b, 0x1a, 0xd7, 0x85, 0xb9, 0x83, 0x0c, 0x29, 0x4c, 0x95, 0x85, + 0xc9, 0x0b, 0xf6, 0xcf, 0x5d, 0xcd, 0x7f, 0xdf, 0xb7, 0xa1, 0x20, 0x70, + 0x54, 0x43, 0x73, 0xef, 0x88, 0x86, 0xc6, 0xf4, 0xce, 0xcf, 0x8f, 0x6c, + 0x9c, 0x33, 0x0e, 0x7c, 0xa5, 0xa1, 0xc1, 0x7c, 0x56, 0x43, 0x8b, 0xf9, + 0xdf, 0xaa, 0x7f, 0xae, 0x2e, 0x9a, 0xc1, 0x63, 0x39, 0xa4, 0xfa, 0x51, + 0x4f, 0x75, 0x80, 0x65, 0xb1, 0x8c, 0x00, 0x00, 0xd7, 0xe4, 0x56, 0xd5, + 0xed, 0xaa, 0x8f, 0x8b, 0x02, 0x60, 0xc9, 0xb6, 0x37, 0xdd, 0xc5, 0x80, + 0x5d, 0x7d, 0xbd, 0xe1, 0x46, 0x9b, 0x9d, 0x37, 0xdb, 0xec, 0x59, 0xdd, + 0xb1, 0xba, 0x6d, 0xc3, 0x8c, 0x9c, 0xb7, 0x98, 0x7c, 0x3c, 0x74, 0x84, + 0xe3, 0xf4, 0xad, 0x86, 0x8b, 0xfb, 0x5f, 0xac, 0xce, 0xaf, 0x3e, 0x3f, + 0xf9, 0xf8, 0x85, 0xc9, 0xe7, 0xe7, 0xe4, 0xce, 0x7f, 0xe0, 0x9a, 0x6d, + 0x99, 0xbc, 0x66, 0xde, 0x59, 0x04, 0xb8, 0x7b, 0x3f, 0x58, 0xae, 0xda, + 0x7f, 0xf2, 0x33, 0xf6, 0x57, 0xab, 0xe7, 0x8a, 0x6c, 0xfa, 0x28, 0x06, + 0xac, 0x8f, 0x7b, 0x55, 0x8f, 0x18, 0xd9, 0x31, 0xed, 0x65, 0x58, 0x61, + 0xe6, 0x5e, 0xfc, 0x7f, 0x62, 0xb2, 0x5d, 0x9d, 0xfd, 0xab, 0xc3, 0xab, + 0x83, 0x1b, 0x2e, 0x42, 0x5f, 0x6f, 0xf2, 0xf1, 0xe0, 0xea, 0xb0, 0xc9, + 0x9b, 0xa2, 0x03, 0x77, 0xd9, 0x0e, 0xd8, 0xe0, 0x63, 0xda, 0xd1, 0x70, + 0xe1, 0xff, 0x0b, 0x93, 0x37, 0x35, 0xe7, 0x4d, 0x3e, 0x7e, 0x71, 0xf2, + 0x66, 0xe6, 0xac, 0xc9, 0x1b, 0xbe, 0xb1, 0x38, 0x61, 0xf2, 0xe2, 0x0b, + 0x80, 0xa5, 0xb9, 0x41, 0xc3, 0xdd, 0x40, 0x00, 0x70, 0x4d, 0x4e, 0x4f, + 0x31, 0x00, 0x60, 0x39, 0x4e, 0x6c, 0x76, 0x2f, 0xfe, 0x5c, 0x54, 0xbd, + 0x7f, 0xb2, 0xed, 0xea, 0x3a, 0x0d, 0x77, 0xbe, 0x1e, 0xd5, 0x15, 0x6f, + 0xb0, 0x39, 0xbc, 0xba, 0x7e, 0xc3, 0x79, 0xb2, 0xcd, 0x1b, 0xbc, 0xef, + 0x17, 0x5c, 0x69, 0xfb, 0x6a, 0xc3, 0x79, 0xb2, 0xaf, 0x4e, 0xb6, 0x2f, + 0xef, 0xf2, 0xf9, 0x97, 0x1a, 0xee, 0xe2, 0x05, 0x58, 0xaa, 0xa3, 0xbb, + 0xbc, 0x08, 0x70, 0xcf, 0x16, 0x77, 0x73, 0xe1, 0xa6, 0xea, 0x39, 0x0d, + 0x33, 0x1b, 0x3f, 0xb9, 0xd9, 0xbc, 0x49, 0x6f, 0xb4, 0x14, 0x03, 0xd6, + 0xc7, 0xb3, 0x47, 0x78, 0x4c, 0x8a, 0x01, 0x30, 0x3e, 0xff, 0xb3, 0xc4, + 0x37, 0x09, 0x9b, 0x1a, 0x0a, 0x02, 0xdb, 0xba, 0xbc, 0x28, 0xb0, 0xdb, + 0xe4, 0xf3, 0xad, 0x93, 0x17, 0x09, 0x7b, 0x35, 0xb4, 0xaf, 0xf7, 0x9d, + 0x7c, 0xed, 0xca, 0x76, 0xaf, 0xf6, 0xa9, 0xbe, 0xd3, 0x30, 0xc5, 0xff, + 0xce, 0x37, 0x36, 0x0b, 0xd5, 0xa5, 0xd5, 0x85, 0x93, 0xaf, 0x5f, 0x70, + 0x15, 0xdb, 0x37, 0xe7, 0xf0, 0x8d, 0x36, 0x00, 0x4b, 0xf7, 0xe8, 0x36, + 0xfe, 0xa4, 0x1d, 0x00, 0xd3, 0xef, 0xb4, 0xea, 0x59, 0xd5, 0x65, 0xa2, + 0x00, 0x58, 0x92, 0x63, 0x1a, 0x2e, 0x9c, 0x7f, 0x71, 0x44, 0xc7, 0xf4, + 0xb5, 0x2e, 0x5f, 0x82, 0xf2, 0xea, 0xec, 0x3c, 0x17, 0x76, 0xe0, 0x95, + 0xb6, 0x3d, 0xaa, 0xfd, 0x1a, 0xce, 0x91, 0x6d, 0xee, 0xf2, 0x1b, 0x6b, + 0xf6, 0xa8, 0xf6, 0x6e, 0xb8, 0x2b, 0xff, 0xe2, 0xab, 0xf8, 0xf7, 0x2e, + 0x69, 0xb8, 0xb1, 0xe7, 0xbb, 0x0d, 0x17, 0xd1, 0x2e, 0x6c, 0x38, 0x37, + 0x76, 0xc1, 0x2e, 0x1f, 0x77, 0x6e, 0xdf, 0xf0, 0xb4, 0x03, 0xd6, 0xc8, + 0x61, 0x0d, 0x33, 0x01, 0xdc, 0xb7, 0x7a, 0x60, 0xc3, 0x4c, 0xc3, 0xcb, + 0xf5, 0x98, 0xea, 0xa6, 0xd5, 0xc3, 0x1a, 0x0a, 0x4a, 0x4c, 0x01, 0xc5, + 0x80, 0xb5, 0xb7, 0x73, 0x5a, 0x8d, 0xb1, 0x51, 0x0c, 0x00, 0x16, 0x26, + 0x6f, 0x44, 0xbc, 0x19, 0x59, 0x7b, 0x5b, 0xab, 0xe3, 0xc5, 0x00, 0xb0, + 0x2c, 0xa7, 0x8a, 0x00, 0x80, 0x45, 0x38, 0xbc, 0x61, 0xc6, 0xc7, 0x77, + 0x89, 0x02, 0x60, 0x49, 0x36, 0x35, 0x5c, 0x3c, 0x7a, 0xf9, 0x9c, 0x1d, + 0xf7, 0xce, 0x8b, 0xf4, 0x9f, 0xf7, 0x14, 0x00, 0x66, 0xd8, 0x3e, 0xd5, + 0x5d, 0xba, 0x7c, 0x56, 0x80, 0xdb, 0x4f, 0x7e, 0xae, 0xaf, 0x96, 0x3b, + 0x37, 0x2c, 0x37, 0xf3, 0xd0, 0x86, 0x25, 0x7e, 0xd9, 0x60, 0xee, 0x9c, + 0x59, 0x7b, 0xbf, 0xb8, 0xca, 0xdf, 0x44, 0xd3, 0x42, 0x31, 0x00, 0x60, + 0xfd, 0xdc, 0xbd, 0xa1, 0x75, 0x0e, 0xc0, 0xd2, 0xdc, 0xbe, 0xba, 0xb5, + 0x18, 0x00, 0x58, 0xa4, 0xd3, 0x45, 0x00, 0xb0, 0x2c, 0x66, 0x39, 0x04, + 0x98, 0x0d, 0x5b, 0x1a, 0x66, 0x7a, 0x39, 0xa3, 0x7a, 0x67, 0xc3, 0x52, + 0xbc, 0xef, 0x9c, 0xfc, 0xf9, 0x98, 0xd6, 0xe6, 0x7a, 0xe6, 0xe1, 0xd5, + 0xfb, 0x1a, 0x66, 0x74, 0x64, 0x83, 0x99, 0x31, 0x60, 0x6d, 0xdd, 0xac, + 0x61, 0x8a, 0x8c, 0x31, 0x52, 0x0c, 0x00, 0xf0, 0x06, 0x1b, 0x60, 0xda, + 0xb9, 0xc0, 0x03, 0xc0, 0x52, 0x3c, 0xbc, 0x7a, 0x5a, 0xc3, 0x52, 0x67, + 0x00, 0x2c, 0xde, 0xf1, 0x0d, 0x4b, 0x49, 0x5a, 0x47, 0x1a, 0x60, 0x3a, + 0xfd, 0x78, 0xf5, 0xe0, 0xea, 0x1e, 0x0d, 0xcb, 0x9d, 0xac, 0xb7, 0x3d, + 0xab, 0x3f, 0x69, 0xb8, 0x6e, 0xfa, 0x9c, 0x86, 0xd9, 0x88, 0xd9, 0x00, + 0x66, 0x0c, 0x58, 0x5b, 0xbf, 0x30, 0xe2, 0x8c, 0x15, 0x03, 0x00, 0xd6, + 0xcf, 0x76, 0x11, 0x00, 0x2c, 0xeb, 0xbd, 0xce, 0x29, 0x62, 0x00, 0x60, + 0x09, 0xf6, 0x6b, 0x38, 0x61, 0x0a, 0xc0, 0xd2, 0xec, 0x53, 0xdd, 0x53, + 0x0c, 0x00, 0x53, 0xe9, 0x26, 0xd5, 0x1f, 0x35, 0x9c, 0x63, 0xde, 0x6f, + 0x03, 0xf7, 0x63, 0x53, 0xf5, 0xbf, 0xaa, 0xb7, 0x56, 0xfb, 0x1b, 0x96, + 0x8d, 0xa1, 0x18, 0xb0, 0x76, 0x8e, 0xa8, 0x1e, 0x33, 0xe2, 0xe3, 0x53, + 0x0c, 0x00, 0x58, 0x1f, 0x37, 0xaf, 0x6e, 0x2a, 0x06, 0x80, 0x25, 0xbb, + 0xef, 0xe4, 0x35, 0x39, 0x00, 0x2c, 0x85, 0xd9, 0x66, 0x00, 0x96, 0xc7, + 0x6c, 0x87, 0x00, 0xd3, 0xe9, 0xf1, 0x4d, 0xd7, 0x92, 0xe7, 0x27, 0x56, + 0xef, 0xaf, 0x8e, 0x32, 0x34, 0xeb, 0x4f, 0x31, 0x60, 0xed, 0xfc, 0x6c, + 0xb5, 0xfb, 0x88, 0x8f, 0x4f, 0x31, 0x00, 0x60, 0x7d, 0x98, 0x2d, 0x00, + 0x60, 0x79, 0xac, 0x5d, 0x07, 0xc0, 0x72, 0x3c, 0xa0, 0x3a, 0x4c, 0x0c, + 0x00, 0x4b, 0x66, 0xc6, 0x15, 0x80, 0xe9, 0xb3, 0xb9, 0xe9, 0xbc, 0x89, + 0xf9, 0xb6, 0xd5, 0x3f, 0x67, 0xb6, 0x99, 0x0d, 0x79, 0x42, 0xb0, 0xfa, + 0x0e, 0x6a, 0x58, 0xaf, 0x63, 0xcc, 0x14, 0x03, 0x00, 0xd6, 0x87, 0xc6, + 0x3d, 0xc0, 0xd2, 0xed, 0x5d, 0x9d, 0x24, 0x06, 0x00, 0x96, 0x61, 0xb7, + 0xea, 0x64, 0x31, 0x00, 0x2c, 0xd9, 0x0d, 0xaa, 0x5b, 0x8b, 0x01, 0x60, + 0xaa, 0xdc, 0x67, 0xf2, 0xf3, 0x79, 0x1a, 0x1d, 0x5c, 0xbd, 0xa3, 0x7a, + 0xa2, 0x61, 0x5a, 0x3f, 0x8a, 0x01, 0x6b, 0xe3, 0xa7, 0xaa, 0x7d, 0x47, + 0x7e, 0x8c, 0x7b, 0x1b, 0x66, 0x80, 0x35, 0x77, 0x40, 0x75, 0x9c, 0x18, + 0x00, 0x96, 0xec, 0xa4, 0x39, 0x78, 0x3d, 0x0e, 0xc0, 0xda, 0xb1, 0x9c, + 0x00, 0xc0, 0xf2, 0x98, 0xf5, 0x10, 0x60, 0xba, 0x3c, 0x6e, 0xca, 0xf7, + 0x6f, 0xf7, 0xea, 0x15, 0xd5, 0x0b, 0xab, 0x2d, 0x86, 0x6b, 0xed, 0x29, + 0x06, 0xac, 0xbe, 0xbd, 0xab, 0xa7, 0xcf, 0xc1, 0x71, 0xee, 0x69, 0xa8, + 0x01, 0xd6, 0xdc, 0x03, 0xaa, 0xad, 0x62, 0x00, 0x58, 0x32, 0x17, 0x74, + 0x00, 0x58, 0x89, 0x3b, 0x57, 0x37, 0x13, 0x03, 0xc0, 0x92, 0x99, 0xf5, + 0x10, 0x60, 0x7a, 0xec, 0xdf, 0xec, 0xcc, 0xa6, 0xf8, 0x33, 0xd5, 0xdf, + 0x56, 0x07, 0x1a, 0xb6, 0xb5, 0xa5, 0x18, 0xb0, 0xfa, 0x1e, 0xdb, 0x30, + 0xfd, 0xc5, 0xd8, 0x99, 0x31, 0x00, 0xc0, 0x1b, 0x6a, 0x80, 0x69, 0x74, + 0x68, 0x75, 0xbc, 0x18, 0x00, 0x58, 0xa1, 0xd3, 0x44, 0x00, 0xb0, 0x64, + 0x77, 0x69, 0x3e, 0xce, 0x8d, 0x03, 0xcc, 0x82, 0x53, 0x9a, 0xad, 0x6b, + 0x79, 0xf7, 0xab, 0xfe, 0xb1, 0xba, 0xa9, 0xa1, 0x5b, 0x3b, 0x8a, 0x01, + 0xab, 0xef, 0xa9, 0x73, 0x72, 0x9c, 0x66, 0x0c, 0x00, 0x58, 0x5b, 0x5b, + 0xaa, 0x07, 0x8a, 0x01, 0x60, 0xc9, 0x4e, 0x6d, 0x58, 0x1f, 0x1a, 0x00, + 0x56, 0xe2, 0xd1, 0xd5, 0x26, 0x31, 0x00, 0x2c, 0xc9, 0x96, 0x86, 0xd9, + 0x0f, 0x01, 0xd8, 0x78, 0x8f, 0x9f, 0xc1, 0x7d, 0xbe, 0x45, 0xf5, 0x91, + 0xdc, 0x30, 0xb7, 0x66, 0x14, 0x03, 0x56, 0xd7, 0xdd, 0xaa, 0xdb, 0xce, + 0xc9, 0xb1, 0x9a, 0x31, 0x00, 0x60, 0x6d, 0xdd, 0x39, 0x2d, 0x7b, 0x80, + 0xe5, 0xb0, 0x8c, 0x00, 0x00, 0xab, 0xe1, 0x87, 0xaa, 0x3b, 0x89, 0x01, + 0x60, 0xc9, 0x5c, 0xcc, 0x01, 0xd8, 0x78, 0x37, 0x6d, 0x98, 0xc5, 0x65, + 0x16, 0xed, 0x5f, 0xbd, 0xa5, 0x3a, 0xc3, 0x30, 0xae, 0x3e, 0xc5, 0x80, + 0xd5, 0xf5, 0x13, 0x73, 0x74, 0xac, 0x7b, 0xa6, 0x39, 0x0f, 0xe0, 0x8d, + 0x34, 0xc0, 0xf4, 0xbd, 0xf1, 0xbd, 0xa3, 0x18, 0x00, 0x58, 0x25, 0x8f, + 0x16, 0x01, 0xc0, 0x92, 0x3d, 0xb0, 0xda, 0x2a, 0x06, 0x80, 0x0d, 0xf5, + 0xf8, 0x66, 0xfb, 0x1a, 0xde, 0x96, 0xea, 0x05, 0xd5, 0xcb, 0xfc, 0x4e, + 0x59, 0x5d, 0x8a, 0x01, 0xab, 0xe7, 0x90, 0xea, 0xe1, 0x73, 0xf6, 0xdc, + 0xd9, 0xdd, 0xb0, 0x03, 0xac, 0x99, 0xed, 0x22, 0x00, 0x58, 0xb2, 0xc7, + 0x88, 0x00, 0x80, 0x55, 0x74, 0x6a, 0xce, 0x7d, 0x00, 0x2c, 0xd5, 0x01, + 0xd5, 0xb1, 0x62, 0x00, 0xd8, 0x30, 0x9b, 0x1b, 0xcf, 0xf9, 0x91, 0x1f, + 0xaf, 0x4e, 0x33, 0xa4, 0xab, 0xfb, 0xe4, 0x60, 0xf5, 0x9e, 0x9c, 0x7b, + 0xcc, 0xd9, 0x31, 0xef, 0x65, 0xd8, 0x01, 0xd6, 0xc4, 0x0d, 0xaa, 0xdb, + 0x88, 0x01, 0x60, 0xc9, 0x1e, 0x25, 0x02, 0x00, 0x56, 0xd1, 0x41, 0xd5, + 0xfd, 0xc5, 0x00, 0xb0, 0x64, 0x66, 0x41, 0x04, 0xd8, 0x38, 0xc7, 0x57, + 0x47, 0x8e, 0xe8, 0x78, 0x7e, 0xda, 0x90, 0xae, 0x1e, 0xc5, 0x80, 0xd5, + 0xcb, 0xf1, 0xc7, 0xe7, 0xf0, 0xb8, 0x15, 0x03, 0x00, 0xd6, 0xc6, 0x83, + 0x44, 0x00, 0xb0, 0x64, 0xc7, 0x36, 0x2c, 0x25, 0x00, 0x00, 0xab, 0xe9, + 0x74, 0x11, 0x00, 0x2c, 0x99, 0x59, 0x10, 0x01, 0x36, 0xce, 0xe3, 0x46, + 0x76, 0x3c, 0x3f, 0x52, 0x1d, 0x67, 0x58, 0x57, 0x87, 0x62, 0xc0, 0xea, + 0x38, 0xb1, 0x3a, 0x6a, 0x0e, 0x8f, 0x5b, 0x31, 0x00, 0x60, 0xed, 0x7e, + 0xaf, 0x00, 0xb0, 0x34, 0x2e, 0xdc, 0x00, 0xb0, 0x16, 0x1e, 0xd2, 0x30, + 0x2d, 0x36, 0x00, 0x8b, 0x77, 0x8b, 0x94, 0x76, 0x01, 0x36, 0xc2, 0x01, + 0x93, 0xd7, 0xaf, 0x63, 0xf3, 0x0c, 0x43, 0xbb, 0x3a, 0x14, 0x03, 0x56, + 0xc7, 0x53, 0xe7, 0xf4, 0xb8, 0x15, 0x03, 0x00, 0x56, 0xdf, 0x3e, 0xd5, + 0xbd, 0xc4, 0x00, 0xb0, 0x24, 0x5b, 0xab, 0x93, 0xc5, 0x00, 0xc0, 0x1a, + 0xd8, 0xb3, 0x7a, 0x98, 0x18, 0x00, 0x96, 0xcc, 0x4d, 0x0f, 0x00, 0xeb, + 0xef, 0xd4, 0x6a, 0xef, 0x11, 0x1e, 0xd7, 0x49, 0x8d, 0x6b, 0x79, 0x84, + 0x0d, 0xa3, 0x18, 0xb0, 0x72, 0x37, 0x6e, 0x7e, 0xd7, 0x9b, 0x53, 0x0c, + 0x00, 0x58, 0x7d, 0xc7, 0x37, 0x9c, 0x7c, 0x04, 0x60, 0xf1, 0x4e, 0xa8, + 0x0e, 0x16, 0x03, 0x00, 0x6b, 0xc4, 0xac, 0x34, 0x00, 0x4b, 0x67, 0x39, + 0x01, 0x80, 0xf5, 0xf7, 0xb8, 0x91, 0x1e, 0xd7, 0x6e, 0xd5, 0x4f, 0x1a, + 0xde, 0x95, 0x53, 0x0c, 0x58, 0xb9, 0x9f, 0x98, 0xe3, 0x1c, 0x15, 0x03, + 0x00, 0x56, 0x9f, 0x46, 0x3d, 0xc0, 0xd2, 0xb9, 0x60, 0x03, 0xc0, 0x5a, + 0xba, 0x57, 0x75, 0x7d, 0x31, 0x00, 0x2c, 0xc9, 0xdd, 0xab, 0x03, 0xc5, + 0x00, 0xb0, 0x6e, 0x6e, 0x56, 0xdd, 0x69, 0xc4, 0xc7, 0xf7, 0x94, 0xc6, + 0x39, 0x1b, 0xc2, 0xba, 0x52, 0x0c, 0x58, 0x99, 0x3d, 0xaa, 0xc7, 0xcf, + 0xf1, 0xf1, 0x2b, 0x06, 0x00, 0xac, 0xae, 0x4d, 0xd5, 0x03, 0xc5, 0x00, + 0xb0, 0x24, 0xfb, 0xe7, 0x6e, 0x24, 0x00, 0xd6, 0xd6, 0xe6, 0x86, 0x69, + 0x59, 0x01, 0x58, 0xbc, 0xad, 0x0d, 0xb3, 0x22, 0x02, 0xb0, 0x3e, 0x9e, + 0xd8, 0x70, 0x7e, 0x79, 0xac, 0xb6, 0x55, 0xa7, 0x19, 0xe6, 0x95, 0xbf, + 0xb1, 0x61, 0xf9, 0x4e, 0xa9, 0x0e, 0x99, 0xe3, 0xe3, 0x57, 0x0c, 0x00, + 0x58, 0x5d, 0xc7, 0x54, 0x47, 0x88, 0x01, 0x60, 0x49, 0x4e, 0xf6, 0xba, + 0x14, 0x80, 0x75, 0x60, 0x76, 0x1a, 0x80, 0xa5, 0x33, 0x2b, 0x22, 0xc0, + 0xfa, 0xd8, 0x3c, 0x27, 0xaf, 0x57, 0xff, 0x9f, 0xc6, 0x5d, 0x7e, 0x58, + 0x97, 0x27, 0x0a, 0xcb, 0xf7, 0xd4, 0x39, 0x3f, 0x7e, 0x27, 0x60, 0x01, + 0x56, 0x97, 0x3b, 0x5e, 0x01, 0x96, 0xce, 0x85, 0x1a, 0x00, 0xd6, 0xc3, + 0x0f, 0x57, 0xb7, 0x11, 0x03, 0xc0, 0x92, 0x9c, 0x50, 0x6d, 0xf9, 0xff, + 0xd9, 0xbb, 0xef, 0x68, 0xaf, 0xea, 0x3b, 0xdf, 0xff, 0xcf, 0x43, 0x11, + 0x10, 0x04, 0x2b, 0x0a, 0x76, 0xec, 0x2d, 0xb1, 0xf7, 0x1e, 0xb1, 0xc0, + 0xc1, 0xd8, 0x95, 0xa2, 0xce, 0x4c, 0xa2, 0x19, 0x33, 0x99, 0x5c, 0x27, + 0x37, 0x6b, 0x52, 0x66, 0x7e, 0xf7, 0x26, 0x37, 0x65, 0xe2, 0xcd, 0x24, + 0x13, 0x4d, 0x33, 0x31, 0x65, 0xa2, 0x62, 0xc3, 0x34, 0x35, 0x80, 0x88, + 0x9a, 0x18, 0xbb, 0x62, 0xc7, 0x12, 0x7b, 0xa1, 0x08, 0x82, 0x8a, 0xa0, + 0xd4, 0x73, 0xee, 0x1f, 0x9f, 0xcd, 0x8f, 0x43, 0x3f, 0xfb, 0x73, 0xda, + 0xde, 0x9f, 0xcf, 0xf3, 0xb1, 0xd6, 0x5e, 0x1c, 0x50, 0x97, 0x7b, 0xbf, + 0xf6, 0xe6, 0x9c, 0xef, 0xfe, 0xec, 0xf7, 0x7e, 0xbf, 0x8d, 0x41, 0x92, + 0x3a, 0xdc, 0x49, 0xe4, 0x31, 0xfa, 0x6a, 0x2f, 0xe0, 0x58, 0x4f, 0x77, + 0x3c, 0x0b, 0x03, 0xe2, 0xed, 0x07, 0x1c, 0x9a, 0x79, 0x06, 0x6f, 0x7a, + 0x19, 0x48, 0x52, 0xbb, 0xb2, 0x92, 0x5e, 0x92, 0xca, 0xd9, 0x9a, 0x30, + 0xbb, 0x54, 0x92, 0xa4, 0xce, 0x60, 0x31, 0x9a, 0x24, 0x95, 0xb3, 0x05, + 0x70, 0xb0, 0x31, 0x48, 0x52, 0x87, 0xbb, 0x30, 0xa3, 0x63, 0xfd, 0xbc, + 0xa7, 0x3b, 0x9e, 0x85, 0x01, 0xf1, 0x3e, 0x9b, 0xf9, 0xf1, 0x3f, 0x08, + 0xdc, 0xe7, 0x65, 0x20, 0x49, 0xed, 0x66, 0x10, 0x61, 0x94, 0x80, 0x24, + 0xa9, 0xf5, 0xc6, 0xe0, 0x1b, 0x48, 0x92, 0x24, 0x7f, 0xee, 0x48, 0x52, + 0x95, 0xf9, 0x12, 0x84, 0x24, 0x75, 0xac, 0x01, 0xc0, 0xa9, 0x19, 0x1d, + 0xef, 0xa9, 0xc0, 0x10, 0x4f, 0x7b, 0x1c, 0x0b, 0x03, 0xe2, 0xff, 0x92, + 0x8d, 0xcc, 0x3c, 0x83, 0x6f, 0x78, 0x19, 0x48, 0x52, 0xbb, 0xdf, 0x28, + 0x3b, 0x1f, 0x49, 0x92, 0xca, 0xf1, 0xcd, 0x4d, 0x49, 0x52, 0x67, 0xb2, + 0x53, 0x8d, 0x24, 0x95, 0xe7, 0xd8, 0x44, 0x49, 0xea, 0x58, 0xa3, 0xc9, + 0x6b, 0xf4, 0x77, 0x37, 0x7c, 0x79, 0xbb, 0x4d, 0xe1, 0xa9, 0xbc, 0xbf, + 0x03, 0xfa, 0x66, 0x7c, 0xfc, 0x4f, 0x02, 0x13, 0xbc, 0x0c, 0x24, 0xa9, + 0x5d, 0x59, 0x41, 0x2f, 0x49, 0xe5, 0x38, 0xeb, 0x59, 0x92, 0xd4, 0x15, + 0x2c, 0x4a, 0x93, 0xa4, 0xf2, 0x9f, 0xdb, 0xb7, 0x37, 0x06, 0x49, 0xea, + 0x30, 0x17, 0x66, 0x78, 0xcc, 0x9f, 0x02, 0xfa, 0x79, 0xea, 0xcb, 0xb3, + 0x30, 0xa0, 0xbc, 0x06, 0xe0, 0x33, 0x99, 0x67, 0xf0, 0x6d, 0xa0, 0xd9, + 0x4b, 0x41, 0x92, 0xda, 0x4d, 0x2f, 0xe0, 0x13, 0xc6, 0x20, 0x49, 0xa5, + 0xf8, 0x60, 0x46, 0x92, 0xd4, 0x15, 0xce, 0x26, 0xaf, 0x37, 0xb2, 0x24, + 0xa9, 0x3d, 0x0c, 0x33, 0x02, 0x49, 0xea, 0x10, 0x7b, 0x02, 0x07, 0x67, + 0x78, 0xdc, 0x1b, 0x03, 0xe7, 0x7b, 0xfa, 0xcb, 0xb3, 0x30, 0xa0, 0xbc, + 0xe3, 0x80, 0x3d, 0x32, 0x3e, 0xfe, 0x97, 0x80, 0xdf, 0x7a, 0x19, 0x48, + 0x52, 0xbb, 0xff, 0x6c, 0xd9, 0xc8, 0x18, 0x24, 0xa9, 0xd4, 0x7d, 0xcc, + 0x48, 0x63, 0x90, 0x24, 0x75, 0x81, 0xfe, 0xd8, 0x16, 0x5b, 0x92, 0xca, + 0xb2, 0x4b, 0xa2, 0x24, 0x75, 0x8c, 0x9c, 0x9f, 0xf3, 0x5e, 0x8a, 0xa3, + 0x79, 0xbd, 0x60, 0x3a, 0xc1, 0x25, 0x99, 0x1f, 0xff, 0xb7, 0x81, 0x65, + 0x5e, 0x06, 0x92, 0xe4, 0x0d, 0xb2, 0x24, 0x75, 0xa1, 0xe3, 0x80, 0x6d, + 0x8c, 0x41, 0x92, 0xd4, 0x45, 0xec, 0x5a, 0x23, 0x49, 0xe5, 0x1c, 0x0f, + 0x6c, 0x68, 0x0c, 0x92, 0xd4, 0xee, 0x9e, 0x01, 0xa6, 0x65, 0x7a, 0xec, + 0xbb, 0x02, 0x43, 0xbd, 0x04, 0xca, 0xb1, 0x30, 0xa0, 0x9c, 0x41, 0xc0, + 0x27, 0x33, 0x3e, 0xfe, 0x37, 0x81, 0xb1, 0x5e, 0x06, 0x92, 0xd4, 0xee, + 0x2c, 0x0c, 0x90, 0xa4, 0x72, 0x7c, 0x20, 0x23, 0x49, 0xea, 0x4a, 0xc3, + 0x80, 0xcd, 0x8d, 0x41, 0x92, 0x5a, 0xad, 0x0f, 0x8e, 0x50, 0x94, 0xa4, + 0x8e, 0x72, 0x57, 0xc6, 0xc7, 0xfe, 0x79, 0x4f, 0x7f, 0x39, 0x16, 0x06, + 0x94, 0x73, 0x11, 0xd0, 0x33, 0xe3, 0xe3, 0xbf, 0x0c, 0x58, 0xec, 0x65, + 0x20, 0x49, 0xed, 0x6a, 0x6f, 0x60, 0x47, 0x63, 0x90, 0xa4, 0x56, 0xeb, + 0x0d, 0x9c, 0x61, 0x0c, 0x92, 0xa4, 0x2e, 0xd4, 0x13, 0x38, 0xdb, 0x18, + 0x24, 0xa9, 0x14, 0x5f, 0x8a, 0x90, 0xa4, 0x8e, 0x31, 0x29, 0xe3, 0x63, + 0x3f, 0x05, 0xd8, 0xc5, 0x4b, 0xa0, 0xf5, 0x2c, 0x0c, 0x68, 0xbd, 0x1e, + 0xc0, 0xc5, 0x19, 0x1f, 0xff, 0x6c, 0xe0, 0x17, 0x5e, 0x06, 0x92, 0xd4, + 0xee, 0x9c, 0x4f, 0x2a, 0x49, 0xe5, 0x7c, 0x12, 0x18, 0x60, 0x0c, 0x92, + 0xa4, 0x2e, 0x66, 0xf7, 0x1a, 0x49, 0x2a, 0x67, 0x04, 0xce, 0x82, 0x96, + 0xa4, 0x8e, 0x30, 0x19, 0x68, 0xce, 0xf4, 0xd8, 0xbb, 0x01, 0x9f, 0xf3, + 0x12, 0x28, 0x17, 0x98, 0x5a, 0xe7, 0x93, 0xc0, 0xd6, 0x19, 0x1f, 0xff, + 0x55, 0xc0, 0x22, 0x2f, 0x03, 0x49, 0x6a, 0x77, 0x56, 0xcc, 0x4b, 0x52, + 0x39, 0x3e, 0x88, 0x91, 0x24, 0x55, 0xc1, 0xe1, 0xc0, 0x10, 0x63, 0x90, + 0xa4, 0x56, 0x1b, 0x0c, 0xec, 0x6b, 0x0c, 0x92, 0xd4, 0xee, 0x66, 0x02, + 0x53, 0x33, 0x3e, 0xfe, 0xbf, 0xc7, 0x17, 0x48, 0x5a, 0xad, 0x87, 0x11, + 0xb4, 0xda, 0x25, 0x19, 0x1f, 0x7b, 0x13, 0xa1, 0x30, 0x40, 0x52, 0xfd, + 0xf5, 0x26, 0xcc, 0xc2, 0xdc, 0x1c, 0xd8, 0x18, 0xd8, 0x10, 0xe8, 0x0b, + 0x6c, 0x52, 0x7c, 0xdd, 0xab, 0xf8, 0xfd, 0x06, 0x6b, 0xf9, 0xef, 0x3f, + 0x00, 0x96, 0x02, 0x1f, 0x01, 0x0b, 0x8b, 0xdf, 0xcf, 0x2e, 0xb6, 0x77, + 0x8a, 0xcd, 0x22, 0xa2, 0xd6, 0xdb, 0x14, 0x38, 0xd4, 0x18, 0x24, 0xa9, + 0xd4, 0xf7, 0xcd, 0x93, 0x8c, 0x41, 0x92, 0x54, 0x01, 0x0d, 0x84, 0x62, + 0xb5, 0x6f, 0x18, 0x85, 0x24, 0xb5, 0x5a, 0x23, 0xf0, 0xb8, 0x31, 0x94, + 0xd2, 0x8b, 0x15, 0x6b, 0x79, 0x5b, 0x00, 0x03, 0x81, 0x7e, 0x84, 0x35, + 0xbe, 0x3e, 0x84, 0x67, 0x3c, 0x1b, 0xad, 0xe5, 0xbf, 0x5d, 0x0c, 0x2c, + 0x20, 0xac, 0xd5, 0x2d, 0x00, 0xde, 0x2b, 0x7e, 0x5d, 0xfe, 0xf5, 0x1c, + 0xc2, 0x5a, 0xde, 0x42, 0x63, 0x96, 0x6a, 0xef, 0x0e, 0xc2, 0xc8, 0xda, + 0x1c, 0x6d, 0x04, 0x5c, 0x08, 0x5c, 0xe1, 0x65, 0xb0, 0x7e, 0x16, 0x06, + 0xb4, 0xce, 0x2e, 0xc0, 0xf1, 0x19, 0x1f, 0xff, 0x9f, 0x80, 0xd7, 0xbc, + 0x0c, 0xa4, 0x4a, 0xeb, 0x03, 0x6c, 0x4f, 0xe8, 0x6c, 0xb2, 0x0d, 0xb0, + 0x6d, 0xf1, 0xeb, 0xd6, 0xc5, 0x0d, 0xc3, 0xc0, 0xe2, 0x06, 0xa2, 0x5f, + 0x27, 0xec, 0xcb, 0xbb, 0xc0, 0x2b, 0xc0, 0x4b, 0xc0, 0xcb, 0xc5, 0xf6, + 0x02, 0xf0, 0x44, 0x71, 0xe3, 0xa1, 0x15, 0x86, 0xf9, 0xb3, 0x58, 0x92, + 0x4a, 0x19, 0xc9, 0xda, 0x8b, 0xd7, 0x24, 0x49, 0xea, 0x6c, 0xe7, 0x63, + 0x61, 0x80, 0x24, 0x95, 0x31, 0xdc, 0xef, 0x9b, 0x6b, 0xd4, 0x8f, 0xd0, + 0x4d, 0x61, 0x37, 0x60, 0xa7, 0x55, 0xb6, 0x8d, 0x3b, 0xe1, 0xff, 0x3f, + 0x9f, 0xf0, 0xd2, 0xcf, 0xac, 0xe2, 0xd7, 0xb7, 0x80, 0x69, 0xc0, 0x1b, + 0xab, 0x7c, 0xfd, 0x91, 0xa7, 0x4a, 0xaa, 0xac, 0x3b, 0x80, 0x7f, 0xc9, + 0xf8, 0xf8, 0xff, 0x19, 0xf8, 0x11, 0xe1, 0x45, 0x67, 0xad, 0x83, 0x0f, + 0x23, 0x5a, 0xe7, 0xb3, 0xe4, 0x3d, 0xff, 0xe8, 0x4a, 0x2f, 0x01, 0xa9, + 0x12, 0x06, 0x00, 0xbb, 0x03, 0x3b, 0x17, 0x37, 0x06, 0x43, 0x5a, 0xdc, + 0x24, 0x0c, 0xaa, 0xd0, 0x7e, 0x6e, 0x02, 0x1c, 0x50, 0x6c, 0x2d, 0x2d, + 0x23, 0xb4, 0x34, 0x7a, 0xa4, 0xd8, 0xee, 0x01, 0x9e, 0xf3, 0x86, 0x58, + 0x92, 0x54, 0x82, 0x63, 0x04, 0x24, 0x49, 0x55, 0xb2, 0x0b, 0x70, 0x50, + 0x71, 0x7f, 0x23, 0x49, 0x5a, 0xbf, 0x83, 0x80, 0xad, 0x08, 0x6d, 0xaf, + 0x73, 0xb6, 0x07, 0x70, 0x4c, 0x91, 0xc7, 0x41, 0xc0, 0x9e, 0x40, 0xf7, + 0x2e, 0xdc, 0x9f, 0x7e, 0xc5, 0xb6, 0xe3, 0x7a, 0xfe, 0xbd, 0x19, 0xac, + 0x78, 0x09, 0x68, 0xf9, 0xf6, 0x12, 0xf0, 0x3c, 0x30, 0xcf, 0xcb, 0x5b, + 0xea, 0x52, 0x7f, 0x21, 0xbc, 0xb0, 0xb7, 0x49, 0xa6, 0xc7, 0xbf, 0x33, + 0x70, 0x0a, 0xe1, 0x45, 0x67, 0xad, 0x83, 0x85, 0x01, 0xeb, 0xd7, 0x07, + 0xb8, 0x20, 0xe3, 0xe3, 0x7f, 0x05, 0x98, 0xe8, 0x65, 0x20, 0x75, 0xfa, + 0x87, 0xf1, 0x7d, 0x81, 0xbd, 0x8a, 0x1b, 0x83, 0x3d, 0x8a, 0x6d, 0x9b, + 0x9a, 0x1f, 0x57, 0x77, 0xe0, 0x63, 0xc5, 0xf6, 0xa9, 0xe2, 0xcf, 0x5e, + 0x2e, 0x7e, 0x58, 0xdf, 0x56, 0x7c, 0x78, 0x59, 0x9c, 0xd9, 0xcf, 0x60, + 0xdb, 0x61, 0x4b, 0x52, 0xeb, 0xed, 0x84, 0xe3, 0x57, 0x24, 0x49, 0xd5, + 0x33, 0x1a, 0x0b, 0x03, 0x24, 0xa9, 0xb5, 0xba, 0x11, 0x1e, 0xdc, 0xfc, + 0x3a, 0xb3, 0xe3, 0xee, 0x45, 0x28, 0x04, 0x68, 0x24, 0xbc, 0x24, 0x32, + 0xa4, 0xa6, 0xc7, 0x31, 0xa8, 0xd8, 0x8e, 0x5c, 0xc3, 0x3f, 0x7b, 0x93, + 0x50, 0x20, 0xf0, 0x6c, 0x8b, 0xed, 0x09, 0x42, 0x37, 0x02, 0x49, 0x1d, + 0xef, 0x43, 0xe0, 0x97, 0xc0, 0x17, 0x33, 0xce, 0xe0, 0xf3, 0x58, 0x18, + 0xb0, 0x5e, 0x16, 0x06, 0xb4, 0xee, 0x06, 0x6f, 0xd3, 0x8c, 0x8f, 0xff, + 0x4a, 0x6c, 0xbd, 0x21, 0x75, 0xa4, 0xe5, 0x45, 0x00, 0x07, 0xb4, 0xd8, + 0x76, 0x2f, 0x6e, 0x94, 0x72, 0xb0, 0x53, 0xf1, 0x03, 0xfb, 0xf3, 0xc0, + 0xfb, 0xc0, 0x8d, 0x84, 0x59, 0x40, 0x53, 0x33, 0x38, 0xf6, 0x23, 0xc9, + 0xb7, 0x82, 0x53, 0x92, 0x62, 0x8c, 0x21, 0xef, 0x2e, 0x5e, 0x92, 0xa4, + 0x6a, 0x1a, 0x49, 0x58, 0x80, 0x5d, 0x6a, 0x14, 0x92, 0xd4, 0x2a, 0xc3, + 0xc9, 0xa7, 0x30, 0x60, 0x17, 0xc2, 0xcb, 0x31, 0x9f, 0x06, 0x36, 0x4b, + 0xfc, 0x58, 0xb7, 0x2d, 0xb6, 0xa1, 0xab, 0xfc, 0xf9, 0x0c, 0x60, 0x4a, + 0x8b, 0xed, 0x3e, 0x60, 0xae, 0x7f, 0x0d, 0xa4, 0x0e, 0xf1, 0x23, 0xc2, + 0x38, 0x81, 0xee, 0x99, 0x1e, 0xff, 0x89, 0xc0, 0xde, 0xc0, 0x33, 0x5e, + 0x0a, 0x6b, 0x67, 0x61, 0xc0, 0xfa, 0xfd, 0x63, 0xc6, 0xc7, 0xbe, 0x88, + 0xfc, 0xaa, 0x37, 0xa5, 0x8e, 0xb4, 0x11, 0xb0, 0x1f, 0x2b, 0x17, 0x01, + 0xec, 0x4a, 0x3e, 0x45, 0x00, 0xeb, 0x33, 0x00, 0xb8, 0x18, 0xb8, 0x08, + 0x98, 0x0c, 0xfc, 0x00, 0x18, 0x9f, 0xf8, 0x8d, 0xb0, 0x24, 0xa9, 0xf5, + 0x46, 0x1a, 0x81, 0x24, 0xa9, 0x82, 0x06, 0x12, 0x1e, 0x82, 0x4c, 0x30, + 0x0a, 0x49, 0x6a, 0x95, 0x93, 0x08, 0x6f, 0xd0, 0x2f, 0x4a, 0xf8, 0x18, + 0x1b, 0x81, 0x4b, 0x81, 0xe3, 0xb1, 0xb8, 0x79, 0x50, 0x91, 0x47, 0x63, + 0xf1, 0xfb, 0x26, 0xe0, 0x05, 0xe0, 0x31, 0x56, 0x14, 0x0b, 0x3c, 0x0e, + 0x7c, 0xe0, 0x5f, 0x0d, 0xa9, 0xcd, 0x5e, 0x27, 0x74, 0xe6, 0xfd, 0x64, + 0xc6, 0x19, 0x7c, 0xb6, 0xd8, 0xb4, 0x16, 0x16, 0x06, 0xac, 0xdb, 0xa1, + 0xac, 0x3e, 0x23, 0x3b, 0x27, 0x37, 0x02, 0xef, 0x78, 0x19, 0x48, 0xd1, + 0xb6, 0x04, 0x8e, 0x26, 0xb4, 0x0a, 0x3b, 0x96, 0x30, 0x0e, 0xc0, 0x22, + 0x80, 0xf5, 0x6b, 0x20, 0x2c, 0xac, 0x0d, 0x05, 0xee, 0x04, 0xbe, 0x00, + 0x3c, 0x95, 0xe8, 0x4d, 0xa2, 0x24, 0xa9, 0x75, 0x0e, 0x01, 0x76, 0x33, + 0x06, 0x49, 0x52, 0x45, 0x8d, 0xc6, 0xc2, 0x00, 0x49, 0x6a, 0xad, 0x7e, + 0x84, 0xf5, 0xb2, 0x3b, 0x12, 0x3c, 0xb6, 0x7d, 0x81, 0xef, 0x03, 0xc7, + 0x79, 0x9a, 0xd7, 0xaa, 0x1b, 0x2b, 0xc6, 0xa6, 0x8e, 0x2e, 0xfe, 0xac, + 0x89, 0x30, 0x7a, 0xe0, 0xcf, 0x84, 0x51, 0xa3, 0xf7, 0x00, 0xb3, 0x8c, + 0x4a, 0x8a, 0x72, 0x05, 0x79, 0x17, 0x06, 0x9c, 0x0f, 0x7c, 0x85, 0xd0, + 0x9d, 0x58, 0x6b, 0xf9, 0x26, 0xac, 0xb5, 0xfb, 0xc7, 0xcc, 0x8f, 0xff, + 0x4a, 0x2f, 0x01, 0xa9, 0x94, 0xad, 0x80, 0x73, 0x81, 0x9f, 0x10, 0x5a, + 0xe1, 0xcf, 0x04, 0x6e, 0x02, 0xfe, 0x09, 0xd8, 0xcb, 0xef, 0xb9, 0x51, + 0x3e, 0x41, 0xa8, 0x20, 0xbe, 0x92, 0xd0, 0x51, 0x20, 0x15, 0x43, 0x08, + 0x23, 0x23, 0x24, 0x49, 0xad, 0x33, 0xda, 0x08, 0x24, 0x49, 0x15, 0x76, + 0x3a, 0xe1, 0x41, 0x97, 0x24, 0xa9, 0x75, 0x52, 0xeb, 0xa2, 0xb8, 0x31, + 0x70, 0x15, 0xe1, 0xed, 0x77, 0x8b, 0x02, 0xca, 0xeb, 0x46, 0x68, 0xff, + 0xfd, 0x39, 0x60, 0x1c, 0x61, 0x4d, 0x75, 0x2a, 0xf0, 0x63, 0xe0, 0x1c, + 0xc2, 0xcb, 0x57, 0x92, 0x5a, 0xe7, 0x6e, 0xf2, 0x6e, 0xa5, 0xdf, 0x0f, + 0x18, 0xe5, 0x65, 0xb0, 0xee, 0x6f, 0xb8, 0x5a, 0xb3, 0xcd, 0x08, 0x0f, + 0xf8, 0x72, 0xf5, 0x24, 0xf0, 0x80, 0x97, 0x81, 0xb4, 0x4e, 0x03, 0x8b, + 0x1f, 0x32, 0x3f, 0x03, 0x9e, 0x23, 0xcc, 0xcc, 0xba, 0x01, 0xb8, 0x04, + 0xd8, 0xd3, 0x78, 0xda, 0x4d, 0x77, 0xe0, 0x33, 0x84, 0xb6, 0x62, 0x07, + 0x25, 0x72, 0x4c, 0xa7, 0x7a, 0x5a, 0x25, 0xa9, 0xd5, 0x7a, 0x10, 0x16, + 0x83, 0x24, 0x49, 0xaa, 0xaa, 0x0d, 0x09, 0xc5, 0x01, 0x92, 0xa4, 0xd6, + 0x19, 0x91, 0xd0, 0xb1, 0x1c, 0x0a, 0x3c, 0x01, 0x7c, 0x1a, 0x9f, 0xb7, + 0xb4, 0x97, 0x06, 0xc2, 0xda, 0xea, 0x67, 0x09, 0x5d, 0x8d, 0x67, 0x12, + 0x3a, 0x0a, 0xfc, 0x14, 0x38, 0x0f, 0xd8, 0xc2, 0x88, 0xa4, 0xb5, 0x6a, + 0x06, 0x7e, 0x94, 0x79, 0x06, 0x17, 0x78, 0x19, 0xac, 0x9d, 0x3f, 0xa8, + 0xd6, 0xee, 0x1f, 0x80, 0xde, 0x19, 0x1f, 0xff, 0x8f, 0xbd, 0x04, 0xa4, + 0x35, 0xda, 0x07, 0xf8, 0x2a, 0xa1, 0x70, 0x66, 0x06, 0x30, 0x16, 0xb8, + 0x18, 0xdf, 0xfe, 0xee, 0x0c, 0x3b, 0x12, 0xda, 0x89, 0x9d, 0x91, 0xc0, + 0xb1, 0x38, 0x46, 0x40, 0x92, 0x5a, 0xef, 0x24, 0x7c, 0x43, 0x44, 0x92, + 0x54, 0x7d, 0x76, 0xb7, 0x91, 0xa4, 0xd6, 0x1b, 0x42, 0x68, 0x25, 0x5f, + 0x77, 0x67, 0x13, 0xde, 0xce, 0xdd, 0xde, 0x53, 0xda, 0xe1, 0xf6, 0x20, + 0x74, 0x78, 0xbe, 0x9e, 0x50, 0x28, 0x70, 0x3f, 0xf0, 0x65, 0x42, 0xa7, + 0x01, 0x49, 0x2b, 0xbb, 0x06, 0x98, 0x93, 0xf1, 0xf1, 0x1f, 0x8a, 0xcf, + 0x6b, 0xd6, 0xca, 0xc2, 0x80, 0x35, 0x6b, 0x00, 0x2e, 0xca, 0xf8, 0xf8, + 0xdf, 0x07, 0xae, 0xf3, 0x32, 0x90, 0x80, 0xf0, 0xb6, 0xfa, 0x91, 0xc0, + 0x77, 0x80, 0xe7, 0x09, 0xb3, 0xee, 0xbf, 0x55, 0xfc, 0x70, 0xf1, 0x7b, + 0x68, 0xe7, 0xeb, 0x43, 0x18, 0xcf, 0x70, 0x5e, 0x8d, 0x8f, 0xa1, 0x3f, + 0x70, 0x94, 0xa7, 0x52, 0x92, 0x5a, 0xcd, 0x07, 0x2d, 0x92, 0xa4, 0x3a, + 0x18, 0x0a, 0x6c, 0x6d, 0x0c, 0x92, 0xd4, 0x6a, 0x75, 0xef, 0x1a, 0x70, + 0x16, 0xe1, 0x21, 0x75, 0x6f, 0x4f, 0x65, 0xa7, 0xeb, 0x06, 0x1c, 0x06, + 0xfc, 0x07, 0xf0, 0x34, 0xf0, 0x2a, 0xa1, 0xa3, 0xeb, 0x08, 0xa0, 0x97, + 0xf1, 0x48, 0x7c, 0x08, 0xfc, 0x2a, 0xf3, 0x0c, 0xc6, 0x78, 0x19, 0xac, + 0xfd, 0x1b, 0xa8, 0x56, 0x77, 0x12, 0xb0, 0x4b, 0xc6, 0xc7, 0xff, 0x1b, + 0x60, 0x81, 0x97, 0x81, 0x32, 0xb6, 0x31, 0x70, 0x3e, 0xe1, 0x01, 0xf4, + 0x5c, 0xe0, 0xaf, 0xc0, 0x97, 0x80, 0xdd, 0x8c, 0xa6, 0x12, 0xba, 0x03, + 0x57, 0x03, 0xc7, 0xd6, 0xf8, 0x67, 0xcc, 0x06, 0x9e, 0x46, 0x49, 0x6a, + 0x95, 0xbe, 0x38, 0x7e, 0x45, 0x92, 0x54, 0x0f, 0xdd, 0x70, 0xf4, 0x8d, + 0x24, 0x95, 0x31, 0xbc, 0xc6, 0xfb, 0x7e, 0x02, 0xa1, 0x28, 0xa0, 0xbb, + 0xa7, 0xb1, 0x12, 0x76, 0x20, 0x74, 0x74, 0xbd, 0x05, 0x98, 0x45, 0x18, + 0x3f, 0x30, 0x86, 0xb0, 0xc6, 0x2b, 0xe5, 0xea, 0xc7, 0xc0, 0xb2, 0x8c, + 0x8f, 0xff, 0x42, 0xbf, 0x47, 0xaf, 0xfd, 0xa6, 0x45, 0xab, 0xbb, 0x24, + 0xf3, 0xe3, 0xff, 0xb9, 0x97, 0x80, 0x32, 0xd4, 0x87, 0xb0, 0x88, 0xf3, + 0x7b, 0x42, 0x3b, 0xaa, 0xab, 0x09, 0xed, 0xc0, 0xfa, 0x1b, 0x4d, 0x25, + 0xf5, 0x2c, 0x3e, 0xe4, 0x0f, 0xf2, 0xc6, 0x57, 0x92, 0x92, 0x76, 0x16, + 0xa1, 0x38, 0x40, 0x92, 0xa4, 0x3a, 0xb0, 0xcb, 0x8d, 0x24, 0xb5, 0xde, + 0x11, 0xc0, 0x66, 0x35, 0xdc, 0xef, 0x6d, 0x08, 0x45, 0x01, 0x3d, 0x3c, + 0x85, 0x95, 0xd4, 0x9f, 0xb0, 0xc6, 0x7b, 0x0d, 0x61, 0x8d, 0xf7, 0x77, + 0x84, 0x35, 0xde, 0x3e, 0x46, 0xa3, 0xcc, 0xbc, 0x4e, 0x28, 0x96, 0xc9, + 0xd5, 0x36, 0xc0, 0x31, 0x5e, 0x06, 0xab, 0xb3, 0x30, 0x60, 0x75, 0xdb, + 0x91, 0xf7, 0x43, 0x9b, 0xbb, 0x80, 0xa9, 0x5e, 0x06, 0xca, 0xc8, 0x51, + 0x84, 0x2e, 0x19, 0x6f, 0x13, 0x1e, 0x34, 0x9f, 0x86, 0x2d, 0xa7, 0xea, + 0x62, 0x20, 0xf0, 0xc3, 0x1a, 0xfe, 0xdc, 0x3d, 0xd9, 0x53, 0x27, 0x49, + 0xad, 0xe6, 0x03, 0x16, 0x49, 0x52, 0x9d, 0x1c, 0x00, 0xec, 0x65, 0x0c, + 0x92, 0xd4, 0x2a, 0xdd, 0x09, 0x5d, 0x15, 0xeb, 0xe6, 0xc7, 0xc0, 0xe6, + 0x9e, 0xbe, 0x5a, 0xe8, 0x05, 0x9c, 0x4e, 0xe8, 0x0a, 0xfb, 0x36, 0xf0, + 0x6b, 0x42, 0x41, 0x8a, 0x94, 0x8b, 0x1f, 0x66, 0x7e, 0xfc, 0x17, 0x7a, + 0x09, 0xac, 0xce, 0xc2, 0x80, 0xd5, 0x7d, 0x86, 0xbc, 0xdb, 0x4b, 0xfc, + 0xd4, 0x4b, 0x40, 0x19, 0xd8, 0x02, 0xf8, 0x22, 0xf0, 0x1c, 0x70, 0x0f, + 0x70, 0x01, 0xb0, 0x91, 0xb1, 0xd4, 0xd2, 0x99, 0xd4, 0x6b, 0xa4, 0xc0, + 0x21, 0xc0, 0x96, 0x9e, 0x36, 0x49, 0x6a, 0x95, 0x41, 0xc0, 0xf1, 0xc6, + 0x20, 0x49, 0xaa, 0x99, 0x91, 0x46, 0x20, 0x49, 0xad, 0x56, 0xb7, 0x17, + 0xf4, 0x86, 0xe2, 0xa8, 0xb3, 0xba, 0xda, 0x08, 0xf8, 0x3b, 0xe0, 0x5e, + 0xe0, 0x59, 0xe0, 0x7f, 0x62, 0x81, 0x87, 0xd2, 0x77, 0x37, 0xf0, 0x54, + 0xc6, 0xc7, 0x7f, 0x26, 0x3e, 0xf7, 0x59, 0x8d, 0x85, 0x01, 0x2b, 0xdb, + 0x00, 0xf8, 0x54, 0xc6, 0xc7, 0x3f, 0x03, 0xf8, 0xa3, 0x97, 0x81, 0x12, + 0xb6, 0x37, 0x70, 0x15, 0xf0, 0x06, 0xf0, 0x5d, 0x60, 0x77, 0x23, 0x49, + 0xc2, 0xbf, 0x7b, 0xc3, 0x2b, 0x49, 0x49, 0x1a, 0x85, 0xf3, 0xe0, 0x24, + 0x49, 0xf5, 0x33, 0x06, 0x68, 0x30, 0x06, 0x49, 0x6a, 0x95, 0x53, 0xa8, + 0x57, 0x4b, 0xfe, 0xaf, 0x7a, 0xca, 0x92, 0xb0, 0x07, 0xf0, 0x9f, 0x84, + 0x35, 0xe2, 0x9f, 0x01, 0x7b, 0x1a, 0x89, 0x12, 0xf6, 0xa3, 0x8c, 0x8f, + 0xbd, 0x2f, 0x70, 0x86, 0x97, 0xc0, 0xca, 0x2c, 0x0c, 0x58, 0xd9, 0x99, + 0xe4, 0xfd, 0x26, 0xe7, 0xcf, 0x81, 0x25, 0x5e, 0x06, 0x4a, 0xd0, 0xe1, + 0xc0, 0xed, 0x84, 0xea, 0xb8, 0x4f, 0x03, 0xbd, 0x8d, 0x24, 0x29, 0xc7, + 0x03, 0x43, 0x6a, 0xb2, 0xaf, 0x16, 0x06, 0x48, 0x52, 0xeb, 0x39, 0x46, + 0x20, 0xce, 0x7c, 0x23, 0x90, 0xd4, 0x4e, 0x96, 0x00, 0x8b, 0x8c, 0xa1, + 0xb4, 0xed, 0x09, 0x23, 0xeb, 0x24, 0x49, 0xeb, 0xb7, 0x09, 0x70, 0x58, + 0x4d, 0xf6, 0x75, 0x57, 0xea, 0xd5, 0xb5, 0x52, 0xeb, 0xd7, 0x07, 0xb8, + 0x18, 0x78, 0x06, 0x98, 0x00, 0x1c, 0x6a, 0x24, 0x4a, 0xd0, 0xb5, 0xc0, + 0x9c, 0x8c, 0x8f, 0xff, 0x02, 0x2f, 0x81, 0x95, 0x59, 0x18, 0xb0, 0xb2, + 0x4b, 0x32, 0x3e, 0xf6, 0xa5, 0xc0, 0x2f, 0xbc, 0x04, 0x94, 0x98, 0x03, + 0x80, 0xf1, 0xc0, 0x7d, 0xc0, 0x89, 0xf8, 0xd6, 0x46, 0xaa, 0x1a, 0x80, + 0x73, 0x6a, 0xb0, 0x9f, 0xdb, 0x02, 0x1f, 0xf7, 0x74, 0x49, 0x52, 0xab, + 0xec, 0x01, 0xec, 0x67, 0x0c, 0xa5, 0x35, 0x03, 0xb7, 0x18, 0x83, 0xa4, + 0x76, 0xb2, 0x88, 0xb0, 0x48, 0xae, 0xf2, 0x46, 0x19, 0x81, 0x24, 0xb5, + 0x5a, 0x63, 0x4d, 0xf6, 0xf3, 0x5c, 0x4f, 0x55, 0xb2, 0x1a, 0x80, 0x93, + 0x81, 0x07, 0x80, 0xdb, 0x80, 0xfd, 0x8d, 0x44, 0x09, 0xf9, 0x08, 0xf8, + 0x65, 0xc6, 0xc7, 0x7f, 0x1c, 0xb0, 0xa3, 0x97, 0xc1, 0x0a, 0x16, 0x06, + 0xac, 0xb0, 0x27, 0x70, 0x64, 0xc6, 0xc7, 0x7f, 0x0b, 0xf0, 0x96, 0x97, + 0x81, 0x12, 0xb1, 0x31, 0x70, 0x39, 0xf0, 0x10, 0xa1, 0x25, 0x99, 0xf2, + 0xf8, 0x01, 0x5f, 0x87, 0x1b, 0x5d, 0x8b, 0x53, 0x24, 0xa9, 0x75, 0xac, + 0xe8, 0x8e, 0x73, 0x0f, 0xf0, 0x9a, 0x31, 0x48, 0x6a, 0x47, 0x63, 0x8d, + 0x20, 0xca, 0x39, 0x40, 0x2f, 0x63, 0x90, 0xa4, 0x56, 0xa9, 0x4b, 0x61, + 0xc0, 0x71, 0x9e, 0xaa, 0x2c, 0x0c, 0x07, 0x1e, 0x05, 0xae, 0x06, 0x36, + 0x33, 0x0e, 0x25, 0xe2, 0xc7, 0x84, 0x97, 0x83, 0x73, 0xd4, 0x80, 0x45, + 0xbb, 0x2b, 0xb1, 0x30, 0x60, 0x85, 0x7f, 0x22, 0xef, 0x07, 0x36, 0x57, + 0x7a, 0x09, 0x28, 0x11, 0x27, 0x00, 0xcf, 0x03, 0x9f, 0xc7, 0xb9, 0xc4, + 0x39, 0x39, 0xa4, 0x26, 0x37, 0x16, 0x92, 0xa4, 0xd6, 0xdd, 0xb4, 0x9d, + 0x67, 0x0c, 0x51, 0x7c, 0x80, 0x27, 0xa9, 0xbd, 0xdd, 0x06, 0xbc, 0x67, + 0x0c, 0xa5, 0x6d, 0x02, 0x0c, 0x33, 0x06, 0x49, 0x6a, 0x95, 0x3d, 0x81, + 0x9d, 0x6b, 0x70, 0x8f, 0x72, 0xa0, 0xa7, 0x2a, 0xab, 0x7b, 0xd2, 0xf3, + 0x09, 0x23, 0x06, 0x2c, 0x08, 0x51, 0x0a, 0xde, 0x20, 0xef, 0xee, 0x82, + 0xbe, 0x7c, 0xd2, 0x82, 0x85, 0x01, 0x41, 0x3f, 0x60, 0x4c, 0xc6, 0xc7, + 0xff, 0x12, 0x30, 0xd9, 0xcb, 0x40, 0x09, 0xf8, 0x1c, 0xa1, 0xd5, 0xe5, + 0x96, 0x46, 0x91, 0x9d, 0x01, 0xc0, 0x16, 0x15, 0xde, 0xbf, 0x3e, 0xc0, + 0xf1, 0x9e, 0xa6, 0x28, 0x6f, 0x1b, 0x81, 0x94, 0x9d, 0xa3, 0x81, 0x1d, + 0x8c, 0xa1, 0xb4, 0x45, 0xc0, 0xcd, 0xc6, 0x20, 0xa9, 0x9d, 0x2d, 0xf4, + 0x7b, 0x4b, 0xb4, 0x31, 0x46, 0x20, 0x65, 0xe7, 0xdd, 0xe2, 0x33, 0x99, + 0xca, 0xab, 0x7a, 0xc7, 0xcf, 0x2d, 0x81, 0x8d, 0x3c, 0x4d, 0xd9, 0xd9, + 0x0a, 0x98, 0x44, 0xde, 0x23, 0xa8, 0x95, 0x8e, 0x1f, 0x66, 0x7c, 0xec, + 0xbb, 0x02, 0x87, 0x7a, 0x09, 0x04, 0x16, 0x06, 0x04, 0xdb, 0x01, 0xfd, + 0x33, 0x3e, 0xfe, 0x9f, 0x10, 0xe6, 0x91, 0x4a, 0x75, 0x76, 0x06, 0x70, + 0x05, 0xd0, 0xc3, 0x28, 0xb2, 0x35, 0xb8, 0xc2, 0xfb, 0x76, 0x02, 0xa1, + 0x38, 0x40, 0xe5, 0x4d, 0x34, 0x02, 0x29, 0x3b, 0x3e, 0x48, 0x89, 0xf3, + 0x27, 0xc2, 0x62, 0xb4, 0x24, 0xb5, 0xb7, 0xeb, 0x8c, 0x20, 0x4a, 0x23, + 0xb0, 0xa9, 0x31, 0x48, 0xbc, 0x36, 0x91, 0xbd, 0x00, 0x00, 0x20, 0x00, + 0x49, 0x44, 0x41, 0x54, 0x59, 0xf9, 0x10, 0xb8, 0xd7, 0x18, 0xa2, 0xbf, + 0x67, 0x56, 0xd9, 0x60, 0x4f, 0x51, 0xb6, 0x7a, 0x00, 0x3f, 0x02, 0x4e, + 0x33, 0x0a, 0xd5, 0xdc, 0x9f, 0x81, 0xa7, 0x32, 0x3e, 0xfe, 0x0b, 0xbd, + 0x04, 0x02, 0x0b, 0x03, 0x82, 0x57, 0xc9, 0xf7, 0xc1, 0xf8, 0x47, 0xc0, + 0x6f, 0xbc, 0x04, 0x94, 0x80, 0x1f, 0xe1, 0xfc, 0xf6, 0xdc, 0xf5, 0xad, + 0xf0, 0xbe, 0x39, 0x46, 0x20, 0xce, 0x9b, 0xc0, 0x73, 0xc6, 0x20, 0x65, + 0xa5, 0x37, 0x70, 0x96, 0x31, 0x44, 0x71, 0x8c, 0x80, 0xa4, 0x8e, 0xf2, + 0x97, 0xe2, 0x73, 0x99, 0xca, 0xd9, 0x00, 0x38, 0xd3, 0x18, 0xa4, 0xec, + 0x4c, 0x30, 0x82, 0x28, 0xc7, 0x52, 0xed, 0x37, 0xf2, 0x7d, 0xd9, 0x23, + 0x6f, 0xdd, 0xc8, 0xfb, 0x6d, 0x6b, 0xa5, 0x23, 0xe7, 0xeb, 0x78, 0xa4, + 0xdf, 0xcb, 0x57, 0x7c, 0x43, 0x53, 0x78, 0x38, 0x3e, 0x33, 0xd3, 0x63, + 0xbf, 0x0e, 0x98, 0xeb, 0x25, 0xa0, 0x04, 0xbe, 0x97, 0xd9, 0xce, 0x4b, + 0x0d, 0x15, 0xde, 0x2f, 0x0b, 0x03, 0xe2, 0xfc, 0xc9, 0x08, 0xa4, 0xec, + 0x34, 0x02, 0x1b, 0x1b, 0x43, 0x69, 0xef, 0x03, 0xe3, 0x8d, 0x41, 0x52, + 0x07, 0x69, 0x02, 0xae, 0x37, 0x86, 0x28, 0xa3, 0x8d, 0x40, 0xca, 0x8e, + 0x85, 0x01, 0x71, 0x36, 0x00, 0x86, 0x56, 0x78, 0xff, 0x7c, 0x19, 0x49, + 0x03, 0xf0, 0x79, 0x9a, 0xea, 0x6f, 0x2c, 0x30, 0x27, 0xe3, 0xbf, 0xc3, + 0x8d, 0x5e, 0x02, 0x7e, 0x23, 0x6b, 0xe9, 0x95, 0x4c, 0x8f, 0xfb, 0x4a, + 0x4f, 0xbd, 0x12, 0xd0, 0x04, 0x7c, 0xcf, 0x18, 0xb2, 0x37, 0xaf, 0xa2, + 0xfb, 0xb5, 0x2f, 0xb0, 0x8d, 0xa7, 0x27, 0x8a, 0x0b, 0x2a, 0x52, 0x7e, + 0x7c, 0x80, 0x12, 0xe7, 0x26, 0xc2, 0x1c, 0x70, 0x49, 0xea, 0x28, 0x57, + 0x1b, 0x41, 0x94, 0xa3, 0x81, 0x1d, 0x8c, 0x41, 0xca, 0xca, 0xb3, 0xc0, + 0xeb, 0xc6, 0x10, 0xa5, 0xca, 0x2f, 0x55, 0x7c, 0xe0, 0xe9, 0xc9, 0xde, + 0x77, 0x09, 0x6b, 0xd0, 0x52, 0x9d, 0x7d, 0x04, 0x5c, 0x95, 0xf1, 0xf1, + 0x5f, 0xe0, 0x25, 0x60, 0x61, 0x40, 0x4b, 0x39, 0x16, 0x06, 0x3c, 0x0c, + 0x3c, 0xea, 0xa9, 0x57, 0x22, 0xfe, 0x0f, 0xce, 0xbe, 0xcc, 0xdd, 0xdb, + 0x15, 0xdd, 0x2f, 0x2b, 0x11, 0xe3, 0x2c, 0x06, 0xee, 0x36, 0x06, 0x29, + 0x2b, 0x9b, 0x00, 0xa7, 0x18, 0x43, 0x14, 0xc7, 0x08, 0x48, 0xea, 0x68, + 0x53, 0xc9, 0x7b, 0x26, 0x69, 0xac, 0x06, 0x42, 0xdb, 0x52, 0x49, 0x79, + 0x99, 0x68, 0x04, 0x51, 0x1a, 0xa9, 0xee, 0xf3, 0x8a, 0x59, 0x9e, 0x9e, + 0xec, 0xef, 0xb7, 0xbe, 0x69, 0x0c, 0x4a, 0xc4, 0x4f, 0x81, 0xa5, 0x99, + 0x1e, 0xfb, 0xc9, 0xc0, 0x56, 0xb9, 0x5f, 0x00, 0x16, 0x06, 0xac, 0xf0, + 0x4a, 0xa6, 0xdf, 0x00, 0xa4, 0x54, 0x34, 0x01, 0x63, 0x80, 0x2f, 0x03, + 0xcb, 0x8c, 0x23, 0x3b, 0xef, 0x55, 0xf8, 0x26, 0xcd, 0x31, 0x02, 0x71, + 0xfe, 0x8a, 0x15, 0xf9, 0x52, 0x6e, 0xce, 0x05, 0x7a, 0x19, 0x43, 0x69, + 0x6f, 0x16, 0xdf, 0x33, 0x25, 0xa9, 0xa3, 0x59, 0x84, 0x14, 0xe7, 0x7c, + 0x23, 0x90, 0xb2, 0x63, 0xf7, 0xbb, 0x38, 0x03, 0x81, 0x03, 0x2b, 0xba, + 0x6f, 0x33, 0xa8, 0x6e, 0xa7, 0x4a, 0x75, 0x9c, 0x65, 0xc0, 0xd7, 0x09, + 0x6f, 0x19, 0x37, 0x1b, 0x87, 0x12, 0xf1, 0x06, 0xf0, 0x87, 0x4c, 0x8f, + 0xbd, 0x07, 0x16, 0xed, 0x5a, 0x18, 0xd0, 0x42, 0x6e, 0x85, 0x01, 0x73, + 0x81, 0x1b, 0x3d, 0xed, 0x4a, 0x4c, 0x33, 0x70, 0x19, 0xa1, 0x5d, 0xe3, + 0x93, 0xc6, 0x91, 0x95, 0x29, 0x15, 0xbe, 0xa9, 0x3d, 0xc8, 0xd3, 0x13, + 0xc5, 0x85, 0x14, 0x29, 0x3f, 0x8e, 0x11, 0x88, 0x33, 0x16, 0x5b, 0x5a, + 0x4a, 0xea, 0xbc, 0xef, 0x37, 0x16, 0x61, 0x97, 0xb7, 0x07, 0xb0, 0x9f, + 0x31, 0x48, 0x59, 0x99, 0x0c, 0x2c, 0x32, 0x86, 0x28, 0x55, 0x7e, 0xb9, + 0xe2, 0x71, 0x4f, 0x4f, 0x56, 0x9e, 0x00, 0x8e, 0x04, 0xbe, 0xe6, 0xfd, + 0x96, 0x12, 0xf4, 0xc3, 0x8c, 0x8f, 0xfd, 0xc2, 0xdc, 0x4f, 0xbe, 0x85, + 0x01, 0x2b, 0xbc, 0x9a, 0xd9, 0xf1, 0xfe, 0x37, 0x61, 0x9e, 0x88, 0x94, + 0xa2, 0xfb, 0x09, 0x15, 0xc6, 0x97, 0x62, 0xab, 0xaf, 0x5c, 0xdc, 0x59, + 0xe1, 0x1b, 0x5a, 0x7f, 0xd6, 0xc6, 0xb1, 0x30, 0x40, 0xca, 0xcb, 0xf6, + 0xc0, 0x11, 0xc6, 0x10, 0xc5, 0x51, 0x4a, 0x92, 0x3a, 0xcb, 0x34, 0xe0, + 0x1e, 0x63, 0x88, 0x32, 0xc6, 0x08, 0xa4, 0xac, 0x2c, 0x00, 0xee, 0x33, + 0x86, 0x28, 0x55, 0x1e, 0xc7, 0x78, 0x97, 0xa7, 0x27, 0x0b, 0xb3, 0x80, + 0xcf, 0x13, 0x5e, 0xf4, 0x79, 0xd0, 0x38, 0x94, 0xa8, 0x7b, 0xa8, 0xee, + 0x8b, 0x76, 0x1d, 0xed, 0xe3, 0xc5, 0x96, 0x2d, 0x1f, 0x56, 0xac, 0x90, + 0x53, 0xc7, 0x80, 0x66, 0xe0, 0x4a, 0x4f, 0xb9, 0x12, 0xb7, 0x14, 0xb8, + 0x1c, 0x18, 0x42, 0x28, 0x10, 0x78, 0xdb, 0x48, 0x92, 0xf6, 0xfb, 0x8a, + 0xee, 0x97, 0x63, 0x04, 0xe2, 0xbc, 0x09, 0x3c, 0x6b, 0x0c, 0x52, 0x56, + 0xce, 0x27, 0xcc, 0x61, 0x56, 0x39, 0x4f, 0x02, 0x4f, 0x1b, 0x83, 0xa4, + 0x4e, 0xe4, 0x38, 0x81, 0x38, 0x23, 0x81, 0xee, 0xc6, 0x20, 0x65, 0xc5, + 0x62, 0xf7, 0x38, 0xfb, 0x01, 0xdb, 0x54, 0x74, 0xdf, 0x6e, 0xf6, 0xf4, + 0x24, 0x6d, 0x0e, 0x61, 0x6c, 0xc0, 0x2e, 0x84, 0xb7, 0xa9, 0x97, 0x1a, + 0x89, 0x12, 0x77, 0x55, 0xc6, 0xc7, 0x9e, 0x75, 0xd7, 0x00, 0x0b, 0x03, + 0x56, 0x98, 0x4e, 0x3e, 0x6f, 0xd0, 0x4f, 0x02, 0x5e, 0xf4, 0x94, 0x2b, + 0x13, 0x0b, 0x08, 0x05, 0x02, 0x3b, 0x01, 0xff, 0xe4, 0xb5, 0x9f, 0xa4, + 0xfb, 0x80, 0xe7, 0x2b, 0xb8, 0x5f, 0x1b, 0x00, 0x27, 0x7a, 0x7a, 0xa2, + 0x8c, 0x37, 0x02, 0x29, 0x3b, 0xe7, 0x19, 0x41, 0x14, 0x1f, 0xd0, 0x49, + 0xea, 0x6c, 0xe3, 0xb0, 0xfb, 0x60, 0x8c, 0x41, 0xc0, 0x27, 0x8c, 0x41, + 0xca, 0x8a, 0x85, 0x01, 0x71, 0x1a, 0x80, 0x61, 0x15, 0xdd, 0xb7, 0x67, + 0xf1, 0x0d, 0xf2, 0x14, 0xbd, 0x00, 0x7c, 0x16, 0xd8, 0x8e, 0x30, 0x36, + 0x60, 0x9e, 0x91, 0x28, 0x13, 0x37, 0x64, 0xfc, 0xb9, 0x7e, 0x34, 0xd0, + 0x33, 0xd7, 0x13, 0x6f, 0x61, 0xc0, 0x0a, 0xcd, 0xc0, 0xeb, 0x99, 0x1c, + 0xeb, 0x4f, 0x3d, 0xdd, 0xca, 0xd0, 0x02, 0xe0, 0x27, 0xc0, 0xee, 0xc0, + 0xa9, 0xc5, 0x0d, 0x9a, 0xf3, 0xa1, 0xd2, 0xf0, 0xad, 0x8a, 0xee, 0xd7, + 0x31, 0xc0, 0x46, 0x9e, 0x9e, 0x28, 0x2e, 0xa0, 0x48, 0x79, 0x39, 0x10, + 0xd8, 0xcb, 0x18, 0x4a, 0x6b, 0x02, 0xae, 0x37, 0x06, 0x49, 0x9d, 0x6c, + 0x1e, 0xf0, 0x27, 0x63, 0x88, 0x32, 0xda, 0x08, 0xa4, 0xac, 0x4c, 0x25, + 0x9f, 0xb5, 0xe6, 0xf6, 0x56, 0xe5, 0xee, 0x8b, 0xdf, 0xf6, 0xf4, 0x24, + 0x61, 0x19, 0xe1, 0xa5, 0x94, 0x46, 0x60, 0x4f, 0xc2, 0xf3, 0x92, 0x0f, + 0x8d, 0x45, 0x99, 0x79, 0x1f, 0xb8, 0x35, 0xd3, 0x63, 0x1f, 0x48, 0xc6, + 0x2f, 0xf4, 0x59, 0x18, 0xb0, 0xb2, 0x1c, 0xc6, 0x09, 0xbc, 0xe9, 0x4d, + 0xbc, 0x32, 0xd7, 0x54, 0xfc, 0xc0, 0x1b, 0x06, 0xec, 0x40, 0xa8, 0x04, + 0xf5, 0x46, 0xad, 0xbe, 0xee, 0xa4, 0xba, 0x0f, 0x91, 0x1d, 0x23, 0x10, + 0x67, 0x31, 0xce, 0xed, 0x93, 0x72, 0xe3, 0x83, 0x92, 0x38, 0x7f, 0x06, + 0xde, 0x32, 0x06, 0x49, 0x5d, 0xc0, 0x6e, 0x25, 0x71, 0xce, 0x04, 0xfa, + 0x19, 0x83, 0x94, 0x95, 0xdb, 0x8d, 0x20, 0xca, 0x50, 0x60, 0xc3, 0x8a, + 0xee, 0xdb, 0x6d, 0xc0, 0x5f, 0x3c, 0x45, 0xb5, 0xf5, 0x2a, 0xf0, 0xbf, + 0x08, 0x6b, 0xc2, 0xc3, 0x09, 0xcf, 0x49, 0x7c, 0x71, 0x4c, 0x39, 0xfb, + 0x4d, 0xc6, 0xc7, 0x7e, 0x41, 0xae, 0x07, 0x6e, 0x61, 0xc0, 0xca, 0x72, + 0x28, 0x0c, 0xf8, 0x39, 0xce, 0xc7, 0x91, 0x96, 0x7b, 0x93, 0x30, 0x3b, + 0x6a, 0x08, 0x70, 0x1c, 0x61, 0xae, 0xce, 0xbb, 0xc6, 0x52, 0x1b, 0x0b, + 0x80, 0xcf, 0x54, 0x78, 0xff, 0x2c, 0x0c, 0x88, 0x73, 0x2f, 0xf0, 0x81, + 0x31, 0x48, 0xd9, 0xe8, 0x8e, 0x63, 0x04, 0x62, 0xf9, 0x60, 0x4e, 0x52, + 0x57, 0x19, 0x4f, 0x98, 0xc3, 0xab, 0x72, 0xfa, 0x12, 0xba, 0xd7, 0x49, + 0xca, 0x87, 0xdd, 0xf0, 0xe2, 0xf4, 0x01, 0x8e, 0xad, 0xe8, 0xbe, 0x35, + 0x03, 0x17, 0xe3, 0xdb, 0xe5, 0x75, 0x32, 0x97, 0xf0, 0x4c, 0xe4, 0x18, + 0x60, 0x67, 0xe0, 0x1b, 0x58, 0x60, 0x2d, 0x2d, 0x37, 0x09, 0x98, 0x91, + 0xe9, 0xb1, 0x9f, 0x0a, 0x6c, 0x92, 0xe3, 0x81, 0x5b, 0x18, 0xb0, 0xb2, + 0x57, 0x13, 0x3f, 0xbe, 0x25, 0xc0, 0xaf, 0x3c, 0xcd, 0xd2, 0x6a, 0x9a, + 0x08, 0x6f, 0xdd, 0x5d, 0x0c, 0x6c, 0x05, 0x7c, 0x12, 0xb8, 0x0e, 0x8b, + 0x04, 0xaa, 0xac, 0x19, 0xf8, 0x7b, 0xe0, 0xe5, 0x8a, 0xee, 0xdf, 0x1e, + 0xc5, 0xcd, 0x86, 0xca, 0x73, 0xe1, 0x44, 0xca, 0xcb, 0xd0, 0xe2, 0x67, + 0xaf, 0xca, 0x59, 0x08, 0xfc, 0xce, 0x18, 0x24, 0x75, 0x91, 0xc5, 0xc0, + 0xcd, 0xc6, 0x10, 0xc5, 0x2e, 0x39, 0x52, 0x5e, 0x26, 0x03, 0x8b, 0x8c, + 0x21, 0x4a, 0x95, 0x5f, 0xb6, 0xf8, 0x1b, 0x70, 0x91, 0xa7, 0xa8, 0xd2, + 0xe6, 0x12, 0x0a, 0xa9, 0x4f, 0x05, 0x06, 0x11, 0x5e, 0x2c, 0xba, 0x07, + 0xbb, 0x03, 0x48, 0xab, 0x5a, 0x4a, 0x78, 0x0e, 0x92, 0xa3, 0xde, 0xc0, + 0x39, 0x39, 0x1e, 0xb8, 0x85, 0x01, 0x2b, 0x7b, 0x39, 0xf1, 0xe3, 0xfb, + 0x3d, 0x30, 0xdd, 0xd3, 0x2c, 0xad, 0xd3, 0x62, 0xe0, 0x16, 0xc2, 0x82, + 0xcd, 0x40, 0xe0, 0x78, 0xe0, 0xfb, 0xc0, 0x4b, 0x46, 0x53, 0x29, 0x5f, + 0x06, 0xc6, 0x55, 0x78, 0xff, 0x1a, 0x3d, 0x45, 0xd1, 0x2c, 0x0c, 0x90, + 0xf2, 0xe2, 0x03, 0x92, 0x38, 0xb7, 0x02, 0xef, 0x19, 0x83, 0xa4, 0x2e, + 0x64, 0xd7, 0x92, 0x38, 0x27, 0x02, 0x5b, 0x1a, 0x83, 0x94, 0x8d, 0xf9, + 0xc0, 0x7d, 0xc6, 0x10, 0x65, 0x04, 0xd0, 0x50, 0xe1, 0xfd, 0xbb, 0x0e, + 0xf8, 0x77, 0x4f, 0x53, 0xa5, 0xbc, 0x08, 0x7c, 0x8f, 0xd0, 0x15, 0x76, + 0x4b, 0x60, 0x4c, 0x71, 0xdf, 0xb4, 0xd8, 0x68, 0xa4, 0x75, 0xca, 0x79, + 0x9c, 0x40, 0x96, 0xdd, 0xbc, 0x2c, 0x0c, 0x58, 0x59, 0xea, 0x1d, 0x03, + 0x7e, 0xe2, 0x29, 0x96, 0x4a, 0x59, 0x0a, 0xdc, 0x0d, 0xfc, 0x4f, 0x60, + 0x17, 0xc2, 0x5b, 0xe0, 0x5f, 0x02, 0xfe, 0x0a, 0x2c, 0x33, 0x9e, 0x2e, + 0xd1, 0x0c, 0x7c, 0x05, 0xf8, 0xbf, 0x15, 0xdf, 0x4f, 0x0b, 0x03, 0xe2, + 0xbc, 0x09, 0x4c, 0x35, 0x06, 0x29, 0x1b, 0x7d, 0x81, 0xd3, 0x8c, 0x21, + 0x8a, 0x0f, 0xe4, 0x24, 0x75, 0xb5, 0x7b, 0x49, 0x7f, 0x0d, 0xa5, 0x23, + 0xf4, 0x00, 0xce, 0x35, 0x06, 0x29, 0x2b, 0x16, 0xbf, 0xc7, 0xd9, 0x16, + 0xd8, 0xa7, 0xe2, 0xfb, 0xf8, 0x2d, 0x42, 0x71, 0x40, 0xb3, 0xa7, 0xab, + 0x4b, 0x2c, 0x23, 0xac, 0xd1, 0xfe, 0x2b, 0xb0, 0x3b, 0xb0, 0x2b, 0xf0, + 0x45, 0x42, 0x57, 0x58, 0x47, 0x29, 0x4b, 0xad, 0xf7, 0x34, 0xf0, 0x78, + 0xa6, 0xc7, 0x7e, 0x08, 0xd5, 0x2e, 0x42, 0xeb, 0x10, 0x16, 0x06, 0xac, + 0xec, 0x95, 0x84, 0x8f, 0xed, 0x39, 0x42, 0xbb, 0x1c, 0x49, 0xf1, 0x9e, + 0x27, 0x3c, 0x90, 0x3e, 0x9a, 0xd0, 0xf6, 0xf8, 0x42, 0xc2, 0xc2, 0xfc, + 0x34, 0xa3, 0xe9, 0x14, 0xf3, 0x81, 0x91, 0xc0, 0x77, 0x2a, 0xbe, 0x9f, + 0x9b, 0x00, 0x87, 0x7b, 0xba, 0xa2, 0x8c, 0x37, 0x02, 0x29, 0x2b, 0xa7, + 0x03, 0xfd, 0x8c, 0xa1, 0xb4, 0xb9, 0xc0, 0x44, 0x63, 0x90, 0xd4, 0xc5, + 0x9a, 0x81, 0xeb, 0x8d, 0x21, 0x8a, 0xdd, 0x72, 0xa4, 0xbc, 0x58, 0x18, + 0x10, 0x6f, 0x44, 0x0d, 0xf6, 0xf1, 0x5b, 0xc0, 0xf9, 0xc0, 0x87, 0x9e, + 0xae, 0x4e, 0x31, 0x0d, 0xb8, 0x16, 0xb8, 0x80, 0xd0, 0x15, 0xe0, 0x68, + 0xe0, 0xbb, 0xc0, 0x0b, 0x46, 0x23, 0xb5, 0x49, 0xae, 0x5d, 0x03, 0x36, + 0x03, 0x76, 0xca, 0xed, 0xa0, 0x2d, 0x0c, 0x58, 0xd9, 0x7c, 0x60, 0x56, + 0xa2, 0xc7, 0xf6, 0x63, 0xac, 0x5e, 0x94, 0xda, 0xd3, 0x3b, 0xc0, 0xd5, + 0x84, 0xb6, 0x54, 0xdb, 0x10, 0xaa, 0x52, 0x2f, 0x2a, 0x3e, 0x9c, 0x5a, + 0x28, 0xd0, 0xfe, 0x1e, 0x06, 0x0e, 0x00, 0x6e, 0xac, 0xc1, 0xbe, 0x9e, + 0x42, 0x78, 0x13, 0x48, 0xe5, 0xb9, 0x60, 0x22, 0xe5, 0xc5, 0x07, 0x23, + 0x71, 0x6e, 0xc2, 0x59, 0xb5, 0x92, 0xaa, 0xe1, 0x5a, 0x23, 0x88, 0x72, + 0x30, 0xb0, 0x9b, 0x31, 0x48, 0xd9, 0x98, 0x0a, 0xbc, 0x6e, 0x0c, 0x51, + 0x86, 0xd7, 0x64, 0x3f, 0xc7, 0x02, 0x07, 0x02, 0x53, 0x3c, 0x65, 0xed, + 0xee, 0xad, 0xe2, 0xf3, 0xc6, 0xa7, 0x09, 0xdd, 0x5c, 0xb7, 0x21, 0x14, + 0x62, 0x5c, 0x03, 0xcc, 0x31, 0x1e, 0xa9, 0xdd, 0x5c, 0x07, 0x2c, 0xc9, + 0xf4, 0xd8, 0x0f, 0xcd, 0xed, 0x80, 0x2d, 0x0c, 0x58, 0x5d, 0x8a, 0x5d, + 0x03, 0xe6, 0x7b, 0xc3, 0x2e, 0x75, 0xb8, 0x17, 0x81, 0x5f, 0x14, 0x1f, + 0x4e, 0xb7, 0x01, 0xb6, 0x06, 0xce, 0x01, 0x7e, 0x0e, 0xbc, 0x66, 0x3c, + 0xd1, 0xa6, 0x03, 0x9f, 0x21, 0xbc, 0x81, 0xff, 0x37, 0x6f, 0x5c, 0x93, + 0xb6, 0x18, 0xb8, 0xcb, 0x18, 0xa4, 0x6c, 0x0c, 0x04, 0x4e, 0x30, 0x86, + 0x28, 0x8e, 0x11, 0x90, 0x54, 0x15, 0xcf, 0x91, 0x6f, 0xdb, 0xd1, 0xb6, + 0x1a, 0x65, 0x04, 0x52, 0x56, 0x6e, 0x37, 0x82, 0x28, 0x87, 0x10, 0xde, + 0x0a, 0xaf, 0xcb, 0xcf, 0xc4, 0x83, 0x09, 0xdd, 0x45, 0x67, 0x78, 0xea, + 0xa2, 0xcd, 0x04, 0xc6, 0x11, 0xd6, 0x02, 0xf7, 0x26, 0x8c, 0x94, 0x38, + 0x1f, 0xf8, 0x25, 0xf0, 0x92, 0xf1, 0x48, 0x1d, 0x66, 0x36, 0xf9, 0xbe, + 0xb0, 0x75, 0x48, 0x6e, 0x07, 0x6c, 0x61, 0xc0, 0xea, 0x52, 0x2c, 0x0c, + 0xb8, 0x16, 0x78, 0xdf, 0x53, 0x2b, 0x75, 0xaa, 0xe9, 0x2d, 0x3e, 0xc8, + 0xee, 0x08, 0xec, 0x5c, 0x7c, 0x90, 0xfd, 0x01, 0x61, 0xfe, 0xd5, 0x7c, + 0x23, 0x5a, 0xa7, 0x77, 0x81, 0x6f, 0x10, 0x3a, 0x31, 0xfc, 0x9c, 0x30, + 0x37, 0xac, 0x0e, 0xba, 0x03, 0x27, 0x79, 0xfa, 0xa2, 0xdc, 0x0b, 0x7c, + 0x60, 0x0c, 0x52, 0x36, 0x46, 0x61, 0x77, 0x95, 0x18, 0xaf, 0x03, 0xf7, + 0x19, 0x83, 0xa4, 0x0a, 0xb1, 0x58, 0x29, 0xce, 0x68, 0x32, 0x9c, 0x67, + 0x2a, 0x65, 0xcc, 0xee, 0x78, 0x71, 0xba, 0x01, 0x27, 0xd7, 0x68, 0x7f, + 0x9b, 0x08, 0xdd, 0x45, 0x77, 0x25, 0x8c, 0x18, 0x78, 0xcf, 0x53, 0xb8, + 0x4e, 0x1f, 0x10, 0x46, 0x1f, 0xff, 0x17, 0xa1, 0x23, 0xeb, 0xce, 0xc0, + 0x20, 0x56, 0xbc, 0x68, 0x35, 0xd5, 0x88, 0xa4, 0x4e, 0x95, 0xeb, 0x38, + 0x81, 0xec, 0x0a, 0x03, 0x5c, 0x8c, 0x5b, 0x5d, 0x8a, 0x85, 0x01, 0x57, + 0x79, 0x5a, 0xa5, 0x2e, 0xf7, 0x72, 0xb1, 0xb5, 0xec, 0xde, 0x31, 0x98, + 0xd0, 0x1e, 0x7f, 0xf9, 0x76, 0x38, 0xb0, 0x69, 0xe6, 0x39, 0x4d, 0x29, + 0x3e, 0xfc, 0x8f, 0x05, 0x16, 0xd4, 0x70, 0xff, 0x8f, 0x20, 0xcc, 0x26, + 0x52, 0x79, 0x2e, 0x94, 0x48, 0x79, 0x71, 0x8c, 0x40, 0x9c, 0x6b, 0x71, + 0x3c, 0x98, 0xa4, 0x6a, 0xb9, 0x0e, 0xb8, 0x8c, 0x50, 0x20, 0xab, 0xd6, + 0xdb, 0x09, 0x38, 0x0c, 0xb8, 0xdf, 0x28, 0xa4, 0x2c, 0x4c, 0x26, 0x8c, + 0x82, 0xea, 0x65, 0x14, 0xa5, 0x0d, 0xa7, 0x7e, 0x0f, 0xab, 0xe6, 0x03, + 0xff, 0x0e, 0x7c, 0x13, 0x18, 0x01, 0x5c, 0x4a, 0x58, 0xf3, 0xcb, 0xd9, + 0x7c, 0xe0, 0x49, 0xc2, 0xba, 0xdf, 0xf2, 0xed, 0x39, 0x42, 0x31, 0x85, + 0xa4, 0x6a, 0xb8, 0x8d, 0x30, 0x3e, 0x79, 0xf3, 0xcc, 0x8e, 0x7b, 0x5f, + 0xa0, 0x0f, 0xf0, 0x51, 0x2e, 0x07, 0x6c, 0x61, 0xc0, 0xea, 0x52, 0x2b, + 0x0c, 0xf8, 0x15, 0xf0, 0x98, 0xa7, 0x55, 0xaa, 0xa4, 0xe9, 0xc5, 0x76, + 0x6b, 0xf1, 0xfb, 0x6e, 0x84, 0x59, 0x93, 0x07, 0x00, 0xfb, 0x13, 0x5a, + 0x66, 0xed, 0x41, 0x18, 0x4d, 0x90, 0xb2, 0xa9, 0xc5, 0x07, 0x8f, 0x71, + 0xd4, 0x7f, 0x1e, 0x9b, 0x63, 0x04, 0xe2, 0x59, 0x18, 0x20, 0xe5, 0x63, + 0x17, 0xc2, 0x0c, 0x4e, 0x95, 0x77, 0xbd, 0x11, 0x48, 0xaa, 0x98, 0x19, + 0xc0, 0xdd, 0x38, 0x1e, 0x26, 0xc6, 0x68, 0x2c, 0x0c, 0x90, 0x72, 0x31, + 0xbf, 0xf8, 0xfb, 0x7e, 0x9c, 0x51, 0x94, 0x76, 0x12, 0xb0, 0x01, 0x61, + 0xfc, 0x60, 0xdd, 0x2c, 0x24, 0xac, 0x75, 0x8d, 0x03, 0x0e, 0x02, 0xce, + 0x02, 0x1a, 0x81, 0x3d, 0x13, 0x3f, 0x67, 0x6f, 0x12, 0x1e, 0xfa, 0x4f, + 0x25, 0x3c, 0x97, 0x98, 0x02, 0xbc, 0x80, 0x45, 0x00, 0x52, 0xd5, 0x2d, + 0x06, 0x6e, 0x00, 0x3e, 0x97, 0xd9, 0x71, 0xf7, 0x24, 0x14, 0x07, 0x3c, + 0x90, 0xcb, 0x01, 0x5b, 0x18, 0xb0, 0xba, 0x94, 0x0a, 0x03, 0xe6, 0x03, + 0x5f, 0xf5, 0x94, 0x4a, 0xb5, 0xd1, 0x54, 0x7c, 0x70, 0x7e, 0x8e, 0x95, + 0x3b, 0x0b, 0xf4, 0x07, 0x76, 0x07, 0xf6, 0x22, 0x14, 0x0a, 0xec, 0x4c, + 0x78, 0xc3, 0x64, 0x67, 0x60, 0xc3, 0x1a, 0x1e, 0xe7, 0x74, 0xe0, 0x11, + 0xc2, 0x3c, 0xf9, 0x5b, 0x81, 0x57, 0x13, 0x3a, 0x87, 0x8d, 0x5e, 0xc6, + 0x51, 0xde, 0xc2, 0x16, 0x71, 0x52, 0x4e, 0x2e, 0x30, 0x82, 0x28, 0x53, + 0xfc, 0x5e, 0x29, 0xa9, 0xa2, 0xc6, 0x62, 0x61, 0x40, 0x8c, 0xf3, 0x80, + 0x7f, 0xa1, 0x9e, 0x0f, 0xbb, 0x24, 0x95, 0x37, 0x01, 0x0b, 0x03, 0x62, + 0xf4, 0x07, 0x8e, 0x02, 0xee, 0xac, 0xf9, 0x71, 0x3c, 0x52, 0x6c, 0x5f, + 0x02, 0x86, 0x10, 0x3a, 0x09, 0x1c, 0x47, 0x28, 0x18, 0x18, 0x5c, 0xc3, + 0xe3, 0x59, 0x40, 0xe8, 0x8c, 0xfa, 0x52, 0xb1, 0x3d, 0x5f, 0xdc, 0xab, + 0x3c, 0x0f, 0xcc, 0xf3, 0xb2, 0x95, 0x6a, 0xeb, 0x37, 0xe4, 0x57, 0x18, + 0x00, 0xb0, 0x1d, 0x16, 0x06, 0x64, 0x2d, 0xa5, 0x07, 0x54, 0xdf, 0x07, + 0xde, 0xf6, 0x94, 0x4a, 0xb5, 0x37, 0x0f, 0x78, 0xb8, 0xd8, 0x56, 0x35, + 0x98, 0x50, 0x24, 0x30, 0x04, 0xd8, 0x1e, 0xd8, 0xba, 0xd8, 0xb6, 0x2b, + 0xfe, 0x59, 0x57, 0xb6, 0xb5, 0x9f, 0xcf, 0x8a, 0x11, 0x0a, 0xcf, 0xb5, + 0xb8, 0x09, 0x9a, 0x9e, 0xe8, 0x79, 0xda, 0x91, 0xf4, 0xab, 0xbe, 0x3b, + 0xca, 0x78, 0x23, 0x90, 0xb2, 0xd1, 0x00, 0x8c, 0x32, 0x86, 0x28, 0xce, + 0xf1, 0x96, 0x54, 0x55, 0xbf, 0x05, 0x7e, 0x4c, 0x3d, 0x8b, 0x96, 0xbb, + 0xd2, 0xa6, 0x84, 0xd9, 0xd9, 0xb7, 0x18, 0x85, 0x94, 0x85, 0x09, 0xc0, + 0xff, 0x35, 0x86, 0x28, 0xc3, 0xa9, 0x7f, 0x61, 0x40, 0x4b, 0xaf, 0x00, + 0x97, 0x17, 0x1b, 0x84, 0x75, 0xbc, 0x83, 0x8a, 0x6d, 0x77, 0x56, 0xbc, + 0x0c, 0xd4, 0xb7, 0x0b, 0xf7, 0x71, 0x0e, 0x30, 0x8d, 0xf0, 0xf6, 0xff, + 0xb4, 0x62, 0x7b, 0xbd, 0xd8, 0xf7, 0x97, 0x08, 0x1d, 0x83, 0x24, 0xa5, + 0xe7, 0x51, 0xe0, 0x19, 0x42, 0x27, 0xe3, 0x5c, 0xbc, 0x47, 0xe8, 0x66, + 0x9c, 0x0d, 0x0b, 0x03, 0x56, 0xf7, 0x16, 0x69, 0xcc, 0x7c, 0x9a, 0x03, + 0x7c, 0xcf, 0xd3, 0x29, 0x25, 0x6f, 0xf9, 0x38, 0x82, 0xbf, 0xae, 0xe5, + 0x9f, 0xf7, 0x01, 0xb6, 0x00, 0x06, 0x16, 0xbf, 0x6e, 0x4e, 0x28, 0x16, + 0xd8, 0x1c, 0x18, 0x40, 0x58, 0xbc, 0xdb, 0x88, 0x50, 0x81, 0xdd, 0xb7, + 0xf8, 0xf7, 0x01, 0xfa, 0x11, 0xda, 0xe8, 0xb4, 0xb4, 0x84, 0xf0, 0xb0, + 0x7f, 0x19, 0xa1, 0x58, 0xa1, 0x89, 0x30, 0x77, 0x68, 0xf9, 0x36, 0x07, + 0x98, 0x55, 0xec, 0xcf, 0xcb, 0xe4, 0x57, 0x98, 0x34, 0xc2, 0xcb, 0x31, + 0x9a, 0x63, 0x04, 0xa4, 0x7c, 0x1c, 0x41, 0x28, 0x66, 0x53, 0x39, 0x4d, + 0xc0, 0x4d, 0xc6, 0x20, 0xa9, 0xa2, 0x3e, 0x20, 0x74, 0x02, 0x3b, 0xd7, + 0x28, 0x4a, 0x1b, 0x8d, 0x85, 0x01, 0x52, 0x2e, 0x9e, 0x01, 0xde, 0x20, + 0xbc, 0xc8, 0xa1, 0x72, 0x4e, 0x05, 0xbe, 0x90, 0xf0, 0xf1, 0x2d, 0x7f, + 0xf0, 0xfe, 0x87, 0x55, 0xfe, 0x7c, 0x2b, 0x42, 0x91, 0xc0, 0x20, 0xc2, + 0xba, 0x5e, 0xcb, 0x35, 0xbd, 0xcd, 0x09, 0x23, 0x49, 0xfb, 0x03, 0xdd, + 0x59, 0xf3, 0x3a, 0xde, 0x62, 0xc2, 0x9b, 0xfd, 0x00, 0x1f, 0x16, 0xdb, + 0xbc, 0xe2, 0xe7, 0xf6, 0x87, 0xc0, 0xfb, 0xac, 0xbc, 0xae, 0x37, 0xbb, + 0xc5, 0xf6, 0x91, 0x97, 0x9d, 0x94, 0xad, 0x6b, 0x81, 0xef, 0x64, 0x74, + 0xbc, 0x57, 0xb5, 0xf8, 0x5e, 0x99, 0x05, 0x0b, 0x03, 0x56, 0xd7, 0x44, + 0xa8, 0x7e, 0xdb, 0xb5, 0xe6, 0xc7, 0xf1, 0x1f, 0xd8, 0xb6, 0x47, 0x52, + 0xf8, 0x20, 0xff, 0x46, 0xb1, 0xa9, 0x63, 0x0d, 0x37, 0x82, 0x28, 0x4b, + 0x08, 0x73, 0x69, 0x25, 0xe5, 0x61, 0xb4, 0x11, 0x44, 0x99, 0x4c, 0x58, + 0x2c, 0x94, 0xa4, 0xaa, 0x1a, 0x8b, 0x85, 0x01, 0x31, 0x4e, 0x05, 0x36, + 0x26, 0xbc, 0xa9, 0x24, 0x29, 0x7d, 0xb7, 0x03, 0x17, 0x19, 0x43, 0x69, + 0x3b, 0x01, 0xbb, 0x11, 0xe6, 0xd4, 0xe7, 0x64, 0x66, 0xb1, 0x49, 0x52, + 0x67, 0xba, 0x06, 0xf8, 0x16, 0xa1, 0xe8, 0x28, 0x75, 0xcb, 0x80, 0x9f, + 0xe6, 0x76, 0x82, 0xbb, 0x79, 0x8d, 0xaf, 0xd1, 0x4b, 0x35, 0xdf, 0xff, + 0xb7, 0x80, 0x9f, 0x78, 0x1a, 0x25, 0xa9, 0xd3, 0xf4, 0x03, 0x8e, 0x31, + 0x86, 0x28, 0xf7, 0x12, 0xaa, 0xd4, 0x25, 0xa5, 0x6f, 0x03, 0xe0, 0x6c, + 0x63, 0x88, 0xe2, 0x18, 0x01, 0x49, 0x55, 0x37, 0x91, 0xf0, 0xb6, 0xa1, + 0xca, 0xe9, 0x0d, 0x9c, 0x61, 0x0c, 0x52, 0x36, 0xec, 0x96, 0x17, 0xaf, + 0xd1, 0x08, 0x24, 0xa9, 0x53, 0x4c, 0x27, 0xbc, 0x9c, 0x90, 0x83, 0x3f, + 0x92, 0xd6, 0x78, 0xf9, 0x56, 0xb1, 0x30, 0x60, 0xcd, 0xc6, 0x10, 0x5a, + 0x65, 0x7c, 0x58, 0xc3, 0x7d, 0x7f, 0x1f, 0xb8, 0x14, 0xdb, 0xfd, 0x48, + 0x52, 0x67, 0x3a, 0x91, 0xfa, 0x8f, 0xa0, 0xe9, 0x2a, 0x2e, 0x8c, 0x48, + 0xf9, 0x18, 0x46, 0x68, 0x7d, 0xa9, 0x72, 0x3e, 0x2a, 0x6e, 0x56, 0x25, + 0xa9, 0xca, 0x96, 0xe0, 0xc8, 0x93, 0x58, 0x76, 0xd3, 0x91, 0xf2, 0x31, + 0x99, 0xd0, 0xde, 0x5d, 0xe5, 0xd9, 0xa5, 0x51, 0x92, 0x3a, 0xcf, 0x6f, + 0x32, 0x39, 0xce, 0x2b, 0x72, 0x3c, 0xb9, 0x16, 0x06, 0xac, 0xd9, 0xbb, + 0xc0, 0x57, 0x80, 0x1d, 0x80, 0xcb, 0x80, 0x45, 0x35, 0xd8, 0xe7, 0x0f, + 0x8a, 0x7d, 0xdd, 0x11, 0xf8, 0xad, 0xa7, 0x50, 0x92, 0xbc, 0x41, 0xad, + 0x09, 0x0b, 0x03, 0xa4, 0x7c, 0xf8, 0xe0, 0x23, 0xce, 0x1f, 0xb1, 0xb3, + 0x8a, 0xa4, 0x7a, 0xb0, 0xbb, 0x49, 0x9c, 0x63, 0x81, 0x6d, 0x8d, 0x41, + 0xca, 0xc2, 0x07, 0xc0, 0xfd, 0xc6, 0x10, 0xe5, 0x28, 0xc2, 0xe8, 0x15, + 0x49, 0x52, 0xc7, 0xfb, 0x03, 0xe9, 0x8f, 0xba, 0x7a, 0x02, 0xf8, 0x4b, + 0x8e, 0x27, 0xd7, 0xc2, 0x80, 0x75, 0x9b, 0x0d, 0x7c, 0x99, 0x30, 0xc3, + 0xe8, 0xe7, 0x84, 0x79, 0x13, 0x55, 0x33, 0x8f, 0x50, 0x10, 0xb0, 0x7d, + 0xb1, 0xaf, 0xef, 0x7a, 0xda, 0x24, 0xa9, 0xd3, 0x7f, 0x96, 0x0e, 0x33, + 0x86, 0x28, 0x6f, 0x01, 0x53, 0x8d, 0x41, 0xca, 0x42, 0x7f, 0x2c, 0xa2, + 0x8a, 0xe5, 0x83, 0x36, 0x49, 0x75, 0x71, 0x3f, 0xf0, 0xa2, 0x31, 0x44, + 0xdd, 0x4f, 0x8c, 0x34, 0x06, 0x29, 0x1b, 0x16, 0xc7, 0xc7, 0xe9, 0x01, + 0x9c, 0x64, 0x0c, 0x92, 0xd4, 0x29, 0x3e, 0x22, 0xfd, 0x17, 0x90, 0x2f, + 0xcf, 0xf9, 0xe6, 0x43, 0xeb, 0xf7, 0x3a, 0xf0, 0x19, 0xe0, 0xe3, 0xc0, + 0xb8, 0x8a, 0xec, 0xd3, 0x1c, 0xe0, 0xeb, 0x58, 0x10, 0x20, 0x49, 0x5d, + 0xed, 0x40, 0x60, 0x2b, 0x63, 0x88, 0x32, 0x01, 0x68, 0x36, 0x06, 0x29, + 0x0b, 0xe7, 0x00, 0x7d, 0x8c, 0xa1, 0xb4, 0xd9, 0xc0, 0xed, 0xc6, 0x20, + 0xa9, 0x46, 0x6e, 0x30, 0x82, 0x28, 0x17, 0x18, 0x81, 0x94, 0xd5, 0x7d, + 0xb0, 0xe2, 0x58, 0x68, 0x2c, 0x49, 0x9d, 0x27, 0xe5, 0x71, 0x02, 0xb3, + 0x73, 0xbe, 0x6f, 0xb1, 0x30, 0xa0, 0x9c, 0xa9, 0x84, 0x45, 0xcd, 0x23, + 0x80, 0x7b, 0xba, 0x68, 0x1f, 0x96, 0x17, 0x04, 0xec, 0x04, 0x7c, 0x8d, + 0xf4, 0xdb, 0x79, 0x48, 0x92, 0x37, 0xa6, 0xe9, 0x72, 0x41, 0x44, 0xca, + 0x87, 0x63, 0x04, 0xe2, 0xdc, 0x44, 0x98, 0xdb, 0x2d, 0x49, 0x75, 0x71, + 0x8d, 0x11, 0x44, 0xd9, 0x0b, 0xf8, 0x98, 0x31, 0x48, 0x59, 0x78, 0x1a, + 0x78, 0xc3, 0x18, 0xa2, 0x0c, 0x07, 0xba, 0x1b, 0x83, 0x24, 0x75, 0x8a, + 0x7b, 0x81, 0x97, 0x13, 0x3d, 0xb6, 0x2b, 0x81, 0x85, 0xb9, 0x9e, 0x58, + 0x0b, 0x03, 0xe2, 0xdc, 0x0f, 0x1c, 0x03, 0x0c, 0x05, 0x9e, 0xec, 0xa4, + 0xff, 0xe7, 0x3b, 0xac, 0x5c, 0x10, 0xe0, 0x9c, 0x51, 0x49, 0xaa, 0x86, + 0x46, 0x23, 0x88, 0xb2, 0x04, 0xb8, 0xcb, 0x18, 0xa4, 0x2c, 0x6c, 0x0b, + 0x1c, 0x6d, 0x0c, 0x51, 0x1c, 0x23, 0x20, 0xa9, 0x6e, 0x5e, 0x04, 0x1e, + 0x35, 0x86, 0x28, 0x16, 0xd1, 0x49, 0xf9, 0x98, 0x64, 0x04, 0x51, 0x36, + 0x05, 0x0e, 0x35, 0x06, 0x49, 0xea, 0x14, 0xcd, 0xa4, 0x59, 0xf4, 0xbb, + 0x04, 0xf8, 0x59, 0xce, 0x27, 0xd6, 0xc2, 0x80, 0xb6, 0x99, 0x0c, 0xec, + 0x4f, 0xe8, 0x22, 0xd0, 0x51, 0x95, 0x33, 0xb3, 0xb1, 0x20, 0x40, 0x92, + 0xaa, 0x6a, 0x30, 0xb0, 0x9f, 0x31, 0x44, 0xb9, 0xd7, 0x9f, 0x69, 0x52, + 0x36, 0x46, 0x7b, 0xdf, 0x11, 0xe5, 0x65, 0xe0, 0x41, 0x63, 0x90, 0x54, + 0x43, 0x16, 0x35, 0xc5, 0x19, 0x83, 0x6f, 0xc2, 0x4a, 0xb9, 0xb0, 0x7b, + 0x5e, 0x3c, 0xbb, 0x36, 0x4a, 0x52, 0xe7, 0xf9, 0x6f, 0xa0, 0x29, 0xb1, + 0x63, 0xba, 0x09, 0x98, 0x96, 0xf3, 0x49, 0x75, 0x81, 0xae, 0xed, 0x9a, + 0x80, 0x71, 0x84, 0xb6, 0x6f, 0x97, 0x12, 0x1e, 0xe4, 0xb7, 0x87, 0x99, + 0xc0, 0x17, 0x80, 0x1d, 0x08, 0x05, 0x01, 0xf3, 0x8c, 0x5a, 0x92, 0x2a, + 0xa7, 0x11, 0x68, 0x30, 0x86, 0x28, 0x2e, 0x84, 0x48, 0xf9, 0x18, 0x65, + 0x04, 0x51, 0xc6, 0x12, 0x2a, 0xf4, 0x25, 0xa9, 0x6e, 0xae, 0x03, 0x96, + 0x1a, 0x43, 0x69, 0x83, 0x09, 0xdd, 0x29, 0x25, 0xa5, 0xef, 0x0e, 0x60, + 0xb1, 0x31, 0x44, 0xb1, 0x6b, 0xa3, 0x24, 0x75, 0x9e, 0xd7, 0x81, 0xdb, + 0x13, 0x3b, 0xa6, 0x1f, 0xe6, 0x7e, 0x52, 0x2d, 0x0c, 0x68, 0x3f, 0x8b, + 0x80, 0xcb, 0x81, 0x1d, 0x81, 0x2f, 0x13, 0xff, 0x16, 0xe4, 0xac, 0xe2, + 0xbf, 0xdf, 0x09, 0xf8, 0x2f, 0xe0, 0x43, 0xa3, 0x95, 0xa4, 0xca, 0xb2, + 0x52, 0x3d, 0x9e, 0x85, 0x01, 0x52, 0x1e, 0xf6, 0x05, 0xf6, 0x31, 0x86, + 0x28, 0xd7, 0x19, 0x81, 0xa4, 0x9a, 0x9a, 0x05, 0xdc, 0x69, 0x0c, 0x51, + 0x1c, 0x27, 0x20, 0xe5, 0xe1, 0x03, 0xc2, 0xa8, 0x5a, 0x95, 0xb7, 0x0f, + 0xe1, 0x45, 0x3a, 0x49, 0x52, 0xe7, 0x38, 0x87, 0x74, 0x8a, 0x03, 0x1e, + 0x04, 0x1e, 0xca, 0xfd, 0x84, 0x5a, 0x18, 0xd0, 0xfe, 0x16, 0x00, 0x97, + 0x11, 0x1e, 0xec, 0x5f, 0x06, 0x2c, 0x2c, 0x71, 0xe3, 0xfc, 0xe5, 0xe2, + 0x83, 0xcd, 0x65, 0x58, 0x10, 0x20, 0x49, 0x55, 0xd7, 0x1b, 0xf8, 0x84, + 0x31, 0x44, 0x79, 0x0b, 0x98, 0x6a, 0x0c, 0x52, 0x16, 0x7c, 0xc0, 0x11, + 0xe7, 0x61, 0xe0, 0x05, 0x63, 0x90, 0x54, 0x63, 0x8e, 0x13, 0x88, 0x73, + 0x16, 0xd0, 0xc7, 0x18, 0xa4, 0x2c, 0x58, 0x2c, 0x1f, 0xcf, 0x97, 0x34, + 0x24, 0xa9, 0xf3, 0xcc, 0x07, 0x4e, 0x05, 0x6e, 0x4c, 0xe0, 0x58, 0x2e, + 0xf7, 0x74, 0x5a, 0x18, 0xd0, 0x91, 0xe6, 0x10, 0x1e, 0xf4, 0xef, 0x0a, + 0xfc, 0x9c, 0xb5, 0xb7, 0xd1, 0x7b, 0x93, 0x30, 0x82, 0x60, 0x07, 0x42, + 0x41, 0xc0, 0x47, 0x46, 0x27, 0x49, 0xb5, 0x70, 0x3c, 0xd0, 0xd7, 0x18, + 0xa2, 0x4c, 0xc0, 0xf6, 0xd8, 0x52, 0x2e, 0xf7, 0x1a, 0xe7, 0x19, 0x43, + 0x14, 0x1f, 0xa8, 0x49, 0xaa, 0xbb, 0xdf, 0x11, 0x16, 0x11, 0x55, 0x4e, + 0x7f, 0x60, 0x84, 0x31, 0x48, 0xd9, 0xdc, 0x17, 0x2b, 0x8e, 0x85, 0x01, + 0x92, 0xd4, 0xb9, 0x16, 0x03, 0x23, 0x09, 0x5d, 0xce, 0xeb, 0x6a, 0x3a, + 0xf0, 0x5b, 0x4f, 0xa5, 0x85, 0x01, 0x9d, 0xe1, 0x4d, 0xe0, 0x33, 0x84, + 0x36, 0x47, 0xe3, 0x58, 0xf1, 0x20, 0xe4, 0x0d, 0x42, 0x41, 0xc0, 0xae, + 0x84, 0x2a, 0x15, 0x0b, 0x02, 0x24, 0xc9, 0x1b, 0xd1, 0x5c, 0xb8, 0x00, + 0x22, 0xe5, 0xe1, 0x78, 0x60, 0x1b, 0x63, 0x28, 0x6d, 0x29, 0x70, 0x93, + 0x31, 0x48, 0xaa, 0xb9, 0x05, 0xc0, 0x2d, 0xc6, 0x10, 0xc5, 0x6e, 0x3b, + 0x52, 0x1e, 0x9e, 0x26, 0xac, 0x0f, 0x2b, 0xee, 0x3e, 0xa3, 0x9f, 0x31, + 0x48, 0x52, 0xa7, 0x6a, 0x06, 0xbe, 0x40, 0x78, 0x21, 0xba, 0x8e, 0x7e, + 0x02, 0x2c, 0xf1, 0x34, 0x5a, 0x18, 0xd0, 0x99, 0x9e, 0x27, 0xcc, 0xe2, + 0x38, 0x1c, 0xf8, 0x14, 0xb0, 0x0b, 0xa1, 0x20, 0x60, 0xa1, 0xd1, 0x48, + 0x52, 0x2d, 0x0d, 0x33, 0x82, 0x28, 0x4b, 0x80, 0xbb, 0x8c, 0x41, 0xca, + 0x82, 0x0f, 0x36, 0xe2, 0xdc, 0x01, 0xcc, 0x34, 0x06, 0x49, 0x09, 0xb0, + 0xfb, 0x49, 0x9c, 0x53, 0x80, 0xcd, 0x8d, 0x41, 0xca, 0xc2, 0x24, 0x23, + 0x88, 0xd2, 0x0b, 0x47, 0x3b, 0x4a, 0x52, 0x57, 0xb9, 0x0c, 0xb8, 0x04, + 0x58, 0x56, 0xa3, 0x7d, 0x5e, 0x48, 0xe8, 0xec, 0x2e, 0x2c, 0x0c, 0xe8, + 0x0a, 0x0f, 0x02, 0xbf, 0x22, 0xb4, 0xde, 0x90, 0x24, 0xd5, 0xd3, 0xc7, + 0x08, 0x23, 0x60, 0x54, 0xde, 0x7d, 0xc0, 0xfb, 0xc6, 0x20, 0x25, 0xaf, + 0x37, 0x70, 0xba, 0x31, 0x44, 0xf1, 0x41, 0x9a, 0xa4, 0x54, 0x4c, 0x02, + 0xde, 0x36, 0x86, 0xd2, 0x7a, 0x12, 0x5e, 0x2c, 0x91, 0x94, 0x3e, 0xbb, + 0xe9, 0xc5, 0xb3, 0x8b, 0xa3, 0x24, 0x75, 0x9d, 0x2b, 0x81, 0xb3, 0xa8, + 0xcf, 0x8b, 0xcf, 0xd7, 0x01, 0xb3, 0x3d, 0x6d, 0x81, 0x85, 0x01, 0x92, + 0x24, 0x95, 0xd7, 0x68, 0x04, 0xd1, 0x5c, 0xf8, 0x90, 0xf2, 0x70, 0x1a, + 0x30, 0xc0, 0x18, 0x4a, 0x5b, 0x00, 0xfc, 0xd1, 0x18, 0x24, 0x25, 0xc2, + 0xd1, 0x28, 0xf1, 0xec, 0xba, 0x23, 0xe5, 0x61, 0x32, 0xb6, 0x35, 0x8e, + 0xd5, 0x08, 0x34, 0x18, 0x83, 0x24, 0x75, 0x99, 0x3f, 0x10, 0x3a, 0x5d, + 0xd5, 0xe1, 0x05, 0xb0, 0x2b, 0x3c, 0x5d, 0x2b, 0x58, 0x18, 0x20, 0x49, + 0x52, 0xdc, 0x0d, 0xa8, 0xe2, 0x58, 0x18, 0x20, 0xe5, 0xc1, 0x07, 0x1a, + 0x71, 0x7e, 0x0f, 0xcc, 0x37, 0x06, 0x49, 0x09, 0xb1, 0x0b, 0x4a, 0x9c, + 0xc3, 0x09, 0x23, 0x28, 0x25, 0xa5, 0x6d, 0x1e, 0x70, 0xbf, 0x31, 0x44, + 0x19, 0x04, 0x1c, 0x60, 0x0c, 0x92, 0xd4, 0xa5, 0xfe, 0x0c, 0x1c, 0x05, + 0x4c, 0xaf, 0xf8, 0x3e, 0x3e, 0xe9, 0xa9, 0x5a, 0xc1, 0xc2, 0x00, 0x49, + 0x92, 0xca, 0xd9, 0x02, 0x38, 0xd8, 0x18, 0xa2, 0xbc, 0x05, 0x3c, 0x63, + 0x0c, 0x52, 0x16, 0xdf, 0x27, 0x4f, 0x32, 0x86, 0x28, 0x3e, 0x40, 0x93, + 0x94, 0x9a, 0x87, 0x80, 0xbf, 0x19, 0x43, 0x94, 0x91, 0x46, 0x20, 0x65, + 0xc1, 0xe2, 0xf9, 0x78, 0xbe, 0xb4, 0x21, 0x49, 0x5d, 0xef, 0x69, 0xe0, + 0x48, 0xe0, 0xa5, 0x8a, 0xee, 0x9f, 0xdd, 0x02, 0x56, 0x61, 0x61, 0x80, + 0x24, 0x49, 0xe5, 0x0c, 0x03, 0xba, 0x1b, 0x43, 0x94, 0x89, 0x40, 0xb3, + 0x31, 0x48, 0xc9, 0x3b, 0x8f, 0x30, 0x1f, 0x59, 0xe5, 0xcc, 0x22, 0xb4, + 0x93, 0x95, 0xa4, 0xd4, 0x5c, 0x6f, 0x04, 0x51, 0xce, 0xc7, 0x36, 0xd9, + 0x52, 0x0e, 0x2c, 0x0c, 0x88, 0x37, 0xdc, 0x08, 0x24, 0xa9, 0x12, 0x5e, + 0x25, 0x74, 0x0e, 0x78, 0xa2, 0x62, 0xfb, 0xf5, 0x3a, 0x70, 0x8b, 0xa7, + 0x67, 0x65, 0x16, 0x06, 0x48, 0x92, 0xe4, 0x8d, 0x67, 0x67, 0x71, 0xc1, + 0x43, 0xca, 0x83, 0x63, 0x04, 0xe2, 0x5c, 0x4f, 0x98, 0xc7, 0x2d, 0x49, + 0xa9, 0xb9, 0x06, 0x8b, 0x43, 0x63, 0xec, 0x0c, 0x1c, 0x64, 0x0c, 0x52, + 0xf2, 0x9e, 0x02, 0xde, 0x34, 0x86, 0x28, 0x07, 0x00, 0x5b, 0x1b, 0x83, + 0x24, 0x55, 0xc2, 0x4c, 0x42, 0x71, 0x40, 0x95, 0x5e, 0x78, 0xf8, 0x21, + 0xb0, 0xcc, 0x53, 0xb3, 0x32, 0x0b, 0x03, 0x24, 0x49, 0x6a, 0xbd, 0x9e, + 0xc0, 0x50, 0x63, 0x88, 0xb2, 0x14, 0xb8, 0xd3, 0x18, 0xa4, 0xe4, 0xed, + 0x8c, 0xe3, 0x56, 0x62, 0x39, 0x46, 0x40, 0x52, 0xaa, 0x5e, 0x06, 0x1e, + 0x36, 0x86, 0x28, 0x16, 0xdb, 0x49, 0x79, 0x98, 0x64, 0x04, 0x51, 0x1a, + 0x80, 0x53, 0x8c, 0x41, 0x92, 0x2a, 0x63, 0x3e, 0x61, 0xcc, 0xcb, 0xcd, + 0x15, 0xd8, 0x97, 0x0f, 0x81, 0x5f, 0x7b, 0x4a, 0x56, 0x67, 0x61, 0x80, + 0x24, 0x49, 0xad, 0x77, 0x34, 0xb0, 0xb1, 0x31, 0x44, 0xb9, 0x0f, 0x78, + 0xdf, 0x18, 0xa4, 0xe4, 0x8d, 0xc1, 0xb6, 0xc7, 0x31, 0x5e, 0x02, 0x1e, + 0x35, 0x06, 0x49, 0x09, 0xb3, 0xf8, 0x29, 0xce, 0x48, 0x1c, 0xcf, 0x23, + 0xe5, 0xc0, 0xee, 0x7a, 0xf1, 0xec, 0xea, 0x28, 0x49, 0xd5, 0xb2, 0x88, + 0x30, 0x62, 0xf2, 0x17, 0x5d, 0xf0, 0xff, 0xfe, 0x00, 0xb8, 0x1b, 0xb8, + 0x0c, 0x18, 0x01, 0xcc, 0xf5, 0x74, 0xac, 0xae, 0x87, 0x11, 0x48, 0x92, + 0xe4, 0x0d, 0x67, 0x27, 0x70, 0xa1, 0x43, 0xca, 0xc3, 0x48, 0x23, 0x88, + 0x62, 0x9b, 0x6d, 0x49, 0xa9, 0xbb, 0x01, 0xf8, 0x1e, 0x3e, 0xe4, 0x2e, + 0x6b, 0x0b, 0x42, 0xc7, 0xb2, 0xf1, 0x46, 0x21, 0x25, 0xed, 0x0e, 0x60, + 0x89, 0xdf, 0x23, 0xa3, 0x0c, 0x05, 0x7a, 0x03, 0x0b, 0x8d, 0x42, 0x92, + 0x2a, 0x63, 0x19, 0x70, 0x11, 0xe1, 0x25, 0x88, 0xef, 0x74, 0xd0, 0xff, + 0x63, 0x29, 0xf0, 0x37, 0x60, 0x4a, 0xb1, 0xdd, 0x0b, 0x3c, 0x0e, 0x34, + 0x19, 0xff, 0xba, 0x59, 0x18, 0x20, 0x49, 0x52, 0xeb, 0x35, 0x1a, 0x41, + 0x34, 0x0b, 0x03, 0xa4, 0xf4, 0x1d, 0x06, 0xec, 0x6a, 0x0c, 0x51, 0xae, + 0x37, 0x02, 0x49, 0x89, 0x9b, 0x4d, 0x78, 0xf0, 0x35, 0xcc, 0x28, 0x4a, + 0x1b, 0x8d, 0x85, 0x01, 0x52, 0xea, 0xe6, 0x01, 0x0f, 0x10, 0xba, 0x14, + 0xaa, 0x9c, 0xbe, 0xc0, 0xb1, 0xc0, 0x44, 0xa3, 0x90, 0xa4, 0xca, 0xb9, + 0x0c, 0x58, 0x00, 0x5c, 0x4e, 0xdb, 0x3b, 0xd8, 0xcf, 0x60, 0x45, 0x01, + 0xc0, 0x7d, 0xc0, 0x63, 0x84, 0x71, 0x01, 0x2a, 0xc9, 0xc2, 0x00, 0x49, + 0x92, 0x5a, 0x67, 0x37, 0x60, 0x17, 0x63, 0x88, 0xfe, 0xe0, 0xf6, 0xb4, + 0x31, 0x48, 0xc9, 0x73, 0x0e, 0x72, 0x9c, 0x07, 0x80, 0x17, 0x8d, 0x41, + 0x52, 0x06, 0xc6, 0x62, 0x61, 0x40, 0x8c, 0xd3, 0x80, 0x8d, 0x08, 0xad, + 0x51, 0x25, 0xa5, 0x6b, 0x02, 0x16, 0x06, 0xc4, 0x1a, 0x8e, 0x85, 0x01, + 0x92, 0x54, 0x55, 0x3f, 0x02, 0xa6, 0x03, 0xd7, 0x01, 0xbd, 0x5a, 0xf9, + 0xdf, 0xbc, 0x0f, 0x3c, 0xc3, 0x8a, 0x22, 0x80, 0x87, 0x80, 0x59, 0x46, + 0xd9, 0x3e, 0xba, 0x19, 0x81, 0x24, 0x49, 0xad, 0x62, 0xb7, 0x80, 0x78, + 0xe3, 0xb1, 0x45, 0xb6, 0x94, 0xba, 0x1e, 0xc0, 0xd9, 0xc6, 0x10, 0xc5, + 0xb9, 0xdb, 0x92, 0x72, 0xf1, 0x07, 0x7c, 0xb8, 0x1d, 0x63, 0x43, 0xe0, + 0x74, 0x63, 0x90, 0x92, 0x67, 0x97, 0xbd, 0x78, 0xa7, 0x1a, 0x81, 0x24, + 0x55, 0xda, 0xef, 0x08, 0x05, 0xc2, 0x6b, 0xba, 0x17, 0x58, 0x42, 0xe8, + 0x04, 0x70, 0x05, 0x70, 0x21, 0xb0, 0x37, 0xb0, 0x09, 0x70, 0x24, 0xf0, + 0x65, 0xe0, 0x56, 0x2c, 0x0a, 0x68, 0x57, 0x76, 0x0c, 0x90, 0x24, 0xa9, + 0x75, 0x86, 0x1b, 0x41, 0x34, 0x17, 0x38, 0xa4, 0xf4, 0x9d, 0x02, 0x0c, + 0x34, 0x86, 0xd2, 0x96, 0x02, 0xe3, 0x8c, 0x41, 0x52, 0x26, 0x3e, 0x24, + 0x14, 0x07, 0x9c, 0x6f, 0x14, 0xa5, 0x8d, 0x06, 0xae, 0x36, 0x06, 0x29, + 0x69, 0x4f, 0x01, 0xd3, 0x80, 0xad, 0x8d, 0xa2, 0xb4, 0xed, 0x08, 0x0f, + 0x92, 0x9e, 0x31, 0x0a, 0x49, 0xaa, 0xac, 0xbb, 0x80, 0x13, 0x08, 0x05, + 0x00, 0x53, 0x81, 0x87, 0x8b, 0xed, 0x69, 0xc2, 0xda, 0x88, 0x3a, 0x89, + 0x1d, 0x03, 0x24, 0x49, 0x5a, 0xbf, 0x01, 0x84, 0x2a, 0x45, 0x95, 0xb7, + 0x14, 0x98, 0x6c, 0x0c, 0x52, 0xf2, 0x1c, 0x23, 0x10, 0x67, 0x22, 0x56, + 0xbe, 0x4b, 0xca, 0x8b, 0x5d, 0x52, 0xe2, 0x9c, 0x80, 0x0f, 0x0b, 0xa5, + 0xd4, 0x35, 0x63, 0x3b, 0xfc, 0xb6, 0xb0, 0xcb, 0xa3, 0x24, 0x55, 0xdf, + 0xc3, 0xc0, 0xa1, 0xc0, 0xa7, 0x80, 0x9f, 0x01, 0x8f, 0x63, 0x51, 0x40, + 0xa7, 0xb3, 0x30, 0x40, 0x92, 0xa4, 0xf5, 0x3b, 0x19, 0xe8, 0x69, 0x0c, + 0x51, 0xee, 0x23, 0xcc, 0x85, 0x92, 0x94, 0xae, 0xfe, 0xc0, 0x08, 0x63, + 0x88, 0xe2, 0x03, 0x32, 0x49, 0xb9, 0x99, 0x0c, 0xcc, 0x34, 0x86, 0xd2, + 0xba, 0x01, 0xe7, 0x1a, 0x83, 0x94, 0x3c, 0xbb, 0xed, 0xc5, 0xb3, 0xcb, + 0xa3, 0x24, 0x49, 0xad, 0xbc, 0xb1, 0x90, 0x24, 0x49, 0xde, 0x60, 0x76, + 0x14, 0x17, 0x36, 0xa4, 0xf4, 0x9d, 0x49, 0x98, 0x7f, 0xac, 0x72, 0x16, + 0x10, 0x66, 0xe5, 0x49, 0x52, 0x4e, 0x96, 0x01, 0x37, 0x18, 0x43, 0x14, + 0xbb, 0xf3, 0x48, 0xe9, 0xbb, 0x83, 0x30, 0x6b, 0x59, 0xe5, 0x1d, 0x06, + 0x6c, 0x6e, 0x0c, 0x92, 0x24, 0xad, 0x9b, 0x85, 0x01, 0x92, 0x24, 0xad, + 0x5b, 0x77, 0xc2, 0xec, 0x6c, 0xc5, 0xb1, 0x30, 0x40, 0x4a, 0x9f, 0x0f, + 0x2a, 0xe2, 0xdc, 0x4c, 0x28, 0x0e, 0x90, 0xa4, 0xdc, 0xd8, 0x2d, 0x25, + 0xce, 0xfe, 0x84, 0x19, 0xda, 0x92, 0xd2, 0x35, 0x0f, 0x78, 0xc0, 0x18, + 0xa2, 0x74, 0x27, 0x74, 0x7b, 0x94, 0x24, 0x49, 0xeb, 0x60, 0x61, 0x80, + 0x24, 0x49, 0xeb, 0x76, 0x28, 0x56, 0x9d, 0xc7, 0x9a, 0x01, 0x3c, 0x6d, + 0x0c, 0x52, 0xd2, 0x06, 0x03, 0xc7, 0x1a, 0x43, 0x14, 0x1f, 0x8c, 0x49, + 0xca, 0xd5, 0xa3, 0xc0, 0x54, 0x63, 0x88, 0x32, 0xca, 0x08, 0xa4, 0xe4, + 0x59, 0x5c, 0x1f, 0xcf, 0x6e, 0x8f, 0x92, 0x24, 0xad, 0x87, 0x85, 0x01, + 0x92, 0x24, 0x79, 0x63, 0xd9, 0x51, 0xc6, 0x03, 0xcd, 0xc6, 0x20, 0x25, + 0x6d, 0x34, 0xe1, 0xed, 0x1c, 0x95, 0x33, 0x03, 0xb8, 0xcb, 0x18, 0x24, + 0x65, 0xcc, 0x71, 0x02, 0xf1, 0x3f, 0x77, 0x5d, 0xcb, 0x93, 0xd2, 0x66, + 0x61, 0x40, 0xbc, 0x53, 0x80, 0x9e, 0xc6, 0x20, 0x49, 0xd2, 0xda, 0x79, + 0x33, 0x21, 0x49, 0xd2, 0xba, 0x35, 0x1a, 0x41, 0x34, 0x17, 0x34, 0xa4, + 0xf4, 0x39, 0x46, 0x20, 0xce, 0xf5, 0x84, 0x39, 0xdb, 0x92, 0x94, 0xab, + 0x6b, 0xb0, 0x80, 0x34, 0xc6, 0x76, 0xc0, 0x51, 0xc6, 0x20, 0x25, 0xed, + 0x29, 0x60, 0x9a, 0x31, 0x44, 0x19, 0x00, 0x1c, 0x61, 0x0c, 0x92, 0x24, + 0xad, 0x9d, 0x85, 0x01, 0x92, 0x24, 0xad, 0xdd, 0x76, 0xc0, 0x3e, 0xc6, + 0x10, 0x65, 0x29, 0x70, 0xa7, 0x31, 0x48, 0x49, 0xdb, 0x13, 0xf8, 0xb8, + 0x31, 0x44, 0x71, 0x8c, 0x80, 0xa4, 0xdc, 0xbd, 0x0e, 0xdc, 0x6f, 0x0c, + 0x51, 0x2c, 0xca, 0x93, 0xd2, 0xd6, 0x0c, 0xdc, 0x6e, 0x0c, 0xd1, 0xec, + 0xfa, 0x28, 0x49, 0xd2, 0x3a, 0x58, 0x18, 0x20, 0x49, 0xd2, 0xda, 0x8d, + 0x30, 0x82, 0x68, 0xf7, 0x03, 0xef, 0x19, 0x83, 0x94, 0xb4, 0x0b, 0x8c, + 0x20, 0xca, 0xf3, 0xc0, 0x63, 0xc6, 0x20, 0x49, 0x16, 0x49, 0x45, 0x3a, + 0x07, 0xe8, 0x63, 0x0c, 0x52, 0xd2, 0xec, 0xbe, 0x17, 0xcf, 0xae, 0x8f, + 0x92, 0x24, 0xad, 0x83, 0x85, 0x01, 0x92, 0x24, 0xad, 0x9d, 0x95, 0xe6, + 0xf1, 0x5c, 0xc8, 0x90, 0xd2, 0xbf, 0x8f, 0x18, 0x65, 0x0c, 0x51, 0xae, + 0x35, 0x02, 0x49, 0x02, 0xe0, 0x46, 0x60, 0xb1, 0x31, 0x94, 0x36, 0x00, + 0x18, 0x66, 0x0c, 0x52, 0xd2, 0x26, 0x01, 0x4b, 0x8c, 0x21, 0xca, 0xee, + 0xc0, 0x2e, 0xc6, 0x20, 0x49, 0xd2, 0x9a, 0x59, 0x18, 0x20, 0x49, 0xd2, + 0x9a, 0xf5, 0x05, 0x8e, 0x33, 0x86, 0x68, 0x16, 0x06, 0x48, 0x69, 0x3b, + 0x06, 0xd8, 0xd6, 0x18, 0x4a, 0x6b, 0x06, 0xae, 0x33, 0x06, 0x49, 0x02, + 0x60, 0x2e, 0x30, 0xd1, 0x18, 0xa2, 0x38, 0x4e, 0x40, 0x4a, 0xdb, 0x3c, + 0xe0, 0x41, 0x63, 0x88, 0xe6, 0x4b, 0x1e, 0x92, 0x24, 0xad, 0x85, 0x85, + 0x01, 0x92, 0x24, 0xad, 0xd9, 0x09, 0x40, 0x6f, 0x63, 0x88, 0x32, 0x03, + 0x78, 0xca, 0x18, 0xa4, 0xa4, 0xf9, 0x40, 0x22, 0xce, 0x7d, 0xc0, 0xab, + 0xc6, 0x20, 0x49, 0xff, 0x3f, 0xc7, 0x09, 0xc4, 0x19, 0x0e, 0x6c, 0x66, + 0x0c, 0x52, 0xd2, 0x2c, 0xb6, 0x6f, 0xdb, 0xf7, 0x48, 0x49, 0x92, 0xb4, + 0x06, 0x16, 0x06, 0x48, 0x92, 0xe4, 0x8d, 0x64, 0x7b, 0x9b, 0x40, 0x78, + 0x2b, 0x56, 0x52, 0x9a, 0x7a, 0x03, 0x67, 0x1a, 0x43, 0x14, 0x1f, 0x80, + 0x49, 0xd2, 0xca, 0x6e, 0x01, 0xde, 0x37, 0x86, 0xd2, 0x36, 0x00, 0xce, + 0x32, 0x06, 0x29, 0xf9, 0xfb, 0x6a, 0xc5, 0x39, 0x86, 0x30, 0x76, 0x45, + 0x92, 0x24, 0xad, 0xc2, 0xc2, 0x00, 0x49, 0x92, 0x56, 0xd7, 0x80, 0x73, + 0x3b, 0xdb, 0xc2, 0x05, 0x0c, 0x29, 0x6d, 0x23, 0x80, 0x8d, 0x8d, 0xa1, + 0xb4, 0xc5, 0xc0, 0x38, 0x63, 0x90, 0xa4, 0x95, 0x2c, 0x04, 0x7e, 0x67, + 0x0c, 0x51, 0xec, 0xde, 0x23, 0xa5, 0xed, 0x49, 0x60, 0xba, 0x31, 0x44, + 0xe9, 0x09, 0x0c, 0x35, 0x06, 0x49, 0x92, 0x56, 0x67, 0x61, 0x80, 0x24, + 0x49, 0xab, 0xdb, 0x1f, 0xd8, 0xda, 0x18, 0xa2, 0x2c, 0x05, 0x26, 0x1b, + 0x83, 0x94, 0x34, 0x1f, 0x44, 0xc4, 0x99, 0x00, 0xcc, 0x31, 0x06, 0x49, + 0x5a, 0x8d, 0xdd, 0x54, 0xe2, 0x1c, 0x09, 0xec, 0x68, 0x0c, 0x52, 0xb2, + 0x9a, 0x81, 0xdb, 0x8d, 0x21, 0x9a, 0x5d, 0x20, 0x25, 0x49, 0x5a, 0x03, + 0x0b, 0x03, 0x24, 0x49, 0x5a, 0x5d, 0xa3, 0x11, 0x44, 0x7b, 0x00, 0x78, + 0xcf, 0x18, 0xa4, 0x64, 0x6d, 0x0a, 0x9c, 0x6c, 0x0c, 0x51, 0x7c, 0xf0, + 0x25, 0x49, 0x6b, 0x76, 0x37, 0xf0, 0x96, 0x31, 0x94, 0xd6, 0x00, 0x8c, + 0x32, 0x06, 0x29, 0x69, 0x76, 0xe3, 0x8b, 0x37, 0x1c, 0xe8, 0x6e, 0x0c, + 0x92, 0x24, 0xad, 0xcc, 0xc2, 0x00, 0x49, 0x92, 0x56, 0x67, 0x61, 0x40, + 0x3c, 0x17, 0x2e, 0xa4, 0xb4, 0x9d, 0x0b, 0xf4, 0x32, 0x86, 0xd2, 0xe6, + 0x01, 0xb7, 0x19, 0x83, 0x24, 0xad, 0x51, 0x13, 0x70, 0x83, 0x31, 0x44, + 0x19, 0x63, 0x04, 0x52, 0xd2, 0x26, 0x01, 0x4b, 0x8c, 0x21, 0xca, 0x16, + 0xc0, 0xc1, 0xc6, 0x20, 0x49, 0xd2, 0xca, 0x2c, 0x0c, 0x90, 0x24, 0x69, + 0x65, 0x83, 0x80, 0x03, 0x8c, 0x21, 0x9a, 0x85, 0x01, 0x52, 0xda, 0x1c, + 0x23, 0x10, 0xe7, 0x66, 0xe0, 0x23, 0x63, 0x90, 0xa4, 0xb5, 0xb2, 0xab, + 0x4a, 0x9c, 0xdd, 0xbd, 0x77, 0x91, 0x92, 0xf6, 0x3e, 0xf0, 0x90, 0x31, + 0x44, 0x73, 0x9c, 0x80, 0x24, 0x49, 0xab, 0xb0, 0x30, 0x40, 0x92, 0xa4, + 0xd5, 0x6f, 0x1c, 0x1b, 0x8c, 0x21, 0xca, 0x0c, 0xe0, 0x49, 0x63, 0x90, + 0x92, 0xb5, 0x3d, 0x70, 0xb8, 0x31, 0x44, 0xf1, 0x81, 0x97, 0x24, 0xad, + 0xdb, 0x13, 0xc0, 0x33, 0xc6, 0x10, 0xc5, 0xa2, 0x3d, 0x29, 0x6d, 0x16, + 0xdf, 0xc7, 0xb3, 0x1b, 0xa4, 0x24, 0x49, 0xab, 0xb0, 0x30, 0x40, 0x92, + 0xa4, 0x95, 0x59, 0x51, 0x1e, 0x6f, 0x02, 0xd0, 0x6c, 0x0c, 0x52, 0xb2, + 0x2e, 0xc0, 0xc2, 0xa9, 0x18, 0xd3, 0x81, 0xbf, 0x18, 0x83, 0x24, 0xad, + 0xd7, 0x75, 0x46, 0x10, 0x65, 0x34, 0xd0, 0xc3, 0x18, 0xa4, 0x64, 0x8d, + 0x37, 0x82, 0x68, 0x1f, 0x27, 0x14, 0x37, 0x4b, 0x92, 0xa4, 0x82, 0x85, + 0x01, 0x92, 0x24, 0xad, 0xd0, 0x0b, 0xf8, 0x84, 0x31, 0x44, 0xf3, 0x4d, + 0x06, 0x29, 0x6d, 0xa3, 0x8c, 0x20, 0xca, 0x58, 0x60, 0x99, 0x31, 0x48, + 0x52, 0xab, 0xbe, 0x5f, 0x36, 0x19, 0x43, 0x69, 0x03, 0xbd, 0x87, 0x91, + 0x92, 0xf6, 0x24, 0xa1, 0xd0, 0x54, 0x71, 0x86, 0x19, 0x81, 0x24, 0x49, + 0x2b, 0x58, 0x18, 0x20, 0x49, 0xd2, 0x0a, 0xc7, 0x01, 0x1b, 0x19, 0x43, + 0x94, 0x65, 0xc0, 0x5d, 0xc6, 0x20, 0x25, 0xeb, 0x20, 0xc2, 0x1c, 0x63, + 0x95, 0xe7, 0x18, 0x01, 0x49, 0x6a, 0x9d, 0x37, 0x80, 0x7b, 0x8d, 0x21, + 0x8a, 0xe3, 0x04, 0xa4, 0x74, 0x35, 0x03, 0xb7, 0x1b, 0x43, 0x34, 0xbb, + 0x42, 0x4a, 0x92, 0xd4, 0x82, 0x85, 0x01, 0x92, 0x24, 0x79, 0xc3, 0xd8, + 0x1e, 0xee, 0x07, 0xe6, 0x1a, 0x83, 0x94, 0x2c, 0x1f, 0x38, 0xc4, 0x79, + 0x96, 0xf0, 0x96, 0x97, 0x24, 0xa9, 0x75, 0x2c, 0xa6, 0x8a, 0x73, 0x06, + 0xd0, 0xcf, 0x18, 0xa4, 0x64, 0xd9, 0x9d, 0x2f, 0xde, 0xf1, 0xc0, 0x86, + 0xc6, 0x20, 0x49, 0x52, 0xe0, 0x0c, 0x32, 0x49, 0xea, 0x1a, 0x0d, 0xc0, + 0x96, 0xc5, 0xb6, 0x35, 0xa1, 0xfd, 0xe3, 0x56, 0xc0, 0xc6, 0xc5, 0x36, + 0xa0, 0xd8, 0x7a, 0x16, 0x37, 0x30, 0xbd, 0x56, 0xf9, 0xef, 0xdf, 0x23, + 0xbc, 0xa1, 0xfd, 0x3e, 0xb0, 0x90, 0xd0, 0x56, 0x6e, 0x46, 0xb1, 0x4d, + 0x07, 0x5e, 0x00, 0x66, 0x1b, 0x73, 0x69, 0x16, 0x06, 0xc4, 0x73, 0xa1, + 0x42, 0x4a, 0xfb, 0x9e, 0xe1, 0x5c, 0x63, 0x88, 0x72, 0x8d, 0x11, 0x48, + 0x52, 0x29, 0xe3, 0x80, 0x2b, 0xd6, 0x70, 0xff, 0xa3, 0x75, 0xeb, 0x0b, + 0x7c, 0x12, 0x0b, 0x2b, 0xa4, 0x54, 0xdd, 0x01, 0x2c, 0xc5, 0xb5, 0xfc, + 0x18, 0x7d, 0x08, 0xe3, 0x56, 0x6e, 0x35, 0x8a, 0xd2, 0x06, 0x02, 0xbb, + 0x01, 0x83, 0x09, 0x6b, 0x96, 0x83, 0x81, 0x41, 0x40, 0x6f, 0xc2, 0x9a, + 0x65, 0x8f, 0xe2, 0xd7, 0x96, 0x16, 0x01, 0x1f, 0x02, 0x4b, 0x08, 0x6b, + 0x96, 0xef, 0x13, 0xd6, 0x30, 0xdf, 0x03, 0x66, 0x02, 0xb3, 0x80, 0xb7, + 0x80, 0xb7, 0x8b, 0xaf, 0x9b, 0x8d, 0x59, 0x92, 0x3a, 0x97, 0x1f, 0x26, + 0x24, 0xa9, 0xe3, 0x74, 0x07, 0x76, 0x04, 0xf6, 0x02, 0x76, 0x06, 0x86, + 0x00, 0x3b, 0x15, 0xdb, 0xf6, 0x84, 0x87, 0xfe, 0x1d, 0x69, 0x36, 0xf0, + 0x0c, 0x30, 0x95, 0xf0, 0x36, 0xf7, 0xdd, 0xc5, 0x87, 0x70, 0xad, 0xd9, + 0xde, 0xc5, 0xf9, 0x52, 0x1c, 0x0b, 0x03, 0xa4, 0x74, 0x0d, 0x25, 0x2c, + 0x04, 0xa9, 0x9c, 0x66, 0xe0, 0x06, 0x63, 0x90, 0xa4, 0x52, 0xde, 0x05, + 0xc6, 0x03, 0xa7, 0x1b, 0x45, 0x69, 0xa3, 0xb1, 0x30, 0x40, 0x4a, 0xd5, + 0x7b, 0xc0, 0x83, 0xc0, 0x91, 0x46, 0x11, 0x65, 0x38, 0x16, 0x06, 0xac, + 0xcf, 0x56, 0x84, 0xee, 0x0a, 0x87, 0x11, 0xd6, 0x31, 0xf7, 0x01, 0x36, + 0xef, 0xe0, 0xff, 0xe7, 0x12, 0xe0, 0x35, 0xe0, 0x15, 0xe0, 0xe5, 0x16, + 0xdb, 0x54, 0xe0, 0x55, 0xc2, 0x0b, 0x51, 0x92, 0xa4, 0x76, 0x66, 0x61, + 0x80, 0x24, 0xb5, 0x8f, 0x4d, 0x81, 0x03, 0x8a, 0x6d, 0x6f, 0x60, 0x4f, + 0x60, 0x0f, 0x42, 0x15, 0x6d, 0x57, 0xd9, 0x02, 0x38, 0xae, 0xd8, 0x3e, + 0x57, 0xfc, 0xd9, 0xb3, 0xc0, 0x64, 0xe0, 0x26, 0x42, 0xb1, 0x80, 0x95, + 0xb9, 0x2b, 0x34, 0x1a, 0x41, 0xb4, 0x99, 0xd8, 0x2a, 0x5b, 0x4a, 0x99, + 0x63, 0x04, 0xe2, 0xdc, 0x43, 0x58, 0xe8, 0x92, 0x24, 0x95, 0x33, 0x16, + 0x0b, 0x03, 0x62, 0x2c, 0x2f, 0xe4, 0xb3, 0x18, 0x5c, 0x4a, 0xd3, 0x04, + 0x2c, 0x0c, 0x88, 0x35, 0x02, 0xb8, 0x04, 0xd7, 0xc0, 0x5a, 0x6a, 0x00, + 0x8e, 0x00, 0xce, 0x21, 0x74, 0x54, 0xd8, 0xb3, 0x0b, 0xf6, 0xa1, 0x27, + 0xb0, 0x4b, 0xb1, 0xad, 0x6a, 0x21, 0x61, 0x0d, 0xf3, 0x59, 0xc2, 0x4b, + 0x4f, 0x53, 0x8a, 0xed, 0x5d, 0x4f, 0x9d, 0x24, 0xb5, 0x8d, 0x85, 0x01, + 0x92, 0x14, 0xf7, 0xbd, 0xf3, 0x40, 0xe0, 0x28, 0xe0, 0x60, 0x42, 0x31, + 0x40, 0x5d, 0xde, 0x34, 0xdf, 0xb3, 0xd8, 0x3e, 0x4f, 0xa8, 0xc2, 0xbd, + 0x06, 0xf8, 0x35, 0xf0, 0x86, 0xa7, 0xd5, 0x31, 0x02, 0x6d, 0x30, 0xc1, + 0x1b, 0x6c, 0x29, 0x59, 0xcb, 0x5b, 0x13, 0xab, 0x3c, 0xdf, 0xda, 0x94, + 0xa4, 0x38, 0x7f, 0x22, 0xbc, 0x1d, 0xbb, 0xb1, 0x51, 0x94, 0xbe, 0x4f, + 0x3d, 0x17, 0xb8, 0xdc, 0x28, 0xa4, 0x64, 0xef, 0xbb, 0xbf, 0x65, 0x0c, + 0x51, 0x06, 0x03, 0xfb, 0x02, 0x8f, 0x1b, 0x05, 0xdb, 0x03, 0xff, 0x00, + 0x8c, 0x21, 0x74, 0x36, 0xad, 0xaa, 0xde, 0xc0, 0xfe, 0xc5, 0xd6, 0xd2, + 0x2b, 0x84, 0x02, 0x81, 0x87, 0x81, 0xbf, 0x16, 0x5f, 0x2f, 0xf5, 0xb4, + 0x4a, 0x52, 0xb9, 0x9b, 0x06, 0x49, 0xd2, 0xfa, 0xbf, 0x57, 0x7e, 0x1c, + 0x38, 0x81, 0x50, 0x9d, 0x7d, 0x24, 0x69, 0x2c, 0x52, 0xed, 0x04, 0x7c, + 0x0d, 0xf8, 0x37, 0x42, 0xab, 0xe3, 0xff, 0x4d, 0x68, 0xd5, 0x95, 0xa3, + 0x4d, 0x81, 0x43, 0xbd, 0xd4, 0xa3, 0x39, 0x46, 0x40, 0x4a, 0xd7, 0x19, + 0x40, 0x3f, 0x63, 0x28, 0x6d, 0x31, 0xf0, 0x5b, 0x63, 0x90, 0xa4, 0x28, + 0x0b, 0x81, 0x9b, 0x81, 0x4f, 0x1b, 0x45, 0x69, 0xa3, 0xb1, 0x30, 0x40, + 0x4a, 0xd5, 0x13, 0xc0, 0x74, 0xc2, 0x43, 0x6e, 0x95, 0xd7, 0x48, 0xde, + 0x85, 0x01, 0xdb, 0x02, 0x5f, 0x04, 0x3e, 0x03, 0xf4, 0xaa, 0xf1, 0x71, + 0x0c, 0x29, 0xb6, 0xb3, 0x8b, 0xdf, 0x2f, 0x28, 0xfe, 0x6e, 0xdc, 0x4b, + 0xe8, 0x90, 0x7a, 0x6f, 0xf1, 0x39, 0x42, 0x92, 0xb4, 0x16, 0xdd, 0x8c, + 0x40, 0x92, 0x56, 0xb3, 0x01, 0x70, 0x2c, 0xe1, 0x41, 0xf9, 0x5d, 0xc0, + 0x3c, 0xe0, 0x51, 0xe0, 0x3b, 0xc5, 0x8d, 0x44, 0x6a, 0x6f, 0xae, 0xf4, + 0x04, 0xce, 0x27, 0xb4, 0xe7, 0xba, 0x8c, 0xae, 0x1d, 0x7f, 0xd0, 0x55, + 0x86, 0x61, 0xb1, 0x5c, 0xac, 0x65, 0xc0, 0x9d, 0xc6, 0x20, 0x25, 0xcb, + 0x31, 0x02, 0x71, 0x6e, 0x03, 0xe6, 0x1a, 0x83, 0x24, 0x45, 0xb3, 0xeb, + 0x4a, 0x9c, 0x83, 0x80, 0xdd, 0x8d, 0x41, 0x4a, 0x52, 0x33, 0x30, 0xc9, + 0x18, 0xa2, 0xe5, 0xda, 0x25, 0xb2, 0x0f, 0xf0, 0x5d, 0xe0, 0x45, 0x42, + 0xf7, 0xd0, 0x5e, 0x89, 0x1d, 0x5f, 0x5f, 0xc2, 0x48, 0x84, 0x2f, 0x01, + 0x77, 0x00, 0x73, 0x08, 0x6b, 0x54, 0xff, 0x1b, 0x38, 0x86, 0xb0, 0xc6, + 0x2b, 0x49, 0x6a, 0xc1, 0xc2, 0x00, 0x49, 0x0a, 0x36, 0x21, 0x54, 0x9b, + 0x5e, 0x0d, 0xcc, 0x02, 0xee, 0x26, 0xbc, 0x4d, 0x7f, 0x5c, 0xf1, 0x21, + 0x3a, 0x07, 0xbd, 0x81, 0x7f, 0x25, 0xb4, 0xe1, 0xda, 0xcf, 0x1b, 0x44, + 0xb5, 0xd2, 0x03, 0xf8, 0xf0, 0x4b, 0x4a, 0xd5, 0x40, 0xc2, 0xbc, 0x49, + 0x95, 0xe7, 0x03, 0x2d, 0x49, 0x6a, 0x9b, 0xbf, 0x00, 0xaf, 0x19, 0x43, + 0x94, 0x51, 0x46, 0x20, 0x25, 0xcb, 0x6e, 0x7d, 0xf1, 0x0e, 0x02, 0xb6, + 0xca, 0xec, 0x98, 0xf7, 0x26, 0xac, 0xd9, 0x7c, 0x91, 0xf4, 0x0a, 0x02, + 0xd6, 0x66, 0x43, 0xe0, 0x78, 0xc2, 0x9a, 0xee, 0x9f, 0x81, 0x77, 0x81, + 0x5b, 0x81, 0x8b, 0x81, 0x2d, 0xfd, 0x6b, 0x20, 0x49, 0x16, 0x06, 0x48, + 0xca, 0xdb, 0x4e, 0xc0, 0xbf, 0x10, 0x8a, 0x00, 0x66, 0x01, 0x37, 0x11, + 0xde, 0x9c, 0x1f, 0x90, 0x79, 0x2e, 0x7b, 0x16, 0x37, 0x0e, 0x7f, 0x97, + 0xc9, 0xf1, 0xf6, 0x00, 0x4e, 0xf2, 0xaf, 0x43, 0x34, 0x17, 0x26, 0xa4, + 0x74, 0x8d, 0xc6, 0x6e, 0x2a, 0x31, 0xde, 0x25, 0xcc, 0xc7, 0x96, 0x24, + 0xc5, 0x6b, 0x06, 0x6e, 0x34, 0x86, 0x28, 0x17, 0x00, 0x0d, 0xc6, 0x20, + 0x25, 0xe9, 0x0e, 0x9c, 0xa7, 0x1e, 0xab, 0x1b, 0x70, 0x4a, 0x46, 0xc7, + 0xfb, 0x69, 0xc2, 0x8b, 0x3f, 0x1f, 0xcf, 0xfc, 0xbc, 0x6f, 0x48, 0xe8, + 0xfe, 0xfa, 0x33, 0xe0, 0x2d, 0x42, 0x37, 0x81, 0x4b, 0x09, 0xe3, 0x08, + 0x24, 0x29, 0xdb, 0x1f, 0x88, 0x92, 0x94, 0x93, 0xbd, 0x81, 0x6f, 0x03, + 0x53, 0x81, 0x97, 0x80, 0xef, 0x13, 0xc6, 0x06, 0xf8, 0xe0, 0x63, 0x65, + 0xbd, 0x80, 0x5f, 0x12, 0x66, 0x8f, 0xa5, 0xee, 0x48, 0x42, 0xc7, 0x08, + 0xc5, 0xb1, 0x30, 0x40, 0x4a, 0x97, 0x63, 0x04, 0xe2, 0xdc, 0x0c, 0x2c, + 0x32, 0x06, 0x49, 0x6a, 0xb3, 0xab, 0x8d, 0x20, 0xca, 0xf6, 0xc0, 0xe1, + 0xc6, 0x20, 0x25, 0xe9, 0x5d, 0xe0, 0x21, 0x63, 0x88, 0x96, 0x4b, 0xb7, + 0xc8, 0x7f, 0x02, 0x7e, 0x8e, 0x6d, 0xf4, 0x57, 0xd5, 0x83, 0xd0, 0x4d, + 0xe0, 0xbf, 0x80, 0x97, 0x81, 0xa7, 0x81, 0x6f, 0x01, 0x7b, 0x19, 0x8d, + 0xa4, 0x9c, 0x58, 0x18, 0x20, 0x29, 0x07, 0x9b, 0x13, 0xe6, 0x68, 0x3d, + 0x5a, 0x7c, 0xe8, 0xfb, 0x0a, 0xe1, 0xad, 0x78, 0xad, 0xff, 0x67, 0xc4, + 0x4f, 0x81, 0x4b, 0xbc, 0x31, 0xd4, 0x5a, 0xcc, 0x04, 0x9e, 0x30, 0x06, + 0x29, 0x49, 0xbb, 0x03, 0x07, 0x18, 0x43, 0x14, 0xc7, 0x08, 0x48, 0x52, + 0xfb, 0x78, 0x16, 0x78, 0xca, 0x18, 0xa2, 0x58, 0xdc, 0x27, 0xa5, 0xcb, + 0xe2, 0xfc, 0x78, 0x27, 0x91, 0x7e, 0x4b, 0xfd, 0xcf, 0x01, 0x3f, 0xc4, + 0xce, 0x31, 0xad, 0xb1, 0x37, 0xf0, 0x55, 0xe0, 0x19, 0xe0, 0x11, 0xe0, + 0x9f, 0x09, 0x6b, 0xc8, 0x92, 0x94, 0x34, 0x0b, 0x03, 0x24, 0xa5, 0xaa, + 0x3b, 0x70, 0x02, 0x61, 0x3c, 0xc0, 0x34, 0xe0, 0x72, 0x7c, 0xc0, 0x11, + 0xa3, 0xa1, 0xb8, 0xa1, 0x18, 0x9a, 0xf0, 0x31, 0x36, 0x7a, 0x9a, 0xa3, + 0x4d, 0x24, 0xb4, 0x79, 0x95, 0x94, 0x9e, 0x31, 0x46, 0x10, 0xe5, 0x0d, + 0xe0, 0xaf, 0xc6, 0x20, 0x49, 0xed, 0xc6, 0x62, 0xab, 0x38, 0xe7, 0x92, + 0xcf, 0x3c, 0x69, 0x29, 0x37, 0x16, 0x06, 0xc4, 0xeb, 0x07, 0x1c, 0x9d, + 0xf0, 0xf1, 0x7d, 0x02, 0xf8, 0x01, 0x16, 0x05, 0xc4, 0x38, 0x10, 0xb8, + 0x82, 0xf0, 0x02, 0xcc, 0x1d, 0xc0, 0xd9, 0xd8, 0x71, 0x41, 0x52, 0xa2, + 0x2c, 0x0c, 0x90, 0x94, 0x9a, 0x3d, 0x08, 0x45, 0x00, 0x7e, 0x90, 0x6b, + 0x3f, 0xdd, 0x81, 0x5f, 0x01, 0xfd, 0x13, 0x3c, 0xb6, 0x21, 0x84, 0xb7, + 0x62, 0x15, 0xc7, 0x05, 0x09, 0x29, 0x4d, 0x0d, 0xc0, 0x28, 0x63, 0x88, + 0x72, 0x1d, 0xd0, 0x64, 0x0c, 0x92, 0xd4, 0x6e, 0xae, 0x05, 0x96, 0x19, + 0x43, 0x69, 0x9b, 0x02, 0x27, 0x1b, 0x83, 0x94, 0xa4, 0xc7, 0x81, 0x19, + 0xc6, 0x10, 0x2d, 0xd5, 0xae, 0x91, 0x1b, 0x03, 0xd7, 0x10, 0xd6, 0xf0, + 0x14, 0x6f, 0x4d, 0x2f, 0x9a, 0xb9, 0x6e, 0x28, 0x29, 0x29, 0x16, 0x06, + 0x48, 0x4a, 0xe5, 0x7b, 0x59, 0x23, 0x30, 0x09, 0x98, 0x4a, 0x18, 0x1b, + 0x60, 0xeb, 0xa7, 0xf6, 0xb5, 0x0d, 0xf0, 0xf5, 0x04, 0x8f, 0xeb, 0x54, + 0x4f, 0x6d, 0xb4, 0x65, 0xc0, 0x64, 0x63, 0x90, 0x92, 0x74, 0x24, 0xb0, + 0xa3, 0x31, 0x44, 0xb9, 0xce, 0x08, 0x24, 0xa9, 0x5d, 0x4d, 0x07, 0xee, + 0x31, 0x86, 0x28, 0x8e, 0x13, 0x90, 0xd2, 0xd4, 0x4c, 0x58, 0xff, 0x52, + 0x9c, 0x11, 0x89, 0x1e, 0xd7, 0x37, 0x81, 0x41, 0x9e, 0xde, 0x76, 0xb5, + 0x7c, 0x34, 0xed, 0xb3, 0x84, 0x8e, 0x99, 0xc3, 0xf0, 0x79, 0x9a, 0xa4, + 0x04, 0xf8, 0x8d, 0x4c, 0x52, 0x9d, 0xf5, 0x04, 0x2e, 0x2c, 0x3e, 0xa0, + 0xdd, 0x4a, 0x68, 0x77, 0x6f, 0xbb, 0xac, 0x8e, 0xf3, 0x8f, 0x84, 0x02, + 0x81, 0x94, 0x0c, 0xf7, 0xb4, 0x46, 0x7b, 0x10, 0x98, 0x6b, 0x0c, 0x52, + 0x92, 0x1c, 0x23, 0x10, 0xe7, 0x09, 0xe0, 0x69, 0x63, 0x90, 0xa4, 0x76, + 0xe7, 0x38, 0x81, 0x38, 0x23, 0x08, 0x6f, 0x90, 0x4a, 0x4a, 0x8f, 0xdd, + 0xfb, 0xe2, 0x0d, 0x21, 0x74, 0x1b, 0x4d, 0xc9, 0xf6, 0xc0, 0x45, 0x9e, + 0xda, 0x0e, 0xd3, 0x00, 0x9c, 0x04, 0xfc, 0x09, 0x78, 0x06, 0x38, 0x1f, + 0xe8, 0x61, 0x2c, 0x92, 0xea, 0xca, 0xc2, 0x00, 0x49, 0x75, 0xd4, 0x03, + 0xb8, 0x18, 0xf8, 0x1b, 0xf0, 0xdf, 0xc0, 0x6e, 0x46, 0xd2, 0x29, 0x7a, + 0x03, 0x97, 0x24, 0x74, 0x3c, 0xfd, 0x49, 0x7b, 0xb6, 0x5c, 0x47, 0x73, + 0x21, 0x42, 0x4a, 0xd3, 0x06, 0xc0, 0x99, 0xc6, 0x10, 0xc5, 0x07, 0x57, + 0x92, 0xd4, 0x31, 0xc6, 0x01, 0x1f, 0x19, 0x43, 0xd4, 0xfd, 0x9b, 0x3f, + 0xd3, 0xa5, 0x34, 0x4d, 0x02, 0x96, 0x1a, 0x43, 0xb4, 0xc6, 0xc4, 0x8e, + 0xe7, 0xb3, 0x38, 0x46, 0xb5, 0xb3, 0xec, 0x01, 0x5c, 0x4d, 0x58, 0x93, + 0xfe, 0x34, 0x16, 0x08, 0x48, 0xaa, 0x21, 0x0b, 0x03, 0x24, 0xd5, 0x49, + 0x03, 0x70, 0x06, 0xa1, 0x3a, 0xf3, 0x67, 0xc0, 0x0e, 0x46, 0xd2, 0xe9, + 0xfe, 0x2e, 0xa1, 0x9f, 0x1d, 0x27, 0x7a, 0xe3, 0xd4, 0x26, 0xe3, 0x8d, + 0x40, 0x4a, 0x52, 0x23, 0xb0, 0x99, 0x31, 0x94, 0xd6, 0x04, 0xdc, 0x60, + 0x0c, 0x92, 0xd4, 0x21, 0xe6, 0x11, 0xde, 0xd2, 0x53, 0x79, 0x8e, 0x13, + 0x90, 0xd2, 0xf4, 0x2e, 0xf0, 0x90, 0x31, 0x44, 0x4b, 0xa9, 0x7b, 0x64, + 0x77, 0x42, 0x37, 0x55, 0x75, 0xae, 0x1d, 0x81, 0xab, 0x08, 0x1d, 0xe3, + 0x4e, 0x33, 0x0e, 0x49, 0x75, 0x62, 0x61, 0x80, 0xa4, 0xba, 0xd8, 0x1d, + 0xb8, 0x1b, 0xf8, 0x2d, 0x76, 0x08, 0xe8, 0x4a, 0x83, 0x81, 0x03, 0xbd, + 0x11, 0xcc, 0xde, 0x4c, 0x42, 0xcb, 0x6c, 0x49, 0xe9, 0xf1, 0x01, 0x42, + 0x9c, 0xbb, 0x81, 0xb7, 0x8c, 0x41, 0x92, 0x3a, 0x8c, 0x5d, 0x59, 0xe2, + 0x1c, 0x8b, 0x05, 0xf5, 0x52, 0xaa, 0xec, 0xe2, 0x17, 0xef, 0x48, 0xd2, + 0x29, 0x86, 0x3e, 0x04, 0xd8, 0xd2, 0x53, 0xda, 0x65, 0x76, 0x07, 0x7e, + 0x0f, 0xdc, 0x05, 0xec, 0x6a, 0x1c, 0x92, 0xea, 0xc0, 0xc2, 0x00, 0x49, + 0x55, 0xd7, 0x1d, 0xf8, 0x77, 0xc2, 0x43, 0xc8, 0x63, 0x8c, 0xa3, 0x12, + 0x8e, 0x4f, 0xe4, 0xe7, 0xdf, 0x29, 0x9e, 0xca, 0x68, 0x13, 0x81, 0x66, + 0x63, 0x90, 0x92, 0x33, 0x00, 0x18, 0x66, 0x0c, 0x51, 0x7c, 0x60, 0x25, + 0x49, 0x1d, 0x6b, 0x3c, 0x30, 0xc7, 0x18, 0x4a, 0x6b, 0x00, 0xce, 0x35, + 0x06, 0x29, 0x49, 0x16, 0x06, 0xc4, 0xeb, 0x4e, 0xe8, 0x22, 0x99, 0x82, + 0xe3, 0x3d, 0x9d, 0x95, 0x70, 0x1c, 0xf0, 0x24, 0xf0, 0x6f, 0xc5, 0xf5, + 0x25, 0x49, 0x95, 0x65, 0x61, 0x80, 0xa4, 0x2a, 0xdb, 0x82, 0xb0, 0x00, + 0xf4, 0x0d, 0xa0, 0x97, 0x71, 0x54, 0xc6, 0x01, 0x09, 0x1c, 0xc3, 0xc1, + 0x58, 0x51, 0xdd, 0x16, 0x2e, 0x40, 0x48, 0x69, 0x3a, 0x97, 0x30, 0x8f, + 0x58, 0xe5, 0x2c, 0x24, 0xbc, 0x25, 0x22, 0x49, 0xea, 0x38, 0x8b, 0x81, + 0x9b, 0x8d, 0x21, 0xca, 0x05, 0x46, 0x20, 0x25, 0xe9, 0x71, 0x60, 0x86, + 0x31, 0x44, 0x4b, 0xa5, 0x8b, 0xe4, 0x81, 0x9e, 0xca, 0xca, 0xe8, 0x0d, + 0x7c, 0x13, 0x98, 0x0c, 0x6c, 0x65, 0x1c, 0x92, 0xaa, 0xca, 0xc2, 0x00, + 0x49, 0x55, 0xb5, 0x3d, 0x61, 0x5e, 0xda, 0x89, 0x46, 0x51, 0x39, 0xbb, + 0x27, 0x70, 0x0c, 0x8d, 0x9e, 0xc6, 0x68, 0xcb, 0x8a, 0x9b, 0x1c, 0x49, + 0xe9, 0x71, 0x8c, 0x40, 0x9c, 0x5b, 0x80, 0xf7, 0x8c, 0x41, 0x92, 0x3a, + 0x9c, 0xdd, 0x59, 0xe2, 0xec, 0x09, 0x7c, 0xdc, 0x18, 0xa4, 0xe4, 0x34, + 0x03, 0x93, 0x8c, 0x21, 0xda, 0x29, 0x40, 0x8f, 0x04, 0x8e, 0xc3, 0x71, + 0xab, 0xd5, 0x73, 0x2c, 0xf0, 0x20, 0x30, 0xc4, 0x28, 0x24, 0x55, 0x91, + 0x85, 0x01, 0x92, 0xaa, 0x68, 0x33, 0xe0, 0x1e, 0x60, 0x47, 0xa3, 0xa8, + 0xa4, 0x6d, 0x12, 0x38, 0x06, 0x0b, 0x03, 0xe2, 0x3d, 0x08, 0xcc, 0x35, + 0x06, 0x29, 0x39, 0xdb, 0x11, 0x66, 0x6d, 0xaa, 0x3c, 0x1f, 0x54, 0x49, + 0x52, 0xe7, 0xb8, 0x17, 0x78, 0xd5, 0x18, 0xa2, 0x58, 0xfc, 0x27, 0xa5, + 0xc9, 0x6e, 0x7e, 0xf1, 0x36, 0x05, 0x0e, 0x4f, 0xe0, 0x38, 0xb6, 0xf6, + 0x54, 0x56, 0xd2, 0xf6, 0xc0, 0x9d, 0xc5, 0x75, 0x26, 0x49, 0x95, 0x62, + 0x61, 0x80, 0xa4, 0x2a, 0xfa, 0x1e, 0xe1, 0x01, 0x85, 0xaa, 0x69, 0x00, + 0x61, 0x56, 0x65, 0x5d, 0x6d, 0x0b, 0x7c, 0xcc, 0xd3, 0x18, 0xcd, 0x85, + 0x07, 0x29, 0x4d, 0x63, 0xbc, 0x37, 0x88, 0x32, 0x17, 0xb8, 0xdd, 0x18, + 0x24, 0xa9, 0x53, 0x34, 0x03, 0xd7, 0x1b, 0x43, 0x94, 0xd1, 0x38, 0xf3, + 0x58, 0x4a, 0xd1, 0x24, 0x60, 0xa9, 0x31, 0x44, 0xab, 0xfb, 0x38, 0x81, + 0xee, 0xc0, 0x46, 0x9e, 0xc6, 0xca, 0xda, 0x01, 0xf8, 0xae, 0x31, 0x48, + 0xaa, 0x1a, 0x17, 0xff, 0x24, 0x55, 0xf1, 0x43, 0xed, 0x19, 0xc6, 0x50, + 0x69, 0x0d, 0xd4, 0x7b, 0x06, 0x75, 0x23, 0xf5, 0x2e, 0x6c, 0xe8, 0x6a, + 0x16, 0x06, 0x48, 0x69, 0x1a, 0x69, 0x04, 0x51, 0x6e, 0x04, 0x16, 0x19, + 0x83, 0x24, 0x75, 0x9a, 0x6b, 0x8d, 0x20, 0xca, 0x60, 0x42, 0x6b, 0x63, + 0x49, 0x69, 0x79, 0x17, 0x78, 0xd8, 0x18, 0xa2, 0xd5, 0xbd, 0x9b, 0x64, + 0x86, 0x25, 0xb6, 0xc5, 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, + 0x2f, 0x4f, 0x61, 0xe5, 0x9d, 0x85, 0x85, 0x79, 0x92, 0x2a, 0xc6, 0xc2, + 0x00, 0x49, 0x55, 0xb3, 0x0c, 0x98, 0x67, 0x0c, 0x95, 0x57, 0xe7, 0x8a, + 0xf4, 0xe1, 0x9e, 0xbe, 0x68, 0x33, 0x81, 0xc7, 0x8d, 0x41, 0x4a, 0xce, + 0xfe, 0xc0, 0xde, 0xc6, 0x10, 0xc5, 0x31, 0x02, 0x92, 0xd4, 0xb9, 0x9e, + 0xf3, 0xf3, 0x68, 0x34, 0xc7, 0x09, 0x48, 0x69, 0xb2, 0x78, 0x3f, 0xde, + 0x9e, 0xc0, 0xce, 0x35, 0xde, 0xff, 0x65, 0x9e, 0xc2, 0xca, 0xfb, 0xc0, + 0xf3, 0x24, 0xa9, 0x6a, 0x2c, 0x0c, 0x90, 0x54, 0x45, 0x3f, 0x34, 0x82, + 0x4a, 0x5b, 0x04, 0x2c, 0xa9, 0xe9, 0xbe, 0xf7, 0x01, 0x8e, 0xf3, 0x14, + 0x46, 0xbb, 0x9d, 0xd0, 0xc2, 0x55, 0x52, 0x5a, 0x7c, 0x50, 0x10, 0xe7, + 0x75, 0xe0, 0x7e, 0x63, 0x90, 0xa4, 0x4e, 0x67, 0x51, 0x56, 0x9c, 0x33, + 0x81, 0x0d, 0x8d, 0x41, 0x4a, 0x8e, 0x85, 0x01, 0x6d, 0x33, 0xac, 0xc6, + 0xfb, 0xbe, 0x08, 0x47, 0x49, 0x54, 0xdd, 0x0f, 0x8c, 0x40, 0x52, 0xd5, + 0x58, 0x18, 0x20, 0xa9, 0x8a, 0xfe, 0x13, 0x18, 0x6f, 0x0c, 0x95, 0xf5, + 0x76, 0x8d, 0xf7, 0xfd, 0x04, 0x5c, 0x0c, 0x6b, 0x0b, 0x17, 0x1c, 0xa4, + 0x34, 0xef, 0x07, 0xce, 0x35, 0x86, 0x28, 0xd7, 0x60, 0xb1, 0x94, 0x24, + 0x75, 0x85, 0xeb, 0xf0, 0xed, 0xbb, 0x18, 0xfd, 0x81, 0x11, 0xc6, 0x20, + 0x25, 0xe7, 0x31, 0x60, 0x86, 0x31, 0x44, 0xab, 0x7b, 0x57, 0xc9, 0xb7, + 0x3d, 0x85, 0x95, 0x75, 0x1b, 0xf0, 0x7d, 0x63, 0x90, 0x54, 0x35, 0x16, + 0x06, 0x48, 0xaa, 0xa2, 0x65, 0xc0, 0x19, 0xc0, 0x1f, 0x8c, 0xa2, 0x92, + 0x5e, 0xf7, 0x86, 0x2f, 0xdb, 0xbf, 0x97, 0x93, 0x8d, 0x41, 0x4a, 0xce, + 0x09, 0xc0, 0xd6, 0xc6, 0x10, 0xe5, 0x06, 0x23, 0x90, 0xa4, 0x2e, 0x31, + 0x03, 0xb8, 0xdb, 0x18, 0xa2, 0xd8, 0x25, 0x48, 0x4a, 0x4f, 0x33, 0x70, + 0x87, 0x31, 0x44, 0x3b, 0x16, 0xd8, 0xa8, 0xc6, 0xfb, 0xff, 0xba, 0xa7, + 0xb0, 0x92, 0x7e, 0x4b, 0xe8, 0xd4, 0xd3, 0x64, 0x14, 0x92, 0xaa, 0xc6, + 0xc2, 0x00, 0x49, 0x55, 0xb5, 0x88, 0x50, 0x1c, 0x70, 0x29, 0xf5, 0x6d, + 0x5b, 0x9f, 0xaa, 0x27, 0x6a, 0xba, 0xdf, 0x0d, 0x58, 0x18, 0xd0, 0x16, + 0x0f, 0x01, 0x73, 0x8c, 0x41, 0x4a, 0x8e, 0x0f, 0x08, 0xe2, 0x4c, 0x01, + 0xa6, 0x1a, 0x83, 0x24, 0x75, 0x19, 0xc7, 0x09, 0xc4, 0x39, 0x05, 0x18, + 0x68, 0x0c, 0x52, 0x72, 0xec, 0xee, 0x17, 0x6f, 0x03, 0x60, 0x68, 0x8d, + 0xf7, 0xff, 0x29, 0x4f, 0x61, 0xa5, 0x2c, 0x03, 0xbe, 0x0e, 0x9c, 0x03, + 0x2c, 0x36, 0x0e, 0x49, 0x55, 0x64, 0x61, 0x80, 0xa4, 0x2a, 0x6b, 0x06, + 0x2e, 0x27, 0xcc, 0x84, 0x7f, 0xd6, 0x38, 0x2a, 0xe3, 0xa1, 0x9a, 0xee, + 0xf7, 0xbe, 0xc0, 0x36, 0x9e, 0xbe, 0x68, 0x2e, 0x34, 0x48, 0xe9, 0xd9, + 0x10, 0x38, 0xdd, 0x18, 0xa2, 0xf8, 0x40, 0x4a, 0x92, 0xba, 0xd6, 0x6f, + 0x81, 0x0f, 0x8d, 0xa1, 0xb4, 0x1e, 0xc0, 0xd9, 0xc6, 0x20, 0x25, 0xe7, + 0x76, 0x1c, 0xb1, 0xd2, 0x16, 0x75, 0x7e, 0x89, 0xe4, 0x21, 0x4f, 0x5f, + 0x65, 0x3c, 0x03, 0x1c, 0x05, 0x7c, 0x0d, 0x3b, 0x05, 0x48, 0xaa, 0x30, + 0x0b, 0x03, 0x24, 0xd5, 0xc1, 0x7d, 0xc0, 0x7e, 0xc0, 0xbf, 0xe3, 0xe2, + 0x4f, 0x57, 0x5b, 0x06, 0x4c, 0xaa, 0xe9, 0xbe, 0x37, 0x7a, 0xfa, 0xda, + 0xc4, 0xc2, 0x00, 0x29, 0x3d, 0xa7, 0x51, 0xef, 0xb6, 0x99, 0x5d, 0xa5, + 0x09, 0xb8, 0xc9, 0x18, 0x24, 0xa9, 0x4b, 0x7d, 0x00, 0xdc, 0x6a, 0x0c, + 0x51, 0xec, 0x16, 0x24, 0xa5, 0xe7, 0x5d, 0xe0, 0x61, 0x63, 0x88, 0xd6, + 0x48, 0x7d, 0x9f, 0x93, 0x4c, 0xc4, 0x87, 0xd0, 0x5d, 0x6d, 0x01, 0xf0, + 0x55, 0x60, 0x7f, 0xe0, 0x01, 0xe3, 0x90, 0x54, 0x75, 0x16, 0x06, 0x48, + 0xaa, 0x8b, 0xc5, 0xc0, 0xb7, 0x80, 0x5d, 0x80, 0xab, 0x80, 0xa5, 0x46, + 0xd2, 0x25, 0xfe, 0x0a, 0xcc, 0xae, 0xe9, 0xbe, 0x3b, 0x46, 0x20, 0xde, + 0x6c, 0xe0, 0x71, 0x63, 0x90, 0x92, 0xe3, 0x83, 0x81, 0x38, 0x93, 0x81, + 0x69, 0xc6, 0x20, 0x49, 0x5d, 0xce, 0xee, 0x2d, 0x71, 0x0e, 0x03, 0x76, + 0x35, 0x06, 0x29, 0x39, 0x16, 0xf3, 0xc7, 0x1b, 0x08, 0x1c, 0x58, 0xd3, + 0x7d, 0x9f, 0x49, 0x78, 0xa1, 0x4a, 0x9d, 0x6f, 0x29, 0x70, 0x25, 0xb0, + 0x33, 0xf0, 0x1f, 0x38, 0x0a, 0x57, 0x52, 0x4d, 0x58, 0x18, 0x20, 0xa9, + 0x6e, 0xa6, 0x03, 0x17, 0x03, 0xfb, 0x00, 0xbf, 0x06, 0x16, 0x19, 0x49, + 0xa7, 0xba, 0xb2, 0xc6, 0x37, 0x79, 0x07, 0x79, 0xfa, 0xa2, 0x4d, 0xc0, + 0x0a, 0x74, 0x29, 0x35, 0x5b, 0x50, 0xef, 0x59, 0x9a, 0x5d, 0xc9, 0x07, + 0x51, 0x92, 0x54, 0x0d, 0x13, 0x81, 0x77, 0x8c, 0x21, 0xca, 0x48, 0x23, + 0x90, 0x92, 0xbc, 0x6f, 0x57, 0xbc, 0x3a, 0xbf, 0x4c, 0xf2, 0x73, 0x4f, + 0x5f, 0xa7, 0x5a, 0x04, 0xfc, 0x02, 0xd8, 0x0b, 0xb8, 0x84, 0x50, 0x9c, + 0x21, 0x49, 0xb5, 0x61, 0x61, 0x80, 0xa4, 0xba, 0x7a, 0x1e, 0xf8, 0x07, + 0x60, 0x3b, 0xe0, 0xeb, 0xc0, 0x5c, 0x23, 0xe9, 0x70, 0x2f, 0x12, 0x66, + 0x79, 0xd6, 0xf5, 0x06, 0xcf, 0x9f, 0x79, 0xf1, 0x5c, 0x60, 0x90, 0xd2, + 0x33, 0x12, 0xe8, 0x69, 0x0c, 0xa5, 0x7d, 0x04, 0xfc, 0xc1, 0x18, 0x24, + 0xa9, 0x12, 0x96, 0xe0, 0x68, 0x97, 0x58, 0xe7, 0x03, 0x0d, 0xc6, 0x20, + 0x25, 0xe5, 0x31, 0xe0, 0x6d, 0x63, 0x88, 0x56, 0xe7, 0xf1, 0x93, 0x37, + 0x02, 0x2f, 0x7b, 0x0a, 0x3b, 0xdc, 0x3c, 0xe0, 0x0a, 0x60, 0x27, 0xe0, + 0x22, 0xe0, 0x6f, 0x46, 0x22, 0xa9, 0x8e, 0x7c, 0x48, 0x22, 0xa9, 0xee, + 0x66, 0x01, 0x5f, 0x03, 0xb6, 0x07, 0xfe, 0x05, 0x78, 0xdd, 0x48, 0x3a, + 0xcc, 0xbf, 0x51, 0xdf, 0x11, 0x0e, 0x8e, 0x11, 0x88, 0xb7, 0x0c, 0xb8, + 0xc3, 0x18, 0xa4, 0xe4, 0x38, 0x46, 0x20, 0xce, 0x1f, 0x08, 0x0b, 0x42, + 0x92, 0xa4, 0x6a, 0xb0, 0x8b, 0x4b, 0x9c, 0x9d, 0x80, 0x43, 0x8c, 0x41, + 0x4a, 0x4a, 0x13, 0x70, 0xbb, 0x31, 0x44, 0xdb, 0x0f, 0xd8, 0xa6, 0xa6, + 0xfb, 0xbe, 0x04, 0xf8, 0xff, 0x3c, 0x85, 0x1d, 0xe6, 0x35, 0xe0, 0x7f, + 0x00, 0x5b, 0x17, 0xbf, 0x3a, 0x56, 0x4e, 0x52, 0xad, 0x59, 0x18, 0x20, + 0x29, 0x15, 0xf3, 0x81, 0x1f, 0x10, 0xe6, 0x3a, 0x9d, 0x03, 0x8c, 0x27, + 0x3c, 0xd0, 0x54, 0xfb, 0xf8, 0x23, 0x30, 0xae, 0xa6, 0xfb, 0xbe, 0x01, + 0x70, 0xa2, 0xa7, 0x30, 0xda, 0x43, 0xc0, 0x1c, 0x63, 0x90, 0x92, 0xb2, + 0x33, 0x8e, 0x57, 0x89, 0xe5, 0x03, 0x28, 0x49, 0xaa, 0x96, 0xfb, 0x09, + 0x9d, 0xcd, 0x54, 0x9e, 0x45, 0x82, 0x52, 0x7a, 0xec, 0xf6, 0x17, 0xaf, + 0x01, 0x18, 0x56, 0xe3, 0xfd, 0xbf, 0x9e, 0xb0, 0x16, 0xaa, 0xf6, 0xb1, + 0x14, 0xf8, 0x13, 0x70, 0x36, 0xb0, 0x0b, 0xa1, 0x53, 0xc0, 0x7c, 0x63, + 0x91, 0x94, 0x02, 0x0b, 0x03, 0x24, 0xa5, 0xf8, 0xc1, 0x6d, 0x1c, 0xe1, + 0x0d, 0xf1, 0x6d, 0x81, 0x4b, 0x81, 0xc7, 0x8d, 0xa5, 0x4d, 0xde, 0x00, + 0x3e, 0x5d, 0xe3, 0xfd, 0x3f, 0x06, 0xd8, 0xc8, 0xd3, 0x18, 0xcd, 0x85, + 0x05, 0x29, 0x3d, 0xb6, 0x0f, 0x8e, 0x33, 0x1b, 0x98, 0x64, 0x0c, 0x92, + 0x54, 0x39, 0x37, 0x18, 0x41, 0x94, 0x73, 0x71, 0xac, 0x90, 0x94, 0x9a, + 0xdb, 0xf1, 0x25, 0x99, 0xb6, 0xa8, 0x7b, 0xb7, 0xc9, 0x0b, 0x80, 0x57, + 0x3d, 0x8d, 0x6d, 0xf2, 0x2c, 0xf0, 0x65, 0xc2, 0x9a, 0x72, 0x23, 0x70, + 0x33, 0xf5, 0xed, 0x9e, 0x2a, 0x49, 0x6b, 0x64, 0x61, 0x80, 0xa4, 0x94, + 0xcd, 0x00, 0x2e, 0x07, 0xf6, 0x07, 0x0e, 0x04, 0x7e, 0x08, 0xbc, 0x63, + 0x2c, 0xa5, 0xbc, 0x4d, 0xa8, 0x98, 0xae, 0x73, 0x6e, 0x8e, 0x11, 0x68, + 0x1b, 0x0b, 0x03, 0xa4, 0xf4, 0x8c, 0x34, 0x82, 0x28, 0x37, 0x12, 0xda, + 0x74, 0x4a, 0x92, 0xaa, 0xe5, 0x1a, 0x23, 0x88, 0xb2, 0x05, 0x70, 0x92, + 0x31, 0x48, 0x49, 0x79, 0x17, 0x78, 0xd8, 0x18, 0xa2, 0x0d, 0x05, 0x36, + 0xac, 0xf1, 0xfe, 0xcf, 0x01, 0x3e, 0x49, 0x18, 0xbb, 0xaa, 0xd6, 0x9b, + 0x4d, 0xe8, 0x08, 0x70, 0x00, 0xb0, 0x17, 0x70, 0x19, 0x30, 0xd3, 0x58, + 0x24, 0xa5, 0xca, 0xc2, 0x00, 0x49, 0xb9, 0x98, 0x02, 0x7c, 0x9e, 0x30, + 0x0f, 0xea, 0x54, 0xe0, 0x97, 0x7e, 0x50, 0x5e, 0xaf, 0x69, 0x84, 0xb7, + 0xed, 0xa7, 0xd6, 0xfc, 0x38, 0x2c, 0x0c, 0x68, 0xdb, 0xcd, 0x91, 0x1d, + 0x37, 0xa4, 0xb4, 0x1c, 0x4e, 0x68, 0x85, 0xa8, 0xf2, 0x1c, 0x23, 0x20, + 0x49, 0xd5, 0xf4, 0x22, 0xf0, 0xa8, 0x31, 0x44, 0x71, 0x9c, 0x80, 0x94, + 0x1e, 0x8b, 0xfb, 0xe3, 0xf5, 0x01, 0x8e, 0xad, 0xf9, 0x31, 0x3c, 0x5d, + 0x1c, 0xc3, 0x0c, 0x4f, 0xe7, 0x3a, 0xbd, 0x0d, 0xfc, 0x02, 0x18, 0x41, + 0x58, 0x2b, 0xfe, 0x1f, 0xc0, 0x63, 0xc6, 0x22, 0x29, 0x07, 0x16, 0x06, + 0x48, 0xca, 0xcd, 0x62, 0xe0, 0x56, 0x42, 0x6b, 0xfc, 0x41, 0xc0, 0x11, + 0x84, 0x4a, 0xd0, 0xe7, 0x8d, 0x66, 0x25, 0x4f, 0x01, 0x47, 0x03, 0x2f, + 0xd4, 0xfc, 0x38, 0xf6, 0x20, 0xcc, 0xd2, 0x56, 0x9c, 0x09, 0x40, 0x93, + 0x31, 0x48, 0x49, 0xf1, 0x01, 0x40, 0x9c, 0x97, 0x81, 0x87, 0x8c, 0x41, + 0x92, 0x2a, 0xcb, 0xe2, 0xad, 0x38, 0xa7, 0x01, 0x03, 0x8c, 0x41, 0x4a, + 0xee, 0x3e, 0x5e, 0xf1, 0x52, 0x78, 0xb9, 0xe4, 0x39, 0xd2, 0x78, 0xd1, + 0xa7, 0x23, 0x72, 0xf9, 0x0e, 0xa1, 0x58, 0x7e, 0x30, 0x70, 0x11, 0x70, + 0x1b, 0x76, 0x85, 0x93, 0x94, 0x19, 0x0b, 0x03, 0x24, 0xe5, 0xac, 0x09, + 0xb8, 0x9f, 0x30, 0x3b, 0x6a, 0x0f, 0x60, 0x08, 0x70, 0x29, 0x30, 0x39, + 0xe3, 0x0f, 0x85, 0xcd, 0x84, 0xf6, 0x59, 0x07, 0x03, 0xaf, 0x24, 0x70, + 0x3c, 0x8d, 0x5e, 0xe6, 0x6d, 0xe2, 0x82, 0x82, 0x94, 0x96, 0x9e, 0xc0, + 0x39, 0xc6, 0x10, 0xe5, 0xda, 0xe2, 0x67, 0xa4, 0x24, 0xa9, 0x9a, 0xae, + 0xc3, 0x19, 0xc0, 0x31, 0x7a, 0x03, 0xa7, 0x1b, 0x83, 0x94, 0x94, 0xc7, + 0x08, 0x6f, 0x43, 0x2b, 0xce, 0x08, 0xa0, 0x21, 0x81, 0xe3, 0x78, 0x91, + 0x30, 0x56, 0xf5, 0x32, 0xf2, 0x7d, 0xe1, 0xa3, 0x89, 0xd0, 0x41, 0xf6, + 0xeb, 0xc0, 0x9e, 0xc5, 0xf6, 0x15, 0xe0, 0x01, 0x7c, 0x09, 0x46, 0x52, + 0xc6, 0x2c, 0x0c, 0x90, 0xa4, 0x15, 0x5e, 0x05, 0x2e, 0x27, 0xcc, 0x14, + 0x1b, 0x58, 0xdc, 0x0c, 0xfc, 0x27, 0xf0, 0x08, 0x79, 0x2c, 0x32, 0x4d, + 0x01, 0x8e, 0x27, 0xb4, 0xcf, 0x5a, 0x94, 0xc8, 0x31, 0x39, 0x46, 0x20, + 0xde, 0x32, 0xe0, 0x0e, 0x63, 0x90, 0x92, 0x72, 0x0a, 0xb0, 0xb9, 0x31, + 0x44, 0xb9, 0xde, 0x08, 0x24, 0xa9, 0xd2, 0x66, 0x01, 0x77, 0x1a, 0x43, + 0x14, 0xbb, 0x09, 0x49, 0x69, 0x69, 0x02, 0x26, 0x19, 0x43, 0xb4, 0x6d, + 0x81, 0x7d, 0x12, 0x39, 0x96, 0x85, 0x84, 0x97, 0xa1, 0x86, 0x92, 0xc7, + 0x98, 0xc8, 0xa5, 0xc0, 0xc3, 0xc0, 0x77, 0x09, 0x6b, 0xba, 0x9b, 0x12, + 0x8a, 0x23, 0xbe, 0x46, 0xe8, 0x16, 0x20, 0x49, 0x02, 0x7a, 0x18, 0x81, + 0x24, 0xad, 0xd1, 0x7b, 0x84, 0x76, 0x52, 0xb7, 0x15, 0xbf, 0xef, 0x0b, + 0x1c, 0x06, 0x1c, 0x49, 0x18, 0x3f, 0x70, 0x14, 0xd0, 0x2b, 0x91, 0x63, + 0x7d, 0x06, 0xf8, 0x3f, 0xc0, 0xcd, 0xa4, 0xf5, 0x36, 0xe4, 0x26, 0xc5, + 0xb9, 0x52, 0x9c, 0x87, 0x81, 0x39, 0xc6, 0x20, 0x25, 0xc5, 0x85, 0xff, + 0xf8, 0xef, 0x87, 0x2f, 0x18, 0x83, 0x24, 0x55, 0xde, 0x58, 0xe0, 0x24, + 0x63, 0x28, 0xed, 0x78, 0x60, 0x1b, 0xe0, 0x2d, 0xa3, 0x90, 0x92, 0x31, + 0x01, 0x38, 0xdf, 0x18, 0xa2, 0x35, 0x12, 0x46, 0x6c, 0xa6, 0xe2, 0x2e, + 0x60, 0x7f, 0xe0, 0x04, 0x42, 0x07, 0x81, 0xfd, 0x13, 0x39, 0xae, 0xa5, + 0xc0, 0x93, 0xc0, 0x7d, 0xc0, 0xbd, 0x84, 0x97, 0x5b, 0xde, 0xf3, 0xf2, + 0x95, 0xa4, 0x75, 0xb3, 0x30, 0x40, 0x92, 0x5a, 0x67, 0x01, 0x61, 0xc4, + 0xc0, 0xe4, 0xe2, 0xf7, 0xcb, 0x0b, 0x05, 0x0e, 0x06, 0x0e, 0x28, 0xb6, + 0xed, 0x6b, 0x74, 0x3c, 0xf3, 0x08, 0x85, 0x00, 0xbf, 0x01, 0xfe, 0x4a, + 0x9a, 0xed, 0x91, 0x4f, 0xf6, 0xe7, 0x5c, 0x9b, 0x17, 0x12, 0x24, 0xa5, + 0xa3, 0x3f, 0xe1, 0xad, 0x09, 0x95, 0xe7, 0xdc, 0x6a, 0x49, 0xaa, 0x87, + 0xdf, 0x01, 0x3f, 0x01, 0xfa, 0x19, 0x45, 0x29, 0xdd, 0x80, 0xf3, 0x08, + 0xdd, 0xf2, 0x24, 0xa5, 0xe1, 0x76, 0x42, 0x17, 0xc0, 0xee, 0x46, 0x11, + 0x65, 0x38, 0xf0, 0xed, 0x04, 0x8f, 0x6b, 0x32, 0x70, 0x10, 0x70, 0x34, + 0x70, 0x01, 0x70, 0x16, 0xb0, 0x51, 0x8d, 0xf6, 0xff, 0x35, 0x42, 0xb7, + 0xd3, 0x29, 0x84, 0xe2, 0xed, 0x07, 0x80, 0x0f, 0xbd, 0x5c, 0x25, 0xa9, + 0x1c, 0x1f, 0x98, 0x48, 0x52, 0x9c, 0x55, 0x0b, 0x05, 0x00, 0xb6, 0x20, + 0x54, 0xdd, 0xee, 0x03, 0xec, 0x05, 0xec, 0x4d, 0x98, 0x5f, 0xb5, 0x61, + 0x45, 0xf6, 0xf9, 0x45, 0xe0, 0xcf, 0xc5, 0x3e, 0xdf, 0x0a, 0x7c, 0x94, + 0xc1, 0x8d, 0x9c, 0xe2, 0x59, 0x18, 0x20, 0xa5, 0xe5, 0x2c, 0xa0, 0x8f, + 0x31, 0x94, 0xb6, 0x14, 0xb8, 0xd1, 0x18, 0x24, 0xa9, 0x36, 0xf7, 0x68, + 0xb7, 0x00, 0xa3, 0x8c, 0xa2, 0xb4, 0xd1, 0x58, 0x18, 0x20, 0xa5, 0x64, + 0x2e, 0x61, 0x2c, 0xe6, 0xa1, 0x46, 0x11, 0xe5, 0x50, 0xc2, 0x88, 0xd1, + 0x59, 0x09, 0x1e, 0x5b, 0x13, 0x61, 0x6d, 0xf0, 0xcf, 0xc0, 0xe7, 0x08, + 0xdd, 0x11, 0x4e, 0x20, 0x74, 0x8f, 0xd9, 0xa9, 0x42, 0x3f, 0xcf, 0x9f, + 0x03, 0x9e, 0x06, 0x9e, 0x25, 0x74, 0x6f, 0x78, 0x0c, 0x78, 0xc7, 0x4b, + 0x53, 0x92, 0xda, 0xce, 0xc2, 0x00, 0x49, 0x6a, 0x3f, 0xb3, 0x09, 0x55, + 0xd9, 0xb7, 0xb7, 0xf8, 0xb3, 0x6e, 0xc0, 0x0e, 0xc5, 0x87, 0xeb, 0x21, + 0x2d, 0x7e, 0xdd, 0x11, 0x18, 0x04, 0x6c, 0x59, 0xfc, 0x3b, 0xed, 0xfd, + 0x21, 0xff, 0x55, 0xc2, 0x88, 0x80, 0xe5, 0x1f, 0xa0, 0xef, 0x25, 0xaf, + 0xd6, 0x90, 0xdd, 0x09, 0x1d, 0x03, 0x14, 0x7f, 0x2d, 0x3f, 0x66, 0x0c, + 0x52, 0x52, 0x1c, 0x23, 0x10, 0xe7, 0x0e, 0xe0, 0x6d, 0x63, 0x90, 0xa4, + 0xda, 0x18, 0x8b, 0x85, 0x01, 0x31, 0xf6, 0x25, 0x14, 0xb8, 0x3f, 0x6d, + 0x14, 0x52, 0x32, 0x26, 0x60, 0x61, 0x40, 0xac, 0x6e, 0x84, 0x35, 0xa5, + 0xab, 0x13, 0x3f, 0xce, 0x0f, 0x81, 0x9b, 0x8a, 0x0d, 0x60, 0x3b, 0xc2, + 0x48, 0xce, 0x96, 0x2f, 0x3c, 0xed, 0x40, 0xfb, 0xaf, 0x5b, 0x2e, 0x23, + 0x14, 0x5d, 0x4c, 0x27, 0x74, 0x01, 0x78, 0x19, 0x78, 0xa5, 0xd8, 0x5e, + 0x2e, 0xfe, 0xac, 0xc9, 0xcb, 0x50, 0x92, 0x3a, 0x86, 0x85, 0x01, 0x92, + 0xd4, 0xb1, 0x9a, 0x5a, 0x7c, 0xb8, 0x5d, 0x93, 0xee, 0x84, 0xe2, 0x80, + 0x41, 0x84, 0x6a, 0xe4, 0x01, 0xc5, 0xb6, 0x71, 0xf1, 0x6b, 0x8f, 0xe2, + 0xd7, 0x55, 0xbd, 0x0f, 0x2c, 0x21, 0x8c, 0x04, 0x58, 0x00, 0x4c, 0x23, + 0x3c, 0xb8, 0x98, 0x06, 0xcc, 0x04, 0x16, 0x65, 0x9e, 0xfb, 0xe1, 0xc0, + 0x66, 0x5e, 0x7e, 0xd1, 0x26, 0x7a, 0x13, 0x26, 0x25, 0x65, 0x30, 0x70, + 0x8c, 0x31, 0x44, 0x71, 0x8c, 0x80, 0x24, 0xd5, 0xcb, 0xa4, 0xe2, 0xbe, + 0x68, 0x4b, 0xa3, 0x28, 0x6d, 0x14, 0xf0, 0x15, 0x63, 0x90, 0x92, 0x31, + 0x01, 0xf8, 0xba, 0x31, 0x44, 0x6b, 0x24, 0xfd, 0xc2, 0x80, 0x55, 0xbd, + 0x51, 0x6c, 0xd7, 0xb7, 0xf8, 0xb3, 0xde, 0xc0, 0x56, 0xc5, 0x3d, 0xe5, + 0x56, 0xc0, 0xd6, 0x84, 0xce, 0xa8, 0xeb, 0x5b, 0xb3, 0x5c, 0x5a, 0xfc, + 0xfa, 0x2e, 0x61, 0xed, 0xf2, 0xfd, 0xe2, 0xe7, 0xf3, 0x0c, 0x42, 0x51, + 0xc0, 0x32, 0x2f, 0x31, 0x49, 0xea, 0x1a, 0x16, 0x06, 0x48, 0x52, 0xd7, + 0x5a, 0x46, 0xa8, 0x90, 0x9d, 0x6e, 0x14, 0xed, 0x7e, 0x03, 0xa7, 0xb6, + 0x2d, 0x20, 0x48, 0x4a, 0xc7, 0x18, 0x9c, 0x2f, 0x1a, 0x63, 0x01, 0xf0, + 0x47, 0x63, 0x90, 0xa4, 0x5a, 0x59, 0x4a, 0x78, 0xf3, 0xf1, 0x9f, 0x8d, + 0xa2, 0xb4, 0xd1, 0xc0, 0xbf, 0x61, 0x81, 0xb0, 0x94, 0x8a, 0x29, 0x84, + 0x07, 0xb0, 0x03, 0x8d, 0x22, 0xca, 0x49, 0xc0, 0x06, 0xc0, 0xe2, 0xcc, + 0x73, 0x58, 0x48, 0x78, 0x83, 0xff, 0x35, 0x2f, 0x09, 0x49, 0x4a, 0x43, + 0x37, 0x23, 0x90, 0x24, 0x25, 0xc8, 0xc2, 0x80, 0x78, 0xcb, 0x08, 0x6f, + 0x5a, 0x49, 0x4a, 0x87, 0x63, 0x04, 0xe2, 0xfc, 0x1e, 0x98, 0x6f, 0x0c, + 0x92, 0x54, 0x3b, 0x76, 0x7b, 0x89, 0xb3, 0x2d, 0x70, 0xb4, 0x31, 0x48, + 0xc9, 0x68, 0xf2, 0xde, 0xbe, 0x4d, 0xfa, 0x03, 0x47, 0x19, 0x83, 0x24, + 0x29, 0x35, 0x16, 0x06, 0x48, 0x92, 0x52, 0xb3, 0x23, 0xb0, 0xa7, 0x31, + 0x44, 0x7b, 0x04, 0x98, 0x63, 0x0c, 0x52, 0x32, 0xf6, 0x02, 0x3e, 0x66, + 0x0c, 0x51, 0x7c, 0xb0, 0x24, 0x49, 0xf5, 0xf4, 0x10, 0xf0, 0x82, 0x31, + 0x44, 0xb1, 0x98, 0x50, 0x4a, 0x8b, 0xdd, 0x00, 0xdb, 0x66, 0xb8, 0x11, + 0x48, 0x92, 0x52, 0x63, 0x61, 0x80, 0x24, 0x29, 0x35, 0x23, 0x8c, 0xa0, + 0x4d, 0x5c, 0x38, 0x90, 0xd2, 0x72, 0x81, 0x11, 0x44, 0x99, 0x05, 0x4c, + 0x36, 0x06, 0x49, 0xaa, 0xad, 0xeb, 0x8d, 0x20, 0xca, 0x39, 0x40, 0x1f, + 0x63, 0x90, 0x92, 0x31, 0x11, 0x67, 0xb9, 0xb7, 0xc5, 0xa9, 0x46, 0x20, + 0x49, 0x4a, 0x8d, 0x85, 0x01, 0x92, 0xa4, 0xd4, 0x58, 0xd1, 0xdd, 0x36, + 0x16, 0x06, 0x48, 0x69, 0x7d, 0xd6, 0x1f, 0x69, 0x0c, 0x51, 0xae, 0x27, + 0xcc, 0xa9, 0x96, 0x24, 0xd5, 0xd3, 0xb5, 0x40, 0xb3, 0x31, 0x94, 0xd6, + 0xdf, 0xfb, 0x29, 0x29, 0x29, 0x73, 0x81, 0x47, 0x8d, 0x21, 0xda, 0x4e, + 0xc0, 0x6e, 0xc6, 0x20, 0x49, 0x4a, 0x89, 0x85, 0x01, 0x92, 0xa4, 0x94, + 0xf4, 0x03, 0x8e, 0x31, 0x86, 0x68, 0xb3, 0x81, 0x29, 0xc6, 0x20, 0x25, + 0xe3, 0x58, 0xc2, 0xbc, 0x60, 0x95, 0xe7, 0x18, 0x01, 0x49, 0xaa, 0xb7, + 0x97, 0x09, 0x23, 0x05, 0x54, 0x9e, 0xe3, 0x04, 0xa4, 0xb4, 0x58, 0xfc, + 0xdf, 0x36, 0x8d, 0x46, 0x20, 0x49, 0x4a, 0x89, 0x85, 0x01, 0x92, 0xa4, + 0x94, 0x9c, 0x08, 0xf4, 0x32, 0x86, 0x68, 0x13, 0x81, 0x26, 0x63, 0x90, + 0x92, 0xe1, 0xc2, 0x7e, 0x9c, 0x97, 0x80, 0x47, 0x8c, 0x41, 0x92, 0x6a, + 0xcf, 0x22, 0xaf, 0x38, 0xc3, 0x80, 0xcd, 0x8c, 0x41, 0x4a, 0xc6, 0x78, + 0x23, 0x68, 0x13, 0xbb, 0xa8, 0x48, 0x92, 0x92, 0x62, 0x61, 0x80, 0x24, + 0xc9, 0x1b, 0x36, 0x2d, 0xe7, 0x9b, 0x04, 0x52, 0x3a, 0x7a, 0x03, 0x67, + 0x18, 0x43, 0x94, 0x6b, 0x8c, 0x40, 0x92, 0x92, 0x70, 0x23, 0xb0, 0xc4, + 0x18, 0x4a, 0xdb, 0x00, 0x38, 0xdb, 0x18, 0xa4, 0x64, 0x4c, 0x01, 0x66, + 0x19, 0x43, 0xb4, 0xa3, 0x80, 0x8d, 0x8d, 0x41, 0x92, 0x94, 0x0a, 0x0b, + 0x03, 0x24, 0x49, 0x29, 0xfd, 0x4c, 0x1b, 0x66, 0x0c, 0xd1, 0x9a, 0x80, + 0xc9, 0xc6, 0x20, 0x25, 0xe3, 0x54, 0x5c, 0xc0, 0x8a, 0x75, 0xbd, 0x11, + 0x48, 0x52, 0x12, 0x66, 0x03, 0x93, 0x8c, 0x21, 0x8a, 0x5d, 0x87, 0xa4, + 0xb4, 0xee, 0xf5, 0xfd, 0x5e, 0x18, 0xaf, 0x07, 0x70, 0x92, 0x31, 0x48, + 0x92, 0x52, 0x61, 0x61, 0x80, 0x24, 0x29, 0x15, 0x07, 0x02, 0x5b, 0x19, + 0x43, 0xb4, 0x87, 0x09, 0x8b, 0xa7, 0x92, 0xd2, 0xe0, 0x82, 0x7e, 0x9c, + 0x07, 0x80, 0x17, 0x8d, 0x41, 0x92, 0x92, 0xe1, 0x38, 0x81, 0x38, 0x47, + 0x00, 0x43, 0x8c, 0x41, 0x4a, 0x86, 0xdd, 0x01, 0xdb, 0xc6, 0xee, 0x94, + 0x92, 0xa4, 0x64, 0x58, 0x18, 0x20, 0x49, 0xf2, 0x46, 0x4d, 0xe0, 0x42, + 0x81, 0x94, 0x92, 0x4d, 0x81, 0x93, 0x8d, 0x21, 0x8a, 0x0f, 0x90, 0x24, + 0x29, 0x2d, 0x7f, 0x04, 0x3e, 0x30, 0x86, 0xd2, 0x1a, 0x80, 0x51, 0xc6, + 0x20, 0x25, 0x63, 0x12, 0xb0, 0xcc, 0x18, 0xa2, 0x0d, 0x07, 0xba, 0x1b, + 0x83, 0x24, 0x29, 0x05, 0x16, 0x06, 0x48, 0x92, 0x52, 0xd1, 0x68, 0x04, + 0x6d, 0x62, 0x61, 0x80, 0x94, 0x8e, 0xf3, 0x08, 0xf3, 0x81, 0x55, 0xce, + 0x52, 0x60, 0x9c, 0x31, 0x48, 0x52, 0x52, 0x3e, 0x04, 0x7e, 0x6f, 0x0c, + 0x51, 0x2e, 0x30, 0x02, 0x29, 0x19, 0xef, 0x00, 0x8f, 0x1a, 0x43, 0xb4, + 0x4d, 0x81, 0x43, 0x8d, 0x41, 0x92, 0x94, 0x02, 0x0b, 0x03, 0x24, 0x49, + 0x29, 0x18, 0x0c, 0xec, 0x67, 0x0c, 0xd1, 0xde, 0x01, 0xa6, 0x18, 0x83, + 0x94, 0x0c, 0xc7, 0x08, 0xc4, 0x99, 0x08, 0xcc, 0x32, 0x06, 0x49, 0x4a, + 0x8e, 0xdd, 0x60, 0xe2, 0xec, 0x42, 0x18, 0xd7, 0x26, 0x29, 0x0d, 0xbe, + 0x0c, 0xd0, 0x36, 0x76, 0xa9, 0x94, 0x24, 0x25, 0xc1, 0xc2, 0x00, 0x49, + 0x52, 0x0a, 0x1a, 0x09, 0xed, 0x2e, 0x15, 0x67, 0x22, 0xd0, 0x64, 0x0c, + 0x52, 0x12, 0x76, 0x02, 0x0e, 0x33, 0x86, 0x28, 0x3e, 0x38, 0x92, 0xa4, + 0x34, 0x4d, 0x06, 0xa6, 0x19, 0x43, 0x14, 0x8b, 0x0d, 0xa5, 0x74, 0x58, + 0x18, 0xd0, 0x36, 0x76, 0xa9, 0x94, 0x24, 0x25, 0xc1, 0xc2, 0x00, 0x49, + 0x52, 0x0a, 0xac, 0xdc, 0x6e, 0x1b, 0x17, 0x08, 0xa4, 0x74, 0x8c, 0xc1, + 0x42, 0xa9, 0x18, 0x1f, 0x00, 0xb7, 0x18, 0x83, 0x24, 0x25, 0xa9, 0x09, + 0xb8, 0xc9, 0x18, 0xa2, 0x8c, 0x02, 0x7a, 0x18, 0x83, 0x94, 0x84, 0x47, + 0xb1, 0x3b, 0x56, 0x5b, 0xec, 0x03, 0xec, 0x60, 0x0c, 0x92, 0xa4, 0xba, + 0xb3, 0x30, 0x40, 0x92, 0x54, 0x77, 0xbd, 0x81, 0x4f, 0x18, 0x43, 0xb4, + 0x26, 0xc2, 0x5b, 0x54, 0x92, 0xd2, 0x30, 0xd2, 0x08, 0xa2, 0xfc, 0x8e, + 0x30, 0x87, 0x5a, 0x92, 0x94, 0x26, 0xbb, 0xc2, 0xc4, 0x19, 0x08, 0x9c, + 0x60, 0x0c, 0x52, 0x32, 0xf7, 0xfe, 0x77, 0x18, 0x43, 0x9b, 0xf8, 0x52, + 0x8a, 0x24, 0xa9, 0xf6, 0x2c, 0x0c, 0x90, 0x24, 0xd5, 0xdd, 0xf1, 0x40, + 0x5f, 0x63, 0x88, 0xf6, 0x08, 0xbe, 0x35, 0x20, 0xa5, 0xe2, 0x10, 0x60, + 0x37, 0x63, 0x88, 0xe2, 0x03, 0x23, 0x49, 0x4a, 0xdb, 0x14, 0x60, 0xaa, + 0x31, 0x44, 0x71, 0x9c, 0x80, 0x94, 0x0e, 0xbb, 0x05, 0xb6, 0x8d, 0x85, + 0x01, 0x92, 0xa4, 0xda, 0xb3, 0x30, 0x40, 0x92, 0xe4, 0x8d, 0x59, 0xde, + 0x5c, 0x18, 0x90, 0xd2, 0xe1, 0xc2, 0x7d, 0x9c, 0x19, 0xc0, 0x5d, 0xc6, + 0x20, 0x49, 0xc9, 0xbb, 0xc1, 0x08, 0xa2, 0x9c, 0x0e, 0xf4, 0x33, 0x06, + 0x29, 0x09, 0xb7, 0x13, 0x3a, 0x07, 0x28, 0xce, 0xf1, 0x7e, 0x3f, 0x94, + 0x24, 0xd5, 0x9d, 0x85, 0x01, 0x92, 0xa4, 0xba, 0x1b, 0x66, 0x04, 0x6d, + 0x62, 0x61, 0x80, 0x94, 0x86, 0x1e, 0xc0, 0x39, 0xc6, 0x10, 0xe5, 0x7a, + 0x60, 0x99, 0x31, 0x48, 0x52, 0xf2, 0xae, 0x01, 0x9a, 0x8d, 0xa1, 0xb4, + 0xbe, 0xc0, 0x69, 0xc6, 0x20, 0x25, 0xe1, 0x1d, 0xe0, 0x51, 0x63, 0x88, + 0xd6, 0x0b, 0x47, 0x59, 0x4a, 0x92, 0x6a, 0xce, 0xc2, 0x00, 0x49, 0x52, + 0x9d, 0x7d, 0x0c, 0xd8, 0xc1, 0x18, 0xa2, 0xb9, 0x28, 0x20, 0xa5, 0xe3, + 0x24, 0x60, 0x4b, 0x63, 0x88, 0xe2, 0x18, 0x01, 0x49, 0xca, 0xc3, 0xeb, + 0xc0, 0xfd, 0xc6, 0x10, 0xc5, 0xae, 0x44, 0x52, 0x3a, 0x7c, 0x39, 0xa0, + 0x6d, 0xec, 0x5a, 0x29, 0x49, 0xaa, 0x35, 0x0b, 0x03, 0x24, 0x49, 0x75, + 0xd6, 0x68, 0x04, 0x6d, 0x62, 0x1b, 0x41, 0x29, 0x1d, 0x2e, 0xd8, 0xc7, + 0x79, 0x0e, 0x78, 0xcc, 0x18, 0x24, 0x29, 0x1b, 0x16, 0x83, 0xc5, 0x19, + 0x0a, 0x6c, 0x65, 0x0c, 0x52, 0x12, 0x2c, 0x0c, 0x68, 0x9b, 0x46, 0xa0, + 0xc1, 0x18, 0x24, 0x49, 0x75, 0x65, 0x61, 0x80, 0x24, 0xa9, 0xce, 0xac, + 0xd4, 0x6e, 0x1b, 0x17, 0x04, 0xa4, 0x34, 0xf4, 0x05, 0x4e, 0x35, 0x86, + 0x28, 0xd7, 0x1a, 0x81, 0x24, 0x65, 0xe5, 0x46, 0x60, 0xb1, 0x31, 0x94, + 0xd6, 0x1d, 0x38, 0xcf, 0x18, 0xa4, 0x24, 0x3c, 0x02, 0xcc, 0x32, 0x86, + 0x68, 0x83, 0x80, 0xfd, 0x8d, 0x41, 0x92, 0x54, 0x57, 0x16, 0x06, 0x48, + 0x92, 0xea, 0x6a, 0x73, 0xe0, 0x10, 0x63, 0x88, 0xd6, 0x04, 0xdc, 0x61, + 0x0c, 0x52, 0x12, 0xce, 0x22, 0x14, 0x07, 0xa8, 0x9c, 0x66, 0xe0, 0x7a, + 0x63, 0x90, 0xa4, 0xac, 0xcc, 0x05, 0x26, 0x1a, 0x43, 0x14, 0xbb, 0x13, + 0x49, 0xe9, 0xac, 0x05, 0x4c, 0x36, 0x86, 0x36, 0xb1, 0x7b, 0xa5, 0x24, + 0xa9, 0xb6, 0x2c, 0x0c, 0x90, 0x24, 0xd5, 0xd5, 0x30, 0xc2, 0x9b, 0x2b, + 0x8a, 0xf3, 0x28, 0xbe, 0x25, 0x20, 0xa5, 0xc2, 0x85, 0xfa, 0x38, 0xf7, + 0x02, 0xaf, 0x1a, 0x83, 0x24, 0x65, 0xc7, 0x71, 0x02, 0x71, 0x0e, 0x04, + 0xf6, 0x32, 0x06, 0x29, 0x09, 0x76, 0x0f, 0x6c, 0x1b, 0xbb, 0x57, 0x4a, + 0x92, 0x6a, 0xcb, 0xc2, 0x00, 0x49, 0x92, 0x37, 0x62, 0x2e, 0x04, 0x48, + 0xaa, 0xaf, 0x41, 0xc0, 0xf1, 0xc6, 0x10, 0xc5, 0x07, 0x43, 0x92, 0x94, + 0xa7, 0x5b, 0x80, 0xf7, 0x8d, 0x21, 0x8a, 0xe3, 0x04, 0xa4, 0x34, 0x4c, + 0x24, 0x74, 0x0e, 0x50, 0x9c, 0x03, 0x81, 0xc1, 0xc6, 0x20, 0x49, 0xaa, + 0x23, 0x0b, 0x03, 0x24, 0x49, 0x75, 0xd4, 0x13, 0x38, 0xd1, 0x18, 0xda, + 0x64, 0xbc, 0x11, 0x48, 0x49, 0x18, 0x85, 0xdd, 0x53, 0x62, 0x2c, 0x06, + 0x6e, 0x36, 0x06, 0x49, 0xca, 0xd2, 0x42, 0xe0, 0x77, 0xc6, 0x10, 0xe5, + 0x7c, 0xa0, 0xc1, 0x18, 0xa4, 0xda, 0x7b, 0x87, 0xd0, 0x45, 0x50, 0x71, + 0x1a, 0x80, 0x53, 0x8c, 0x41, 0x92, 0x54, 0x47, 0x16, 0x06, 0x48, 0x92, + 0xea, 0xe8, 0x28, 0x60, 0x63, 0x63, 0x70, 0x11, 0x40, 0x92, 0x63, 0x04, + 0x22, 0x8d, 0x07, 0xe6, 0x18, 0x83, 0x24, 0x65, 0xcb, 0xae, 0x31, 0x71, + 0xb6, 0x07, 0x8e, 0x30, 0x06, 0x29, 0x09, 0x76, 0x11, 0x6c, 0x9b, 0x46, + 0x23, 0x90, 0x24, 0xd5, 0x91, 0x85, 0x01, 0x92, 0x24, 0x6f, 0xc0, 0xf2, + 0x73, 0x3b, 0xb6, 0x0d, 0x94, 0x52, 0xb0, 0x07, 0xb0, 0x9f, 0x31, 0x44, + 0xf1, 0x81, 0x90, 0x24, 0xe5, 0xed, 0x6e, 0xe0, 0x2d, 0x63, 0x88, 0x62, + 0x51, 0xa2, 0x94, 0x06, 0x0b, 0x03, 0xda, 0x66, 0x28, 0xd0, 0xdb, 0x18, + 0x24, 0x49, 0x75, 0x63, 0x61, 0x80, 0x24, 0xa9, 0x8e, 0x2c, 0x0c, 0x70, + 0x01, 0x40, 0x52, 0x68, 0xe7, 0xab, 0xf2, 0xe6, 0x01, 0x7f, 0x32, 0x06, + 0x49, 0xca, 0x5a, 0x13, 0x70, 0x83, 0x31, 0x44, 0x39, 0x17, 0xe8, 0x65, + 0x0c, 0x52, 0xed, 0x3d, 0x02, 0xcc, 0x32, 0x86, 0x68, 0x7d, 0x81, 0x63, + 0x8d, 0x41, 0x92, 0x54, 0x37, 0x16, 0x06, 0x48, 0x92, 0xea, 0x66, 0x37, + 0x60, 0x17, 0x63, 0x88, 0xd6, 0x04, 0xdc, 0x61, 0x0c, 0x52, 0xed, 0x35, + 0x00, 0x23, 0x8d, 0x21, 0xca, 0x38, 0xe0, 0x23, 0x63, 0x90, 0xa4, 0xec, + 0xd9, 0x3d, 0x26, 0xce, 0x26, 0x38, 0x5b, 0x5b, 0x4a, 0x41, 0x13, 0x30, + 0xd9, 0x18, 0xda, 0x64, 0xb8, 0x11, 0x48, 0x92, 0xea, 0xc6, 0xc2, 0x00, + 0x49, 0x52, 0xdd, 0xd8, 0x2d, 0xa0, 0x6d, 0x1e, 0xc5, 0xb7, 0x02, 0xa4, + 0x14, 0x1c, 0x0d, 0xec, 0x60, 0x0c, 0x51, 0x7c, 0x10, 0x24, 0x49, 0x02, + 0x78, 0x02, 0x78, 0xc6, 0x18, 0xa2, 0x38, 0x4e, 0x40, 0x4a, 0x83, 0xdd, + 0x04, 0xdb, 0xe6, 0x54, 0x23, 0x90, 0x24, 0xd5, 0x8d, 0x85, 0x01, 0x92, + 0xa4, 0xba, 0xb1, 0x22, 0xdb, 0x1b, 0x7f, 0x49, 0x2e, 0xc8, 0xc7, 0x9a, + 0x0e, 0xdc, 0x63, 0x0c, 0x92, 0xa4, 0xc2, 0x75, 0x46, 0x10, 0xa5, 0x11, + 0xd8, 0xd8, 0x18, 0xa4, 0xda, 0x9b, 0x48, 0xe8, 0x1c, 0xa0, 0x38, 0xdb, + 0x01, 0x7b, 0x1b, 0x83, 0x24, 0xa9, 0x4e, 0x7a, 0x18, 0x81, 0xa4, 0x44, + 0x34, 0x10, 0x16, 0x26, 0xfa, 0x03, 0x1b, 0xb5, 0xd8, 0x06, 0x00, 0x1b, + 0x10, 0x66, 0x7f, 0xf5, 0x04, 0xfa, 0x15, 0xdf, 0xfb, 0x36, 0x02, 0xba, + 0x17, 0xff, 0x7e, 0x4b, 0x7d, 0x80, 0xde, 0x6b, 0xf9, 0x7f, 0x2c, 0x01, + 0xe6, 0xb7, 0xf8, 0xfd, 0xbb, 0x2d, 0xbe, 0x9e, 0x07, 0x7c, 0xd0, 0x62, + 0x7b, 0xbf, 0xd8, 0x96, 0xff, 0x7e, 0x2e, 0xb6, 0x2d, 0x6e, 0x0f, 0x03, + 0x80, 0x23, 0x8d, 0xa1, 0x4d, 0x2c, 0x0c, 0x90, 0xea, 0x6f, 0x03, 0xe0, + 0x4c, 0x63, 0x88, 0x32, 0x16, 0x58, 0x66, 0x0c, 0x92, 0xa4, 0x16, 0x3f, + 0x17, 0xbe, 0x89, 0x2f, 0xce, 0x94, 0xd5, 0x1b, 0x38, 0x0b, 0xf8, 0x85, + 0x51, 0x48, 0xb5, 0xf6, 0x0e, 0x30, 0x05, 0x38, 0xc8, 0x28, 0xa2, 0x35, + 0x62, 0xf7, 0x99, 0xf6, 0xd2, 0x07, 0xd8, 0x94, 0x95, 0xd7, 0x74, 0x07, + 0xb0, 0xf2, 0x3a, 0x6f, 0xcb, 0x75, 0xdc, 0x4d, 0x5a, 0x7c, 0xdd, 0x8f, + 0xb0, 0xee, 0xbb, 0x26, 0x0b, 0x59, 0x7d, 0x4d, 0xf6, 0x7d, 0x42, 0x51, + 0xcc, 0xbc, 0xe2, 0xfe, 0xf0, 0x03, 0x60, 0x29, 0x61, 0xdd, 0x77, 0x09, + 0xf0, 0x5e, 0xf1, 0xf5, 0xf2, 0x75, 0xdd, 0x79, 0xc5, 0x9f, 0x35, 0x7b, + 0x9a, 0x24, 0xd5, 0x9d, 0x85, 0x01, 0x92, 0xaa, 0xa6, 0x3b, 0xb0, 0x05, + 0x30, 0x10, 0xd8, 0xac, 0xd8, 0x36, 0x6f, 0xf1, 0xf5, 0x66, 0xc5, 0x87, + 0xc4, 0xe5, 0x5f, 0xf7, 0x2f, 0x3e, 0xfc, 0xf5, 0xab, 0xc1, 0xb1, 0xcd, + 0x03, 0x66, 0x10, 0xda, 0xb8, 0xcf, 0x00, 0x66, 0x02, 0xb3, 0x81, 0x69, + 0xc0, 0xab, 0xc0, 0x4b, 0xc5, 0xd7, 0x7e, 0xc8, 0x5c, 0xbb, 0x93, 0xd7, + 0xf1, 0x41, 0x5f, 0xeb, 0x37, 0x97, 0x30, 0x4a, 0x40, 0x52, 0xbd, 0x8d, + 0x28, 0x7e, 0x16, 0xaa, 0x3c, 0xc7, 0x08, 0x48, 0x92, 0x5a, 0x7a, 0x03, + 0xb8, 0x97, 0x30, 0xa2, 0x47, 0xe5, 0x8c, 0xc6, 0xc2, 0x00, 0x29, 0x05, + 0x13, 0xb0, 0x30, 0xa0, 0x2d, 0x86, 0x03, 0xdf, 0x31, 0x86, 0x75, 0x6a, + 0x00, 0xb6, 0x01, 0x76, 0x26, 0x8c, 0xc3, 0xdb, 0x9a, 0xb0, 0xee, 0xbb, + 0x55, 0xb1, 0x0d, 0x04, 0x06, 0x13, 0x1e, 0xfc, 0x57, 0x5d, 0xcb, 0x62, + 0x81, 0x39, 0x2d, 0xb6, 0xb9, 0x2d, 0xbe, 0x7e, 0xa7, 0xc5, 0xd7, 0xb3, + 0x08, 0x6b, 0xbf, 0x16, 0xa7, 0x4b, 0xaa, 0x0c, 0x0b, 0x03, 0x24, 0x75, + 0x96, 0x3e, 0xc0, 0xb6, 0xc5, 0x07, 0xbd, 0x6d, 0x5a, 0x7c, 0xe8, 0x1b, + 0x08, 0x6c, 0x09, 0x0c, 0x62, 0x45, 0x41, 0x40, 0xaa, 0x6f, 0x6b, 0xf4, + 0x2f, 0xb6, 0xdd, 0xd6, 0xf1, 0xef, 0x2c, 0x24, 0x14, 0x08, 0xbc, 0x04, + 0xbc, 0x0c, 0xbc, 0x48, 0x98, 0x7d, 0xf9, 0x14, 0x76, 0x1c, 0x58, 0x7e, + 0xc3, 0xa5, 0x78, 0x13, 0xbd, 0x19, 0x91, 0x92, 0xe0, 0x18, 0x81, 0x38, + 0xcf, 0x02, 0x4f, 0x1a, 0x83, 0x24, 0x69, 0x15, 0x63, 0xb1, 0x30, 0x20, + 0xc6, 0x31, 0x84, 0x07, 0x3c, 0xaf, 0x19, 0x85, 0x54, 0x6b, 0x13, 0x80, + 0xff, 0x65, 0x0c, 0xd1, 0x0e, 0x23, 0xbc, 0xd0, 0xf4, 0x8e, 0x51, 0xd0, + 0x07, 0xf8, 0x78, 0xb1, 0xed, 0x42, 0x28, 0x04, 0xd8, 0x19, 0xd8, 0x89, + 0xb5, 0x77, 0x67, 0xad, 0x9b, 0xe5, 0x2f, 0xa7, 0x0d, 0x2a, 0xf1, 0xdf, + 0x34, 0xb1, 0xa2, 0x40, 0x60, 0x7a, 0xf1, 0xf5, 0xdb, 0xac, 0x78, 0x79, + 0xec, 0x2d, 0xc2, 0x8b, 0x62, 0x6f, 0xe1, 0xda, 0xaf, 0xa4, 0x4e, 0x60, + 0x61, 0x80, 0xa4, 0xf6, 0xd0, 0x8d, 0xf0, 0xb0, 0x7f, 0x48, 0xb1, 0x30, + 0xb0, 0x1d, 0xa1, 0xfa, 0x73, 0x6b, 0x42, 0x31, 0xc0, 0xd6, 0x84, 0xb7, + 0xfb, 0xb5, 0x7e, 0xbd, 0x09, 0xf3, 0xc9, 0x56, 0x9d, 0x51, 0xb6, 0x94, + 0xf0, 0x40, 0x63, 0x4a, 0x8b, 0xed, 0x09, 0x42, 0x21, 0x41, 0x2e, 0xba, + 0x03, 0xa7, 0x78, 0x89, 0xb4, 0xf9, 0x86, 0x5f, 0x52, 0xbd, 0x6d, 0x02, + 0x0c, 0x33, 0x86, 0x28, 0x57, 0x1b, 0x81, 0x24, 0x69, 0x0d, 0xc6, 0x01, + 0x57, 0x00, 0xbd, 0x8c, 0xa2, 0x94, 0x06, 0xe0, 0x3c, 0x7c, 0x53, 0x56, + 0xaa, 0xbb, 0x87, 0x09, 0x0f, 0x2c, 0xb7, 0x30, 0x8a, 0x28, 0xdd, 0x09, + 0xdd, 0x2d, 0xaf, 0xcd, 0xec, 0xb8, 0x7b, 0x03, 0xfb, 0x02, 0x07, 0xb4, + 0xd8, 0xf6, 0xc4, 0xe7, 0x4d, 0x6b, 0xd2, 0x8d, 0x15, 0xdd, 0x11, 0xf6, + 0x59, 0xcf, 0xbf, 0xfb, 0x0e, 0xa1, 0x78, 0xe0, 0x0d, 0x42, 0xb1, 0xc0, + 0xb4, 0xe2, 0xeb, 0xd7, 0x80, 0x57, 0x8a, 0xdf, 0x37, 0x19, 0xa9, 0xa4, + 0xb6, 0xf0, 0x1b, 0xb5, 0xa4, 0xd6, 0xea, 0x45, 0x78, 0xc0, 0x3f, 0x64, + 0x0d, 0xdb, 0xee, 0x40, 0x5f, 0x23, 0xea, 0xf0, 0xef, 0xd7, 0x1f, 0x2b, + 0xb6, 0xbf, 0x2f, 0xfe, 0xec, 0x23, 0xe0, 0x3e, 0x60, 0x72, 0xb1, 0x3d, + 0x46, 0xda, 0x63, 0x08, 0x0e, 0x25, 0x54, 0x61, 0x2b, 0x4e, 0x13, 0x30, + 0xc9, 0x18, 0xa4, 0xda, 0x3b, 0x07, 0x1f, 0x5c, 0xc4, 0x68, 0x06, 0x6e, + 0x34, 0x06, 0x49, 0xd2, 0x1a, 0xbc, 0x0b, 0x8c, 0x07, 0x4e, 0x37, 0x8a, + 0xd2, 0x2e, 0xc0, 0xc2, 0x00, 0xa9, 0xee, 0x9a, 0x08, 0x6b, 0x4a, 0x23, + 0x8d, 0x22, 0xda, 0x70, 0xf2, 0x28, 0x0c, 0x18, 0x02, 0x9c, 0x50, 0x6c, + 0x27, 0x53, 0x8f, 0xd6, 0xff, 0x75, 0xb3, 0x79, 0xb1, 0x7d, 0x6c, 0x2d, + 0xff, 0x7c, 0x31, 0xa1, 0xb3, 0xc0, 0x2b, 0x6b, 0xd8, 0x5e, 0x24, 0x8c, + 0xb1, 0x95, 0xa4, 0x75, 0xb2, 0x30, 0x40, 0xd2, 0x72, 0x0d, 0x84, 0xd6, + 0xfe, 0xcb, 0x1f, 0xf6, 0xef, 0xc4, 0xca, 0x0f, 0xff, 0xb7, 0x34, 0xa2, + 0xca, 0xe9, 0xd3, 0xe2, 0x03, 0x39, 0xc0, 0xeb, 0x84, 0x07, 0xbf, 0xe3, + 0x80, 0x3b, 0x49, 0xaf, 0x82, 0xd4, 0x31, 0x02, 0x6d, 0x33, 0x85, 0xd0, + 0xa2, 0x4c, 0x52, 0xbd, 0x39, 0x46, 0x20, 0xce, 0x5f, 0xb0, 0xd5, 0xb1, + 0x24, 0x69, 0xed, 0xc6, 0x62, 0x61, 0x40, 0x8c, 0x3d, 0x80, 0xfd, 0x80, + 0xc7, 0x8d, 0x42, 0xaa, 0xb5, 0x09, 0x58, 0x18, 0xd0, 0x16, 0xa7, 0x00, + 0x3d, 0x81, 0x25, 0x89, 0x1d, 0x57, 0x4f, 0xe0, 0x44, 0xe0, 0xb4, 0xe2, + 0xd7, 0xed, 0x3c, 0xd5, 0x5d, 0x6e, 0x03, 0x56, 0xac, 0xd5, 0xaf, 0xc9, + 0x4c, 0x56, 0x2f, 0x18, 0x78, 0xb9, 0xf8, 0x75, 0xba, 0xf1, 0x49, 0x02, + 0x0b, 0x03, 0xa4, 0x5c, 0x0d, 0x26, 0xb4, 0x77, 0xda, 0xab, 0xc5, 0xaf, + 0x1f, 0xc3, 0x4a, 0xcf, 0xba, 0xdb, 0x1e, 0xb8, 0xa8, 0xd8, 0xa6, 0x11, + 0xaa, 0x95, 0xaf, 0x2a, 0x3e, 0x00, 0xa6, 0xa0, 0xd1, 0x53, 0xdc, 0xe6, + 0x1b, 0x7d, 0x49, 0xf5, 0xff, 0x3e, 0x7f, 0xa4, 0x31, 0x44, 0x19, 0x6b, + 0x04, 0x92, 0xa4, 0x75, 0xb8, 0x0d, 0x78, 0x0f, 0xd8, 0xd8, 0x28, 0x4a, + 0x1b, 0x8d, 0x85, 0x01, 0x52, 0xdd, 0x4d, 0x24, 0xbc, 0x5c, 0xd2, 0xcd, + 0x28, 0xa2, 0x0c, 0x00, 0x8e, 0x00, 0xfe, 0x9c, 0xc8, 0xf1, 0xec, 0x0b, + 0x5c, 0x4c, 0xe8, 0x56, 0xe7, 0x68, 0xd8, 0x7a, 0x59, 0x3e, 0xb2, 0xe0, + 0xf0, 0x35, 0xfc, 0xb3, 0x0f, 0x80, 0xe7, 0x81, 0x67, 0x80, 0xe7, 0x5a, + 0xfc, 0xfa, 0x3a, 0x69, 0x77, 0xa0, 0x95, 0xb4, 0x0a, 0x0b, 0x03, 0xa4, + 0x74, 0x35, 0x10, 0x1e, 0x20, 0xac, 0x5a, 0x00, 0xb0, 0x07, 0xd0, 0xcf, + 0x78, 0x92, 0xb7, 0x35, 0xf0, 0x25, 0xe0, 0x5f, 0x8b, 0x1b, 0x93, 0x1f, + 0x01, 0x7f, 0xa0, 0xbe, 0x5d, 0x04, 0xb6, 0x63, 0xfd, 0x73, 0xb8, 0xb4, + 0x6e, 0x16, 0x06, 0x48, 0xf5, 0x37, 0xa6, 0xf8, 0xf9, 0xae, 0x72, 0x16, + 0x03, 0xbf, 0x33, 0x06, 0x49, 0xd2, 0x3a, 0x2c, 0x02, 0x6e, 0x06, 0x3e, + 0x6d, 0x14, 0xa5, 0x8d, 0x2a, 0xee, 0x3d, 0x97, 0x19, 0x85, 0x54, 0x5b, + 0xb3, 0x09, 0xe3, 0x29, 0x0f, 0x34, 0x8a, 0x68, 0xc3, 0xa9, 0x77, 0x61, + 0x40, 0x37, 0x42, 0xe7, 0x9c, 0x2f, 0xb0, 0xe6, 0x87, 0xca, 0xaa, 0xbf, + 0x8d, 0x80, 0x83, 0x8a, 0xad, 0xa5, 0xf9, 0xac, 0x5c, 0x28, 0x60, 0xc1, + 0x80, 0x94, 0x38, 0x0b, 0x03, 0xa4, 0x34, 0x0c, 0x04, 0x0e, 0x20, 0x3c, + 0x38, 0xdd, 0x03, 0xd8, 0x1b, 0xd8, 0x1d, 0x0b, 0x00, 0x14, 0x1e, 0x20, + 0x1d, 0x57, 0x6c, 0xcf, 0x00, 0x5f, 0xfb, 0x7f, 0xec, 0xdd, 0x79, 0x98, + 0x15, 0xe5, 0x99, 0xff, 0xff, 0x77, 0x37, 0x20, 0x9b, 0x80, 0x80, 0x20, + 0x82, 0xfb, 0x16, 0xf7, 0x5d, 0xa3, 0x46, 0x83, 0xbb, 0x22, 0xa0, 0x51, + 0x83, 0xca, 0xa2, 0x26, 0x33, 0xbf, 0x4c, 0x32, 0x49, 0x34, 0x99, 0x7c, + 0x27, 0x93, 0x49, 0xf2, 0x9d, 0xcc, 0x64, 0x32, 0x4b, 0x32, 0x93, 0xc9, + 0xbe, 0xcc, 0x24, 0xdf, 0x2c, 0xe3, 0x86, 0x8a, 0x4b, 0xdc, 0x40, 0x40, + 0xc5, 0xdd, 0xb8, 0xc4, 0xb8, 0x2f, 0x71, 0xdf, 0x00, 0x41, 0x51, 0x40, + 0x76, 0xe8, 0xfe, 0xfd, 0xf1, 0x54, 0x87, 0x06, 0x1a, 0xe8, 0xf3, 0xd4, + 0xe9, 0x73, 0x9e, 0x3a, 0xf5, 0x7e, 0x5d, 0x57, 0x5d, 0x0d, 0xcd, 0x72, + 0x4e, 0x7d, 0xea, 0x74, 0xf7, 0xa9, 0xaa, 0xfb, 0xb9, 0x6f, 0xe0, 0xda, + 0x02, 0xee, 0xc7, 0x58, 0x0f, 0x65, 0x2e, 0x0b, 0x80, 0x87, 0x8d, 0x41, + 0x2a, 0x3c, 0xdb, 0x7b, 0xc6, 0xb9, 0x29, 0xfb, 0x3e, 0x28, 0x49, 0xd2, + 0xa6, 0x5c, 0x8e, 0x85, 0x01, 0x31, 0xb6, 0x05, 0x8e, 0x07, 0x66, 0x1a, + 0x85, 0x54, 0x68, 0xd3, 0xb0, 0x30, 0x20, 0x8f, 0x31, 0xc0, 0x97, 0x0b, + 0xfa, 0xdc, 0xc7, 0x01, 0xff, 0x48, 0x58, 0x50, 0xa6, 0xf2, 0xd9, 0x92, + 0xce, 0x15, 0x0c, 0x3c, 0x49, 0x18, 0x53, 0x3a, 0xdf, 0xc8, 0xa4, 0x62, + 0xb3, 0x30, 0x40, 0x2a, 0x9e, 0xc1, 0x84, 0x22, 0x80, 0x43, 0xb3, 0xed, + 0x10, 0x9c, 0xf1, 0xa4, 0xce, 0xd9, 0x97, 0xb0, 0x0a, 0xe6, 0x4e, 0xe0, + 0xa2, 0xec, 0x8d, 0x5d, 0x51, 0x8c, 0xf6, 0xf0, 0xe5, 0x32, 0x1d, 0x57, + 0xf0, 0x48, 0x45, 0x77, 0x08, 0x5e, 0xa8, 0x89, 0xe5, 0x18, 0x01, 0x49, + 0x52, 0x67, 0xdc, 0x05, 0xbc, 0x0a, 0xec, 0x64, 0x14, 0x15, 0x9b, 0x88, + 0x85, 0x01, 0x52, 0xd1, 0x4d, 0x03, 0xfe, 0xc1, 0x18, 0xa2, 0xed, 0x09, + 0xec, 0x0e, 0xbc, 0x50, 0xa0, 0xe7, 0xbc, 0x1f, 0xf0, 0x63, 0x60, 0xa4, + 0x87, 0x4f, 0x1d, 0xd8, 0x58, 0xc1, 0xc0, 0x6b, 0x84, 0x02, 0x81, 0x47, + 0xb2, 0xed, 0x0f, 0x58, 0x88, 0x2f, 0x15, 0x8a, 0x85, 0x01, 0x52, 0xda, + 0xfa, 0x01, 0x07, 0x10, 0x6e, 0x06, 0xb4, 0x6d, 0x7b, 0x61, 0x1b, 0x61, + 0xe5, 0x73, 0x2c, 0xa1, 0x45, 0xdc, 0xbf, 0x01, 0xdf, 0x22, 0xfd, 0x1b, + 0xc6, 0x7d, 0x09, 0x1d, 0x0f, 0x94, 0xef, 0x04, 0x5f, 0x52, 0xb1, 0x4d, + 0x34, 0x82, 0x28, 0xef, 0x01, 0x53, 0x8d, 0x41, 0x92, 0xd4, 0x09, 0xad, + 0xc0, 0x55, 0x84, 0xb6, 0xf8, 0xaa, 0xcc, 0xc7, 0x81, 0xcf, 0x01, 0x4b, + 0x8c, 0x42, 0x2a, 0xac, 0x87, 0x80, 0x77, 0x71, 0xa6, 0x7c, 0x1e, 0xa3, + 0x81, 0x1f, 0x14, 0xe0, 0x79, 0x36, 0x01, 0x17, 0x03, 0xdf, 0x01, 0x7a, + 0x7a, 0xd8, 0x54, 0xa1, 0x1d, 0xb3, 0xed, 0xac, 0x76, 0x9f, 0x9b, 0x43, + 0x28, 0x10, 0x68, 0xdb, 0x1e, 0x00, 0xde, 0x31, 0x2a, 0x29, 0x4d, 0x16, + 0x06, 0x48, 0xe9, 0xe8, 0x49, 0xe8, 0x00, 0x70, 0x04, 0x6b, 0x3b, 0x02, + 0xec, 0x86, 0x45, 0x00, 0xea, 0x1a, 0x3d, 0x08, 0x6d, 0xc2, 0x0e, 0x07, + 0xce, 0x05, 0x16, 0x27, 0xfc, 0x5c, 0x4f, 0x04, 0x7a, 0x79, 0xc8, 0xa2, + 0xb5, 0x00, 0x33, 0x8c, 0x41, 0x2a, 0xb4, 0x6e, 0x38, 0x46, 0x20, 0xd6, + 0x14, 0xc2, 0xdc, 0x68, 0x49, 0x92, 0x3a, 0xe3, 0x12, 0x2c, 0x0c, 0x88, + 0xd1, 0x17, 0x38, 0x1d, 0x98, 0x6c, 0x14, 0x52, 0x61, 0xad, 0x21, 0x5c, + 0x3b, 0xf0, 0xbc, 0x23, 0x5e, 0x11, 0x0a, 0x03, 0x06, 0x00, 0x57, 0x03, + 0x27, 0x7b, 0xb8, 0x54, 0x45, 0xdb, 0x12, 0xc6, 0x69, 0x8c, 0xc9, 0x7e, + 0xdf, 0x0a, 0xbc, 0xc8, 0xda, 0xae, 0x02, 0x0f, 0x66, 0x1f, 0x3d, 0x37, + 0x97, 0x12, 0x60, 0x61, 0x80, 0x54, 0x3f, 0x03, 0x81, 0xa3, 0x80, 0x8f, + 0x00, 0xc7, 0x10, 0x0a, 0x01, 0xbc, 0xf9, 0xa9, 0x5a, 0x1b, 0x05, 0xdc, + 0x07, 0x9c, 0x04, 0xbc, 0x9d, 0xf0, 0x89, 0x95, 0xe2, 0xfd, 0x21, 0xe1, + 0x63, 0x2b, 0xa9, 0x73, 0x4e, 0x04, 0x86, 0x19, 0x43, 0x14, 0xc7, 0x08, + 0x48, 0x92, 0x2a, 0xf1, 0x0c, 0xf0, 0x04, 0xb0, 0xbf, 0x51, 0x54, 0x6c, + 0x22, 0x16, 0x06, 0x48, 0x45, 0x37, 0x0d, 0x0b, 0x03, 0xf2, 0x18, 0x49, + 0xb8, 0xf1, 0xbe, 0x30, 0xd1, 0xe7, 0xb7, 0x2d, 0x61, 0xec, 0x8b, 0x23, + 0xea, 0xd4, 0xd5, 0x9a, 0x08, 0xa3, 0x35, 0x76, 0x6f, 0xf7, 0x3d, 0x65, + 0x39, 0xf0, 0x30, 0x70, 0x0f, 0xe1, 0x5a, 0xf4, 0xfd, 0xc0, 0xfb, 0x46, + 0x25, 0xd5, 0x9e, 0x85, 0x01, 0x52, 0xed, 0xf4, 0xcb, 0xde, 0x20, 0x9e, + 0x90, 0x6d, 0xfb, 0x00, 0xcd, 0xc6, 0xa2, 0x04, 0xec, 0x47, 0x98, 0x41, + 0x7f, 0x1c, 0xa1, 0xe5, 0x72, 0x6a, 0x6f, 0x24, 0x4f, 0xf3, 0x10, 0xe5, + 0x3e, 0xb1, 0x97, 0x54, 0x6c, 0x8e, 0x11, 0x88, 0xf3, 0x3a, 0x70, 0xaf, + 0x31, 0x48, 0x92, 0x2a, 0x74, 0x39, 0x16, 0x06, 0xc4, 0x38, 0x05, 0xd8, + 0x06, 0x8b, 0x92, 0xa5, 0x22, 0xbb, 0x95, 0xd0, 0x75, 0xd0, 0xeb, 0x95, + 0x71, 0x7a, 0x10, 0x16, 0xde, 0x5c, 0x93, 0xe0, 0x73, 0x1b, 0x44, 0xe8, + 0x08, 0x61, 0x51, 0x80, 0xea, 0xa5, 0x17, 0x61, 0x71, 0xe4, 0x31, 0xd9, + 0xef, 0x5b, 0x80, 0x27, 0x81, 0x3b, 0x80, 0xdb, 0x81, 0xbb, 0x80, 0x0f, + 0x8c, 0x49, 0xea, 0x7a, 0xfe, 0x90, 0x97, 0xba, 0x4e, 0xb7, 0xec, 0x07, + 0xdd, 0x3f, 0x13, 0xaa, 0xe0, 0x16, 0x00, 0x37, 0x01, 0x5f, 0x24, 0xdc, + 0x88, 0xf5, 0xeb, 0x4f, 0x29, 0x39, 0x80, 0x70, 0x01, 0x2c, 0xb5, 0xd1, + 0x15, 0x07, 0x03, 0x23, 0x3c, 0x3c, 0xb9, 0x58, 0x18, 0x20, 0x15, 0x5b, + 0x1f, 0xe0, 0x4c, 0x63, 0x88, 0x72, 0x39, 0xe1, 0x62, 0x83, 0x24, 0x49, + 0x95, 0xb8, 0x8c, 0xd0, 0x52, 0x5b, 0x95, 0xe9, 0x0e, 0x9c, 0x63, 0x0c, + 0x52, 0xa1, 0xcd, 0x07, 0x1e, 0x35, 0x86, 0x5c, 0x52, 0xec, 0x7a, 0xd9, + 0x4c, 0xe8, 0xe8, 0xb2, 0xaf, 0x87, 0x47, 0x89, 0xbd, 0x2e, 0x0f, 0x00, + 0xfe, 0x06, 0xb8, 0x99, 0xb0, 0x58, 0xed, 0x5e, 0xe0, 0x9b, 0xc0, 0xd1, + 0x84, 0x7b, 0x2b, 0x92, 0xba, 0xe8, 0x8b, 0x4f, 0x52, 0xf5, 0x0c, 0x02, + 0x26, 0x00, 0x57, 0x00, 0xf3, 0x80, 0xbb, 0x81, 0x7f, 0x20, 0x8c, 0x0c, + 0xb0, 0x43, 0x87, 0x52, 0x37, 0x0a, 0xb8, 0x28, 0xb1, 0xe7, 0x34, 0xc6, + 0xc3, 0x92, 0xcb, 0x02, 0x42, 0x9b, 0x2e, 0x49, 0xc5, 0x75, 0x26, 0xb0, + 0xa5, 0x31, 0x44, 0xb9, 0xc2, 0x08, 0x24, 0x49, 0x11, 0x66, 0x67, 0xe7, + 0xf2, 0xaa, 0x9c, 0x5d, 0x8e, 0xa4, 0xe2, 0x73, 0x71, 0x41, 0x3e, 0xa3, + 0x49, 0xef, 0x9e, 0xcb, 0x17, 0x80, 0x93, 0x3d, 0x34, 0x4a, 0x5c, 0x77, + 0xc2, 0xc8, 0xe5, 0x6f, 0x10, 0xc6, 0x0d, 0xbc, 0x4d, 0x28, 0xf6, 0x3f, + 0x8f, 0x30, 0x92, 0x59, 0x52, 0x95, 0x58, 0x18, 0x20, 0xe5, 0x37, 0x14, + 0xf8, 0x2c, 0x70, 0x27, 0xa1, 0x18, 0xe0, 0x72, 0xc2, 0xec, 0x9c, 0x41, + 0x46, 0xa3, 0x02, 0xfa, 0x66, 0x62, 0xaf, 0xdd, 0xd1, 0x1e, 0x92, 0x5c, + 0xa6, 0xe3, 0x6a, 0x27, 0xa9, 0xe8, 0xbc, 0xc0, 0x1e, 0xe7, 0x31, 0xe0, + 0x29, 0x63, 0x90, 0x24, 0x45, 0xba, 0xdc, 0x08, 0xa2, 0x7c, 0x18, 0xf8, + 0x90, 0x31, 0x48, 0x85, 0x66, 0x61, 0x40, 0x3e, 0x43, 0x80, 0xc3, 0x13, + 0x7a, 0x3e, 0x5b, 0x03, 0xff, 0xe8, 0x61, 0x51, 0x01, 0x0d, 0x26, 0x2c, + 0xc0, 0x9c, 0x4c, 0xb8, 0xe7, 0x32, 0x0b, 0xf8, 0xeb, 0xec, 0x6b, 0x4c, + 0x52, 0x0e, 0x16, 0x06, 0x48, 0x71, 0xb6, 0x04, 0x3e, 0x49, 0xb8, 0xe9, + 0x36, 0x1b, 0xf8, 0x29, 0x30, 0x12, 0x5b, 0xdc, 0xa8, 0xf8, 0xb6, 0x02, + 0x2e, 0x4e, 0xe4, 0xb9, 0x0c, 0x03, 0x0e, 0xf5, 0x90, 0x78, 0x42, 0x2f, + 0x95, 0xd8, 0x50, 0xc2, 0x8c, 0x4a, 0x55, 0xce, 0x1b, 0x3a, 0x92, 0xa4, + 0x3c, 0xa6, 0x00, 0xcb, 0x8c, 0x21, 0xca, 0x78, 0x23, 0x90, 0x0a, 0xed, + 0x21, 0xe0, 0x5d, 0x63, 0xc8, 0x25, 0xa5, 0x45, 0x2e, 0x5f, 0x04, 0x06, + 0x78, 0x48, 0x54, 0x70, 0xdd, 0x81, 0x63, 0x81, 0x9f, 0x11, 0xee, 0xc5, + 0xdc, 0x0a, 0x7c, 0x02, 0xe8, 0x6b, 0x34, 0x52, 0xe5, 0x2c, 0x0c, 0x90, + 0x2a, 0xb3, 0x07, 0xf0, 0x6d, 0xe0, 0x35, 0xe0, 0xd7, 0x84, 0x36, 0x4c, + 0x16, 0x03, 0xa8, 0xd1, 0x7c, 0x02, 0x68, 0x4a, 0xe4, 0x44, 0xaa, 0xc9, + 0xc3, 0x11, 0xad, 0x05, 0x98, 0x61, 0x0c, 0x52, 0xa1, 0x8d, 0xc7, 0x51, + 0x44, 0xb1, 0xdf, 0xff, 0xae, 0x34, 0x06, 0x49, 0x52, 0x0e, 0x8b, 0x80, + 0x5b, 0x8c, 0x21, 0xca, 0x24, 0xcf, 0xe3, 0xa4, 0x42, 0x5b, 0x03, 0xcc, + 0x34, 0x86, 0x5c, 0x52, 0x19, 0x8b, 0xd9, 0x84, 0x1d, 0xe8, 0xd4, 0x78, + 0xba, 0x03, 0xa7, 0x00, 0xbf, 0x21, 0x14, 0x09, 0xfc, 0x0f, 0xb0, 0x9f, + 0xb1, 0x48, 0x9d, 0x67, 0x61, 0x80, 0xd4, 0x39, 0x07, 0x00, 0x53, 0x81, + 0xe7, 0x80, 0xaf, 0xe0, 0x98, 0x00, 0x35, 0xb6, 0x1d, 0x81, 0x7d, 0x13, + 0x78, 0x1e, 0x8e, 0x11, 0xc8, 0xe7, 0x51, 0xc2, 0x3c, 0x2e, 0x49, 0xc5, + 0xe5, 0x45, 0x9c, 0x38, 0xb3, 0x80, 0x37, 0x8d, 0x41, 0x92, 0x94, 0x93, + 0xdd, 0x67, 0xe2, 0xec, 0x0a, 0x1c, 0x61, 0x0c, 0x52, 0xa1, 0xd9, 0x7d, + 0x30, 0x9f, 0x03, 0x09, 0xd7, 0xd6, 0xea, 0xed, 0x00, 0x60, 0x27, 0x0f, + 0x87, 0x1a, 0x58, 0x7f, 0xe0, 0xaf, 0x80, 0xc7, 0x81, 0x9b, 0x81, 0xfd, + 0x8d, 0x44, 0xda, 0x3c, 0x0b, 0x03, 0xa4, 0x4d, 0xdb, 0x0a, 0xb8, 0x84, + 0x70, 0x83, 0x6d, 0x14, 0x56, 0xbd, 0xab, 0x3c, 0xea, 0xdd, 0xc2, 0xbf, + 0x27, 0x70, 0xa2, 0x87, 0xc1, 0x13, 0x79, 0xa9, 0xc4, 0x76, 0x07, 0x0e, + 0x33, 0x86, 0x28, 0xde, 0xc8, 0x91, 0x24, 0x55, 0xc3, 0x54, 0x6c, 0xa7, + 0x1d, 0xcb, 0xe2, 0x46, 0xa9, 0xd8, 0xa6, 0x11, 0xba, 0x70, 0x29, 0xde, + 0xa8, 0x04, 0x9e, 0x83, 0xe3, 0x39, 0x55, 0x16, 0x4d, 0x84, 0x05, 0x66, + 0x7f, 0x04, 0x7e, 0x8b, 0xe3, 0x33, 0xa4, 0x4d, 0xb2, 0x30, 0x40, 0xda, + 0xb8, 0xdd, 0x80, 0xdf, 0x03, 0xe7, 0xfb, 0xb5, 0xa2, 0x12, 0xda, 0xa5, + 0xce, 0x8f, 0x7f, 0x1c, 0xd0, 0xcf, 0xc3, 0x90, 0xfb, 0x44, 0x5e, 0x52, + 0x71, 0x9d, 0x6f, 0x04, 0x51, 0x96, 0x03, 0xd7, 0x19, 0x83, 0x24, 0xa9, + 0x0a, 0x56, 0x02, 0xd7, 0x18, 0x43, 0x94, 0xf1, 0xc0, 0x16, 0xc6, 0x20, + 0x15, 0xd6, 0x7c, 0xc2, 0x0d, 0x36, 0xc5, 0x4b, 0x61, 0x9c, 0xc0, 0x2e, + 0x1e, 0x06, 0x95, 0x4c, 0x33, 0x70, 0x21, 0xe1, 0x9e, 0xce, 0xae, 0xc6, + 0x21, 0x6d, 0xfc, 0x0b, 0x45, 0x52, 0xc7, 0x7e, 0x0b, 0x7c, 0xc8, 0x18, + 0x54, 0x52, 0x5b, 0xd5, 0xf9, 0xf1, 0x1d, 0x23, 0x90, 0xcf, 0x7b, 0xc0, + 0x43, 0xc6, 0x20, 0x15, 0x96, 0xb3, 0x20, 0xe3, 0xdd, 0x08, 0x2c, 0x34, + 0x06, 0x49, 0x52, 0x95, 0xd8, 0x85, 0x26, 0xce, 0x20, 0xc2, 0xfc, 0x5f, + 0x49, 0xc5, 0xe5, 0x62, 0x83, 0x7c, 0x8e, 0x07, 0xfa, 0xd4, 0xf9, 0x39, + 0xf4, 0xf7, 0x30, 0xa8, 0xa4, 0xf6, 0x04, 0x7e, 0x63, 0x0c, 0x52, 0xc7, + 0x2c, 0x0c, 0x90, 0xfc, 0xfa, 0x90, 0x3a, 0xd2, 0x5a, 0xe7, 0xc7, 0xb7, + 0x30, 0x20, 0x9f, 0xe9, 0xc0, 0x1a, 0x63, 0x90, 0x0a, 0xeb, 0x28, 0x5c, + 0xdd, 0x11, 0xcb, 0x1b, 0x38, 0x92, 0xa4, 0x6a, 0xba, 0x17, 0x78, 0xc5, + 0x18, 0xa2, 0x58, 0xe4, 0x28, 0x15, 0x9b, 0x85, 0x01, 0xf9, 0xf4, 0x06, + 0x4e, 0xa8, 0xf3, 0x73, 0x70, 0x1c, 0x84, 0xca, 0xcc, 0x7b, 0x3b, 0x92, + 0x5f, 0x1c, 0x52, 0xc5, 0x3e, 0x01, 0xfc, 0xc9, 0x18, 0x54, 0x52, 0xf3, + 0xeb, 0xf8, 0xd8, 0xfb, 0x02, 0x3b, 0x7b, 0x08, 0x3c, 0x81, 0x97, 0x4a, + 0xcc, 0x0b, 0xe9, 0x71, 0x16, 0x00, 0xb7, 0x1a, 0x83, 0x24, 0xa9, 0x8a, + 0x5a, 0x81, 0xc9, 0xc6, 0x10, 0xe5, 0x0c, 0x9c, 0xf1, 0x2b, 0x15, 0xd9, + 0x83, 0xc0, 0xbb, 0xc6, 0x90, 0x4b, 0xbd, 0x17, 0xbd, 0x78, 0xfc, 0x54, + 0x56, 0xcf, 0x03, 0x9f, 0x34, 0x06, 0xa9, 0x63, 0x16, 0x06, 0x48, 0x1b, + 0xf7, 0x27, 0xe0, 0x70, 0xc2, 0xca, 0x33, 0x2b, 0x2c, 0x55, 0xc6, 0xd7, + 0x7f, 0xbd, 0x8c, 0x31, 0xfe, 0x5c, 0x5a, 0x09, 0x1d, 0x03, 0x24, 0x15, + 0x53, 0x0f, 0x60, 0x9c, 0x31, 0x44, 0xb9, 0x8a, 0x30, 0x0f, 0x5a, 0x92, + 0xa4, 0x6a, 0xba, 0xcc, 0x08, 0xa2, 0xf4, 0x02, 0xce, 0x32, 0x06, 0xa9, + 0xb0, 0xd6, 0x00, 0xb7, 0x19, 0x43, 0x2e, 0x63, 0x09, 0x63, 0xe2, 0xea, + 0xe5, 0x05, 0x0f, 0x81, 0x4a, 0xa6, 0x05, 0xb8, 0x94, 0x70, 0x4f, 0xc7, + 0xd7, 0xbf, 0xb4, 0x11, 0x16, 0x06, 0x48, 0x9b, 0xb6, 0x10, 0x98, 0x04, + 0x1c, 0x02, 0x4c, 0x35, 0x0e, 0x95, 0xc8, 0x03, 0x75, 0x7c, 0x6c, 0xc7, + 0x08, 0xe4, 0xf3, 0x28, 0xf0, 0xb6, 0x31, 0x48, 0x85, 0x75, 0x1a, 0xb0, + 0xb5, 0x31, 0x44, 0x71, 0x8c, 0x80, 0x24, 0xa9, 0x2b, 0x3c, 0x9b, 0xbd, + 0xc7, 0x56, 0xe5, 0xec, 0x82, 0x24, 0x15, 0x9b, 0xdd, 0x08, 0xf3, 0x19, + 0x0e, 0x1c, 0x58, 0xc7, 0xc7, 0x7f, 0xc0, 0x43, 0xa0, 0x12, 0xb9, 0x19, + 0x38, 0x08, 0xb8, 0x00, 0x58, 0x64, 0x1c, 0xd2, 0xc6, 0x59, 0x18, 0x20, + 0x75, 0xce, 0x63, 0x84, 0x9b, 0x95, 0x7b, 0x02, 0xdf, 0x21, 0xb4, 0xaa, + 0x95, 0x1a, 0xd5, 0x13, 0xc0, 0xeb, 0x75, 0x7a, 0xec, 0x41, 0xc0, 0x11, + 0x1e, 0x02, 0x4f, 0xdc, 0xa5, 0x12, 0xf3, 0x02, 0x7a, 0x9c, 0xd7, 0x80, + 0xfb, 0x8d, 0x41, 0x92, 0xd4, 0x45, 0x2c, 0x3e, 0x8b, 0x73, 0x1c, 0xb0, + 0x9d, 0x31, 0x48, 0x85, 0x35, 0x0d, 0xbb, 0xa8, 0xe6, 0x55, 0xcf, 0xae, + 0x98, 0xaf, 0x00, 0x8f, 0x7b, 0x08, 0xd4, 0xc0, 0x16, 0x01, 0xbf, 0x00, + 0x0e, 0x20, 0x74, 0xe8, 0x78, 0xc2, 0x48, 0xa4, 0xcd, 0xb3, 0x30, 0x40, + 0xaa, 0xcc, 0xf3, 0xc0, 0xdf, 0x03, 0x3b, 0x02, 0x9f, 0x02, 0xee, 0x20, + 0xb4, 0xd6, 0x92, 0x1a, 0xc9, 0x7f, 0xd7, 0xf1, 0xb1, 0x4f, 0x03, 0xba, + 0x7b, 0x08, 0x72, 0x9f, 0xb8, 0x4b, 0x2a, 0xa6, 0xfe, 0x38, 0x4e, 0x25, + 0xd6, 0xa5, 0x84, 0x51, 0x2a, 0x92, 0x24, 0x75, 0x85, 0xc9, 0x9e, 0xfb, + 0x47, 0x69, 0x06, 0xc6, 0x1b, 0x83, 0x54, 0x58, 0xf3, 0x08, 0x8b, 0xa5, + 0x14, 0xaf, 0xde, 0x5d, 0x31, 0x7f, 0xed, 0x21, 0x50, 0x83, 0x59, 0x03, + 0xdc, 0x0e, 0xfc, 0x25, 0xa1, 0x2b, 0xc7, 0xa7, 0xb1, 0x20, 0x40, 0xaa, + 0xf8, 0x0d, 0xba, 0xa4, 0xca, 0x7d, 0x00, 0xfc, 0x3f, 0xe0, 0x04, 0x42, + 0xf5, 0xfb, 0x45, 0xc0, 0x3d, 0x58, 0x45, 0xab, 0xe2, 0x7b, 0x15, 0xf8, + 0x4d, 0x89, 0x4f, 0x98, 0x8a, 0xee, 0x3d, 0xe0, 0x21, 0x63, 0x90, 0x0a, + 0xeb, 0x1c, 0xa0, 0xb7, 0x31, 0x44, 0xb9, 0xd2, 0x08, 0x24, 0x49, 0x5d, + 0x68, 0x0e, 0x61, 0x61, 0x80, 0x2a, 0x67, 0x37, 0x24, 0xa9, 0xd8, 0x5c, + 0x7c, 0x90, 0xcf, 0x61, 0xc0, 0xb0, 0x3a, 0x3e, 0xfe, 0x2f, 0x81, 0x37, + 0x3c, 0x0c, 0x2a, 0xb8, 0x35, 0xc0, 0xdd, 0xc0, 0xe7, 0x80, 0x11, 0xc0, + 0x89, 0x84, 0xa2, 0x97, 0x25, 0x46, 0x23, 0x55, 0xce, 0xc2, 0x00, 0x29, + 0xbf, 0xb9, 0xc0, 0x4f, 0x80, 0x8f, 0x66, 0x6f, 0xf4, 0x2e, 0x04, 0xa6, + 0x00, 0x0b, 0x8d, 0x46, 0x05, 0xf4, 0xb7, 0xc0, 0xf2, 0x3a, 0x3d, 0x76, + 0x77, 0xe0, 0x14, 0x0f, 0x41, 0x2e, 0xd3, 0x81, 0xd5, 0xc6, 0x20, 0x15, + 0x96, 0x17, 0xce, 0xe3, 0xfc, 0x01, 0x78, 0xda, 0x18, 0x24, 0x49, 0x5d, + 0xcc, 0x71, 0x02, 0x71, 0x0e, 0x00, 0xf6, 0x33, 0x06, 0xa9, 0xb0, 0x2c, + 0x0c, 0xc8, 0xa7, 0x19, 0x18, 0x55, 0xc7, 0xc7, 0x5f, 0x46, 0xb8, 0xd6, + 0x27, 0x15, 0xcd, 0xfb, 0xc0, 0xd5, 0xc0, 0x05, 0x84, 0x7b, 0x2e, 0x23, + 0x81, 0x9f, 0x01, 0x6f, 0x1b, 0x8d, 0x94, 0xff, 0x07, 0x93, 0xa4, 0xea, + 0x99, 0x0f, 0x5c, 0x42, 0x58, 0xf1, 0x37, 0x84, 0xd0, 0x51, 0xe0, 0x3f, + 0x08, 0x17, 0xac, 0xed, 0x26, 0xa0, 0xd4, 0xfd, 0x37, 0x70, 0x6d, 0x1d, + 0x1f, 0xff, 0x68, 0x60, 0xa0, 0x87, 0xc1, 0x13, 0x76, 0xa9, 0xa4, 0x46, + 0x10, 0x8a, 0x0c, 0x55, 0x39, 0x6f, 0xd4, 0x48, 0x92, 0x6a, 0xe1, 0x3a, + 0x60, 0xa9, 0x31, 0x44, 0xb1, 0xf8, 0x51, 0x2a, 0xae, 0xdf, 0x03, 0xef, + 0x1a, 0x43, 0x2e, 0xf5, 0xee, 0x8e, 0x79, 0x35, 0xf0, 0x2b, 0x0f, 0x83, + 0x12, 0xb7, 0x06, 0x78, 0x18, 0xf8, 0x0e, 0x70, 0x3c, 0xe1, 0xde, 0xca, + 0xb9, 0x84, 0xb1, 0x81, 0xef, 0x18, 0x8f, 0x54, 0x3d, 0xce, 0x71, 0x96, + 0xba, 0xce, 0x2a, 0x42, 0xab, 0xc1, 0xb6, 0x76, 0x83, 0x83, 0x80, 0x63, + 0x09, 0xc5, 0x02, 0xc7, 0x03, 0x7b, 0x1a, 0x91, 0x12, 0x32, 0x13, 0xf8, + 0x62, 0xc9, 0x4f, 0x94, 0x8a, 0xae, 0x35, 0x3b, 0x8e, 0x92, 0x8a, 0xe9, + 0x7c, 0x2c, 0xda, 0x8d, 0xd1, 0x42, 0xb8, 0xd0, 0x25, 0x49, 0x52, 0x57, + 0x5b, 0x0c, 0xdc, 0x08, 0x9c, 0x67, 0x14, 0x15, 0x9b, 0x04, 0x7c, 0x9d, + 0x70, 0xd1, 0x5f, 0x52, 0xb1, 0xac, 0x01, 0x6e, 0x23, 0xdc, 0xa0, 0x53, + 0x9c, 0x53, 0x80, 0x9e, 0xc0, 0x8a, 0x3a, 0x3e, 0x87, 0xcf, 0x03, 0x3b, + 0x13, 0xae, 0x49, 0x4b, 0xa9, 0x78, 0x16, 0xb8, 0x9d, 0x70, 0xff, 0xe4, + 0x4e, 0xc2, 0x88, 0x54, 0x49, 0x5d, 0xcc, 0x8b, 0x8f, 0x52, 0xed, 0x2c, + 0x20, 0xac, 0x30, 0xf8, 0x1c, 0xb0, 0x17, 0xa1, 0x05, 0xce, 0xc7, 0x81, + 0x1f, 0x02, 0x8f, 0x60, 0xfb, 0x6f, 0xd5, 0xcf, 0x1d, 0xc0, 0xc7, 0xea, + 0x7c, 0x82, 0x02, 0x30, 0xc6, 0x43, 0x91, 0xcb, 0xa3, 0x84, 0xd9, 0xa7, + 0x92, 0x8a, 0x69, 0x82, 0x11, 0x44, 0xb9, 0x0d, 0x78, 0xcb, 0x18, 0x24, + 0x49, 0x35, 0x62, 0x97, 0x9a, 0x38, 0x76, 0x46, 0x92, 0x8a, 0xcd, 0xee, + 0x84, 0xf9, 0x6c, 0x99, 0xc0, 0xf7, 0xc0, 0xe5, 0xc0, 0x19, 0xc0, 0x5d, + 0x1e, 0x0e, 0xd5, 0xc9, 0x6a, 0x42, 0x47, 0x80, 0x1f, 0x00, 0x67, 0x03, + 0xdb, 0x00, 0x7b, 0x03, 0x17, 0x01, 0xd7, 0x63, 0x51, 0x80, 0x54, 0x33, + 0x76, 0x0c, 0x90, 0xea, 0xe7, 0x6d, 0x42, 0xdb, 0xf6, 0x6b, 0xdb, 0xbd, + 0x49, 0x3c, 0x12, 0x38, 0x0a, 0x38, 0x34, 0xdb, 0x86, 0x19, 0x93, 0xba, + 0xd8, 0xaf, 0x80, 0xcf, 0x02, 0x2b, 0xeb, 0xfc, 0x3c, 0x76, 0xc1, 0x2e, + 0x1a, 0x9e, 0xa8, 0x4b, 0xe5, 0x75, 0x20, 0xce, 0xde, 0x8d, 0xe5, 0x0d, + 0x1a, 0x49, 0x52, 0x2d, 0xdd, 0x0a, 0xcc, 0x03, 0x86, 0x1a, 0x45, 0xc5, + 0x26, 0x02, 0xb3, 0x8c, 0x41, 0x2a, 0xa4, 0xe9, 0x84, 0x2e, 0x85, 0x4d, + 0x46, 0x11, 0x6d, 0x34, 0xf5, 0xef, 0xf2, 0xf8, 0x01, 0xa1, 0x7b, 0xc1, + 0xff, 0x00, 0x17, 0x7a, 0x48, 0xd4, 0xc5, 0xe6, 0x10, 0xc6, 0x2b, 0x3f, + 0x02, 0xdc, 0x0f, 0x3c, 0x90, 0xbd, 0x06, 0x25, 0xd5, 0x99, 0x85, 0x01, + 0x52, 0x3a, 0x3e, 0xc8, 0xde, 0x20, 0xb6, 0x7f, 0x93, 0x38, 0x1c, 0x38, + 0xa4, 0xdd, 0x76, 0x18, 0xa1, 0x9a, 0x4e, 0xca, 0x6b, 0x11, 0xf0, 0x65, + 0xe0, 0x17, 0x89, 0x3c, 0x9f, 0xd3, 0x3d, 0x24, 0xb9, 0x59, 0x18, 0x20, + 0x15, 0x97, 0x73, 0x77, 0xe3, 0x2c, 0x25, 0xac, 0x2c, 0x90, 0x24, 0xa9, + 0x56, 0x56, 0x03, 0x53, 0x08, 0x9d, 0x00, 0x55, 0x99, 0x71, 0x84, 0x55, + 0x81, 0xcb, 0x8c, 0x42, 0x2a, 0x9c, 0xb9, 0xc0, 0x1f, 0x81, 0x83, 0x8d, + 0x22, 0xda, 0x58, 0xea, 0x3f, 0xc2, 0x13, 0x42, 0xb7, 0xd0, 0x4f, 0x00, + 0xb7, 0x10, 0x0a, 0x04, 0x06, 0x7a, 0x68, 0x54, 0x05, 0x0b, 0x81, 0xa7, + 0x08, 0x85, 0x00, 0x6d, 0xdb, 0xd3, 0xc6, 0x22, 0xa5, 0xc9, 0xc2, 0x00, + 0x29, 0x6d, 0xb3, 0xb3, 0xed, 0xa6, 0x76, 0x9f, 0xdb, 0x89, 0x50, 0x24, + 0x70, 0x68, 0xbb, 0x6d, 0x2b, 0xa3, 0x52, 0x05, 0xae, 0x03, 0xbe, 0x04, + 0xbc, 0x96, 0xd0, 0x73, 0x1a, 0xed, 0x61, 0xc9, 0xe5, 0x3d, 0xe0, 0x21, + 0x63, 0x90, 0x0a, 0xa9, 0x19, 0x67, 0x15, 0xc7, 0xba, 0x81, 0x30, 0xef, + 0x59, 0x92, 0xa4, 0x5a, 0xba, 0x1c, 0x0b, 0x03, 0x62, 0xf4, 0x27, 0x8c, + 0x8f, 0x9b, 0x62, 0x14, 0x52, 0x21, 0x4d, 0xc3, 0xc2, 0x80, 0x3c, 0x76, + 0x21, 0x8c, 0x96, 0x7d, 0x36, 0x91, 0xe7, 0x33, 0x85, 0xd0, 0xd6, 0xfd, + 0xfb, 0x84, 0xf1, 0xa2, 0x52, 0x67, 0xbd, 0x47, 0xe8, 0x02, 0xd0, 0xb6, + 0xfd, 0x81, 0xb4, 0xae, 0x31, 0x4b, 0xda, 0x0c, 0x0b, 0x03, 0xa4, 0xe2, + 0x79, 0x35, 0xdb, 0xae, 0x6d, 0xf7, 0xb9, 0xdd, 0x08, 0xc5, 0x02, 0x07, + 0x64, 0x6f, 0x32, 0xf7, 0x05, 0x76, 0x06, 0xba, 0x19, 0x97, 0xda, 0x79, + 0x00, 0xf8, 0x3a, 0xe9, 0xb5, 0x6f, 0xec, 0x8f, 0xf3, 0x26, 0xf3, 0x9a, + 0x41, 0x58, 0xbd, 0x24, 0xa9, 0x78, 0x8e, 0x07, 0xb6, 0x33, 0x86, 0x28, + 0x8e, 0x11, 0x90, 0x24, 0xd5, 0xeb, 0xbc, 0xea, 0x05, 0x60, 0x77, 0xa3, + 0xa8, 0xd8, 0x44, 0x2c, 0x0c, 0x90, 0x8a, 0x6a, 0x1a, 0xe1, 0x9a, 0x92, + 0xe2, 0x8d, 0x21, 0x9d, 0xc2, 0x00, 0x08, 0xd7, 0x97, 0xcf, 0x04, 0x4e, + 0x04, 0xfe, 0x05, 0xf8, 0xb0, 0x87, 0x48, 0xed, 0xac, 0x01, 0x5e, 0x26, + 0x74, 0x02, 0x78, 0x16, 0x78, 0x9c, 0x50, 0x04, 0xf0, 0x92, 0xd1, 0x48, + 0xc5, 0x66, 0x61, 0x80, 0xd4, 0x18, 0x5e, 0xcc, 0xb6, 0xab, 0xda, 0x7d, + 0xae, 0x17, 0xa1, 0x48, 0x60, 0x6f, 0x42, 0xa1, 0xc0, 0xde, 0xc0, 0x3e, + 0x84, 0x82, 0x81, 0x66, 0x23, 0x2b, 0x8d, 0x56, 0xc2, 0x78, 0x8a, 0xff, + 0x00, 0x6e, 0x4f, 0xf4, 0x39, 0x9e, 0x0c, 0x6c, 0xe1, 0xa1, 0xca, 0x7d, + 0x82, 0x2e, 0xa9, 0x98, 0x1c, 0x23, 0x10, 0x67, 0x3e, 0xa1, 0x28, 0x4a, + 0x92, 0xa4, 0x7a, 0x98, 0x0c, 0x7c, 0xc3, 0x18, 0x2a, 0x76, 0x1a, 0xb0, + 0x35, 0xf0, 0x8e, 0x51, 0x48, 0x85, 0xf3, 0x7b, 0x60, 0x01, 0x30, 0xc8, + 0x28, 0xa2, 0x8d, 0x06, 0xfe, 0x33, 0xc1, 0xe7, 0x75, 0x5b, 0xb6, 0x9d, + 0x4c, 0x18, 0x3b, 0x7a, 0x02, 0xd0, 0xe4, 0xe1, 0x2a, 0x8d, 0x16, 0x42, + 0x01, 0xc0, 0xd3, 0xc0, 0x33, 0xac, 0x2d, 0x04, 0x78, 0x16, 0x58, 0x6e, + 0x3c, 0x52, 0xe3, 0xb1, 0x30, 0x40, 0x6a, 0x5c, 0xcb, 0x09, 0xf3, 0xbf, + 0xfe, 0xb8, 0xde, 0xe7, 0x7b, 0x13, 0x0a, 0x06, 0xf6, 0xc9, 0xb6, 0xb6, + 0x82, 0x81, 0x9d, 0xb0, 0x60, 0xa0, 0x91, 0xcc, 0x01, 0xae, 0x20, 0xcc, + 0x0b, 0x7b, 0xa1, 0x00, 0x27, 0x46, 0x8a, 0xd7, 0x8a, 0x37, 0xc7, 0xa4, + 0xa2, 0xea, 0x45, 0x58, 0xa1, 0xa1, 0xca, 0x5d, 0x05, 0xac, 0x32, 0x06, + 0x49, 0x52, 0x9d, 0x5c, 0x8a, 0x85, 0x01, 0x31, 0x7a, 0x00, 0xe3, 0x80, + 0x9f, 0x1b, 0x85, 0x54, 0x38, 0x6b, 0x08, 0x37, 0x8f, 0xcf, 0x31, 0x8a, + 0x68, 0x47, 0x03, 0x83, 0x81, 0x77, 0x13, 0x7d, 0x7e, 0x33, 0xb2, 0xed, + 0x43, 0xc0, 0xa7, 0x81, 0x09, 0xc0, 0x36, 0x1e, 0xb6, 0x86, 0xd1, 0x02, + 0xbc, 0xc2, 0xda, 0x02, 0x80, 0xb6, 0x8f, 0xcf, 0x02, 0xcb, 0x8c, 0x47, + 0x2a, 0x0f, 0x0b, 0x03, 0xa4, 0xf2, 0x59, 0x06, 0x3c, 0x9a, 0x6d, 0xed, + 0xf5, 0x01, 0xf6, 0x20, 0xcc, 0xbc, 0x6a, 0xdb, 0x76, 0xcd, 0x3e, 0xee, + 0x98, 0x9d, 0xc0, 0x2b, 0x6d, 0x6f, 0x00, 0xb7, 0x02, 0x57, 0x13, 0xc6, + 0x05, 0xac, 0x29, 0xc0, 0x73, 0x6e, 0x06, 0x46, 0x79, 0xe8, 0x72, 0xf9, + 0x23, 0xa1, 0x10, 0x44, 0x52, 0xf1, 0x7c, 0x0c, 0x18, 0x60, 0x0c, 0x51, + 0x1c, 0x23, 0x20, 0x49, 0xaa, 0xa7, 0x17, 0x09, 0xb3, 0x99, 0x0f, 0x33, + 0x8a, 0x8a, 0x4d, 0xc4, 0xc2, 0x00, 0xa9, 0xa8, 0xa6, 0x61, 0x61, 0x40, + 0x1e, 0xdd, 0x08, 0xab, 0xf2, 0x27, 0x27, 0xfe, 0x3c, 0x9f, 0x07, 0xbe, + 0x44, 0xe8, 0x1e, 0x70, 0x22, 0xa1, 0xa0, 0xeb, 0x14, 0x1c, 0x81, 0x57, + 0x04, 0xab, 0x08, 0x23, 0x22, 0x5e, 0x6e, 0xb7, 0xbd, 0x94, 0x7d, 0x7c, + 0x01, 0x58, 0x6a, 0x44, 0x92, 0x2c, 0x0c, 0x90, 0xd4, 0x66, 0x29, 0xf0, + 0x58, 0xb6, 0x75, 0x64, 0x20, 0xeb, 0x16, 0x0d, 0xec, 0xc2, 0xda, 0x8e, + 0x03, 0x03, 0x8d, 0xaf, 0x2e, 0x96, 0x01, 0xf7, 0xb1, 0xb6, 0xe5, 0xd7, + 0xa3, 0x84, 0xd5, 0xe3, 0x45, 0x72, 0x38, 0x56, 0x1f, 0x57, 0xe3, 0xc4, + 0x5c, 0x52, 0x31, 0x39, 0x46, 0x20, 0xce, 0x4b, 0x4f, 0x9c, 0x8b, 0xb5, + 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, 0xc0, 0x83, 0xc6, 0x20, + 0x49, 0xaa, 0xb3, 0xcb, 0xb1, 0x30, 0x20, 0xc6, 0x47, 0x80, 0xdd, 0x49, + 0xbf, 0xb3, 0x9d, 0xa4, 0x0d, 0xdd, 0x4a, 0xb8, 0xee, 0x64, 0x9b, 0xf9, + 0x78, 0xa3, 0x49, 0xbf, 0x30, 0xa0, 0xcd, 0x1a, 0x60, 0x7a, 0xb6, 0x41, + 0xb8, 0x16, 0x7c, 0x62, 0xb6, 0x9d, 0x0a, 0xf4, 0xf3, 0x70, 0xd6, 0xc5, + 0x7b, 0xac, 0x7b, 0xe3, 0xbf, 0xfd, 0xf6, 0x3a, 0xb0, 0xda, 0x88, 0x24, + 0x6d, 0x8a, 0x85, 0x01, 0x92, 0x2a, 0x79, 0xd3, 0xf1, 0x87, 0x6c, 0x5b, + 0xdf, 0x20, 0xd6, 0x16, 0x0b, 0xec, 0x0c, 0x8c, 0x20, 0x74, 0x19, 0x18, + 0x4e, 0xa8, 0x26, 0xdd, 0xc6, 0x93, 0x86, 0xdc, 0x5a, 0x08, 0x17, 0x4e, + 0xda, 0x8e, 0xc1, 0x23, 0xc0, 0x43, 0x14, 0x7f, 0xd6, 0x93, 0x63, 0x04, + 0xf2, 0xb3, 0x30, 0x40, 0x2a, 0xa6, 0xc1, 0x84, 0xd5, 0x22, 0xaa, 0xdc, + 0x65, 0x14, 0xaf, 0x10, 0x4e, 0x92, 0xd4, 0x78, 0x26, 0x03, 0xdf, 0xc5, + 0x6b, 0x6b, 0x31, 0xce, 0x03, 0xbe, 0x65, 0x0c, 0x52, 0xe1, 0xcc, 0x25, + 0x2c, 0x28, 0x3a, 0xc8, 0x28, 0xa2, 0x8d, 0xca, 0x7e, 0x6e, 0x14, 0xf1, + 0xe6, 0xed, 0xcb, 0xc0, 0x2f, 0xb2, 0xad, 0x37, 0x61, 0xb1, 0xcf, 0xa1, + 0xc0, 0x21, 0xd9, 0xb6, 0x3b, 0x5e, 0xff, 0xcd, 0xab, 0x35, 0xfb, 0x3a, + 0x7b, 0x2b, 0xdb, 0x5e, 0xcf, 0x3e, 0xb6, 0xbf, 0xf9, 0xff, 0x9e, 0x31, + 0x49, 0xca, 0xc3, 0x93, 0x17, 0x49, 0xd5, 0xb0, 0x20, 0xdb, 0x1e, 0xd9, + 0xc8, 0x9f, 0x6f, 0xc1, 0xda, 0x22, 0x81, 0xed, 0x81, 0x6d, 0xb3, 0xdf, + 0x0f, 0x05, 0x86, 0x65, 0xbf, 0x1f, 0x9a, 0x6d, 0x65, 0xd7, 0x42, 0x18, + 0x09, 0xf0, 0x22, 0x61, 0x45, 0xe4, 0xf3, 0xac, 0x1d, 0xfd, 0xb0, 0xa8, + 0x01, 0xf7, 0x77, 0x8c, 0x87, 0x3c, 0x97, 0xf7, 0x70, 0xd5, 0xac, 0x54, + 0x54, 0xe3, 0xb3, 0x9f, 0x8f, 0xaa, 0xdc, 0x64, 0x23, 0x90, 0x24, 0x25, + 0x60, 0x1e, 0xa1, 0x73, 0xdb, 0xa9, 0x46, 0x51, 0xb1, 0xf3, 0xb1, 0x30, + 0x40, 0x2a, 0xaa, 0x69, 0x58, 0x18, 0x90, 0xc7, 0x20, 0xe0, 0x48, 0xe0, + 0x9e, 0x82, 0xef, 0xc7, 0x32, 0xe0, 0xae, 0x6c, 0x6b, 0x33, 0x20, 0x7b, + 0x6d, 0x1c, 0x42, 0x18, 0x57, 0xbb, 0x1b, 0x61, 0x4c, 0xed, 0xf6, 0x84, + 0x51, 0xa2, 0x65, 0xd6, 0x0a, 0xcc, 0xcf, 0xde, 0x3b, 0xcc, 0x21, 0xdc, + 0xfc, 0x9f, 0x07, 0xcc, 0xce, 0xb6, 0x37, 0x09, 0xd7, 0x83, 0xe7, 0x00, + 0x2b, 0xfd, 0x32, 0x91, 0xd4, 0x95, 0x2c, 0x0c, 0x90, 0x54, 0x0b, 0x2b, + 0x09, 0xf3, 0x8d, 0x5e, 0xdd, 0xcc, 0xdf, 0xeb, 0x01, 0x0c, 0x21, 0x14, + 0x0b, 0x0c, 0xcb, 0xde, 0x2c, 0x0f, 0x6e, 0xf7, 0xb1, 0xed, 0xd7, 0x5b, + 0x67, 0xbf, 0xde, 0x8a, 0x62, 0xcd, 0x66, 0x6e, 0xc9, 0xde, 0xf4, 0xb5, + 0xbd, 0xf1, 0x9b, 0x97, 0xbd, 0x11, 0x9c, 0xcd, 0xda, 0x42, 0x80, 0x57, + 0x80, 0x15, 0x25, 0x79, 0x5d, 0x6c, 0x07, 0x1c, 0xe0, 0x97, 0x47, 0x2e, + 0x33, 0xb1, 0x45, 0x98, 0x54, 0x54, 0x8e, 0x11, 0x88, 0xf3, 0x10, 0xa1, + 0x68, 0x4e, 0x92, 0xa4, 0x14, 0x5c, 0x8e, 0x85, 0x01, 0x31, 0x76, 0x27, + 0x8c, 0x61, 0x78, 0xd8, 0x28, 0xa4, 0xc2, 0x99, 0x06, 0x7c, 0xcd, 0x18, + 0x72, 0x19, 0x4d, 0xf1, 0x0b, 0x03, 0x3a, 0xb2, 0x10, 0xb8, 0x33, 0xdb, + 0xda, 0xeb, 0x49, 0xe8, 0x30, 0xdb, 0x56, 0x28, 0x30, 0x82, 0xd0, 0x5d, + 0x76, 0x1b, 0xc2, 0xc2, 0xb1, 0x21, 0x84, 0xc5, 0x62, 0x45, 0x2a, 0x1e, + 0x78, 0x3f, 0xdb, 0xde, 0x6d, 0xb7, 0x2d, 0xe8, 0xe0, 0xe3, 0x5c, 0xd6, + 0x16, 0x01, 0x78, 0xfd, 0x4e, 0x52, 0x12, 0x2c, 0x0c, 0x90, 0x94, 0x92, + 0x55, 0xac, 0xad, 0x94, 0xac, 0xc4, 0x00, 0x60, 0x4b, 0xa0, 0x7f, 0xf6, + 0x71, 0x40, 0xb6, 0xf5, 0x23, 0xb4, 0xb6, 0xea, 0x9f, 0xbd, 0xb9, 0x6c, + 0x2b, 0x22, 0x18, 0x98, 0x7d, 0xdc, 0x8a, 0xd0, 0xe2, 0xaa, 0x27, 0xd0, + 0xa7, 0x93, 0x8f, 0xb5, 0x8c, 0xb5, 0xed, 0xfb, 0x57, 0x00, 0x4b, 0xb3, + 0x5f, 0x2f, 0x5e, 0x6f, 0x7b, 0x9f, 0xb0, 0xc2, 0xbf, 0xed, 0xf7, 0xef, + 0x64, 0x6f, 0x02, 0xd7, 0x78, 0x98, 0xff, 0x6c, 0x0c, 0xb6, 0x18, 0xab, + 0xc6, 0x09, 0xb9, 0xa4, 0xe2, 0xd9, 0x15, 0xf8, 0xb0, 0x31, 0x44, 0xb9, + 0xdc, 0x08, 0x24, 0x49, 0x09, 0xb9, 0x1e, 0xf8, 0x20, 0x3b, 0x0f, 0x55, + 0x65, 0x26, 0x62, 0x61, 0x80, 0x54, 0x44, 0x0f, 0x10, 0x6e, 0x78, 0x0e, + 0x32, 0x8a, 0x68, 0x63, 0x80, 0xbf, 0x2f, 0xd1, 0xfe, 0xae, 0x00, 0x9e, + 0xcb, 0xb6, 0x8d, 0xe9, 0x46, 0x28, 0x0e, 0x18, 0x42, 0xb8, 0x9e, 0xdb, + 0xb6, 0x6d, 0xb5, 0xde, 0xef, 0xfb, 0x65, 0x7f, 0xbf, 0x2f, 0x6b, 0x3b, + 0xf0, 0xf5, 0x22, 0x5c, 0xff, 0xed, 0x8c, 0xa5, 0xd9, 0xf3, 0x69, 0x25, + 0x5c, 0xbb, 0x85, 0xb5, 0xad, 0xf9, 0xdf, 0xcf, 0x3e, 0xbf, 0x88, 0x70, + 0xfd, 0x77, 0x31, 0xa1, 0xd8, 0x61, 0x21, 0xeb, 0x5e, 0xf3, 0x5d, 0xe4, + 0x4b, 0x58, 0x52, 0x91, 0x59, 0x18, 0x20, 0xa9, 0x11, 0xb4, 0xbd, 0x49, + 0x7b, 0xcb, 0x28, 0x0a, 0x65, 0xb4, 0x11, 0xe4, 0xd2, 0x0a, 0xcc, 0x30, + 0x06, 0xa9, 0x90, 0xce, 0xc7, 0xc2, 0xa8, 0x18, 0xab, 0x81, 0xab, 0x8c, + 0x41, 0x92, 0x94, 0x90, 0x25, 0xc0, 0x0d, 0xd8, 0x09, 0x28, 0xc6, 0x78, + 0xe0, 0x6f, 0x71, 0x05, 0xa5, 0x54, 0x34, 0x6b, 0x80, 0xdb, 0x81, 0x71, + 0x46, 0x11, 0x6d, 0x1f, 0x42, 0xb1, 0xf8, 0x4b, 0x46, 0xb1, 0xce, 0xeb, + 0x6a, 0x4e, 0xb6, 0x49, 0x92, 0xba, 0x50, 0xb3, 0x11, 0x48, 0x92, 0xea, + 0xa0, 0x37, 0x70, 0xbc, 0x31, 0xe4, 0xf2, 0x18, 0x95, 0x77, 0xd7, 0x90, + 0x94, 0x86, 0xf1, 0x46, 0x10, 0x65, 0x26, 0xf0, 0xb6, 0x31, 0x48, 0x92, + 0x12, 0x63, 0x37, 0x9b, 0x38, 0x43, 0x81, 0x93, 0x8c, 0x41, 0x2a, 0x24, + 0xbb, 0x17, 0xe6, 0x77, 0x9a, 0x11, 0x48, 0x92, 0xea, 0xc1, 0xc2, 0x00, + 0x49, 0x52, 0x3d, 0x9c, 0x48, 0xe7, 0xc7, 0x37, 0xa8, 0x63, 0x53, 0x8d, + 0x40, 0x2a, 0xa4, 0x23, 0x80, 0x3d, 0x8c, 0x21, 0x8a, 0x37, 0x5e, 0x24, + 0x49, 0x29, 0xb2, 0x70, 0x2d, 0x9e, 0x9d, 0x16, 0xa4, 0x62, 0x9a, 0x46, + 0xe8, 0x62, 0xa8, 0x78, 0x63, 0x8c, 0x40, 0x92, 0x54, 0x0f, 0x16, 0x06, + 0x48, 0x92, 0xea, 0xc1, 0x31, 0x02, 0xd5, 0x39, 0x11, 0x97, 0x54, 0x3c, + 0x5e, 0x00, 0x8f, 0xd3, 0xd6, 0xaa, 0x59, 0x92, 0xa4, 0xd4, 0x38, 0xea, + 0x26, 0xde, 0x99, 0xc0, 0x96, 0xc6, 0x20, 0x15, 0xce, 0x5c, 0x42, 0x17, + 0x43, 0xc5, 0x3b, 0x16, 0xe8, 0x67, 0x0c, 0x92, 0xa4, 0x5a, 0xb3, 0x30, + 0x40, 0x92, 0x54, 0x0f, 0xa3, 0x8c, 0x20, 0x97, 0xf7, 0x80, 0x07, 0x8d, + 0x41, 0x2a, 0x9c, 0xee, 0x38, 0x8b, 0x33, 0xd6, 0xf5, 0xc0, 0x07, 0xc6, + 0x20, 0x49, 0x4a, 0x94, 0x5d, 0x6d, 0xe2, 0xf4, 0x21, 0x14, 0x07, 0x48, + 0x2a, 0x1e, 0x17, 0x2b, 0xe4, 0xb3, 0x05, 0x8e, 0x53, 0x91, 0x24, 0xd5, + 0x81, 0x85, 0x01, 0x92, 0xa4, 0x5a, 0x3b, 0x08, 0xd8, 0xc1, 0x18, 0x72, + 0x99, 0x49, 0x58, 0x99, 0x24, 0xa9, 0x58, 0x4e, 0x05, 0xb6, 0x31, 0x86, + 0x28, 0xde, 0x70, 0x91, 0x24, 0xa5, 0xec, 0x21, 0xe0, 0x79, 0x63, 0x88, + 0x62, 0x37, 0x25, 0xa9, 0x98, 0x2c, 0x0c, 0xc8, 0xcf, 0x6e, 0x9a, 0x92, + 0xa4, 0x9a, 0xb3, 0x30, 0x40, 0x92, 0x54, 0x6b, 0xce, 0x51, 0xf3, 0x04, + 0x5c, 0x2a, 0x2b, 0x2f, 0x7c, 0xc7, 0x99, 0x07, 0xdc, 0x66, 0x0c, 0x92, + 0xa4, 0xc4, 0x4d, 0x36, 0x82, 0x28, 0x27, 0x01, 0x23, 0x8c, 0x41, 0x2a, + 0x9c, 0x07, 0x80, 0x05, 0xc6, 0x90, 0xcb, 0x18, 0xbc, 0x3f, 0x23, 0x49, + 0xaa, 0x31, 0x7f, 0xf0, 0x48, 0x92, 0x6a, 0xcd, 0x8a, 0xe8, 0x7c, 0x5a, + 0x81, 0x19, 0xc6, 0x20, 0x15, 0x4e, 0x3f, 0xe0, 0x74, 0x63, 0x88, 0x32, + 0x19, 0xbb, 0xa4, 0x48, 0x92, 0xd2, 0x77, 0x59, 0xf6, 0x5e, 0x5d, 0x95, + 0x69, 0x06, 0xce, 0x31, 0x06, 0xa9, 0x70, 0xd6, 0x00, 0xb7, 0x1b, 0x43, + 0x2e, 0x43, 0x81, 0x43, 0x8d, 0x41, 0x92, 0x54, 0xeb, 0x37, 0xdf, 0x92, + 0x24, 0xd5, 0xf2, 0xa4, 0xe7, 0x30, 0x63, 0xc8, 0xe5, 0x31, 0x60, 0xb6, + 0x31, 0x48, 0x85, 0x73, 0x36, 0x61, 0x8e, 0xae, 0x2a, 0xe7, 0x18, 0x01, + 0x49, 0x52, 0x11, 0xbc, 0x04, 0x3c, 0x68, 0x0c, 0x51, 0x26, 0x19, 0x81, + 0x54, 0x48, 0x76, 0x33, 0xcc, 0xcf, 0xc5, 0x33, 0x92, 0xa4, 0x9a, 0xaa, + 0x57, 0x61, 0xc0, 0x08, 0xe0, 0xf3, 0xc0, 0xae, 0x1e, 0x02, 0x49, 0x2a, + 0xdd, 0x09, 0x8f, 0x45, 0x69, 0x9e, 0x78, 0x4b, 0x65, 0xe4, 0x18, 0x81, + 0x38, 0x2f, 0x00, 0x0f, 0x1b, 0x83, 0x24, 0xa9, 0x20, 0x2c, 0x66, 0x8b, + 0x73, 0x30, 0xb0, 0xaf, 0x31, 0x48, 0x85, 0x33, 0x0d, 0x3b, 0xa5, 0xe4, + 0xe5, 0xb8, 0x4d, 0x49, 0x52, 0x4d, 0xd5, 0xe3, 0xe6, 0xcc, 0x48, 0xe0, + 0x11, 0xe0, 0xc7, 0xc0, 0x8b, 0x84, 0x8a, 0xea, 0x1f, 0x02, 0x27, 0x02, + 0xdd, 0x3d, 0x24, 0x92, 0xd4, 0xd0, 0xac, 0x84, 0xae, 0xce, 0x89, 0xb7, + 0xa4, 0x62, 0x19, 0x0e, 0x1c, 0x67, 0x0c, 0x51, 0x2e, 0x35, 0x02, 0x49, + 0x52, 0x81, 0x5c, 0x05, 0xac, 0x32, 0x86, 0x28, 0xe3, 0x8d, 0x40, 0x2a, + 0x9c, 0xb9, 0xc0, 0xe3, 0xc6, 0x90, 0xcb, 0x41, 0xc0, 0x76, 0xc6, 0x20, + 0x49, 0xaa, 0x95, 0x5a, 0x16, 0x06, 0x34, 0x01, 0x5f, 0x00, 0x66, 0x02, + 0xc3, 0xda, 0x7d, 0x7e, 0x17, 0xe0, 0xe2, 0xec, 0xf3, 0x73, 0x81, 0xab, + 0x81, 0x0b, 0x80, 0xfe, 0x1e, 0x1e, 0x49, 0x6a, 0x28, 0x3d, 0x08, 0x45, + 0x60, 0x8a, 0xb7, 0x10, 0xdb, 0x93, 0x4a, 0x45, 0x34, 0x01, 0xe8, 0x66, + 0x0c, 0x51, 0xae, 0x34, 0x02, 0x49, 0x52, 0x81, 0xcc, 0x07, 0x66, 0x18, + 0x43, 0x94, 0x49, 0xd8, 0x5d, 0x4e, 0x2a, 0x22, 0x17, 0x2f, 0xe4, 0xd3, + 0x04, 0x9c, 0x66, 0x0c, 0x92, 0xa4, 0x5a, 0xa9, 0xd5, 0x1b, 0xee, 0xfe, + 0xc0, 0x14, 0xe0, 0x07, 0x84, 0x1b, 0x43, 0x1b, 0x33, 0x18, 0x18, 0x07, + 0xfc, 0x2f, 0xf0, 0x2e, 0x70, 0x2f, 0xa1, 0x98, 0x60, 0x07, 0x0f, 0x95, + 0x24, 0x15, 0xde, 0xb1, 0xc0, 0x00, 0x63, 0xc8, 0x65, 0x06, 0xae, 0x40, + 0x92, 0x8a, 0xc8, 0x31, 0x02, 0x71, 0xee, 0x27, 0x8c, 0x12, 0x90, 0x24, + 0xa9, 0x48, 0x1c, 0x27, 0x10, 0x67, 0x07, 0xe0, 0x68, 0x63, 0x90, 0x0a, + 0xc7, 0xc2, 0x80, 0xfc, 0xec, 0xae, 0x29, 0x49, 0xaa, 0x99, 0x5a, 0x14, + 0x06, 0x1c, 0x08, 0x3c, 0x0a, 0x9c, 0x5d, 0xe1, 0xbf, 0xeb, 0x0e, 0x7c, + 0x84, 0x50, 0x4c, 0xf0, 0x1a, 0xf0, 0x34, 0xf0, 0xed, 0xec, 0x24, 0xc1, + 0x0a, 0x62, 0x49, 0xf2, 0x44, 0xc7, 0x13, 0x6e, 0x49, 0x45, 0xb0, 0x77, + 0xf6, 0x7e, 0x58, 0x95, 0xf3, 0xc6, 0x8a, 0x24, 0xa9, 0x88, 0x6e, 0x00, + 0x16, 0x1b, 0x43, 0x14, 0x8b, 0x29, 0xa5, 0xe2, 0x79, 0x00, 0x78, 0xdf, + 0x18, 0x72, 0x39, 0x09, 0xe8, 0x63, 0x0c, 0x92, 0xa4, 0x5a, 0xe8, 0xea, + 0x1b, 0xec, 0xe7, 0x03, 0xf7, 0x01, 0xbb, 0x56, 0xe1, 0xff, 0xda, 0x1b, + 0xf8, 0x0a, 0x70, 0x0f, 0x61, 0xe4, 0xc0, 0x25, 0x84, 0xee, 0x02, 0xfd, + 0x3c, 0x8c, 0x92, 0x54, 0x08, 0x16, 0x06, 0xe4, 0xd3, 0x0a, 0x4c, 0x37, + 0x06, 0xa9, 0x70, 0xce, 0x37, 0x82, 0x28, 0xab, 0x81, 0x6b, 0x8c, 0x41, + 0x92, 0x54, 0x40, 0x4b, 0x81, 0xeb, 0x8d, 0x21, 0xca, 0x38, 0xa0, 0xa7, + 0x31, 0x48, 0x85, 0x7b, 0xdf, 0x7e, 0x9b, 0x31, 0xe4, 0xd2, 0x9b, 0xd0, + 0x65, 0x53, 0x92, 0xa4, 0x2e, 0xd7, 0x55, 0x85, 0x01, 0x3d, 0x81, 0x1f, + 0x12, 0x6e, 0xde, 0x77, 0x45, 0xb5, 0xdb, 0x10, 0xc2, 0x45, 0xd6, 0xab, + 0x81, 0xb7, 0x81, 0x99, 0x84, 0x91, 0x03, 0x23, 0x3c, 0xa4, 0x92, 0x94, + 0xa4, 0xbd, 0x80, 0xdd, 0x8c, 0x21, 0x97, 0xc7, 0x81, 0xd9, 0xc6, 0x20, + 0x15, 0x4a, 0x13, 0x70, 0x9e, 0x31, 0x44, 0x99, 0x06, 0xcc, 0x33, 0x06, + 0x49, 0x52, 0x41, 0xd9, 0xf5, 0x26, 0xce, 0x40, 0x2c, 0x28, 0x97, 0x8a, + 0xfa, 0xde, 0x5d, 0xf9, 0xf8, 0xbd, 0x4f, 0x92, 0x54, 0x13, 0x5d, 0x51, + 0x18, 0xb0, 0x03, 0x70, 0x37, 0x70, 0x71, 0x8d, 0xf6, 0xa1, 0x37, 0x70, + 0x22, 0x61, 0xe4, 0xc0, 0x9b, 0xac, 0x3b, 0x72, 0xa0, 0xc9, 0x43, 0x2c, + 0x49, 0x49, 0x18, 0x63, 0x04, 0x9e, 0x68, 0x4b, 0x25, 0x34, 0x12, 0xd8, + 0xc9, 0x18, 0xa2, 0x78, 0x43, 0x45, 0x92, 0x54, 0x64, 0xb7, 0x01, 0x6f, + 0x19, 0x43, 0x14, 0xc7, 0x09, 0x48, 0xc5, 0x33, 0x8d, 0xd0, 0xe5, 0x50, + 0xf1, 0xc6, 0xe2, 0xbd, 0x0c, 0x49, 0x52, 0x0d, 0x54, 0xbb, 0x30, 0x60, + 0x34, 0xf0, 0x18, 0x70, 0x78, 0x1d, 0xf7, 0xa9, 0xfd, 0xc8, 0x81, 0x57, + 0x80, 0x6d, 0x3d, 0xcc, 0x92, 0x54, 0x77, 0x56, 0x3e, 0x57, 0xe7, 0x44, + 0x5b, 0x52, 0xb1, 0x78, 0x61, 0x3b, 0xce, 0x62, 0xe0, 0x26, 0x63, 0x90, + 0x24, 0x15, 0x58, 0x0b, 0xa1, 0xcb, 0xa5, 0x2a, 0x37, 0x06, 0x18, 0x6c, + 0x0c, 0x52, 0xa1, 0xcc, 0x01, 0x9e, 0x30, 0x86, 0x5c, 0xb6, 0x07, 0xf6, + 0x33, 0x06, 0x49, 0x52, 0x57, 0xab, 0x56, 0x61, 0x40, 0x13, 0xe1, 0x66, + 0xfc, 0x8d, 0x84, 0xb6, 0x5f, 0xa9, 0xd8, 0x91, 0x30, 0x9f, 0x4c, 0x92, + 0x54, 0x3f, 0x03, 0x80, 0xa3, 0x8c, 0x21, 0x97, 0x45, 0xc0, 0xef, 0x8d, + 0x41, 0x2a, 0x94, 0x5e, 0xc0, 0xc7, 0x8d, 0x21, 0xca, 0xb5, 0x84, 0xf9, + 0xcc, 0x92, 0x24, 0x15, 0x99, 0xdd, 0x6f, 0xe2, 0x6c, 0x01, 0x9c, 0x6d, + 0x0c, 0x52, 0xe1, 0xb8, 0x98, 0x21, 0x3f, 0xbb, 0x6d, 0x4a, 0x92, 0xba, + 0x5c, 0x35, 0x0a, 0x03, 0xb6, 0xce, 0x7e, 0xf0, 0x7f, 0x9b, 0xae, 0x19, + 0x4d, 0x90, 0xd7, 0xb9, 0x1e, 0x66, 0x49, 0xaa, 0xab, 0xd3, 0x80, 0x1e, + 0xc6, 0x90, 0xcb, 0x0c, 0x60, 0x95, 0x31, 0x48, 0x85, 0x32, 0x06, 0xd8, + 0xca, 0x18, 0xa2, 0x78, 0x23, 0x45, 0x92, 0xd4, 0x08, 0xfe, 0x40, 0x18, + 0x77, 0xa9, 0xca, 0xd9, 0x75, 0x49, 0x2a, 0x1e, 0x0b, 0x03, 0xf2, 0xb3, + 0xdb, 0xa6, 0x24, 0xa9, 0xcb, 0xe5, 0xbd, 0x91, 0x7f, 0x28, 0xf0, 0x30, + 0x70, 0x4a, 0xc2, 0xfb, 0x78, 0x24, 0xce, 0x76, 0x95, 0x24, 0x4f, 0x6c, + 0x3c, 0xc1, 0x96, 0x54, 0x5b, 0x5e, 0xd0, 0x8e, 0x33, 0x07, 0x98, 0x65, + 0x0c, 0x92, 0xa4, 0x06, 0x71, 0xa5, 0x11, 0x44, 0x39, 0x06, 0xd8, 0xd9, + 0x18, 0xa4, 0x42, 0xb9, 0x1f, 0x78, 0xdf, 0x18, 0x72, 0x39, 0x02, 0x18, + 0x6a, 0x0c, 0x92, 0xa4, 0xae, 0x94, 0xa7, 0x30, 0xe0, 0xaf, 0x80, 0xfb, + 0x48, 0xff, 0xa6, 0x7b, 0x13, 0x70, 0x8e, 0x87, 0x5a, 0x92, 0xea, 0xa2, + 0x1b, 0x70, 0xaa, 0x31, 0xe4, 0xd2, 0x0a, 0x4c, 0x37, 0x06, 0xa9, 0x50, + 0x06, 0x02, 0xa3, 0x8c, 0x21, 0xca, 0x15, 0xc0, 0x1a, 0x63, 0x90, 0x24, + 0x35, 0x88, 0x4b, 0xb3, 0xf7, 0xf3, 0xaa, 0x4c, 0x13, 0x30, 0xde, 0x18, + 0xa4, 0x42, 0x59, 0x0d, 0xdc, 0x66, 0x0c, 0xb9, 0x34, 0xe3, 0x35, 0x34, + 0x49, 0x52, 0x0d, 0x7e, 0xd8, 0x54, 0xaa, 0x37, 0xf0, 0x6b, 0xe0, 0x7f, + 0x08, 0x73, 0xbf, 0x8a, 0xc0, 0x71, 0x02, 0x92, 0x54, 0x1f, 0x47, 0x01, + 0x83, 0x8d, 0x21, 0x97, 0xc7, 0x81, 0xb7, 0x8c, 0x41, 0x2a, 0x94, 0x73, + 0x81, 0x9e, 0xc6, 0x10, 0xc5, 0x31, 0x02, 0x92, 0xa4, 0x46, 0xf2, 0x1a, + 0x61, 0x15, 0xad, 0x2a, 0x37, 0xc9, 0x08, 0xa4, 0xc2, 0xb1, 0xdb, 0x61, + 0x7e, 0x76, 0xdd, 0x94, 0x24, 0x75, 0xa9, 0x4a, 0x0b, 0x03, 0xf6, 0x00, + 0x1e, 0x04, 0x3e, 0x59, 0xb0, 0xfd, 0x3c, 0x38, 0x7b, 0xee, 0x92, 0x24, + 0x4f, 0x68, 0x3c, 0xb1, 0x96, 0xd4, 0xd5, 0x1c, 0x23, 0x10, 0xe7, 0x59, + 0xe0, 0x8f, 0xc6, 0x20, 0x49, 0x6a, 0x30, 0x16, 0xbd, 0xc5, 0xd9, 0x8b, + 0x70, 0x3d, 0x4f, 0x52, 0x71, 0x4c, 0xc3, 0x2e, 0x29, 0x79, 0x9d, 0x4a, + 0x71, 0x16, 0x63, 0x4a, 0x92, 0x0a, 0xa8, 0x92, 0xc2, 0x80, 0x33, 0x80, + 0x87, 0x80, 0xfd, 0x0a, 0xba, 0xaf, 0x76, 0x0d, 0x90, 0xa4, 0xda, 0x1b, + 0x63, 0x04, 0x55, 0x39, 0xb1, 0x96, 0x54, 0x1c, 0x3b, 0x02, 0x1f, 0x31, + 0x86, 0x28, 0x97, 0x19, 0x81, 0x24, 0xa9, 0x01, 0x5d, 0x05, 0xac, 0x30, + 0x86, 0x28, 0x16, 0x5b, 0x4a, 0xc5, 0x32, 0x07, 0x78, 0xc2, 0x18, 0x72, + 0xe9, 0x0f, 0x1c, 0x6d, 0x0c, 0x92, 0xa4, 0xae, 0xd2, 0x99, 0xc2, 0x80, + 0x1e, 0xc0, 0xf7, 0x81, 0xdf, 0x01, 0x03, 0x0a, 0xbc, 0xaf, 0x16, 0x06, + 0x48, 0x52, 0x6d, 0xed, 0x08, 0xec, 0x63, 0x0c, 0xb9, 0x2c, 0x02, 0x7e, + 0x6f, 0x0c, 0x52, 0xa1, 0x9c, 0x4f, 0x98, 0x8b, 0xab, 0xca, 0xb4, 0x02, + 0x93, 0x8d, 0x41, 0x92, 0xd4, 0x80, 0x16, 0x00, 0xd3, 0x8d, 0x21, 0xca, + 0x78, 0xa0, 0x9b, 0x31, 0x48, 0x85, 0xe2, 0xe2, 0x86, 0xfc, 0xec, 0xbe, + 0x29, 0x49, 0xea, 0x32, 0x9d, 0x29, 0x0c, 0x38, 0x13, 0xf8, 0x62, 0x03, + 0xec, 0xeb, 0x3e, 0xc0, 0xbe, 0x1e, 0x72, 0x49, 0xaa, 0x99, 0xd3, 0x8d, + 0x20, 0xb7, 0x19, 0xc0, 0x2a, 0x63, 0x90, 0x0a, 0xe5, 0x3c, 0x23, 0x88, + 0x72, 0x2f, 0xf0, 0x8a, 0x31, 0x48, 0x92, 0x1a, 0x94, 0xe3, 0x04, 0xe2, + 0x6c, 0x0b, 0x9c, 0x60, 0x0c, 0x52, 0xa1, 0x58, 0x18, 0x90, 0xdf, 0x19, + 0x46, 0x20, 0x49, 0x49, 0x6b, 0x02, 0x86, 0x03, 0x03, 0xa9, 0xac, 0x33, + 0x7f, 0x12, 0xba, 0x77, 0xe2, 0xef, 0x34, 0xd2, 0x8d, 0x9d, 0x73, 0x81, + 0xa7, 0x7c, 0xcd, 0x4a, 0x52, 0x4d, 0x58, 0xe1, 0xec, 0x09, 0xb5, 0x54, + 0x36, 0x87, 0x62, 0xa7, 0x94, 0x58, 0xde, 0x30, 0x91, 0x24, 0x35, 0xb2, + 0x1b, 0x81, 0xf7, 0x81, 0xad, 0x8c, 0xa2, 0x62, 0x13, 0x09, 0x05, 0xd3, + 0x92, 0x8a, 0xe1, 0x7e, 0xbf, 0xdf, 0xe5, 0xb6, 0x2b, 0xb0, 0x07, 0xf0, + 0x27, 0xa3, 0x90, 0xa4, 0x24, 0x7d, 0x19, 0xf8, 0xce, 0x7a, 0x9f, 0x5b, + 0x0e, 0x2c, 0xcb, 0x3e, 0xbe, 0xd7, 0x89, 0x5f, 0x77, 0xf6, 0xcf, 0xe7, + 0x53, 0xe5, 0x85, 0x83, 0x9b, 0x2b, 0x0c, 0xe8, 0x06, 0x9c, 0xda, 0x40, + 0x07, 0x6b, 0x3c, 0xf0, 0x0d, 0x42, 0xab, 0x52, 0x49, 0x52, 0xd7, 0xd9, + 0x12, 0x18, 0x69, 0x0c, 0xb9, 0xb4, 0x62, 0xcb, 0x51, 0xa9, 0x68, 0x26, + 0x19, 0x41, 0x94, 0x95, 0xc0, 0x35, 0xc6, 0x20, 0x49, 0x6a, 0x60, 0xcb, + 0x81, 0xeb, 0x81, 0x4f, 0x1a, 0x45, 0xc5, 0xce, 0x06, 0x3e, 0x07, 0x7c, + 0x60, 0x14, 0x52, 0x21, 0xac, 0x06, 0x6e, 0xcf, 0xbe, 0x76, 0x15, 0x6f, + 0x0c, 0xf0, 0x3d, 0x63, 0x90, 0xa4, 0xe4, 0x1c, 0x07, 0xfc, 0x6b, 0x07, + 0x9f, 0xef, 0x95, 0x6d, 0x10, 0xba, 0x5e, 0x55, 0xfb, 0xfd, 0xf0, 0x75, + 0xd5, 0xfa, 0xcf, 0x36, 0xd7, 0xe2, 0xe0, 0x18, 0x60, 0x70, 0x03, 0x1d, + 0xb0, 0x5d, 0x81, 0x83, 0x7d, 0xdd, 0x4a, 0x52, 0x97, 0x3b, 0xb9, 0xdd, + 0x0f, 0x42, 0xc5, 0x79, 0x02, 0x78, 0xcb, 0x18, 0xa4, 0xc2, 0xe8, 0x4e, + 0xe8, 0x4e, 0xa5, 0xca, 0x4d, 0x05, 0xde, 0x35, 0x06, 0x49, 0x52, 0x83, + 0xb3, 0x3b, 0x4e, 0x9c, 0xbe, 0x38, 0xa6, 0x4e, 0x2a, 0x1a, 0xbb, 0x1f, + 0xe6, 0x37, 0xc6, 0x08, 0x24, 0x29, 0x39, 0xc3, 0xb2, 0xf7, 0xf4, 0xdd, + 0x6b, 0xfc, 0xb8, 0x3f, 0x05, 0x06, 0x55, 0xeb, 0x3f, 0xdb, 0x5c, 0x61, + 0xc0, 0xd8, 0x06, 0x3c, 0x70, 0x5e, 0xb0, 0x95, 0xa4, 0xae, 0xe7, 0x18, + 0x01, 0x4f, 0xa4, 0xa5, 0xb2, 0x39, 0x29, 0x3b, 0x41, 0x50, 0xe5, 0xbc, + 0x51, 0x22, 0x49, 0x2a, 0x83, 0x59, 0xc0, 0x9b, 0xc6, 0x10, 0x65, 0xa2, + 0x11, 0x48, 0x85, 0x32, 0x15, 0x3b, 0xf6, 0xe6, 0x75, 0x0c, 0x8e, 0x63, + 0x90, 0xa4, 0x94, 0xf4, 0x00, 0xa6, 0x50, 0xfd, 0x6e, 0x00, 0x9d, 0x31, + 0x8c, 0x2a, 0x76, 0x91, 0xd9, 0x5c, 0x61, 0x40, 0x23, 0x56, 0xa6, 0x9d, + 0x07, 0x34, 0xf9, 0x1a, 0x96, 0xa4, 0x2e, 0xd3, 0x44, 0x63, 0x8d, 0xa1, + 0xa9, 0x17, 0x0b, 0x03, 0xa4, 0x62, 0xf1, 0x82, 0x75, 0x9c, 0x45, 0xc0, + 0x2d, 0xc6, 0x20, 0x49, 0x2a, 0x81, 0x16, 0xe0, 0x4a, 0x63, 0x88, 0x72, + 0x32, 0xb0, 0x8d, 0x31, 0x48, 0x85, 0x31, 0x07, 0x78, 0xd2, 0x18, 0x72, + 0xe9, 0x0e, 0x9c, 0x62, 0x0c, 0x92, 0x94, 0x8c, 0xef, 0x01, 0x47, 0xd7, + 0xf1, 0xf1, 0x2f, 0x04, 0x46, 0x55, 0xe3, 0x3f, 0xda, 0x54, 0x61, 0xc0, + 0x5e, 0xc0, 0x1e, 0x0d, 0x78, 0xf0, 0xb6, 0x07, 0x8e, 0xf4, 0x35, 0x2c, + 0x49, 0x5d, 0xe6, 0x30, 0x60, 0xb8, 0x31, 0xe4, 0xb2, 0x08, 0x78, 0xc0, + 0x18, 0xa4, 0xc2, 0xe8, 0x0b, 0x9c, 0x61, 0x0c, 0x51, 0xa6, 0x00, 0xcb, + 0x8c, 0x41, 0x92, 0x54, 0x12, 0x76, 0xc9, 0x89, 0xe3, 0xc8, 0x26, 0xa9, + 0x78, 0x5c, 0xec, 0x90, 0x9f, 0xdd, 0x38, 0x25, 0x29, 0x0d, 0xe3, 0x81, + 0xcf, 0x27, 0xf0, 0x3c, 0x7e, 0x49, 0x15, 0xba, 0xc9, 0x6c, 0xaa, 0x30, + 0x60, 0x6c, 0x03, 0x1f, 0x44, 0x4f, 0x26, 0x24, 0xc9, 0x13, 0x97, 0x94, + 0xcd, 0x04, 0x56, 0x19, 0x83, 0x54, 0x18, 0x67, 0x01, 0x5b, 0x1a, 0x43, + 0x14, 0x6f, 0x90, 0x48, 0x92, 0xca, 0xe4, 0x31, 0x5c, 0x45, 0x1b, 0xcb, + 0xee, 0x4c, 0x52, 0xb1, 0x58, 0x18, 0x90, 0xdf, 0x68, 0xa0, 0x9b, 0x31, + 0x48, 0x52, 0x5d, 0xed, 0x4b, 0xb8, 0x21, 0x9f, 0x82, 0x11, 0xc0, 0xbf, + 0xe7, 0xfd, 0x4f, 0x36, 0x55, 0x18, 0x70, 0x6c, 0x03, 0x1f, 0xc8, 0x71, + 0xfe, 0x50, 0x95, 0xa4, 0x2e, 0x33, 0xc6, 0x08, 0x3c, 0x81, 0x96, 0x4a, + 0xc6, 0x0b, 0xd5, 0x71, 0x66, 0x03, 0x77, 0x1b, 0x83, 0x24, 0xa9, 0x64, + 0xae, 0x30, 0x82, 0x28, 0x87, 0x03, 0x1f, 0x32, 0x06, 0xa9, 0x30, 0xee, + 0x03, 0x16, 0x1a, 0x43, 0x2e, 0x83, 0x80, 0x23, 0x8c, 0x41, 0x92, 0xea, + 0x66, 0x00, 0x70, 0x2d, 0xa1, 0x53, 0x68, 0x2a, 0x3e, 0x4d, 0xce, 0xfb, + 0xf7, 0x9b, 0x2a, 0x0c, 0xd8, 0xa3, 0x81, 0x0f, 0xe6, 0xb6, 0xc0, 0x47, + 0x7d, 0x4d, 0x4b, 0x52, 0xd5, 0x0d, 0x07, 0x0e, 0x32, 0x86, 0x5c, 0x5a, + 0x81, 0x5b, 0x8d, 0x41, 0x2a, 0x8c, 0xa1, 0xc0, 0x09, 0xc6, 0x10, 0xe5, + 0x32, 0x60, 0x8d, 0x31, 0x48, 0x92, 0x4a, 0xe6, 0x0a, 0xa0, 0xc5, 0x18, + 0xa2, 0x4c, 0x30, 0x02, 0xa9, 0x30, 0x56, 0x03, 0xb7, 0x1b, 0x43, 0x6e, + 0x76, 0xe5, 0x94, 0xa4, 0xfa, 0x68, 0x02, 0x7e, 0x45, 0x7a, 0xf7, 0xca, + 0x9b, 0x80, 0x5f, 0x93, 0xa3, 0x73, 0xe9, 0xc6, 0x0a, 0x03, 0xb6, 0x00, + 0x76, 0x6c, 0xf0, 0x83, 0xea, 0x38, 0x01, 0x49, 0xaa, 0xbe, 0x31, 0xd9, + 0x0f, 0x27, 0xc5, 0x7b, 0x12, 0x78, 0xcb, 0x18, 0xa4, 0xc2, 0x98, 0x48, + 0x98, 0x7b, 0xab, 0xca, 0x39, 0x46, 0x40, 0x92, 0x54, 0x46, 0xaf, 0x03, + 0xf7, 0x18, 0x43, 0x94, 0x0b, 0x3c, 0xdf, 0x94, 0x0a, 0xc5, 0x6e, 0x88, + 0xf9, 0xd9, 0x95, 0x53, 0x92, 0xea, 0xe3, 0x2b, 0xc0, 0xd9, 0x89, 0x3e, + 0xb7, 0x9d, 0x81, 0x7f, 0x8e, 0xfd, 0xc7, 0xcd, 0x9b, 0xf8, 0x4f, 0x1b, + 0xfd, 0x02, 0xe7, 0x38, 0x42, 0x01, 0x84, 0x24, 0xa9, 0x7a, 0xac, 0x64, + 0xf6, 0xc4, 0x59, 0x2a, 0x1b, 0xc7, 0x08, 0xc4, 0x79, 0x06, 0x78, 0xc2, + 0x18, 0x24, 0x49, 0x25, 0x65, 0x71, 0x5c, 0x9c, 0x9d, 0x80, 0x23, 0x8d, + 0x41, 0x2a, 0x8c, 0xa9, 0x84, 0xae, 0x88, 0x8a, 0xb7, 0x5f, 0xf6, 0xbd, + 0x4f, 0x92, 0x54, 0x3b, 0xc7, 0x01, 0xdf, 0x4a, 0xfc, 0x39, 0x7e, 0x01, + 0x38, 0x3a, 0xe6, 0x1f, 0x6e, 0xac, 0x30, 0x60, 0x8f, 0x12, 0x1c, 0xd8, + 0x41, 0xd8, 0xf6, 0x55, 0x92, 0xaa, 0xa9, 0x27, 0x70, 0xbc, 0x31, 0xe4, + 0x66, 0x61, 0x80, 0x54, 0x1c, 0x7b, 0x02, 0x87, 0x18, 0x43, 0x94, 0x4b, + 0x8c, 0x40, 0x92, 0x54, 0x62, 0xd7, 0x00, 0x2b, 0x8c, 0x21, 0x8a, 0x45, + 0x99, 0x52, 0x71, 0xcc, 0x06, 0x9e, 0x32, 0x86, 0xdc, 0x5c, 0x84, 0x23, + 0x49, 0xb5, 0xb3, 0x2d, 0xa1, 0x88, 0x37, 0xf5, 0xc5, 0xf3, 0xcd, 0xc0, + 0xff, 0x03, 0x7a, 0xc5, 0xfc, 0xc3, 0x8e, 0xec, 0x5e, 0x92, 0x03, 0xec, + 0x38, 0x01, 0x49, 0xaa, 0x9e, 0x13, 0xc8, 0x31, 0xdb, 0x46, 0x00, 0x2c, + 0x02, 0xee, 0x37, 0x06, 0xa9, 0x30, 0x26, 0x19, 0x41, 0x94, 0x56, 0xe0, + 0x2a, 0x63, 0x90, 0x24, 0x95, 0xd8, 0x7b, 0x84, 0x95, 0xb4, 0xaa, 0xdc, + 0x79, 0xd8, 0x01, 0x54, 0x2a, 0x12, 0x17, 0x3f, 0xe4, 0x67, 0x61, 0x80, + 0x24, 0xd5, 0x46, 0x0f, 0x60, 0x0a, 0xa1, 0x38, 0xa0, 0x08, 0x3e, 0x04, + 0xfc, 0xdf, 0x4a, 0xff, 0x51, 0xd9, 0x0b, 0x03, 0xce, 0x24, 0xa2, 0x9a, + 0x42, 0x92, 0xe4, 0x89, 0x4a, 0x17, 0x99, 0x09, 0xac, 0x32, 0x06, 0xa9, + 0x10, 0x9a, 0x80, 0x09, 0xc6, 0x10, 0xe5, 0x2e, 0xe0, 0x55, 0x63, 0x90, + 0x24, 0x95, 0x9c, 0xe3, 0x04, 0xe2, 0x0c, 0x02, 0x4e, 0x35, 0x06, 0xa9, + 0x30, 0x2c, 0x0c, 0xc8, 0xef, 0x78, 0x5c, 0x88, 0x23, 0x49, 0xb5, 0xf0, + 0x03, 0xe0, 0x23, 0x05, 0x7b, 0xce, 0x5f, 0xa1, 0xc2, 0x6e, 0xa6, 0x65, + 0x1e, 0x25, 0x00, 0xd0, 0xdf, 0x93, 0x09, 0x49, 0xaa, 0x9a, 0xd3, 0x8c, + 0xc0, 0x13, 0x66, 0xa9, 0x44, 0x8e, 0x06, 0x76, 0x36, 0x86, 0x28, 0xde, + 0x08, 0x91, 0x24, 0x09, 0x6e, 0x02, 0x16, 0x18, 0x43, 0x14, 0xc7, 0x09, + 0x48, 0xc5, 0x71, 0x2f, 0xb0, 0xd0, 0x18, 0x72, 0xe9, 0x89, 0x23, 0x91, + 0x25, 0xa9, 0xab, 0x4d, 0x00, 0x3e, 0x5b, 0xc0, 0xe7, 0xdd, 0x1d, 0xf8, + 0x35, 0xa1, 0xdb, 0x41, 0xa7, 0x6c, 0xac, 0x30, 0x60, 0xb7, 0x12, 0x1d, + 0xec, 0x71, 0xbe, 0xde, 0x25, 0x29, 0xb7, 0xfd, 0x81, 0x9d, 0x8c, 0x21, + 0xb7, 0x19, 0x46, 0x20, 0x15, 0x86, 0x17, 0xa4, 0xe3, 0xac, 0x20, 0xcc, + 0x55, 0x96, 0x24, 0xa9, 0xec, 0x56, 0x02, 0xd7, 0x19, 0x43, 0x94, 0xd3, + 0x81, 0xad, 0x8c, 0x41, 0x2a, 0x84, 0xd5, 0xc0, 0xed, 0xc6, 0x90, 0x9b, + 0x5d, 0x3a, 0x25, 0xa9, 0xeb, 0xec, 0x07, 0xfc, 0xb2, 0xc0, 0xcf, 0x7f, + 0x7f, 0x42, 0xe7, 0x80, 0x4e, 0xe9, 0xa8, 0x30, 0x60, 0x0b, 0x60, 0xbb, + 0x12, 0x1d, 0xf0, 0xee, 0xbe, 0xe6, 0x25, 0x29, 0xb7, 0x31, 0x46, 0x90, + 0xdb, 0x13, 0xc0, 0x1b, 0xc6, 0x20, 0x15, 0xc2, 0x16, 0xc0, 0xc7, 0x8d, + 0x21, 0xca, 0xcd, 0xc0, 0xfb, 0xc6, 0x20, 0x49, 0x12, 0x60, 0x17, 0x9d, + 0x58, 0xbd, 0x80, 0xb3, 0x8c, 0x41, 0x2a, 0x0c, 0xbb, 0x23, 0xe6, 0x37, + 0x86, 0x30, 0xce, 0x4e, 0x92, 0x54, 0x5d, 0x03, 0x80, 0x6b, 0x81, 0x3e, + 0x05, 0xdf, 0x8f, 0xff, 0x0b, 0xec, 0xd3, 0x99, 0xbf, 0xd8, 0x51, 0x61, + 0xc0, 0xb6, 0x6c, 0xbc, 0x93, 0x40, 0x23, 0x7a, 0xc1, 0xd7, 0xbd, 0x24, + 0xe5, 0x66, 0xe5, 0xb2, 0x27, 0xca, 0x52, 0xd9, 0xbe, 0xe7, 0x0d, 0x36, + 0x86, 0x28, 0xde, 0x00, 0x91, 0x24, 0x69, 0xad, 0xbb, 0x80, 0x57, 0x8d, + 0x21, 0x8a, 0xdd, 0x9b, 0xa4, 0xe2, 0xb8, 0x15, 0x68, 0x35, 0x86, 0x5c, + 0xb6, 0x05, 0x0e, 0x36, 0x06, 0x49, 0xaa, 0xaa, 0x26, 0x42, 0x1b, 0xfe, + 0xdd, 0x1b, 0x60, 0x5f, 0x7a, 0x66, 0xfb, 0xd2, 0x6d, 0x73, 0x7f, 0x71, + 0x63, 0x85, 0x01, 0x65, 0x62, 0x61, 0x80, 0x24, 0xe5, 0x33, 0x18, 0xf8, + 0xb0, 0x31, 0xe4, 0x66, 0x61, 0x80, 0x54, 0x1c, 0x5e, 0x88, 0x8e, 0xf3, + 0x1e, 0x30, 0xd5, 0x18, 0x24, 0x49, 0xfa, 0xb3, 0x56, 0xe0, 0x2a, 0x63, + 0x88, 0x72, 0x2c, 0xb0, 0xbd, 0x31, 0x48, 0x85, 0xf0, 0x26, 0xf0, 0x94, + 0x31, 0xe4, 0x66, 0xb7, 0x4e, 0x49, 0xaa, 0xae, 0xaf, 0xd2, 0x58, 0x5d, + 0xa8, 0x0e, 0x07, 0xbe, 0xb8, 0xb9, 0xbf, 0x64, 0x61, 0x80, 0x85, 0x01, + 0x92, 0x94, 0xd7, 0x68, 0x3a, 0x51, 0x89, 0xa6, 0x4d, 0x5a, 0x04, 0xdc, + 0x6f, 0x0c, 0x52, 0x21, 0x0c, 0x00, 0x4e, 0x33, 0x86, 0x28, 0x53, 0x80, + 0x15, 0xc6, 0x20, 0x49, 0xd2, 0x3a, 0x2e, 0x31, 0x82, 0x28, 0xcd, 0xc0, + 0x78, 0x63, 0x90, 0x0a, 0xc3, 0xc5, 0x10, 0xf9, 0xd9, 0xad, 0x53, 0x92, + 0xaa, 0xe7, 0x78, 0xe0, 0x9f, 0x1b, 0x70, 0xbf, 0xbe, 0xc5, 0x66, 0x3a, + 0x20, 0x58, 0x18, 0x60, 0x61, 0x80, 0x24, 0x79, 0x62, 0x52, 0x7f, 0xb7, + 0x01, 0xab, 0x8c, 0x41, 0x2a, 0x84, 0x73, 0x80, 0xde, 0xc6, 0x10, 0xc5, + 0x31, 0x02, 0x92, 0x24, 0x6d, 0xe8, 0x19, 0xe0, 0x71, 0x63, 0x88, 0x72, + 0x81, 0x11, 0x48, 0x85, 0x61, 0x61, 0x40, 0x7e, 0x87, 0x02, 0xc3, 0x8d, + 0x41, 0x92, 0x72, 0xdb, 0x1e, 0xb8, 0x92, 0xc6, 0x5c, 0xec, 0xd8, 0x1b, + 0xf8, 0x2d, 0x1d, 0xdf, 0xff, 0x87, 0x8d, 0xfc, 0xc1, 0xb0, 0x12, 0x1d, + 0xfc, 0x85, 0xc0, 0x7c, 0xbf, 0x06, 0x24, 0x29, 0x5a, 0x0f, 0xe0, 0x64, + 0x63, 0xf0, 0x04, 0x59, 0x2a, 0x11, 0xc7, 0x08, 0xc4, 0x79, 0x1d, 0xb8, + 0xd7, 0x18, 0x24, 0x49, 0xea, 0x90, 0xc5, 0x73, 0x71, 0xf6, 0x01, 0xf6, + 0x37, 0x06, 0xa9, 0x10, 0xee, 0x23, 0x5c, 0x8b, 0x57, 0xbc, 0x26, 0x60, + 0x94, 0x31, 0x48, 0x52, 0x6e, 0x7f, 0x07, 0x0c, 0x69, 0xe0, 0xfd, 0x3b, + 0x0a, 0xf8, 0xcc, 0xc6, 0xfe, 0xb0, 0xa3, 0xc2, 0x80, 0x32, 0x55, 0x9d, + 0xd9, 0x2d, 0x40, 0x92, 0xf2, 0x39, 0x06, 0xd8, 0xca, 0x18, 0x72, 0x9b, + 0x61, 0x04, 0x52, 0x21, 0xec, 0x90, 0x7d, 0xdf, 0x53, 0xe5, 0x2e, 0x07, + 0x5a, 0x8c, 0x41, 0x92, 0xa4, 0x8d, 0xfe, 0x9c, 0x5c, 0x63, 0x0c, 0x51, + 0x2c, 0xda, 0x94, 0x8a, 0x61, 0x15, 0x70, 0x87, 0x31, 0xe4, 0x66, 0xd7, + 0x4e, 0x49, 0xca, 0x6f, 0x40, 0x09, 0xf6, 0xf1, 0x3f, 0x80, 0x5d, 0x3a, + 0xfa, 0x83, 0xb2, 0x77, 0x0c, 0xb0, 0x30, 0x40, 0x92, 0x3c, 0x21, 0xa9, + 0xb7, 0x27, 0x09, 0x2b, 0x69, 0x25, 0xa5, 0x6f, 0x22, 0x9b, 0x68, 0xc5, + 0xa5, 0x4d, 0xba, 0xc2, 0x08, 0x24, 0x49, 0xda, 0xa8, 0xd9, 0xc0, 0x5d, + 0xc6, 0x10, 0x65, 0x12, 0x8d, 0xd9, 0x06, 0x56, 0x6a, 0x44, 0x76, 0x4b, + 0xcc, 0xef, 0x64, 0xa0, 0x97, 0x31, 0x48, 0x52, 0x2e, 0x7d, 0x4b, 0xb2, + 0x8f, 0xdf, 0xed, 0xe8, 0x0f, 0xca, 0xde, 0x31, 0xe0, 0x0d, 0x5f, 0xff, + 0x92, 0x94, 0xcb, 0x18, 0x23, 0xf0, 0xc4, 0x58, 0x2a, 0x91, 0x09, 0x46, + 0x10, 0xe5, 0x31, 0xe0, 0x29, 0x63, 0x90, 0x24, 0x69, 0x93, 0x1c, 0x27, + 0x10, 0x67, 0x38, 0x30, 0xd2, 0x18, 0xa4, 0x42, 0x98, 0x06, 0xb4, 0x1a, + 0x43, 0x2e, 0x7d, 0xfd, 0x9e, 0x27, 0x49, 0x55, 0xf9, 0x5e, 0x5a, 0x06, + 0x87, 0x75, 0xf4, 0xc9, 0x8e, 0x0a, 0x03, 0xb6, 0x2d, 0xd1, 0xc1, 0x9f, + 0xe3, 0xeb, 0x5f, 0xd2, 0x26, 0x6c, 0x01, 0x0c, 0xcc, 0x36, 0xdb, 0xe5, + 0x6f, 0x68, 0x57, 0x60, 0x0f, 0x63, 0xa8, 0xca, 0x89, 0xb1, 0xa4, 0xf4, + 0x1d, 0x04, 0xec, 0x6b, 0x0c, 0x51, 0xbc, 0xd1, 0x21, 0x49, 0xd2, 0xe6, + 0x5d, 0x03, 0x2c, 0x33, 0x86, 0x28, 0x8e, 0x13, 0x90, 0x8a, 0xe1, 0x4d, + 0xe0, 0x69, 0x63, 0xc8, 0xcd, 0xee, 0x9d, 0x1d, 0x1b, 0xd8, 0x6e, 0xdb, + 0xc2, 0x38, 0x24, 0x6d, 0x42, 0x59, 0x0a, 0x03, 0x86, 0xd1, 0x41, 0x67, + 0xad, 0xee, 0xeb, 0xfd, 0xbe, 0x1b, 0x30, 0xa4, 0x44, 0x07, 0xdf, 0xc2, + 0x00, 0xa9, 0x3c, 0xfa, 0x00, 0xbb, 0x11, 0xe6, 0x43, 0x0f, 0x03, 0x46, + 0xb4, 0xfb, 0x38, 0x90, 0x30, 0x57, 0x66, 0x00, 0xa1, 0x00, 0xa0, 0xff, + 0x26, 0xfe, 0x9f, 0xd5, 0xc0, 0x62, 0x60, 0x79, 0xf6, 0x3d, 0x64, 0x76, + 0xbb, 0x8f, 0xcf, 0x67, 0x27, 0x38, 0xcf, 0x01, 0x2b, 0x4b, 0x90, 0xe9, + 0x19, 0xbe, 0xac, 0x72, 0x5b, 0x0c, 0xdc, 0x6f, 0x0c, 0x52, 0x21, 0x78, + 0xc1, 0x39, 0x4e, 0x0b, 0x70, 0xa5, 0x31, 0x48, 0x92, 0xb4, 0x59, 0x8b, + 0x80, 0x9b, 0x81, 0x71, 0x46, 0x51, 0xb1, 0x8f, 0x03, 0x9f, 0xc7, 0xc2, + 0x0a, 0xa9, 0x08, 0xa6, 0x61, 0xc1, 0x75, 0x5e, 0xa7, 0x03, 0x17, 0x97, + 0x64, 0x5f, 0xb7, 0x00, 0xf6, 0x02, 0xf6, 0x21, 0x2c, 0x4e, 0x1a, 0x4e, + 0x58, 0xd8, 0xda, 0x76, 0x5d, 0xb7, 0x17, 0xd0, 0x8f, 0x0d, 0xef, 0x73, + 0xb5, 0xb7, 0x70, 0xbd, 0x6d, 0x01, 0xeb, 0x5e, 0xcf, 0x9d, 0x43, 0x18, + 0xf1, 0xf9, 0x12, 0xb0, 0xd4, 0x97, 0x97, 0x54, 0x0a, 0x65, 0x29, 0x0c, + 0xe8, 0x0e, 0x0c, 0x65, 0xbd, 0x7b, 0xe1, 0xeb, 0x7f, 0xc3, 0x1c, 0x4a, + 0xb9, 0xe6, 0x72, 0x59, 0x18, 0x20, 0x35, 0x96, 0x26, 0x60, 0xc7, 0xec, + 0xcd, 0xe2, 0xbe, 0xc0, 0x9e, 0x84, 0x55, 0xed, 0xbb, 0x51, 0xbd, 0x6e, + 0x28, 0xdd, 0x09, 0x85, 0x04, 0x64, 0xff, 0xe7, 0xc1, 0x1d, 0xfc, 0x9d, + 0x55, 0xc0, 0x0b, 0xc0, 0x7d, 0xc0, 0xed, 0xc0, 0x2c, 0x60, 0x5e, 0x03, + 0xe6, 0xed, 0x18, 0x81, 0xfc, 0x6e, 0xa3, 0x1c, 0x45, 0x24, 0x52, 0xd1, + 0x35, 0x03, 0xe7, 0x19, 0x43, 0x94, 0x59, 0x84, 0x95, 0x41, 0x92, 0x24, + 0x69, 0xf3, 0x2e, 0xc7, 0xc2, 0x80, 0x18, 0xfd, 0x81, 0xb1, 0xc0, 0xd5, + 0x46, 0x21, 0x25, 0x6f, 0x1a, 0xf0, 0x65, 0x63, 0xc8, 0xa5, 0xed, 0xda, + 0x67, 0x23, 0x76, 0x5f, 0x18, 0x0a, 0x1c, 0x0f, 0x9c, 0x00, 0x1c, 0x45, + 0x28, 0x06, 0xe8, 0x9e, 0xf3, 0xff, 0x6c, 0x5b, 0x0c, 0xd6, 0x19, 0xb3, + 0x09, 0x05, 0x02, 0x2f, 0x12, 0x16, 0x7e, 0x3d, 0x9d, 0x6d, 0xaf, 0xfa, + 0xb2, 0x93, 0x1a, 0x4a, 0xdf, 0x12, 0xed, 0xeb, 0x08, 0x36, 0x53, 0x18, + 0xb0, 0x6d, 0xc9, 0x0e, 0xbe, 0x85, 0x01, 0x52, 0x71, 0x75, 0x07, 0xf6, + 0x06, 0x0e, 0xcd, 0xb6, 0x83, 0xb3, 0xdf, 0xf7, 0x4b, 0xe0, 0xb9, 0xf5, + 0xc8, 0x9e, 0xcb, 0xde, 0xc0, 0xa7, 0x08, 0xf3, 0xd3, 0x1e, 0x07, 0x26, + 0x03, 0x97, 0x65, 0x6f, 0x32, 0x8b, 0x6e, 0x00, 0x70, 0xb4, 0x2f, 0xc3, + 0xaa, 0x9c, 0x10, 0x4b, 0x4a, 0xdf, 0x09, 0xd9, 0x1b, 0x69, 0x55, 0xce, + 0x31, 0x02, 0x92, 0x24, 0x55, 0x76, 0x7e, 0xf0, 0x2e, 0x30, 0xd8, 0x28, + 0x2a, 0x36, 0x11, 0x0b, 0x03, 0xa4, 0x22, 0xb8, 0x97, 0xb0, 0x6a, 0x7b, + 0x80, 0x51, 0xe4, 0x32, 0x96, 0xc6, 0x29, 0x0c, 0x18, 0x01, 0x4c, 0x22, + 0x14, 0xe3, 0x1f, 0x40, 0x58, 0xf8, 0x55, 0x2f, 0xc3, 0xb3, 0xed, 0x98, + 0xf5, 0x3e, 0xbf, 0x38, 0xcb, 0xfb, 0x51, 0xe0, 0x91, 0x6c, 0x7b, 0x06, + 0x58, 0xe3, 0x4b, 0x51, 0x2a, 0xa4, 0x32, 0x15, 0x06, 0x0c, 0x5f, 0xff, + 0x13, 0xeb, 0x17, 0x06, 0x0c, 0x2b, 0xd9, 0xc1, 0x9f, 0xeb, 0xeb, 0x5f, + 0x2a, 0xd4, 0x37, 0xeb, 0x8f, 0x00, 0xc7, 0x02, 0x1f, 0x25, 0xcc, 0x7a, + 0xee, 0x53, 0x90, 0xe7, 0xde, 0x04, 0x1c, 0x98, 0x6d, 0xff, 0x06, 0xcc, + 0x00, 0x7e, 0x4c, 0xb1, 0x6f, 0x0a, 0x9f, 0x4a, 0x28, 0x80, 0x50, 0x3e, + 0xd3, 0x8d, 0x40, 0x2a, 0x04, 0xc7, 0x08, 0xc4, 0x59, 0x0e, 0x5c, 0x67, + 0x0c, 0x92, 0x24, 0x75, 0xda, 0x4a, 0x60, 0x0a, 0xf0, 0x19, 0xa3, 0xa8, + 0xd8, 0x28, 0x60, 0x6b, 0xe0, 0x1d, 0xa3, 0x90, 0x92, 0xb6, 0x8a, 0xd0, + 0x55, 0xec, 0x63, 0x46, 0x91, 0xcb, 0x68, 0xe0, 0xdb, 0x0d, 0xb0, 0x0f, + 0x17, 0x01, 0x27, 0x92, 0x7e, 0x17, 0xeb, 0x7e, 0xc0, 0x11, 0xd9, 0xd6, + 0x66, 0x29, 0xa1, 0x50, 0xe0, 0x6e, 0xe0, 0x4e, 0xc2, 0xa8, 0xd0, 0x25, + 0xbe, 0x34, 0xa5, 0x42, 0xe8, 0x5d, 0xa2, 0x7d, 0xdd, 0x6e, 0xfd, 0x4f, + 0x34, 0xaf, 0xf7, 0xfb, 0xe1, 0x25, 0x0a, 0x63, 0x71, 0xb6, 0x49, 0x4a, + 0x53, 0x1f, 0xc2, 0x8a, 0xf4, 0xaf, 0x00, 0x33, 0x09, 0xab, 0x26, 0xa6, + 0x03, 0x5f, 0x25, 0x14, 0x08, 0xf4, 0x29, 0xe8, 0x7e, 0x75, 0x23, 0x5c, + 0xb0, 0x98, 0x0a, 0x3c, 0x40, 0x58, 0x85, 0x5a, 0xd4, 0x37, 0xef, 0xca, + 0xe7, 0x29, 0xc2, 0x0c, 0x33, 0x49, 0xe9, 0x9f, 0x2c, 0x78, 0xd1, 0x2a, + 0xce, 0x8d, 0x84, 0xd5, 0x40, 0x92, 0x24, 0xa9, 0xf3, 0xec, 0xb6, 0x13, + 0xa7, 0x07, 0x70, 0x8e, 0x31, 0x48, 0x85, 0x60, 0xf7, 0xc4, 0xfc, 0x8e, + 0x24, 0x14, 0x43, 0x15, 0xd1, 0xd1, 0x84, 0x1b, 0xe9, 0x37, 0x03, 0xa7, + 0x50, 0xdc, 0xd1, 0xd6, 0x6d, 0xd7, 0xae, 0xbf, 0x46, 0x58, 0x04, 0xf6, + 0x3e, 0xa1, 0x93, 0xc0, 0xb7, 0x09, 0x1d, 0x1d, 0xec, 0x8a, 0x21, 0xa5, + 0xab, 0x4c, 0xd7, 0xaa, 0x36, 0xdb, 0x31, 0xa0, 0x4c, 0xa3, 0x04, 0x1c, + 0x23, 0x20, 0xa5, 0xa5, 0x1b, 0x61, 0x76, 0xd4, 0x28, 0x60, 0x24, 0x70, + 0x18, 0x8d, 0xbf, 0x22, 0xfd, 0x08, 0xc2, 0x8c, 0xf9, 0xeb, 0x80, 0xbf, + 0x22, 0x14, 0x3f, 0x14, 0x41, 0x73, 0xf6, 0xc6, 0x5d, 0x9e, 0x08, 0x4b, + 0x65, 0xf0, 0x31, 0x4f, 0xe8, 0xa3, 0x79, 0x63, 0x43, 0x92, 0xa4, 0xca, + 0xdd, 0x07, 0xbc, 0x02, 0xec, 0x6c, 0x14, 0x15, 0x9b, 0x04, 0xfc, 0xcc, + 0x18, 0xa4, 0xe4, 0x4d, 0x35, 0x82, 0xdc, 0xba, 0x11, 0xba, 0x79, 0x5e, + 0x56, 0xa0, 0xe7, 0x3c, 0x04, 0xf8, 0x25, 0x70, 0x46, 0x83, 0x1e, 0x93, + 0xee, 0xc0, 0x21, 0xd9, 0x06, 0xa1, 0x3b, 0xc6, 0xc3, 0x84, 0x22, 0x88, + 0x69, 0x84, 0x05, 0x62, 0x8e, 0x1e, 0x90, 0xd2, 0xf0, 0x56, 0x89, 0xde, + 0x6b, 0x6f, 0x30, 0x1a, 0x75, 0xfd, 0x8e, 0x01, 0x65, 0x2a, 0x0c, 0x98, + 0xed, 0x6b, 0x5f, 0xaa, 0xbb, 0x5e, 0x84, 0x76, 0x51, 0x3f, 0x04, 0xde, + 0x20, 0xb4, 0x5e, 0xfa, 0x2a, 0xa1, 0x40, 0xa0, 0x4c, 0x6d, 0xea, 0xcf, + 0x22, 0xcc, 0xa9, 0x1a, 0x55, 0x90, 0xe7, 0x7b, 0x24, 0x30, 0xd4, 0x97, + 0x6f, 0x6e, 0x16, 0x06, 0x48, 0xc5, 0xe0, 0x18, 0x81, 0x38, 0x0b, 0x80, + 0x5b, 0x8d, 0x41, 0x92, 0xa4, 0x8a, 0xb5, 0x02, 0x57, 0x18, 0x43, 0xf4, + 0xb9, 0xea, 0x1e, 0xc6, 0x20, 0x25, 0xef, 0x4d, 0x42, 0x17, 0x45, 0xe5, + 0x53, 0xa4, 0x6e, 0x9e, 0x27, 0x02, 0x8f, 0xd1, 0xb8, 0x45, 0x01, 0x1d, + 0xe9, 0x41, 0xb8, 0xc6, 0xfd, 0x35, 0xe0, 0x1e, 0xe0, 0x6d, 0xe0, 0x12, + 0x60, 0x1c, 0xb0, 0xa5, 0x2f, 0x5f, 0xa9, 0xae, 0xde, 0x2a, 0xd1, 0xbe, + 0x5a, 0x18, 0xd0, 0x8e, 0x1d, 0x03, 0xa4, 0xfa, 0xd8, 0x1a, 0xf8, 0x04, + 0x70, 0x3d, 0x61, 0x85, 0xfc, 0x4c, 0xe0, 0xe2, 0x92, 0x7d, 0xff, 0xe9, + 0xc8, 0x36, 0x84, 0x16, 0x5a, 0x45, 0x98, 0x25, 0xe9, 0x18, 0x81, 0xfc, + 0x16, 0x13, 0x56, 0x02, 0x49, 0x4a, 0xdb, 0x10, 0xe0, 0x64, 0x63, 0x88, + 0x72, 0x15, 0x61, 0x4e, 0xb2, 0x24, 0x49, 0xaa, 0xdc, 0x65, 0x46, 0x10, + 0x6d, 0xbc, 0x11, 0x48, 0x85, 0xe0, 0x62, 0x89, 0xfc, 0x46, 0x51, 0x8c, + 0x85, 0x55, 0x17, 0x11, 0x5a, 0xed, 0x0f, 0x2f, 0xf9, 0xf1, 0x1a, 0x0c, + 0x9c, 0x0f, 0x5c, 0x4d, 0x28, 0x12, 0xb8, 0x0e, 0xb8, 0x30, 0xfb, 0xbc, + 0xa4, 0xda, 0xb2, 0x30, 0xa0, 0x1d, 0x0b, 0x03, 0x24, 0x75, 0x85, 0x7e, + 0xc0, 0x5f, 0x00, 0xb3, 0x80, 0xb9, 0xc0, 0x6f, 0x08, 0xad, 0x99, 0xfb, + 0x18, 0xcd, 0x06, 0xdf, 0x93, 0x7f, 0x06, 0xfc, 0x75, 0xe2, 0xcf, 0x73, + 0x8c, 0x87, 0x2a, 0xb7, 0xdb, 0xf0, 0x86, 0x99, 0x54, 0x04, 0xe7, 0x51, + 0xae, 0x0e, 0x36, 0xd5, 0xe4, 0x18, 0x01, 0x49, 0x92, 0xe2, 0x3d, 0x07, + 0x3c, 0x6a, 0x0c, 0x51, 0x26, 0x01, 0x4d, 0xc6, 0x20, 0x25, 0xcf, 0xc2, + 0x80, 0xfc, 0x06, 0x00, 0x1f, 0x49, 0xfc, 0x39, 0x5e, 0x44, 0xe8, 0x14, + 0xeb, 0xf7, 0xe5, 0x75, 0xf5, 0x01, 0xce, 0x04, 0x7e, 0x4b, 0x28, 0x12, + 0xb8, 0x03, 0xf8, 0x24, 0xe1, 0x1a, 0xba, 0xa4, 0xae, 0x57, 0xa6, 0x8e, + 0xf2, 0x16, 0x06, 0xb4, 0x63, 0x61, 0x80, 0xd4, 0xb5, 0x9a, 0x80, 0x63, + 0x81, 0xff, 0xcd, 0xbe, 0xde, 0x7e, 0x95, 0xfd, 0xbe, 0x9b, 0xd1, 0x6c, + 0x36, 0xb7, 0x9f, 0x12, 0xba, 0x2a, 0xa4, 0x68, 0x07, 0x60, 0x3f, 0x0f, + 0x93, 0x27, 0xc0, 0x52, 0x49, 0x38, 0x46, 0x20, 0xce, 0x6b, 0xc0, 0xfd, + 0xc6, 0x20, 0x49, 0x52, 0x2e, 0x16, 0xd9, 0xc5, 0xd9, 0x0d, 0x38, 0xdc, + 0x18, 0xa4, 0xe4, 0xdd, 0x0b, 0x2c, 0x34, 0x86, 0xdc, 0x52, 0xee, 0xea, + 0xf9, 0x97, 0x58, 0x14, 0xd0, 0x19, 0xdd, 0x80, 0xe3, 0x80, 0x5f, 0x13, + 0xae, 0xa1, 0xff, 0x16, 0x18, 0x69, 0x6e, 0x52, 0x97, 0x2a, 0x53, 0xc7, + 0x80, 0x01, 0xac, 0x37, 0xbe, 0xa4, 0x7d, 0x61, 0x40, 0x13, 0xa1, 0x95, + 0x75, 0x59, 0x58, 0x18, 0x20, 0x75, 0x8d, 0x9d, 0x80, 0x7f, 0x04, 0x5e, + 0x22, 0x74, 0x08, 0xb8, 0x00, 0xe8, 0x6b, 0x2c, 0x15, 0x69, 0x02, 0x7e, + 0x0e, 0x1c, 0x90, 0xe0, 0x73, 0x1b, 0xeb, 0xe1, 0xa9, 0x8a, 0xe9, 0x46, + 0x20, 0x25, 0xcf, 0x8b, 0xca, 0xf1, 0x2e, 0x25, 0xcc, 0x47, 0x96, 0x24, + 0x49, 0xf1, 0x26, 0x03, 0x6b, 0x8c, 0x21, 0x8a, 0xc5, 0x9d, 0x52, 0xfa, + 0x56, 0x11, 0xae, 0x1b, 0x2a, 0x9f, 0x54, 0xbb, 0x7a, 0x1e, 0x42, 0x58, + 0xf8, 0xe4, 0xcd, 0xed, 0xca, 0xf4, 0x25, 0x8c, 0x17, 0xb8, 0x13, 0x78, + 0x11, 0xf8, 0x06, 0xb0, 0xa3, 0xb1, 0x48, 0x55, 0xf7, 0x56, 0xc9, 0xf6, + 0x77, 0x9d, 0x51, 0x2e, 0xed, 0x0b, 0x03, 0x06, 0x02, 0x3d, 0x4b, 0x14, + 0xc4, 0x6c, 0x5f, 0xfb, 0x52, 0xd5, 0x34, 0x13, 0x6e, 0x18, 0xcf, 0x24, + 0x14, 0x04, 0xfc, 0x13, 0xb0, 0xb3, 0xb1, 0xe4, 0xd2, 0x8b, 0x50, 0x29, + 0xda, 0x3d, 0xb1, 0xe7, 0x35, 0xda, 0x43, 0x93, 0xdb, 0x53, 0xc0, 0xeb, + 0xc6, 0x20, 0x25, 0xcf, 0x36, 0xb4, 0xf1, 0xae, 0x34, 0x02, 0x49, 0x92, + 0x72, 0x9b, 0x43, 0x68, 0x2d, 0xac, 0xca, 0x39, 0x0e, 0x4a, 0x2a, 0x06, + 0xbb, 0x29, 0xe6, 0xb7, 0x27, 0xb0, 0x7b, 0x62, 0xcf, 0xa9, 0x07, 0xe1, + 0x9a, 0x66, 0x4f, 0x0f, 0x4f, 0x2e, 0xbb, 0x00, 0xdf, 0x04, 0x5e, 0x06, + 0x66, 0x10, 0x8a, 0x40, 0x9a, 0x8d, 0x45, 0xaa, 0x8a, 0xb2, 0xdd, 0x1f, + 0x5e, 0x67, 0x9c, 0x40, 0xfb, 0x6f, 0x24, 0xdb, 0x96, 0x2c, 0x08, 0x3b, + 0x06, 0x48, 0xf9, 0xf5, 0x25, 0xcc, 0x8a, 0x7a, 0x1e, 0xb8, 0x11, 0x38, + 0xd1, 0x37, 0x28, 0x55, 0x75, 0x30, 0x61, 0xbe, 0x54, 0x2a, 0xfa, 0x10, + 0xc6, 0x41, 0xc8, 0x13, 0x5f, 0xa9, 0x0c, 0xc6, 0x1b, 0x41, 0x94, 0x47, + 0x80, 0xa7, 0x8d, 0x41, 0x92, 0xa4, 0xaa, 0x70, 0x9c, 0x40, 0x9c, 0x21, + 0xc0, 0xc9, 0xc6, 0x20, 0x25, 0x6f, 0xaa, 0x11, 0x54, 0x45, 0x6a, 0x8b, + 0x78, 0x3e, 0x05, 0xec, 0xef, 0x61, 0xa9, 0x9a, 0x66, 0xe0, 0x24, 0xe0, + 0x26, 0xe0, 0x59, 0xe0, 0x73, 0x84, 0x6b, 0xb4, 0x92, 0xe2, 0xbd, 0x45, + 0xb9, 0x3a, 0x5d, 0x5a, 0x18, 0x90, 0xb1, 0x30, 0x40, 0x8a, 0xd7, 0x0f, + 0xf8, 0x7b, 0xe0, 0x15, 0xe0, 0x47, 0x84, 0x76, 0xcb, 0xea, 0x1a, 0x5f, + 0x27, 0x9d, 0xae, 0x01, 0x27, 0x01, 0xbd, 0x3d, 0x24, 0xb9, 0x59, 0x18, + 0x20, 0xa5, 0xef, 0x48, 0x60, 0x0f, 0x63, 0x88, 0xe2, 0x0d, 0x0c, 0x49, + 0x92, 0xaa, 0xe7, 0x3a, 0x60, 0xa9, 0x31, 0x44, 0x71, 0x9c, 0x80, 0x94, + 0xbe, 0x37, 0xb1, 0xa8, 0xb8, 0x1a, 0x52, 0x2a, 0x0c, 0xe8, 0x01, 0x7c, + 0xd5, 0x43, 0xd2, 0x65, 0xf6, 0x00, 0x7e, 0x42, 0xb8, 0x26, 0xff, 0x77, + 0xac, 0x37, 0x37, 0x5c, 0x52, 0xa7, 0x2d, 0x07, 0xde, 0x2b, 0xd1, 0xfe, + 0x5a, 0x18, 0x00, 0x2c, 0x03, 0x16, 0xfa, 0xda, 0x97, 0x2a, 0xd6, 0x0b, + 0xf8, 0x0a, 0xf0, 0x2a, 0xf0, 0xef, 0x84, 0x2a, 0x7c, 0x75, 0xad, 0x1d, + 0x81, 0xd3, 0x3c, 0xd1, 0x68, 0x18, 0x1f, 0x00, 0xf7, 0x1b, 0x83, 0x94, + 0x3c, 0x2f, 0x24, 0xc7, 0x69, 0x01, 0xa6, 0x18, 0x83, 0x24, 0x49, 0x55, + 0xb3, 0x98, 0xd0, 0x9d, 0x4f, 0x95, 0xfb, 0x18, 0x30, 0xc0, 0x18, 0xa4, + 0xe4, 0xb9, 0x78, 0x22, 0xbf, 0x91, 0x09, 0x7d, 0xbf, 0x1b, 0x0b, 0x6c, + 0xe7, 0x21, 0xe9, 0x72, 0x43, 0x81, 0xef, 0x10, 0xae, 0xd1, 0x7f, 0x99, + 0x70, 0xcd, 0x5e, 0x52, 0x65, 0xde, 0x2a, 0xd1, 0xbe, 0x5a, 0x18, 0x40, + 0xf9, 0xe6, 0x47, 0x48, 0x79, 0x35, 0x01, 0xe7, 0x13, 0x46, 0x06, 0x7c, + 0x1b, 0x18, 0x64, 0x24, 0x35, 0x35, 0x29, 0x91, 0xd7, 0xc0, 0x69, 0x1e, + 0x8a, 0xdc, 0x6e, 0x03, 0x56, 0x18, 0x83, 0x94, 0xb4, 0x1e, 0xc0, 0xb9, + 0xc6, 0x10, 0x65, 0x66, 0xc9, 0x4e, 0xac, 0x24, 0x49, 0xaa, 0x05, 0xbb, + 0xf1, 0xc4, 0xe9, 0x4d, 0x28, 0x0e, 0x90, 0x94, 0x36, 0x0b, 0x03, 0xaa, + 0x73, 0x0e, 0x7b, 0x52, 0x22, 0xcf, 0xc5, 0x22, 0xfb, 0xda, 0x1a, 0x0c, + 0xfc, 0x07, 0xf0, 0x1c, 0x30, 0x81, 0x70, 0xfd, 0x56, 0x52, 0xe7, 0x58, + 0x18, 0x40, 0xb9, 0x0a, 0x03, 0x1c, 0x23, 0x20, 0x75, 0xde, 0xee, 0xc0, + 0x1d, 0xc0, 0x25, 0xc0, 0x0e, 0xc6, 0x51, 0x17, 0x27, 0x67, 0x6f, 0xf2, + 0xeb, 0xe9, 0xe0, 0xf5, 0x7f, 0x80, 0xc8, 0x13, 0x5e, 0xa9, 0x41, 0x9d, + 0x0a, 0x6c, 0x6d, 0x0c, 0x51, 0xbc, 0x71, 0x21, 0x49, 0x52, 0xf5, 0xdd, + 0x0a, 0xcc, 0x33, 0x86, 0x28, 0xde, 0xa0, 0x92, 0xd2, 0x77, 0x2f, 0xa1, + 0x3b, 0x8a, 0xf2, 0x49, 0xa1, 0xcb, 0xe7, 0x16, 0xa4, 0x53, 0xa0, 0x50, + 0x36, 0x3b, 0x66, 0xe7, 0xe3, 0x33, 0x81, 0x5d, 0x8d, 0x43, 0xea, 0x14, + 0x0b, 0x03, 0xb0, 0x30, 0x40, 0xd2, 0x86, 0x3e, 0x0f, 0x3c, 0x0e, 0x1c, + 0x6b, 0x14, 0x75, 0x35, 0x00, 0xd8, 0xb7, 0xce, 0xcf, 0x61, 0x8c, 0x87, + 0xa1, 0x2a, 0xa6, 0x1b, 0x81, 0x94, 0x3c, 0x2f, 0x20, 0xc7, 0x59, 0x0a, + 0xfc, 0xce, 0x18, 0x24, 0x49, 0xaa, 0xba, 0xd5, 0x38, 0xaa, 0x27, 0xd6, + 0x09, 0x58, 0xe0, 0x2e, 0xa5, 0x6e, 0x25, 0x61, 0x41, 0x92, 0xf2, 0x19, + 0xcd, 0xba, 0xf7, 0x7a, 0xea, 0x61, 0x7f, 0xa0, 0x9f, 0x87, 0xa2, 0xee, + 0x3f, 0xf7, 0x9e, 0x04, 0x3e, 0x6b, 0x14, 0xd2, 0x66, 0x95, 0xa9, 0xb3, + 0xbc, 0x85, 0x01, 0x58, 0x18, 0x20, 0x6d, 0x4e, 0x1f, 0x60, 0x32, 0xf0, + 0x63, 0x42, 0xfb, 0x3d, 0xd5, 0xdf, 0x41, 0x09, 0x9c, 0x60, 0x28, 0x9f, + 0xa7, 0x81, 0xd7, 0x8c, 0x41, 0x4a, 0x5a, 0x7f, 0xc2, 0x4c, 0x44, 0x55, + 0xee, 0x77, 0xb8, 0xd2, 0x47, 0x92, 0xa4, 0xae, 0x62, 0x57, 0x9e, 0x38, + 0xcd, 0xc0, 0x79, 0xc6, 0x20, 0x25, 0xcf, 0xee, 0x8a, 0xf9, 0x0d, 0x01, + 0x0e, 0xaf, 0xf3, 0x73, 0x38, 0xc8, 0xc3, 0x90, 0x84, 0xde, 0xc0, 0x4f, + 0x81, 0xcb, 0xf0, 0xba, 0xbe, 0xb4, 0x29, 0x65, 0xea, 0x18, 0x30, 0x0c, + 0xe8, 0xd6, 0xfe, 0x0d, 0x72, 0x1b, 0x0b, 0x03, 0x24, 0xb5, 0xbd, 0x79, + 0xb8, 0xd1, 0x93, 0xe7, 0xe4, 0xec, 0x5c, 0xc7, 0xc7, 0x1e, 0x0a, 0x1c, + 0xe2, 0x21, 0xf0, 0x44, 0x57, 0x2a, 0x81, 0xb3, 0x09, 0xc5, 0x71, 0xaa, + 0x9c, 0x37, 0x2c, 0x24, 0x49, 0xea, 0x3a, 0x0f, 0x00, 0x2f, 0x18, 0x43, + 0x14, 0xbb, 0x41, 0x49, 0xe9, 0x9b, 0x6a, 0x04, 0x55, 0x51, 0xef, 0x45, + 0x3d, 0xbb, 0x78, 0x08, 0x92, 0xfb, 0xf9, 0x77, 0x03, 0x16, 0x07, 0x48, + 0x1b, 0x53, 0xa6, 0xc2, 0x80, 0xee, 0x84, 0x7b, 0x3c, 0x40, 0x79, 0x0b, + 0x03, 0x66, 0xfb, 0x9a, 0x97, 0x36, 0xea, 0x97, 0x84, 0xb6, 0x43, 0x4a, + 0x4b, 0x3d, 0xdb, 0x1f, 0x8e, 0xa5, 0xfe, 0xed, 0xc8, 0x1a, 0x81, 0x85, + 0x01, 0x52, 0x31, 0x4e, 0x9c, 0x55, 0xb9, 0xf9, 0x84, 0x59, 0x86, 0x92, + 0x24, 0xa9, 0xeb, 0x4c, 0x36, 0x82, 0x28, 0x07, 0x51, 0xff, 0xd1, 0x7c, + 0x92, 0x36, 0xed, 0x0d, 0xe0, 0x19, 0x63, 0xc8, 0xad, 0xde, 0x63, 0x40, + 0x87, 0x7b, 0x08, 0x92, 0x73, 0x12, 0xf0, 0xdf, 0xc6, 0x20, 0x75, 0xa8, + 0x6c, 0xf7, 0x89, 0xff, 0x7c, 0x7f, 0xa9, 0xed, 0x46, 0xcf, 0x96, 0xd9, + 0x56, 0x16, 0x76, 0x0c, 0x90, 0x3a, 0x76, 0x34, 0xde, 0x14, 0x49, 0x55, + 0x3d, 0x67, 0x74, 0x39, 0x46, 0x20, 0xbf, 0x25, 0xc0, 0x7d, 0xc6, 0x20, + 0x25, 0x6d, 0x38, 0x70, 0xac, 0x31, 0x44, 0xb9, 0x12, 0x58, 0x65, 0x0c, + 0x92, 0x24, 0x75, 0xa9, 0x4b, 0x81, 0x56, 0x63, 0x88, 0x32, 0xc1, 0x08, + 0xa4, 0xe4, 0xb9, 0x98, 0x22, 0xbf, 0x03, 0x81, 0x1d, 0xeb, 0xf8, 0xf8, + 0x7d, 0x3d, 0x04, 0x49, 0xba, 0x00, 0x38, 0xd2, 0x18, 0xa4, 0x0d, 0xbc, + 0x55, 0xb2, 0xfd, 0xdd, 0xa0, 0x30, 0x60, 0xdb, 0x92, 0x05, 0x60, 0x61, + 0x80, 0xd4, 0xb1, 0xa3, 0x8d, 0x20, 0x59, 0x3d, 0xeb, 0xf8, 0xb8, 0x27, + 0x1a, 0x7f, 0x6e, 0xb7, 0x01, 0x2b, 0x8c, 0x41, 0x4a, 0xda, 0x24, 0xda, + 0xcd, 0xdb, 0x52, 0x45, 0x1c, 0x23, 0x20, 0x49, 0x52, 0xd7, 0x7b, 0x11, + 0x78, 0xc4, 0x18, 0xa2, 0x4c, 0xc4, 0x2e, 0x78, 0x52, 0xea, 0x2c, 0x0c, + 0xa8, 0x8e, 0x51, 0x75, 0x7c, 0xec, 0x2d, 0x8c, 0x3f, 0x59, 0x23, 0x8d, + 0x40, 0xda, 0xc0, 0x7c, 0x60, 0x65, 0x89, 0xf6, 0xd7, 0xc2, 0x00, 0x5f, + 0xf3, 0x52, 0x87, 0x9e, 0x33, 0x82, 0x64, 0x2d, 0xaf, 0xd3, 0xe3, 0x1e, + 0x4b, 0x7d, 0xbb, 0x15, 0x78, 0x82, 0x2b, 0xa9, 0x56, 0xec, 0x98, 0x13, + 0xe7, 0x25, 0xe0, 0x21, 0x63, 0x90, 0x24, 0xa9, 0x26, 0x2c, 0xc6, 0x8b, + 0xb3, 0x03, 0x70, 0x8c, 0x31, 0x48, 0x49, 0xbb, 0x07, 0x58, 0x6c, 0x0c, + 0xb9, 0xd5, 0xb3, 0xeb, 0xe7, 0x4a, 0xe3, 0x4f, 0x96, 0xa3, 0x3a, 0xa4, + 0x0d, 0xb5, 0x00, 0x73, 0x4b, 0xb4, 0xbf, 0xa5, 0x2e, 0x0c, 0x58, 0x09, + 0x2c, 0xf0, 0x35, 0x2f, 0x75, 0xe8, 0x26, 0xe0, 0xf7, 0xc6, 0x90, 0xa4, + 0x7a, 0x9d, 0x1c, 0x39, 0x46, 0xa0, 0x3a, 0x6e, 0x35, 0x02, 0x29, 0x69, + 0xfb, 0x00, 0xfb, 0x1b, 0x43, 0x94, 0xcb, 0xb0, 0xad, 0xb1, 0x24, 0x49, + 0xb5, 0x32, 0x19, 0x58, 0x6d, 0x0c, 0x51, 0x2c, 0x02, 0x95, 0xd2, 0xb6, + 0x12, 0x98, 0x65, 0x0c, 0xb9, 0x9d, 0x00, 0xf4, 0xa9, 0xd3, 0x63, 0x7f, + 0x60, 0xfc, 0x49, 0xba, 0x0f, 0xb8, 0xc5, 0x18, 0xa4, 0x0e, 0x95, 0x69, + 0x9c, 0x40, 0xa9, 0x0b, 0x03, 0xe6, 0xe0, 0xc5, 0x4b, 0x69, 0x63, 0xd6, + 0x00, 0xe7, 0x01, 0xaf, 0x1a, 0x45, 0x72, 0x66, 0xd7, 0xe9, 0x71, 0x4f, + 0x33, 0xfa, 0xdc, 0x9e, 0x06, 0x5e, 0x33, 0x06, 0x29, 0x69, 0x17, 0x18, + 0x41, 0xb4, 0x2b, 0x8c, 0x40, 0x92, 0xa4, 0x9a, 0x99, 0x47, 0x18, 0x53, + 0xa6, 0xca, 0x9d, 0x03, 0xf4, 0x36, 0x06, 0x29, 0x69, 0x76, 0x5b, 0xcc, + 0xaf, 0x37, 0x70, 0x7c, 0x9d, 0x1e, 0x7b, 0xb6, 0xf1, 0x27, 0xe7, 0x65, + 0x60, 0x02, 0xe1, 0x9a, 0xbf, 0xa4, 0x0d, 0x59, 0x18, 0x50, 0x12, 0x8e, + 0x11, 0x90, 0x36, 0xed, 0x35, 0xc2, 0xdc, 0x21, 0x5b, 0x0c, 0xa5, 0xf7, + 0x46, 0xae, 0xd6, 0xf6, 0x01, 0x76, 0x35, 0x7a, 0x4f, 0x6c, 0xa5, 0x06, + 0xd7, 0x0c, 0x8c, 0x37, 0x86, 0x28, 0x0f, 0x02, 0x7f, 0x32, 0x06, 0x49, + 0x92, 0x6a, 0xca, 0x71, 0x02, 0x71, 0x06, 0x60, 0xe1, 0xbb, 0x94, 0x3a, + 0x57, 0x35, 0x57, 0x47, 0xbd, 0xba, 0x7f, 0xbe, 0x6c, 0xf4, 0x49, 0x79, + 0x8a, 0x30, 0x22, 0xf6, 0x75, 0xa3, 0x90, 0x36, 0xaa, 0x4c, 0x05, 0x4d, + 0xa5, 0x2e, 0x0c, 0xb0, 0x72, 0x4d, 0xda, 0xbc, 0xd7, 0x81, 0x43, 0x81, + 0x5f, 0x1b, 0x45, 0x32, 0x1e, 0xad, 0xc3, 0x63, 0x8e, 0x31, 0xf6, 0xaa, + 0xb0, 0x30, 0x40, 0x4a, 0xdb, 0xb1, 0xc0, 0xf6, 0xc6, 0x10, 0xc5, 0x1b, + 0x13, 0x92, 0x24, 0xd5, 0xde, 0xf5, 0xd8, 0xae, 0x39, 0x96, 0xe3, 0x04, + 0xa4, 0xb4, 0xbd, 0x81, 0x0b, 0x95, 0xaa, 0xe1, 0x74, 0xa0, 0xa9, 0x0e, + 0x8f, 0xfb, 0x98, 0xd1, 0x27, 0x75, 0xae, 0x7e, 0x44, 0xf6, 0x35, 0x25, + 0x69, 0xe3, 0xec, 0x18, 0x50, 0x12, 0x76, 0x0c, 0x90, 0x3a, 0x67, 0x19, + 0xf0, 0x97, 0xc0, 0xb9, 0xc0, 0x5c, 0xe3, 0xa8, 0xab, 0x45, 0x84, 0x76, + 0xf4, 0xb5, 0x66, 0x61, 0x40, 0x7e, 0x4b, 0x08, 0xb3, 0xbc, 0x24, 0xa5, + 0xcb, 0x0b, 0xc4, 0x71, 0x56, 0x03, 0x57, 0x1b, 0x83, 0x24, 0x49, 0x75, + 0x39, 0xc7, 0xb8, 0xc1, 0x18, 0xa2, 0x8c, 0x06, 0x06, 0x1b, 0x83, 0x94, + 0x34, 0x17, 0x57, 0xe4, 0x37, 0x1c, 0x38, 0xa0, 0x0e, 0x8f, 0xfb, 0x44, + 0xf6, 0x33, 0x4a, 0xf5, 0x33, 0x07, 0x18, 0x07, 0x4c, 0xf2, 0x58, 0x48, + 0x9d, 0x52, 0xa6, 0xc2, 0x80, 0xfe, 0xc0, 0x96, 0x60, 0x61, 0x80, 0xa4, + 0xcd, 0xbb, 0x1a, 0xd8, 0x1b, 0xf8, 0x39, 0xe1, 0x26, 0x80, 0x6a, 0x6f, + 0x66, 0x1d, 0xb2, 0x1f, 0x44, 0xa8, 0x2c, 0x55, 0x3e, 0xb7, 0x01, 0x2b, + 0x8c, 0x41, 0x4a, 0x56, 0x2f, 0xe0, 0x2c, 0x63, 0x88, 0x32, 0x03, 0x78, + 0xdb, 0x18, 0x24, 0x49, 0xaa, 0x0b, 0xbb, 0xf6, 0xc4, 0xd9, 0x02, 0xf8, + 0xb8, 0x31, 0x48, 0x49, 0xb3, 0x30, 0xa0, 0x3a, 0xc6, 0xd6, 0xe1, 0x31, + 0x57, 0x12, 0xae, 0x61, 0xaa, 0xf6, 0x56, 0x01, 0x3f, 0x21, 0x5c, 0xc3, + 0xbf, 0xc6, 0x38, 0xa4, 0x4e, 0x2b, 0x5b, 0x87, 0xf9, 0xe1, 0x60, 0x61, + 0x80, 0xa4, 0xce, 0x79, 0x0f, 0xf8, 0x2c, 0xb0, 0x3f, 0x70, 0x93, 0x71, + 0xd4, 0xdc, 0x95, 0x75, 0x78, 0xcc, 0xd3, 0x80, 0xee, 0x46, 0xef, 0x09, + 0xad, 0xd4, 0xe0, 0x4e, 0x07, 0xb6, 0x32, 0x86, 0x28, 0xde, 0x90, 0x90, + 0x24, 0xa9, 0x7e, 0x66, 0x62, 0x81, 0x5e, 0x2c, 0xbb, 0x45, 0x49, 0x69, + 0xbb, 0x07, 0x58, 0x6c, 0x0c, 0xb9, 0x8d, 0xae, 0xd3, 0xe3, 0x5e, 0x65, + 0xf4, 0x35, 0xf7, 0x3b, 0x60, 0x3f, 0xe0, 0x22, 0xe0, 0x7d, 0xe3, 0x90, + 0x2a, 0xf2, 0x56, 0xc9, 0xf6, 0x77, 0x04, 0x84, 0xc2, 0x80, 0x9e, 0xc0, + 0xc0, 0x12, 0xed, 0xb8, 0x85, 0x01, 0x52, 0xbc, 0x67, 0x09, 0x37, 0x51, + 0x0e, 0x07, 0xae, 0x05, 0x5a, 0x8c, 0xa4, 0xcb, 0xcd, 0xa6, 0x3e, 0x6d, + 0x22, 0x47, 0x1b, 0x7d, 0x55, 0xdc, 0x6a, 0x04, 0x52, 0xd2, 0xbc, 0x30, + 0x1c, 0x67, 0x09, 0x70, 0xa3, 0x31, 0x48, 0x92, 0x54, 0x37, 0xab, 0xf1, + 0xe6, 0x4b, 0xac, 0xa3, 0x81, 0x9d, 0x8d, 0x41, 0x4a, 0xd6, 0x4a, 0x60, + 0x96, 0x31, 0xe4, 0x76, 0x18, 0x30, 0xac, 0x0e, 0x8f, 0x7b, 0x3d, 0x30, + 0xcf, 0xf8, 0xbb, 0xdc, 0x1a, 0x60, 0x4a, 0x76, 0x9c, 0xcf, 0x04, 0x9e, + 0x37, 0x12, 0x29, 0x4a, 0x69, 0x0b, 0x03, 0x86, 0x01, 0x4d, 0x25, 0xda, + 0xf1, 0xd9, 0xbe, 0xd6, 0xa5, 0xdc, 0x1e, 0x26, 0xb4, 0xdf, 0xdb, 0x1d, + 0xf8, 0x11, 0xb0, 0xcc, 0x48, 0xba, 0xcc, 0x77, 0x08, 0xed, 0xa0, 0x6a, + 0xa9, 0x1b, 0x70, 0xb2, 0xd1, 0xe7, 0xf6, 0x0c, 0xf0, 0x9a, 0x31, 0x48, + 0xc9, 0x1a, 0x04, 0x9c, 0x6a, 0x0c, 0x51, 0xae, 0x03, 0x3e, 0x30, 0x06, + 0x49, 0x92, 0xea, 0xca, 0xee, 0x3d, 0x71, 0x9a, 0x80, 0x09, 0xc6, 0x20, + 0x25, 0xcd, 0xee, 0x8b, 0xf9, 0x35, 0x03, 0xa3, 0xea, 0xf0, 0xb8, 0x2b, + 0x80, 0xff, 0x34, 0xfe, 0x2e, 0xb3, 0x12, 0xb8, 0x14, 0xd8, 0x17, 0x38, + 0x07, 0x78, 0xc4, 0x48, 0xa4, 0x5c, 0x96, 0x00, 0x0b, 0x4b, 0xb4, 0xbf, + 0x7f, 0x2e, 0x0c, 0xd8, 0xb6, 0x64, 0x07, 0xda, 0x8e, 0x01, 0x52, 0xf5, + 0xbc, 0x0c, 0x7c, 0x01, 0xd8, 0x05, 0xf8, 0x77, 0x6c, 0x57, 0x54, 0x6d, + 0x7f, 0x02, 0x7e, 0x51, 0x87, 0xc7, 0x3d, 0x86, 0x70, 0xc3, 0x4c, 0x9e, + 0xc8, 0x4a, 0x8d, 0xec, 0x3c, 0xc2, 0x9c, 0x59, 0x55, 0xce, 0x1b, 0x11, + 0x92, 0x24, 0xd5, 0xdf, 0x43, 0xb8, 0x42, 0x30, 0xd6, 0x24, 0x23, 0x90, + 0x92, 0x76, 0x8b, 0x11, 0x54, 0x45, 0xbd, 0xba, 0x81, 0xfe, 0x14, 0x78, + 0xc9, 0xf8, 0xab, 0xea, 0x7d, 0xe0, 0xdf, 0x80, 0x1d, 0x80, 0x0b, 0x80, + 0xe7, 0x8c, 0x44, 0xaa, 0x9a, 0x32, 0x75, 0x0d, 0x28, 0x65, 0x61, 0xc0, + 0x6a, 0xe0, 0x1d, 0x5f, 0xe7, 0x52, 0xd5, 0xcd, 0x05, 0xbe, 0x06, 0x6c, + 0x0f, 0xfc, 0x05, 0x61, 0x1e, 0x58, 0xab, 0xb1, 0xe4, 0xb2, 0x06, 0xf8, + 0x14, 0xb0, 0xbc, 0x44, 0x27, 0x0e, 0x8d, 0xc6, 0xc2, 0x00, 0x29, 0x6d, + 0x8e, 0x11, 0x88, 0x33, 0x0f, 0xb8, 0xdd, 0x18, 0x24, 0x49, 0x4a, 0xc2, + 0x64, 0x23, 0x88, 0xb2, 0x27, 0x70, 0x88, 0x31, 0x48, 0xc9, 0x7a, 0x83, + 0x30, 0xce, 0x54, 0xf9, 0x9c, 0x42, 0x18, 0x23, 0x5d, 0x6b, 0xcb, 0x80, + 0xbf, 0xc2, 0x11, 0xb4, 0x79, 0xb5, 0x02, 0x77, 0x03, 0x9f, 0x24, 0x5c, + 0x73, 0xff, 0x3a, 0xf0, 0xb6, 0xb1, 0x48, 0x55, 0x57, 0xca, 0xc2, 0x80, + 0x61, 0x25, 0xda, 0xe9, 0xb7, 0xfd, 0x81, 0x24, 0x75, 0xa9, 0x0f, 0x80, + 0xdf, 0x00, 0x1f, 0x05, 0xf6, 0x00, 0xfe, 0x25, 0x7b, 0x33, 0xaf, 0xca, + 0xfd, 0x53, 0xf6, 0xe6, 0xaf, 0x1e, 0xc6, 0x18, 0x7f, 0x6e, 0x4b, 0x80, + 0x7b, 0x8d, 0x41, 0x4a, 0xd6, 0x4e, 0xc0, 0x91, 0xc6, 0x10, 0xe5, 0x0a, + 0x42, 0xb1, 0xad, 0x24, 0x49, 0xaa, 0xbf, 0xcb, 0xb0, 0x28, 0x3f, 0x96, + 0x45, 0xa2, 0x52, 0xda, 0x5c, 0x6c, 0x91, 0xdf, 0x96, 0x84, 0x6b, 0xb4, + 0xf5, 0x70, 0x07, 0xf0, 0x2d, 0x0f, 0x41, 0x94, 0xd7, 0xb3, 0xec, 0x76, + 0x07, 0x46, 0x02, 0xbf, 0xc5, 0x51, 0x7e, 0x52, 0x57, 0x2a, 0xd3, 0xf8, + 0xf9, 0xe1, 0x50, 0xbe, 0x8e, 0x01, 0x8e, 0x11, 0x90, 0x6a, 0xe7, 0x45, + 0xe0, 0x1f, 0x08, 0x37, 0x5f, 0x8e, 0x21, 0xb4, 0xc4, 0x5f, 0x62, 0x2c, + 0x9d, 0xf2, 0xdf, 0xc0, 0xbf, 0xd6, 0xe9, 0xb1, 0x77, 0x21, 0xac, 0x9e, + 0x50, 0x3e, 0xb7, 0x13, 0xe6, 0xaa, 0x49, 0x4a, 0xd3, 0x05, 0x84, 0xf9, + 0xb2, 0xaa, 0x9c, 0x63, 0x04, 0x24, 0x49, 0x4a, 0xc7, 0x4b, 0xc0, 0x83, + 0xc6, 0x10, 0x65, 0x22, 0xd0, 0xdd, 0x18, 0xa4, 0x64, 0x59, 0x18, 0x50, + 0x1d, 0xf5, 0xec, 0x0a, 0xfa, 0x4d, 0xe0, 0x47, 0x1e, 0x82, 0x4e, 0x59, + 0x01, 0x4c, 0x01, 0x4e, 0x07, 0x76, 0x05, 0xbe, 0x81, 0xe3, 0x18, 0xa4, + 0x5a, 0x29, 0x53, 0xc7, 0x80, 0xa1, 0x10, 0x0a, 0x03, 0x86, 0x97, 0x68, + 0xa7, 0x67, 0xfb, 0x1a, 0x97, 0x6a, 0xae, 0x85, 0xb0, 0x72, 0xfa, 0xd3, + 0xd9, 0x37, 0x9e, 0xd3, 0x81, 0x4b, 0x09, 0xb3, 0x91, 0xb4, 0xa1, 0xef, + 0x03, 0x7f, 0x4d, 0xfd, 0x56, 0x7d, 0x9c, 0xee, 0x21, 0xf0, 0x04, 0x56, + 0x2a, 0x81, 0x09, 0x46, 0x10, 0xe5, 0x05, 0xe0, 0x11, 0x63, 0x90, 0x24, + 0x29, 0x29, 0x16, 0xed, 0xc5, 0x19, 0x0a, 0x9c, 0x60, 0x0c, 0x52, 0xb2, + 0xee, 0xc6, 0x55, 0xd2, 0xd5, 0x30, 0xb6, 0x8e, 0x8f, 0xdd, 0x0a, 0x7c, + 0x11, 0xf8, 0xa1, 0x87, 0xa1, 0x43, 0x4b, 0x80, 0x9b, 0x81, 0x0b, 0x81, + 0x6d, 0x80, 0x73, 0x80, 0x9b, 0xb0, 0x43, 0x9f, 0x54, 0x6b, 0x65, 0x2a, + 0x0c, 0xd8, 0x0a, 0xec, 0x18, 0x20, 0xa9, 0xb6, 0x96, 0x66, 0x6f, 0x70, + 0x2e, 0xc8, 0xde, 0xf0, 0x9c, 0x42, 0x58, 0x1d, 0x6f, 0xd1, 0x4e, 0xa8, + 0x0c, 0xfd, 0x52, 0xb6, 0xd5, 0xd3, 0x68, 0x0f, 0x45, 0x55, 0xcc, 0x30, + 0x02, 0x29, 0x59, 0x87, 0x03, 0x1f, 0x32, 0x86, 0x28, 0x97, 0x1a, 0x81, + 0x24, 0x49, 0xc9, 0xb9, 0x0a, 0x58, 0x65, 0x0c, 0x51, 0x1c, 0x27, 0x20, + 0xa5, 0x6b, 0x25, 0x30, 0xcb, 0x18, 0x72, 0xdb, 0x05, 0xd8, 0xab, 0x8e, + 0x8f, 0xdf, 0x0a, 0xfc, 0x0d, 0xf0, 0xe5, 0xec, 0x98, 0x96, 0xdd, 0x5b, + 0xc0, 0xcf, 0x81, 0x93, 0x81, 0x81, 0x84, 0xc2, 0x8d, 0x4b, 0x80, 0x85, + 0x46, 0x23, 0xd5, 0x4d, 0x99, 0xee, 0x4d, 0xf5, 0x87, 0x50, 0x18, 0x30, + 0xac, 0x44, 0x3b, 0x3d, 0xd7, 0xd7, 0xb8, 0x94, 0xd4, 0x1b, 0xfc, 0x19, + 0x84, 0xd5, 0xf1, 0xdb, 0x01, 0x1f, 0x06, 0xbe, 0x0d, 0x3c, 0x4e, 0xe8, + 0x32, 0x50, 0x26, 0xcf, 0x00, 0x47, 0x10, 0xba, 0x05, 0xd4, 0xd3, 0x96, + 0x84, 0xb1, 0x0f, 0xca, 0xe7, 0x59, 0xe0, 0x65, 0x63, 0x90, 0x92, 0xe5, + 0x05, 0xe0, 0x78, 0x57, 0x1a, 0x81, 0x24, 0x49, 0xc9, 0x99, 0x8f, 0x85, + 0xc9, 0xb1, 0xce, 0xca, 0xce, 0x83, 0x25, 0xa5, 0xc9, 0x6e, 0x8c, 0xd5, + 0x31, 0xa6, 0xce, 0x8f, 0xdf, 0x0a, 0x7c, 0x97, 0x70, 0xed, 0xf3, 0xb9, + 0x92, 0x65, 0xdf, 0x42, 0xb8, 0xd6, 0xfd, 0xef, 0x84, 0x45, 0x0a, 0xdb, + 0x03, 0x9f, 0x05, 0x66, 0x17, 0x88, 0x26, 0xe4, 0x00, 0x00, 0x20, 0x00, + 0x49, 0x44, 0x41, 0x54, 0x62, 0x51, 0x9f, 0x94, 0x8a, 0x32, 0x75, 0x0c, + 0xe8, 0x0e, 0xf4, 0x6e, 0x26, 0x9b, 0x29, 0x50, 0x12, 0x76, 0x0c, 0x90, + 0xd2, 0xd4, 0x0a, 0x3c, 0x04, 0x7c, 0x15, 0x38, 0x30, 0xfb, 0xbe, 0x74, + 0x16, 0x61, 0x0e, 0xd5, 0x93, 0xd4, 0xaf, 0xad, 0x7e, 0x57, 0x5b, 0x90, + 0xed, 0xf3, 0xa1, 0xc0, 0x63, 0x09, 0x3c, 0x9f, 0x53, 0x81, 0x9e, 0xbe, + 0x1c, 0x3d, 0x71, 0x95, 0x1a, 0xfc, 0x0d, 0xf0, 0xb9, 0xc6, 0x10, 0xe5, + 0x7e, 0xc2, 0x28, 0x01, 0x49, 0x92, 0x94, 0x1e, 0xc7, 0x09, 0xc4, 0xe9, + 0x0b, 0x9c, 0x61, 0x0c, 0x52, 0xb2, 0xbc, 0xbe, 0x52, 0x1d, 0xa9, 0x74, + 0x07, 0xfd, 0x23, 0x70, 0x08, 0xf0, 0x75, 0xe0, 0xbd, 0x06, 0xcd, 0xba, + 0x05, 0x78, 0x82, 0x70, 0x4d, 0xfb, 0x4c, 0x60, 0x08, 0xe1, 0x5a, 0xf7, + 0xd7, 0x80, 0x87, 0x69, 0xdc, 0x6b, 0xdc, 0x52, 0x91, 0xbd, 0x55, 0xb2, + 0xfd, 0xed, 0xdf, 0x1d, 0x18, 0x54, 0xa2, 0x1d, 0xb6, 0x5d, 0xb9, 0x54, + 0x0c, 0xef, 0x02, 0xd7, 0x67, 0x1b, 0xc0, 0xd6, 0xc0, 0x47, 0x81, 0x63, + 0xb3, 0x6d, 0x5f, 0xa0, 0xa9, 0xc0, 0xfb, 0xb7, 0x00, 0xf8, 0x31, 0xf0, + 0x3d, 0x60, 0x91, 0x27, 0x0a, 0x9e, 0xb8, 0x4a, 0xaa, 0x99, 0x93, 0x09, + 0xa3, 0x6c, 0x54, 0x39, 0x6f, 0x38, 0x48, 0x92, 0x94, 0xae, 0xdf, 0x11, + 0xda, 0x10, 0x0f, 0x30, 0x8a, 0x8a, 0x4d, 0xf4, 0x7d, 0x8e, 0x94, 0xac, + 0x57, 0x09, 0x2b, 0xcc, 0xf7, 0x34, 0x8a, 0x5c, 0x8e, 0x06, 0x06, 0x13, + 0xae, 0xb7, 0xd6, 0xdb, 0x52, 0xe0, 0xdf, 0x80, 0x9f, 0x11, 0x46, 0x0c, + 0x5c, 0x44, 0x68, 0xa9, 0x5f, 0x54, 0xad, 0x84, 0x45, 0x6d, 0x77, 0x66, + 0xdb, 0xdd, 0x89, 0xe4, 0x2c, 0xa9, 0xf3, 0xe6, 0x02, 0xab, 0x09, 0x8b, + 0x89, 0xca, 0xa0, 0x5f, 0x77, 0x60, 0x8b, 0x12, 0x1d, 0x60, 0x3b, 0x06, + 0x48, 0xc5, 0xf4, 0x0e, 0x70, 0x5d, 0xb6, 0x41, 0x28, 0x68, 0x3a, 0x8c, + 0xb0, 0xd2, 0xbe, 0x6d, 0xdb, 0x2e, 0xf1, 0x7d, 0x58, 0x0d, 0xdc, 0x0a, + 0xfc, 0x2f, 0x70, 0x13, 0xb0, 0x22, 0xb1, 0xe7, 0xd7, 0x0c, 0x8c, 0xf2, + 0xa5, 0x96, 0xdb, 0x12, 0xe0, 0x1e, 0x63, 0x90, 0x92, 0xe5, 0x18, 0x81, + 0x38, 0xab, 0x80, 0xab, 0x8d, 0x41, 0x92, 0xa4, 0x64, 0x2d, 0x03, 0x6e, + 0x00, 0x2e, 0x30, 0x8a, 0x8a, 0x9d, 0x44, 0x18, 0xb3, 0xea, 0xf8, 0x51, + 0x29, 0x4d, 0xd3, 0xb0, 0x30, 0x20, 0xaf, 0x6e, 0x84, 0x22, 0xf9, 0xc9, + 0x09, 0x3d, 0xa7, 0xf7, 0x81, 0x7f, 0x24, 0x14, 0x09, 0x9c, 0x0e, 0x5c, + 0x48, 0xe8, 0x64, 0xda, 0x2d, 0xf1, 0x2c, 0xdf, 0x00, 0x1e, 0x69, 0xb7, + 0x3d, 0x4c, 0xe3, 0x76, 0x3f, 0x90, 0xca, 0xa2, 0x85, 0xb0, 0x78, 0xb3, + 0x2c, 0x8b, 0xe8, 0xfb, 0x75, 0x07, 0x6e, 0xa1, 0x3c, 0x6d, 0xb3, 0xec, + 0x18, 0x20, 0x35, 0x86, 0x05, 0xc0, 0xf4, 0x6c, 0x6b, 0x33, 0x04, 0xd8, + 0x8f, 0xd0, 0x4d, 0x60, 0x5f, 0x60, 0x7f, 0xe0, 0x43, 0xc0, 0x56, 0x75, + 0x7c, 0x9e, 0x2f, 0x02, 0x77, 0xb4, 0xdb, 0xe6, 0x27, 0x9c, 0xe9, 0xe1, + 0xb8, 0x8a, 0xb6, 0x1a, 0xee, 0x20, 0xbd, 0xa2, 0x0f, 0x49, 0x41, 0x5f, + 0xc2, 0x05, 0x07, 0x55, 0xee, 0x56, 0x42, 0x91, 0x9e, 0x24, 0x49, 0x4a, + 0xd7, 0xe5, 0x58, 0x18, 0x10, 0xa3, 0x6d, 0xd4, 0xd4, 0x0f, 0x8d, 0x42, + 0x4a, 0xd2, 0x34, 0xc2, 0xca, 0x72, 0xe5, 0x33, 0x9a, 0xb4, 0x0a, 0x03, + 0xda, 0xac, 0x00, 0xa6, 0x64, 0xdb, 0x10, 0xe0, 0x04, 0xe0, 0xf8, 0xec, + 0xe3, 0x2e, 0x75, 0x7c, 0x5e, 0xef, 0x13, 0xba, 0x55, 0x3c, 0x09, 0x3c, + 0x95, 0x6d, 0x4f, 0x78, 0x5e, 0x2c, 0x35, 0xac, 0x0f, 0x28, 0x59, 0x61, + 0xc0, 0x77, 0x29, 0x4f, 0x61, 0xc0, 0x3c, 0x5f, 0xdf, 0x52, 0xc3, 0x9a, + 0xcf, 0xda, 0x1b, 0xf0, 0xed, 0x0d, 0x06, 0x76, 0x6d, 0xb7, 0xed, 0x00, + 0x6c, 0x0b, 0x0c, 0xcf, 0x3e, 0x6e, 0x43, 0x58, 0x2d, 0x1f, 0x6b, 0x65, + 0xf6, 0xbd, 0xe5, 0x8d, 0xec, 0x0d, 0xe3, 0xd3, 0xd9, 0x9b, 0xc6, 0x27, + 0x29, 0x56, 0x97, 0x12, 0xc7, 0x08, 0x54, 0xef, 0x84, 0x55, 0x52, 0x9a, + 0xce, 0x06, 0xb6, 0x34, 0x86, 0x28, 0xb6, 0xd7, 0x95, 0x24, 0x29, 0x7d, + 0xb7, 0x11, 0x66, 0xa4, 0x8e, 0x30, 0x8a, 0x8a, 0x4d, 0xc4, 0xc2, 0x00, + 0x29, 0x55, 0x77, 0x13, 0x6e, 0xd8, 0x78, 0x2e, 0x97, 0xcf, 0x28, 0x42, + 0x21, 0xd4, 0xea, 0x84, 0x9f, 0xe3, 0x7c, 0xe0, 0xca, 0x6c, 0x83, 0x70, + 0xed, 0xb6, 0x6d, 0xf1, 0xd7, 0x3e, 0x84, 0xce, 0x11, 0xdb, 0x11, 0xae, + 0xe5, 0xf6, 0xc8, 0xf1, 0x38, 0x6b, 0x08, 0xd7, 0x72, 0x67, 0x13, 0xae, + 0xdd, 0xce, 0x26, 0x5c, 0xd7, 0x7d, 0xa9, 0xdd, 0xe6, 0x38, 0x00, 0xa9, + 0x5c, 0x16, 0x95, 0x68, 0x5f, 0xfb, 0x77, 0x07, 0xee, 0x05, 0x7e, 0x0f, + 0x1c, 0xd1, 0xe0, 0x3b, 0xbb, 0x3a, 0xf1, 0x1f, 0x7c, 0x92, 0xba, 0xc6, + 0xbb, 0xd9, 0xf6, 0xd0, 0x46, 0xfe, 0xbc, 0x99, 0x30, 0x87, 0x71, 0x60, + 0xf6, 0xb1, 0x6d, 0x6b, 0x3f, 0x66, 0xa5, 0x89, 0x30, 0x33, 0x6a, 0x25, + 0xa1, 0x55, 0xfc, 0x92, 0xec, 0xa4, 0x64, 0x1e, 0xf0, 0x76, 0x83, 0xe4, + 0x34, 0xc6, 0x97, 0x4a, 0x55, 0x4c, 0x37, 0x02, 0x29, 0x59, 0x8e, 0x11, + 0x88, 0xb3, 0x98, 0x30, 0x02, 0x47, 0x92, 0x24, 0xa5, 0xad, 0x85, 0x30, + 0xfa, 0xc7, 0x95, 0xb5, 0x95, 0x3b, 0x8c, 0x70, 0xc3, 0xe9, 0x39, 0xa3, + 0x90, 0x92, 0xb3, 0x02, 0x98, 0x05, 0x8c, 0x35, 0x8a, 0x5c, 0x06, 0x01, + 0x47, 0x52, 0xac, 0xf1, 0x97, 0xb3, 0xb3, 0x6d, 0x46, 0x07, 0x7f, 0xb6, + 0x4d, 0xb6, 0xf5, 0xcd, 0xb6, 0x2d, 0x09, 0xc5, 0x02, 0x6d, 0xd7, 0x70, + 0xdb, 0xac, 0x04, 0x16, 0xb6, 0xdb, 0xde, 0xcb, 0x3e, 0xb6, 0xf8, 0x92, + 0x90, 0xd4, 0xce, 0xe2, 0x12, 0xed, 0x6b, 0xbf, 0xee, 0xd9, 0x2f, 0xbe, + 0x0b, 0x5c, 0xd3, 0xe0, 0x3b, 0xfb, 0x8c, 0xaf, 0x6d, 0x49, 0x1d, 0x68, + 0xc9, 0xde, 0x14, 0x96, 0x79, 0x1e, 0xd4, 0x70, 0xe0, 0x00, 0x5f, 0x0a, + 0xb9, 0x3d, 0x0b, 0xbc, 0x6c, 0x0c, 0x52, 0x92, 0xb6, 0x25, 0xb4, 0x22, + 0x54, 0xe5, 0xae, 0x05, 0x96, 0x1a, 0x83, 0x24, 0x49, 0x85, 0x70, 0x39, + 0x16, 0x06, 0xc4, 0x9a, 0x00, 0x7c, 0xc3, 0x18, 0xa4, 0x24, 0x4d, 0xc3, + 0xc2, 0x80, 0x6a, 0x18, 0x4d, 0xb1, 0x0a, 0x03, 0x36, 0xe5, 0x6d, 0x1a, + 0x67, 0xb1, 0x96, 0xa4, 0xfa, 0x2b, 0x55, 0x61, 0x40, 0x5b, 0xfb, 0xec, + 0xeb, 0x09, 0xb3, 0xb0, 0x1b, 0xd9, 0x23, 0xbe, 0xb6, 0x25, 0xa9, 0x43, + 0xa7, 0x13, 0x2a, 0x6a, 0x95, 0xff, 0x44, 0x55, 0x52, 0x9a, 0xc6, 0x03, + 0xdd, 0x8c, 0x21, 0x8a, 0x63, 0x04, 0x24, 0x49, 0x2a, 0x8e, 0x3f, 0x10, + 0xc6, 0xdb, 0xa9, 0x72, 0x17, 0x78, 0x5e, 0x2c, 0x25, 0xcb, 0xeb, 0x2d, + 0xd5, 0x61, 0xb7, 0x50, 0x49, 0xea, 0x58, 0x99, 0x0a, 0x03, 0xfa, 0xb7, + 0x15, 0x06, 0xb4, 0x00, 0x3f, 0x28, 0xc1, 0xc9, 0x91, 0x24, 0x69, 0x43, + 0xa3, 0x8d, 0xc0, 0x13, 0x55, 0xa9, 0xc1, 0x39, 0x46, 0x20, 0xce, 0x1c, + 0x42, 0xdb, 0x4e, 0x49, 0x92, 0x54, 0x1c, 0x93, 0x8d, 0x20, 0xca, 0x8e, + 0xc0, 0x51, 0xc6, 0x20, 0x25, 0xe9, 0x55, 0x1c, 0xf5, 0x51, 0x0d, 0xfb, + 0x00, 0xbb, 0x1a, 0x83, 0x24, 0x6d, 0xa0, 0x94, 0x1d, 0x03, 0x00, 0x7e, + 0x03, 0xbc, 0xd3, 0xc0, 0x3b, 0x6b, 0x61, 0x80, 0x24, 0x6d, 0xa8, 0x37, + 0x70, 0xbc, 0x31, 0xe4, 0xb6, 0x84, 0xc6, 0x69, 0xc7, 0x26, 0x35, 0x9a, + 0xbd, 0x80, 0x83, 0x8d, 0x21, 0xca, 0x15, 0xc0, 0x1a, 0x63, 0x90, 0x24, + 0xa9, 0x50, 0x2e, 0x63, 0xdd, 0xf9, 0xca, 0xea, 0x3c, 0x8b, 0x49, 0xa5, + 0x74, 0xb9, 0x18, 0xa3, 0x3a, 0x4e, 0x33, 0x02, 0x49, 0xda, 0x40, 0x69, + 0x0b, 0x03, 0x96, 0x02, 0x3f, 0x6b, 0xd0, 0x1d, 0x5d, 0x05, 0x3c, 0xe1, + 0x6b, 0x5b, 0x92, 0x36, 0x70, 0x02, 0xd0, 0xc7, 0x18, 0x72, 0xbb, 0x03, + 0x58, 0x61, 0x0c, 0x52, 0x92, 0x26, 0x19, 0x41, 0x34, 0xc7, 0x08, 0x48, + 0x92, 0x54, 0x3c, 0xaf, 0x01, 0xf7, 0x19, 0x43, 0x94, 0x73, 0x81, 0x9e, + 0xc6, 0x20, 0x25, 0xc9, 0xc2, 0x80, 0xea, 0xb0, 0x6b, 0xa8, 0x24, 0x6d, + 0xa8, 0x94, 0xa3, 0x04, 0xda, 0xfc, 0x14, 0x58, 0xd6, 0x80, 0x3b, 0xfa, + 0x54, 0x83, 0xee, 0x97, 0x24, 0x79, 0x42, 0xe0, 0x09, 0xaa, 0xa4, 0x8d, + 0x6b, 0x02, 0xc6, 0x1b, 0x43, 0x94, 0x67, 0x81, 0x3f, 0x1a, 0x83, 0x24, + 0x49, 0x85, 0x64, 0x71, 0x5f, 0x9c, 0x41, 0xc0, 0xa9, 0xc6, 0x20, 0x25, + 0xe9, 0x6e, 0xe0, 0x03, 0x63, 0xc8, 0xed, 0x58, 0xa0, 0x9f, 0x31, 0x48, + 0xd2, 0x3a, 0x4a, 0xdb, 0x31, 0x00, 0x60, 0x1e, 0x70, 0x49, 0x03, 0xee, + 0xa8, 0x63, 0x04, 0x24, 0xa9, 0x63, 0xa3, 0x8c, 0xa0, 0x2a, 0xa6, 0x1b, + 0x81, 0x94, 0xa4, 0x63, 0x80, 0x9d, 0x8d, 0x21, 0xca, 0x65, 0x46, 0x20, + 0x49, 0x52, 0x61, 0x5d, 0x8d, 0x1d, 0xcd, 0x62, 0x39, 0x4e, 0x40, 0x4a, + 0xd3, 0x0a, 0xe0, 0x4e, 0x63, 0xc8, 0xad, 0x27, 0x70, 0xa2, 0x31, 0x48, + 0xd2, 0x3a, 0x4a, 0x5d, 0x18, 0x00, 0xf0, 0x3d, 0xa0, 0xa5, 0xc1, 0x76, + 0xd4, 0xc2, 0x00, 0x49, 0xda, 0xd0, 0x81, 0xc0, 0x8e, 0xc6, 0x90, 0xdb, + 0x73, 0xc0, 0xcb, 0xc6, 0x20, 0x25, 0xc9, 0x0b, 0xbb, 0x71, 0x5a, 0x81, + 0xc9, 0xc6, 0x20, 0x49, 0x52, 0x61, 0x2d, 0x00, 0x6e, 0x35, 0x86, 0x28, + 0x63, 0x81, 0xad, 0x8c, 0x41, 0x4a, 0x92, 0xdd, 0x1a, 0xab, 0xc3, 0xee, + 0xa1, 0x92, 0xb4, 0xae, 0x52, 0x8f, 0x12, 0x00, 0xf8, 0x13, 0x70, 0x53, + 0x03, 0xed, 0xe4, 0x03, 0xc0, 0x95, 0xbe, 0xae, 0x25, 0x69, 0x03, 0x63, + 0x8c, 0xc0, 0x13, 0x53, 0xa9, 0x81, 0x6d, 0x01, 0x9c, 0x6d, 0x0c, 0x51, + 0xee, 0x05, 0x5e, 0x31, 0x06, 0x49, 0x92, 0x0a, 0xcd, 0x71, 0x02, 0x71, + 0x7a, 0xf9, 0x1e, 0x52, 0x4a, 0x96, 0xd7, 0x5f, 0xaa, 0x63, 0x2c, 0xd0, + 0x6c, 0x0c, 0x92, 0xf4, 0x67, 0x8b, 0x4a, 0xb4, 0xaf, 0xfd, 0x37, 0xf6, + 0x03, 0xe0, 0xbb, 0x0d, 0xb2, 0x83, 0x77, 0x02, 0xa7, 0x00, 0xef, 0xfb, + 0xba, 0x96, 0xa4, 0x0d, 0x58, 0x18, 0xe0, 0x89, 0xa9, 0xd4, 0xe8, 0xdf, + 0xe3, 0x06, 0x1b, 0x43, 0x14, 0x6f, 0x24, 0x48, 0x92, 0x54, 0x7c, 0x37, + 0xe1, 0xf5, 0xb0, 0x58, 0x93, 0x8c, 0x40, 0x4a, 0xd2, 0x2b, 0xc0, 0xf3, + 0xc6, 0x90, 0xdb, 0x50, 0xe0, 0x50, 0x63, 0x90, 0xa4, 0x3f, 0xfb, 0xa0, + 0x44, 0xfb, 0xda, 0x6f, 0x63, 0x85, 0x01, 0xf7, 0x12, 0x56, 0xda, 0x17, + 0xd9, 0xcd, 0xc0, 0x69, 0x94, 0xab, 0x05, 0x84, 0x24, 0x55, 0x72, 0x12, + 0x70, 0x98, 0x31, 0xe4, 0xb6, 0x04, 0xb8, 0xc7, 0x18, 0xa4, 0x24, 0x39, + 0x46, 0x20, 0xce, 0x4a, 0xe0, 0x1a, 0x63, 0x90, 0x24, 0xa9, 0xf0, 0x96, + 0x03, 0xd7, 0x19, 0x43, 0x94, 0x91, 0xc0, 0x4e, 0xc6, 0x20, 0x25, 0xc9, + 0xc5, 0x19, 0xd5, 0xe1, 0x38, 0x01, 0x49, 0x5a, 0xab, 0x4c, 0xf7, 0x91, + 0xfb, 0x6d, 0xaa, 0x65, 0xcc, 0x7f, 0x15, 0x78, 0xc7, 0xae, 0x00, 0xce, + 0x04, 0x96, 0xf9, 0x7a, 0x96, 0xa4, 0x8d, 0x9e, 0x00, 0xd8, 0x36, 0x2c, + 0xbf, 0x59, 0x84, 0x0b, 0x6e, 0x92, 0xd2, 0x32, 0x10, 0x2f, 0x74, 0xc4, + 0x9a, 0x0a, 0xbc, 0x6b, 0x0c, 0x92, 0x24, 0x35, 0x04, 0xbb, 0x00, 0xc5, + 0x69, 0x02, 0xce, 0x33, 0x06, 0x29, 0x49, 0x16, 0x06, 0x54, 0x87, 0x5d, + 0x44, 0x25, 0x69, 0xad, 0x32, 0x8d, 0x12, 0xd8, 0x64, 0x61, 0xc0, 0xf5, + 0xc0, 0x0b, 0x05, 0xdc, 0xa9, 0x5f, 0x00, 0xe7, 0x03, 0xab, 0x7d, 0x2d, + 0x4b, 0xd2, 0x46, 0x79, 0xc3, 0xcc, 0x13, 0x52, 0xa9, 0x91, 0x8d, 0x03, + 0x7a, 0x1a, 0x43, 0x14, 0x6f, 0x20, 0x48, 0x92, 0xd4, 0x38, 0xee, 0x04, + 0xde, 0x34, 0x86, 0x28, 0xe7, 0x1b, 0x81, 0x94, 0xa4, 0xbb, 0x28, 0x57, + 0xcb, 0xe7, 0xae, 0x72, 0x10, 0xb0, 0x9d, 0x31, 0x48, 0x12, 0x50, 0xae, + 0x8e, 0x01, 0x4b, 0x37, 0x55, 0x18, 0xd0, 0x02, 0xfc, 0xa0, 0x60, 0x3b, + 0xf4, 0x63, 0xe0, 0x33, 0xd9, 0x73, 0x97, 0x24, 0x75, 0xac, 0x07, 0x70, + 0xa2, 0x31, 0x54, 0xc5, 0x74, 0x23, 0x90, 0x92, 0xe4, 0x18, 0x81, 0x38, + 0x8b, 0x80, 0x5b, 0x8c, 0x41, 0x92, 0xa4, 0x86, 0xd1, 0x02, 0x4c, 0x36, + 0x86, 0x28, 0x7b, 0x03, 0x07, 0x1a, 0x83, 0x94, 0x9c, 0x15, 0x84, 0xe2, + 0x00, 0xe5, 0xd3, 0x44, 0x18, 0xc3, 0x2c, 0x49, 0x2a, 0x57, 0x61, 0xc0, + 0xdc, 0xcd, 0xb5, 0x91, 0xfe, 0x2d, 0xf0, 0x4e, 0x41, 0x76, 0xe6, 0x3b, + 0xc0, 0xc5, 0x40, 0xab, 0xaf, 0x61, 0x49, 0xda, 0xa4, 0x63, 0x81, 0x01, + 0xc6, 0x90, 0xdb, 0xf3, 0xc0, 0x4b, 0xc6, 0x20, 0x25, 0x67, 0x07, 0xe0, + 0x68, 0x63, 0x88, 0x32, 0x05, 0x47, 0x71, 0x49, 0x92, 0xd4, 0x68, 0xec, + 0x06, 0x14, 0xcf, 0x62, 0x53, 0x29, 0x4d, 0x76, 0x6f, 0xac, 0x0e, 0xbb, + 0x89, 0x4a, 0x52, 0xf0, 0x01, 0xe5, 0xb9, 0xb7, 0x3c, 0x67, 0x73, 0x85, + 0x01, 0x4b, 0x81, 0x9f, 0x25, 0xbe, 0x13, 0xad, 0xc0, 0x17, 0x80, 0xbf, + 0xf7, 0xb5, 0x2b, 0x49, 0xbe, 0xf1, 0xf7, 0x44, 0x54, 0x2a, 0xbd, 0x49, + 0x40, 0xb3, 0x31, 0x44, 0xf1, 0xc6, 0x81, 0x24, 0x49, 0x8d, 0xe7, 0x71, + 0xe0, 0x49, 0x63, 0x88, 0x32, 0x01, 0xe8, 0x66, 0x0c, 0x52, 0x72, 0xa6, + 0x1a, 0x41, 0x55, 0x9c, 0x04, 0xf4, 0x31, 0x06, 0x49, 0x62, 0x0d, 0xe5, + 0xe9, 0x0c, 0x3c, 0xb7, 0x33, 0x17, 0x4d, 0x7f, 0x42, 0xba, 0x2b, 0x87, + 0xd6, 0x00, 0x9f, 0x02, 0x7e, 0xe4, 0xeb, 0x56, 0x92, 0x3a, 0xcd, 0xc2, + 0x80, 0xea, 0xb0, 0x30, 0x40, 0x4a, 0xd3, 0x78, 0x23, 0x88, 0xf2, 0x16, + 0x70, 0xb7, 0x31, 0x48, 0x92, 0xd4, 0x90, 0xae, 0x30, 0x82, 0x28, 0xc3, + 0x81, 0xe3, 0x8c, 0x41, 0x4a, 0xce, 0x2b, 0x84, 0x2e, 0x8e, 0xca, 0xa7, + 0x37, 0xa1, 0xab, 0xa8, 0x24, 0x09, 0x2e, 0x22, 0x8c, 0xab, 0x69, 0x74, + 0xb3, 0x3b, 0x53, 0x18, 0x30, 0x1f, 0xb8, 0x24, 0xc1, 0x27, 0xbf, 0x92, + 0x70, 0xe1, 0xf7, 0x57, 0xbe, 0x5e, 0x25, 0xa9, 0xd3, 0xf6, 0x02, 0x76, + 0x33, 0x86, 0xdc, 0x96, 0xe0, 0x0d, 0x34, 0x29, 0x45, 0x07, 0x03, 0xfb, + 0x1a, 0x43, 0x94, 0xcb, 0x09, 0x45, 0xb7, 0x92, 0x24, 0xa9, 0x31, 0x7f, + 0xce, 0xb7, 0x18, 0x43, 0x14, 0xc7, 0x09, 0x48, 0x69, 0x72, 0xb1, 0x46, + 0x75, 0xb8, 0x78, 0x48, 0x92, 0x82, 0x17, 0x09, 0x0b, 0xe5, 0x1b, 0xdd, + 0x9c, 0xce, 0xb6, 0x59, 0xfd, 0xaf, 0xc4, 0x4e, 0x20, 0x56, 0x00, 0xe7, + 0x10, 0xe6, 0xa0, 0x4a, 0x92, 0x3a, 0x6f, 0x8c, 0x11, 0x54, 0xc5, 0x2c, + 0x60, 0xb9, 0x31, 0x48, 0xc9, 0xf1, 0xc2, 0x6d, 0x3c, 0xc7, 0x08, 0x48, + 0x92, 0xd4, 0xb8, 0xde, 0x00, 0xee, 0x31, 0x86, 0x28, 0x67, 0x63, 0xab, + 0x6d, 0x29, 0x45, 0x16, 0x06, 0x54, 0xc7, 0x58, 0xa0, 0xc9, 0x18, 0x24, + 0x09, 0x80, 0x6f, 0x02, 0x73, 0x1a, 0x7c, 0x1f, 0x3b, 0x5d, 0x18, 0xf0, + 0x02, 0x70, 0x63, 0x22, 0x4f, 0xfa, 0x03, 0x42, 0x25, 0xdb, 0x0d, 0xbe, + 0x46, 0x25, 0xa9, 0x62, 0x56, 0x02, 0x7b, 0x02, 0x2a, 0x35, 0xaa, 0x66, + 0xe0, 0x5c, 0x63, 0x88, 0xf2, 0x34, 0xf0, 0x84, 0x31, 0x48, 0x92, 0xd4, + 0xd0, 0x2c, 0x02, 0x8c, 0xd3, 0x0f, 0x38, 0xdd, 0x18, 0xa4, 0xe4, 0xdc, + 0x45, 0xb8, 0x4f, 0xa0, 0x7c, 0xb6, 0x07, 0xf6, 0x33, 0x06, 0x49, 0x02, + 0x60, 0x31, 0xf0, 0xf5, 0x06, 0xdf, 0xc7, 0x4e, 0x17, 0x06, 0x00, 0x7c, + 0x37, 0x81, 0x27, 0xfc, 0x2e, 0x61, 0xb6, 0xd7, 0xed, 0xbe, 0x3e, 0x25, + 0xa9, 0x62, 0x03, 0x80, 0xa3, 0x8c, 0xa1, 0x2a, 0xa6, 0x1b, 0x81, 0x94, + 0x9c, 0x13, 0x81, 0x11, 0xc6, 0x10, 0xe5, 0x12, 0x23, 0x90, 0x24, 0xa9, + 0xe1, 0x5d, 0x8d, 0x5d, 0xcf, 0x62, 0xd9, 0x95, 0x4a, 0x4a, 0xcf, 0x0a, + 0x42, 0x71, 0x80, 0xf2, 0xb3, 0xbb, 0xa8, 0x24, 0xad, 0xf5, 0xbf, 0xc0, + 0x43, 0x0d, 0xba, 0x6f, 0x8b, 0x80, 0xe7, 0x2b, 0x29, 0x0c, 0xb8, 0x0f, + 0xf8, 0x3f, 0xc0, 0x75, 0xc0, 0x2b, 0x75, 0x78, 0xc2, 0x73, 0x80, 0x91, + 0xc0, 0x23, 0xbe, 0x2e, 0x25, 0x29, 0xca, 0x69, 0x40, 0x0f, 0x63, 0xc8, + 0xed, 0x79, 0xe0, 0x25, 0x63, 0x90, 0x92, 0xe3, 0x05, 0xdb, 0x38, 0x2d, + 0xc0, 0x64, 0x63, 0x90, 0x24, 0xa9, 0xe1, 0x2d, 0x04, 0xa6, 0x1a, 0x43, + 0x94, 0x53, 0x81, 0x6d, 0x8c, 0x41, 0x4a, 0x8e, 0xdd, 0x1c, 0xab, 0xc3, + 0xee, 0xa2, 0x92, 0xb4, 0x56, 0x0b, 0x70, 0x31, 0xd0, 0xda, 0x60, 0xfb, + 0xb5, 0x0a, 0x18, 0x07, 0xcc, 0x6e, 0xae, 0xf0, 0x1f, 0x7e, 0x8f, 0x30, + 0x5b, 0x6b, 0x17, 0xc2, 0xca, 0xd3, 0x63, 0x80, 0x2f, 0x02, 0x97, 0x02, + 0xcf, 0x64, 0x81, 0x75, 0x85, 0xd7, 0x08, 0x45, 0x01, 0x4f, 0xfb, 0x9a, + 0x94, 0x24, 0xdf, 0xe8, 0x7b, 0xe2, 0x29, 0x69, 0x3d, 0x7d, 0x80, 0x33, + 0x8d, 0x21, 0xca, 0xdd, 0x84, 0xb9, 0xc3, 0x92, 0x24, 0xa9, 0xf1, 0x39, + 0x4e, 0x20, 0x4e, 0x77, 0xc2, 0x85, 0x54, 0x49, 0x69, 0xb1, 0xd8, 0xa9, + 0x3a, 0x8e, 0x00, 0x86, 0x1a, 0x83, 0x24, 0xfd, 0xd9, 0x83, 0x34, 0x5e, + 0x77, 0xcd, 0x2f, 0x00, 0x33, 0x20, 0xcc, 0x62, 0x8d, 0xb5, 0x08, 0xb8, + 0x17, 0xf8, 0x21, 0x70, 0x01, 0xb0, 0x0f, 0x6b, 0x8b, 0x05, 0x3e, 0x0d, + 0xfc, 0x88, 0xd0, 0x65, 0x60, 0x45, 0xce, 0x27, 0xfb, 0x7c, 0xf6, 0x7f, + 0xbe, 0xe0, 0x6b, 0x51, 0x92, 0xa2, 0x75, 0x23, 0xac, 0x72, 0x50, 0x7e, + 0x16, 0x06, 0x48, 0xe9, 0x39, 0x93, 0x30, 0xff, 0x55, 0x95, 0xf3, 0x06, + 0x81, 0x24, 0x49, 0xe5, 0x71, 0x33, 0xb0, 0xc0, 0x18, 0xa2, 0xd8, 0x9d, + 0x4a, 0x4a, 0xcf, 0x2b, 0xc0, 0x9f, 0x8c, 0x21, 0xb7, 0x66, 0xbc, 0x66, + 0x28, 0x49, 0xeb, 0xfb, 0x0a, 0xa1, 0xe3, 0x56, 0x23, 0xf8, 0x36, 0xf0, + 0xf3, 0xf6, 0xdf, 0xf4, 0xab, 0xe9, 0x03, 0x42, 0xb1, 0xc0, 0x2f, 0x08, + 0xd5, 0x07, 0x47, 0x13, 0x2e, 0xd2, 0xee, 0x0b, 0x5c, 0xc8, 0xda, 0x62, + 0x81, 0x65, 0x9d, 0xfc, 0xff, 0xfe, 0x08, 0x7c, 0x14, 0x57, 0x31, 0x49, + 0x52, 0x5e, 0x47, 0x01, 0x83, 0x8d, 0x21, 0xb7, 0x65, 0xc0, 0x3d, 0xc6, + 0x20, 0x25, 0xc7, 0x0b, 0xb5, 0x71, 0x96, 0x03, 0xd7, 0x18, 0x83, 0x24, + 0x49, 0xa5, 0xb1, 0x12, 0xb8, 0xd6, 0x18, 0xa2, 0x1c, 0x01, 0xec, 0x61, + 0x0c, 0x52, 0x72, 0x5c, 0xbc, 0x51, 0x1d, 0x76, 0x19, 0x95, 0xa4, 0x75, + 0xbd, 0x0d, 0xfc, 0x6b, 0x03, 0xec, 0xc7, 0x14, 0xe0, 0xeb, 0xed, 0x3f, + 0xd1, 0x5c, 0x83, 0x07, 0x5d, 0x45, 0x18, 0x01, 0x70, 0x09, 0x6b, 0x8b, + 0x05, 0xfa, 0xb3, 0x61, 0xb1, 0xc0, 0x92, 0xf5, 0xfe, 0xdd, 0xc3, 0xc0, + 0x49, 0xc0, 0x3c, 0x5f, 0x7f, 0x92, 0xe4, 0x1b, 0xfc, 0x44, 0xdc, 0x41, + 0xe7, 0x8b, 0xdb, 0x24, 0xd5, 0xc6, 0xd0, 0xec, 0x3d, 0xa3, 0x2a, 0x77, + 0x0b, 0xf0, 0xbe, 0x31, 0x48, 0x92, 0x54, 0x2a, 0x76, 0x0b, 0x8a, 0x37, + 0xc1, 0x08, 0xa4, 0xe4, 0x58, 0x18, 0x50, 0x1d, 0xa7, 0x02, 0x5b, 0x18, + 0x83, 0x24, 0xad, 0xe3, 0x87, 0x84, 0xae, 0xf6, 0x45, 0xf5, 0x10, 0xf0, + 0x09, 0xa0, 0xa5, 0xfd, 0x27, 0x9b, 0xeb, 0xf4, 0x64, 0x56, 0xb3, 0x61, + 0xb1, 0xc0, 0x00, 0xc2, 0x38, 0x82, 0xf3, 0x81, 0x7f, 0x02, 0x8e, 0x03, + 0xde, 0xf5, 0x75, 0x27, 0x49, 0x55, 0x31, 0xc6, 0x08, 0x3c, 0xe1, 0x94, + 0x1a, 0xd4, 0x78, 0xc2, 0xdc, 0x57, 0x55, 0xce, 0x1b, 0x03, 0x92, 0x24, + 0x95, 0xcf, 0xdd, 0xc0, 0xab, 0xc6, 0x10, 0x65, 0x12, 0xd0, 0x64, 0x0c, + 0x52, 0x52, 0xee, 0x02, 0x96, 0x1a, 0x43, 0x6e, 0xfd, 0x09, 0xf7, 0x68, + 0x24, 0x49, 0x6b, 0xad, 0x04, 0xbe, 0x54, 0xd0, 0xe7, 0xfe, 0x22, 0x61, + 0xb1, 0xe8, 0x06, 0x3f, 0x23, 0x9b, 0x13, 0x7a, 0x92, 0x6b, 0x80, 0x67, + 0x80, 0xcb, 0x80, 0x6f, 0xb2, 0x61, 0x07, 0x01, 0x49, 0x52, 0x9c, 0x1d, + 0x09, 0x85, 0x57, 0xca, 0xef, 0x56, 0x23, 0x90, 0x92, 0xe3, 0x18, 0x81, + 0x38, 0xef, 0x01, 0x53, 0x8d, 0x41, 0x92, 0xa4, 0xd2, 0x69, 0x05, 0xae, + 0x34, 0x86, 0x28, 0xbb, 0x02, 0x1f, 0x36, 0x06, 0x29, 0x29, 0xcb, 0x81, + 0x3b, 0x8d, 0xa1, 0x2a, 0xec, 0x36, 0x2a, 0x49, 0x1b, 0x9a, 0x4a, 0xe8, + 0xb8, 0x59, 0x24, 0x0b, 0x08, 0x0b, 0x45, 0xdf, 0xe9, 0xe8, 0x0f, 0x9b, + 0x3d, 0xa6, 0x92, 0xd4, 0xf0, 0x4e, 0x37, 0x82, 0xaa, 0xf8, 0x13, 0xf0, + 0x92, 0x31, 0x48, 0x49, 0xd9, 0x1d, 0x38, 0xcc, 0x18, 0xa2, 0x4c, 0x01, + 0x56, 0x18, 0x83, 0x24, 0x49, 0xa5, 0x74, 0xa9, 0x11, 0x44, 0xb3, 0x28, + 0x55, 0x4a, 0x8f, 0xdd, 0x1d, 0xab, 0xe3, 0x0c, 0x23, 0x90, 0xa4, 0x0e, + 0x7d, 0x81, 0xe2, 0x5c, 0x43, 0x5b, 0x09, 0x7c, 0x9c, 0x4d, 0x8c, 0x40, + 0xb0, 0x30, 0x40, 0x92, 0x1a, 0x9f, 0x15, 0xbf, 0x9e, 0x68, 0x4a, 0x8d, + 0xea, 0x7c, 0x23, 0x88, 0xe6, 0x18, 0x01, 0x49, 0x92, 0xca, 0xeb, 0x19, + 0xe0, 0x71, 0x63, 0x88, 0x72, 0x2e, 0xd0, 0xc3, 0x18, 0xa4, 0xa4, 0xdc, + 0x62, 0x04, 0x55, 0xb1, 0x2b, 0xb0, 0x87, 0x31, 0x48, 0xd2, 0x06, 0x5e, + 0x02, 0x7e, 0x58, 0x80, 0xe7, 0xd9, 0x0a, 0xfc, 0x7f, 0xc0, 0xac, 0x4d, + 0xfd, 0x25, 0x0b, 0x03, 0x24, 0xa9, 0xb1, 0xf5, 0x05, 0x46, 0x1a, 0x43, + 0x55, 0x58, 0x18, 0x20, 0xa5, 0xe7, 0x3c, 0x23, 0x88, 0xf2, 0x3a, 0x70, + 0xaf, 0x31, 0x48, 0x92, 0x54, 0x6a, 0x16, 0x09, 0xc6, 0x19, 0x02, 0x9c, + 0x62, 0x0c, 0x52, 0x52, 0x5e, 0x01, 0x5e, 0x30, 0x86, 0xaa, 0x18, 0x63, + 0x04, 0x92, 0xd4, 0xa1, 0x7f, 0x01, 0x66, 0x27, 0xfe, 0x1c, 0xff, 0x81, + 0x4e, 0x74, 0x06, 0xb3, 0x30, 0x40, 0x92, 0x1a, 0xdb, 0xc9, 0x40, 0x2f, + 0x63, 0xc8, 0x6d, 0x19, 0x70, 0xb7, 0x31, 0x48, 0x49, 0xf9, 0x08, 0x61, + 0x94, 0x80, 0x2a, 0x77, 0x39, 0xd0, 0x62, 0x0c, 0x92, 0x24, 0x95, 0xfe, + 0xfd, 0xc0, 0x1a, 0x63, 0x88, 0xe2, 0x38, 0x01, 0x29, 0x3d, 0x2e, 0xe6, + 0xa8, 0x0e, 0xbb, 0x8e, 0x4a, 0x52, 0xc7, 0x16, 0x03, 0x5f, 0x4d, 0xf8, + 0xf9, 0xfd, 0x06, 0xf8, 0xd7, 0xce, 0xfc, 0xc5, 0xee, 0x1e, 0x4b, 0x49, + 0x55, 0xd0, 0x13, 0x18, 0x96, 0x6d, 0x5b, 0xb7, 0xdb, 0xb6, 0x01, 0x06, + 0x00, 0x5b, 0x11, 0x56, 0xae, 0xf7, 0x05, 0xfa, 0x65, 0x9f, 0x6b, 0x6e, + 0xf7, 0x7d, 0xa8, 0x5f, 0xbb, 0xff, 0x6b, 0x09, 0x61, 0x0e, 0xca, 0x72, + 0xc2, 0xcd, 0xd8, 0x95, 0xc0, 0x02, 0xe0, 0x1d, 0x60, 0x3e, 0xf0, 0x76, + 0xf6, 0xf1, 0x2d, 0xe0, 0x45, 0xc2, 0xaa, 0x47, 0x6f, 0x6e, 0xf8, 0x86, + 0xbe, 0xab, 0xcd, 0xca, 0x5e, 0x8f, 0x92, 0xd2, 0xe1, 0x05, 0xd9, 0x78, + 0x57, 0x18, 0x81, 0x24, 0x49, 0xa5, 0x37, 0x1b, 0xb8, 0x0b, 0x38, 0xde, + 0x28, 0x2a, 0xf6, 0x31, 0xc2, 0x75, 0x8d, 0x85, 0x46, 0x21, 0x25, 0x63, + 0x1a, 0x70, 0xb1, 0x31, 0xe4, 0x76, 0x0c, 0xe1, 0x3a, 0xee, 0xfb, 0x46, + 0xb1, 0x51, 0xcd, 0xc0, 0x0e, 0xc0, 0x6e, 0xc0, 0x76, 0x84, 0x6b, 0xe0, + 0xed, 0xaf, 0x89, 0x0f, 0x26, 0x8c, 0x9c, 0xe9, 0x4d, 0x58, 0xac, 0xb5, + 0x05, 0xe1, 0x9a, 0x78, 0x9b, 0xc5, 0xc0, 0xea, 0xec, 0xd7, 0x2d, 0xd9, + 0xcf, 0x92, 0xc5, 0x84, 0x6b, 0xe2, 0x4b, 0xb2, 0xec, 0x17, 0x12, 0xae, + 0x81, 0xbf, 0xc3, 0xba, 0xd7, 0xc4, 0xe7, 0x52, 0x9c, 0x39, 0xe7, 0x52, + 0x23, 0xba, 0x14, 0xf8, 0x14, 0x70, 0x74, 0x62, 0xcf, 0xeb, 0x2e, 0xe0, + 0x33, 0x9d, 0xfd, 0xcb, 0x16, 0x06, 0x48, 0xea, 0x8c, 0x3e, 0x84, 0x39, + 0x53, 0xbb, 0x01, 0xbb, 0x64, 0x6f, 0x7e, 0xb6, 0xcf, 0xde, 0xfc, 0x6c, + 0x9f, 0xbd, 0xf9, 0xa9, 0x96, 0x81, 0x15, 0xfe, 0xfd, 0x15, 0xc0, 0xcb, + 0x84, 0x22, 0x81, 0xc7, 0x81, 0x07, 0x81, 0x87, 0x80, 0x79, 0x1e, 0x36, + 0x9a, 0x80, 0x51, 0xc6, 0x50, 0xb5, 0x13, 0x4c, 0x49, 0xe9, 0xe8, 0x01, + 0x8c, 0x33, 0x86, 0x28, 0x7f, 0x04, 0x9e, 0x32, 0x06, 0x49, 0x92, 0x44, + 0xe8, 0x1a, 0x60, 0x61, 0x40, 0xe5, 0x7a, 0x01, 0x67, 0x02, 0xbf, 0x35, + 0x0a, 0x29, 0x19, 0x77, 0x02, 0x4b, 0x09, 0xd7, 0x30, 0x95, 0xef, 0x5c, + 0xfb, 0x64, 0xe0, 0x6a, 0xa3, 0x00, 0x60, 0x28, 0xf0, 0x61, 0xe0, 0x70, + 0xe0, 0x00, 0x42, 0xd7, 0xc2, 0x9d, 0x09, 0x8b, 0xe4, 0x62, 0x0d, 0xcc, + 0xf9, 0x9c, 0xe6, 0x02, 0x6f, 0x00, 0x6f, 0x12, 0x16, 0xcc, 0xbd, 0xc1, + 0xda, 0x6b, 0xe3, 0x2f, 0xe2, 0xc2, 0x26, 0xa9, 0x2b, 0xb5, 0x02, 0x5f, + 0x00, 0x1e, 0x26, 0x9d, 0x8e, 0xfc, 0xcf, 0x66, 0xef, 0x4b, 0x57, 0x76, + 0xf6, 0x1f, 0x58, 0x18, 0x20, 0xa9, 0xbd, 0x1d, 0x80, 0xbd, 0x80, 0xfd, + 0x80, 0x3d, 0x09, 0x85, 0x00, 0xbb, 0x01, 0x23, 0x12, 0x7e, 0xce, 0x3d, + 0xb3, 0xe7, 0xbc, 0x17, 0x30, 0xb6, 0xdd, 0xe7, 0x5f, 0x06, 0x1e, 0x00, + 0x6e, 0x21, 0xdc, 0xd4, 0x2d, 0x63, 0xa5, 0xeb, 0xa1, 0xc0, 0x70, 0x5f, + 0xd6, 0x55, 0x71, 0xab, 0x11, 0x48, 0x49, 0x39, 0x8d, 0x50, 0x89, 0xaf, + 0xca, 0x39, 0x4f, 0x58, 0x92, 0x24, 0xb5, 0xb9, 0x06, 0xf8, 0x09, 0x61, + 0x55, 0xa3, 0x2a, 0x33, 0x11, 0x0b, 0x03, 0xa4, 0x94, 0x2c, 0x27, 0xac, + 0x98, 0x74, 0x81, 0x4c, 0x7e, 0xa3, 0x29, 0x6f, 0x61, 0xc0, 0x40, 0xe0, + 0xd4, 0x2c, 0x83, 0xa3, 0x08, 0x45, 0x00, 0xa9, 0x69, 0xeb, 0xda, 0x7b, + 0xd8, 0x46, 0xfe, 0xbc, 0xad, 0xcb, 0xee, 0x0b, 0xc0, 0x73, 0x84, 0x85, + 0x01, 0xcf, 0x10, 0x0a, 0x08, 0x24, 0xe5, 0xf7, 0x68, 0xf6, 0x1e, 0xf0, + 0x2f, 0x12, 0x78, 0x2e, 0xf3, 0x09, 0xf7, 0xc4, 0xde, 0xab, 0xe4, 0x1f, + 0x59, 0x18, 0x20, 0x95, 0x53, 0x0f, 0xc2, 0xcd, 0xff, 0xc3, 0x80, 0x43, + 0xb2, 0x5f, 0xef, 0x0d, 0xf4, 0x6f, 0xa0, 0x7d, 0xdc, 0x25, 0xdb, 0x26, + 0x02, 0xab, 0x08, 0xf3, 0xe1, 0x6f, 0x20, 0xb4, 0x4f, 0x7e, 0xb7, 0x24, + 0xc7, 0x79, 0x8c, 0x2f, 0xf5, 0xaa, 0xf8, 0x53, 0xf6, 0x86, 0x5a, 0x52, + 0x3a, 0x1c, 0x23, 0x10, 0xa7, 0x05, 0xb8, 0xca, 0x18, 0x24, 0x49, 0x52, + 0x66, 0x11, 0x70, 0x33, 0x76, 0x62, 0x8a, 0x71, 0x3c, 0xa1, 0x8b, 0xe2, + 0x9b, 0x46, 0x21, 0x25, 0x63, 0x1a, 0x16, 0x06, 0x54, 0xc3, 0x68, 0xa0, + 0x1b, 0xb0, 0xa6, 0x24, 0xfb, 0xbb, 0x35, 0x30, 0x01, 0x38, 0x03, 0xf8, + 0x28, 0xc5, 0xbf, 0x67, 0x36, 0x22, 0xdb, 0x46, 0xae, 0xf7, 0xf9, 0x85, + 0x84, 0x95, 0xc5, 0x4f, 0x02, 0x7f, 0x20, 0xac, 0x78, 0x7e, 0x92, 0x70, + 0xdd, 0x5c, 0x52, 0x65, 0xbe, 0x0a, 0x9c, 0x45, 0x18, 0xbd, 0x52, 0x2f, + 0xcb, 0x80, 0xd3, 0x81, 0x97, 0x2a, 0xfd, 0x87, 0x16, 0x06, 0x48, 0x8d, + 0xaf, 0x1b, 0x61, 0xf5, 0xff, 0x21, 0xed, 0xb6, 0x83, 0x29, 0xd7, 0x8a, + 0x80, 0x1e, 0xc0, 0x09, 0xd9, 0xf6, 0x9f, 0x84, 0xaa, 0xd7, 0xef, 0x01, + 0x8f, 0x35, 0xf8, 0x7e, 0x5b, 0x18, 0x50, 0xbd, 0x13, 0x4b, 0x49, 0xe9, + 0xe8, 0xef, 0xf7, 0xb7, 0x68, 0x77, 0xe0, 0xc5, 0x6b, 0x49, 0x92, 0xb4, + 0xae, 0xcb, 0xb1, 0x30, 0x20, 0x46, 0x33, 0x70, 0x1e, 0xf0, 0x5d, 0xa3, + 0x90, 0x92, 0x71, 0x33, 0xf0, 0x23, 0x63, 0xc8, 0x6d, 0x30, 0x70, 0x04, + 0x70, 0x5f, 0x83, 0xef, 0xe7, 0x81, 0xc0, 0x5f, 0x03, 0x93, 0x28, 0xc7, + 0x08, 0x8a, 0x01, 0xd9, 0x71, 0x3d, 0x82, 0x30, 0x23, 0x1d, 0x42, 0x51, + 0xc0, 0x0b, 0x84, 0x42, 0x81, 0x3f, 0x00, 0xf7, 0x12, 0xae, 0x97, 0xaf, + 0xf1, 0xcb, 0x40, 0xda, 0xa4, 0x79, 0xc0, 0xb7, 0x80, 0xff, 0xaa, 0xd3, + 0xe3, 0xb7, 0x10, 0x16, 0x4d, 0xfd, 0x3e, 0xe6, 0x1f, 0x5b, 0x18, 0x20, + 0x35, 0x9e, 0x11, 0x84, 0xea, 0xc6, 0x43, 0x09, 0x1d, 0x01, 0x0e, 0x02, + 0xb6, 0x34, 0x96, 0x3f, 0xeb, 0x09, 0x9c, 0x9f, 0x6d, 0x77, 0x02, 0x7f, + 0x9b, 0xbd, 0xf1, 0x69, 0x34, 0xc3, 0xb3, 0x63, 0xaf, 0xfc, 0x2c, 0x0c, + 0x90, 0xd2, 0x32, 0x0e, 0xdb, 0xdd, 0xc6, 0x72, 0x8c, 0x80, 0x24, 0x49, + 0x5a, 0xdf, 0x54, 0x42, 0x57, 0xbd, 0xc1, 0x46, 0x51, 0xb1, 0x89, 0x58, + 0x18, 0x20, 0xa5, 0xe4, 0x15, 0xc2, 0x4d, 0xce, 0xdd, 0x8d, 0x22, 0xb7, + 0xd1, 0x34, 0x6e, 0x61, 0xc0, 0xa1, 0xd9, 0xf7, 0xee, 0x91, 0x1e, 0x66, + 0x7a, 0x10, 0xba, 0x08, 0xef, 0x4d, 0xb8, 0x56, 0x0e, 0xf0, 0x01, 0xa1, + 0x55, 0xfa, 0x23, 0xd9, 0x76, 0x37, 0x61, 0x3c, 0x81, 0xa4, 0x75, 0xfd, + 0x08, 0xf8, 0x24, 0xb0, 0x6f, 0x1d, 0x1e, 0xfb, 0xff, 0x00, 0xd7, 0xc7, + 0xfe, 0x63, 0x0b, 0x03, 0xa4, 0xe2, 0x1b, 0x9a, 0xbd, 0x91, 0x39, 0x1a, + 0xf8, 0x08, 0xa1, 0x1b, 0x40, 0x93, 0xb1, 0x74, 0xca, 0xb1, 0x84, 0xb6, + 0x49, 0x97, 0x01, 0x5f, 0x06, 0xde, 0x6e, 0xa0, 0x7d, 0x1b, 0xe3, 0xeb, + 0xa0, 0x2a, 0x96, 0x65, 0x6f, 0x80, 0x25, 0xa5, 0xc3, 0x31, 0x02, 0x71, + 0x96, 0xe7, 0x39, 0x69, 0x90, 0x24, 0x49, 0x0d, 0x6b, 0x15, 0x30, 0x05, + 0xf8, 0x8c, 0x51, 0x54, 0xec, 0x40, 0xc2, 0x68, 0xc6, 0x27, 0x8d, 0x42, + 0x4a, 0xc6, 0x34, 0x2c, 0x0c, 0xa8, 0x86, 0x31, 0xc0, 0xd7, 0x1a, 0x6c, + 0x9f, 0x06, 0x03, 0xdf, 0x00, 0x3e, 0x47, 0xe8, 0xb0, 0xab, 0x8e, 0x6d, + 0x49, 0x58, 0x74, 0xf8, 0xd1, 0x76, 0x9f, 0x7b, 0x99, 0x50, 0x28, 0x72, + 0x2f, 0xa1, 0xa0, 0xd0, 0x4e, 0x84, 0x12, 0xac, 0x26, 0x14, 0xd4, 0x9c, + 0x0e, 0x0c, 0x21, 0x2c, 0xd4, 0xdc, 0x26, 0xdb, 0xb6, 0x05, 0xfa, 0x76, + 0xd1, 0xe3, 0xfe, 0x04, 0xf8, 0x41, 0x9e, 0xff, 0xc0, 0xc2, 0x00, 0xa9, + 0x98, 0x6f, 0x62, 0x46, 0x02, 0xc7, 0x65, 0xdb, 0xde, 0x78, 0x03, 0x38, + 0x8f, 0xa6, 0xec, 0x1b, 0xf8, 0x58, 0xc2, 0x85, 0x90, 0x46, 0x99, 0xbd, + 0x3c, 0xda, 0x43, 0x5b, 0x15, 0xb3, 0x08, 0xc5, 0x01, 0x92, 0xd2, 0x30, + 0x62, 0xbd, 0x93, 0x53, 0x75, 0xde, 0x0d, 0x84, 0x99, 0x82, 0x92, 0x24, + 0x49, 0xeb, 0xbb, 0x1c, 0x0b, 0x03, 0x62, 0x4d, 0x20, 0xcc, 0x99, 0x95, + 0x94, 0x86, 0x69, 0xc0, 0xc5, 0xc6, 0x90, 0xdb, 0x7e, 0xc0, 0x4e, 0xc0, + 0xab, 0x0d, 0xb2, 0x3f, 0xe3, 0x81, 0x9f, 0x51, 0xdf, 0x79, 0xe0, 0x45, + 0xb6, 0x4b, 0xb6, 0x9d, 0x0f, 0xb4, 0x02, 0xcf, 0x10, 0x46, 0x15, 0xce, + 0x02, 0xee, 0x02, 0x16, 0x18, 0x91, 0x4a, 0xea, 0x31, 0x36, 0x3e, 0xae, + 0xba, 0x17, 0x30, 0x88, 0x50, 0x24, 0x30, 0x1c, 0x18, 0xd8, 0xee, 0xd7, + 0xed, 0x3f, 0xb7, 0x1d, 0x61, 0x6c, 0x6a, 0x67, 0x4c, 0x05, 0xfe, 0x26, + 0xef, 0x93, 0xb6, 0x30, 0x40, 0x4a, 0x5f, 0x37, 0xe0, 0x28, 0x42, 0xe5, + 0xd1, 0x89, 0xc0, 0xfe, 0x84, 0x59, 0x76, 0xaa, 0xae, 0xad, 0x80, 0x2b, + 0x81, 0x23, 0x81, 0x2f, 0x11, 0xe6, 0xb4, 0x14, 0x55, 0x4f, 0xe0, 0x78, + 0x0f, 0x69, 0xd5, 0x4e, 0x28, 0x25, 0xa5, 0x63, 0x12, 0x56, 0xf6, 0xc7, + 0x72, 0x8c, 0x80, 0x24, 0x49, 0xda, 0x98, 0xfb, 0x08, 0x2d, 0xb8, 0x77, + 0x36, 0x8a, 0x8a, 0x9d, 0x0f, 0x7c, 0x9d, 0x62, 0x5f, 0x43, 0x90, 0x1a, + 0xc9, 0x9d, 0xc0, 0x52, 0xca, 0x31, 0x33, 0xbe, 0xab, 0x8d, 0x06, 0x7e, + 0x5a, 0xf0, 0x7d, 0xe8, 0x06, 0x7c, 0x1f, 0xb8, 0xc8, 0xc3, 0x59, 0x35, + 0x4d, 0xc0, 0x3e, 0xd9, 0x76, 0x51, 0xf6, 0xf3, 0xef, 0x71, 0xe0, 0x36, + 0xe0, 0x46, 0xe0, 0x01, 0x60, 0x8d, 0x31, 0x49, 0x2c, 0x07, 0x66, 0x67, + 0xdb, 0xe6, 0x46, 0x59, 0x0f, 0x20, 0x14, 0x0b, 0x0c, 0xcd, 0x3e, 0xb6, + 0xef, 0x3c, 0x30, 0x14, 0x18, 0x46, 0x58, 0xec, 0x73, 0x2e, 0xa1, 0x53, + 0x41, 0x2e, 0x16, 0x06, 0x48, 0x69, 0xea, 0x0d, 0x9c, 0x04, 0x9c, 0x41, + 0x58, 0xc9, 0x3e, 0xc4, 0x48, 0x6a, 0xe6, 0x0b, 0x84, 0x6a, 0xad, 0x09, + 0xd5, 0xf8, 0x26, 0x5b, 0x27, 0x27, 0x10, 0xda, 0x3e, 0x29, 0xbf, 0x5b, + 0x8d, 0x40, 0x4a, 0x8a, 0x63, 0x04, 0xe2, 0x2c, 0x00, 0xa6, 0x1b, 0x83, + 0x24, 0x49, 0xda, 0x88, 0x56, 0xe0, 0x0a, 0xc2, 0x0d, 0x6e, 0x55, 0xa6, + 0xad, 0xa3, 0xd5, 0x9d, 0x46, 0x21, 0x25, 0x61, 0x39, 0x61, 0x05, 0xf3, + 0x28, 0xa3, 0xc8, 0xad, 0xe8, 0x85, 0x01, 0x3d, 0xb2, 0x9f, 0x6d, 0x1f, + 0xf7, 0x50, 0x76, 0xa9, 0x66, 0xe0, 0xa0, 0x6c, 0xfb, 0x32, 0x30, 0x1f, + 0xb8, 0x89, 0xd0, 0xb5, 0x70, 0x26, 0x76, 0x62, 0x95, 0x3a, 0x63, 0x61, + 0xb6, 0x3d, 0x57, 0xab, 0x2f, 0x5a, 0x49, 0x69, 0xd8, 0x1a, 0xf8, 0x04, + 0x61, 0xfe, 0xef, 0x3b, 0xd9, 0x0f, 0xcf, 0xbf, 0xc0, 0xa2, 0x80, 0x7a, + 0x18, 0x07, 0xfc, 0x9a, 0xe2, 0x8e, 0x68, 0x70, 0x8c, 0x40, 0x75, 0xbc, + 0x00, 0xbc, 0x68, 0x0c, 0x52, 0x32, 0x0e, 0x20, 0xb4, 0x33, 0x54, 0xe5, + 0xae, 0x04, 0x56, 0x1a, 0x83, 0x24, 0x49, 0xda, 0x84, 0xcb, 0x8c, 0x20, + 0x9a, 0xc5, 0xab, 0x52, 0x5a, 0xec, 0xfe, 0x58, 0x1d, 0xc7, 0x53, 0xdc, + 0x85, 0x47, 0xcd, 0xc0, 0x6f, 0xb1, 0x28, 0xa0, 0x1e, 0x86, 0x10, 0xee, + 0x69, 0xdc, 0x40, 0xb8, 0xc7, 0x71, 0x1d, 0x70, 0x21, 0x61, 0x3c, 0xb2, + 0xa4, 0x44, 0xbe, 0x41, 0x4a, 0xaa, 0x9f, 0xc1, 0xc0, 0x67, 0x09, 0x95, + 0xe5, 0x73, 0x81, 0xdf, 0x00, 0x1f, 0xc3, 0x76, 0x57, 0x29, 0x38, 0x1f, + 0xf8, 0xbb, 0x82, 0x3e, 0xf7, 0xd3, 0x3c, 0x7c, 0x9e, 0x48, 0x4a, 0x0d, + 0xc8, 0x0b, 0xae, 0xf1, 0x1c, 0x23, 0x20, 0x49, 0x92, 0x36, 0xe7, 0x39, + 0xe0, 0x51, 0x63, 0x88, 0x72, 0x0e, 0xa1, 0xf3, 0xa3, 0xa4, 0x34, 0xdc, + 0x62, 0x04, 0x55, 0xd1, 0x93, 0xd0, 0x95, 0xb4, 0x88, 0xbe, 0x4a, 0xe8, + 0x06, 0xab, 0xfa, 0xea, 0x03, 0x9c, 0x49, 0x28, 0xd2, 0x78, 0x1b, 0x98, + 0x45, 0xb8, 0x17, 0x62, 0x91, 0x80, 0x54, 0x47, 0x16, 0x06, 0x48, 0xb5, + 0xd7, 0x2b, 0x3b, 0x69, 0xbc, 0x11, 0x98, 0x43, 0x68, 0xc9, 0x34, 0x12, + 0x67, 0x26, 0xa7, 0xe8, 0x5f, 0x80, 0xc3, 0x0a, 0xf6, 0x9c, 0xf7, 0x07, + 0x76, 0xf2, 0xd0, 0x55, 0x85, 0x85, 0x01, 0x52, 0x5a, 0xef, 0x59, 0xc7, + 0x1b, 0x43, 0x94, 0xd7, 0x08, 0x33, 0xfe, 0x24, 0x49, 0x92, 0x36, 0xc7, + 0x62, 0xc2, 0x38, 0xfd, 0xb1, 0x73, 0x9f, 0x94, 0x92, 0x97, 0xb1, 0x03, + 0x64, 0xb5, 0x14, 0xf1, 0x7b, 0xdb, 0x87, 0x81, 0x6f, 0x7a, 0xe8, 0x92, + 0xd3, 0x0d, 0x38, 0x96, 0x70, 0x2f, 0x64, 0x36, 0xa1, 0xa3, 0xc0, 0x38, + 0xc2, 0xbd, 0x12, 0x49, 0x35, 0x64, 0x61, 0x80, 0x54, 0x3b, 0x7b, 0x01, + 0xdf, 0xcf, 0x7e, 0xf0, 0x5d, 0x05, 0x8c, 0x25, 0xcc, 0x3a, 0x52, 0xba, + 0xba, 0x03, 0x3f, 0x2f, 0xd8, 0xf7, 0xca, 0x31, 0x1e, 0xb6, 0xaa, 0x58, + 0x06, 0xdc, 0x6d, 0x0c, 0x52, 0x32, 0x8e, 0x03, 0xb6, 0x33, 0x86, 0x28, + 0x97, 0x10, 0xe6, 0x06, 0x4b, 0x92, 0x24, 0x6d, 0xce, 0x64, 0x60, 0x8d, + 0x31, 0x44, 0xb1, 0xbb, 0x95, 0xf4, 0xff, 0xb3, 0x77, 0xdf, 0xe1, 0x56, + 0x95, 0x67, 0xde, 0xc7, 0xbf, 0x87, 0xde, 0x14, 0x94, 0x80, 0x8a, 0x0a, + 0x2a, 0x16, 0xb0, 0x61, 0x21, 0x16, 0xc4, 0x68, 0xec, 0xc0, 0x01, 0x93, + 0x18, 0x35, 0x8a, 0x31, 0x93, 0xc9, 0x44, 0x33, 0xc9, 0x24, 0x31, 0x93, + 0x3a, 0x93, 0x64, 0xa2, 0x99, 0x64, 0x62, 0x9a, 0xf3, 0xa6, 0xc7, 0x94, + 0x49, 0x8c, 0x22, 0xc6, 0x12, 0x35, 0x16, 0x04, 0xb1, 0x77, 0xb1, 0x77, + 0x45, 0xb1, 0xa0, 0x80, 0xa0, 0x22, 0x48, 0x93, 0x76, 0xde, 0x3f, 0x9e, + 0x75, 0x86, 0x23, 0x63, 0x61, 0xaf, 0xf3, 0x9c, 0xb5, 0x9f, 0xb5, 0xf6, + 0xf7, 0x73, 0x5d, 0xeb, 0x3a, 0x80, 0xa8, 0x6b, 0xff, 0x9e, 0x7d, 0xf6, + 0x59, 0xe5, 0x5e, 0xf7, 0x9d, 0x16, 0x1f, 0xf6, 0x88, 0xa3, 0x99, 0x72, + 0x8d, 0x5a, 0xed, 0x44, 0xb8, 0x96, 0xeb, 0x03, 0x78, 0x69, 0xeb, 0x06, + 0x4c, 0x00, 0x2e, 0x04, 0x5e, 0x02, 0xce, 0x02, 0x86, 0x19, 0x8b, 0x54, + 0xdc, 0x07, 0xa5, 0xa4, 0x8e, 0xfd, 0x1e, 0x3b, 0x86, 0x30, 0x2a, 0xe0, + 0x31, 0xe0, 0x34, 0x60, 0x13, 0x63, 0x29, 0x95, 0xbd, 0x81, 0xa3, 0x4b, + 0xb4, 0xbf, 0x3e, 0xa5, 0x10, 0xc7, 0x8d, 0xc0, 0x32, 0x63, 0x90, 0x92, + 0xe1, 0x85, 0xd6, 0xfc, 0x2e, 0x30, 0x02, 0x49, 0x92, 0xb4, 0x81, 0xe6, + 0x02, 0xd7, 0x1b, 0x43, 0x2e, 0x63, 0xb1, 0x35, 0xb2, 0x94, 0x12, 0x0b, + 0x03, 0xe2, 0xd8, 0x02, 0xd8, 0xab, 0x44, 0xfb, 0xfb, 0x11, 0x60, 0x4f, + 0x97, 0xad, 0x54, 0x36, 0x05, 0xbe, 0x44, 0xb8, 0x77, 0x72, 0x43, 0xb6, + 0x86, 0xde, 0xb7, 0x94, 0x3a, 0x90, 0xdf, 0x60, 0x52, 0xc7, 0xe8, 0x05, + 0x7c, 0x0e, 0x78, 0x0a, 0xb8, 0x98, 0x30, 0x2a, 0x40, 0xe5, 0xf5, 0xe5, + 0x92, 0xec, 0x67, 0x7f, 0x42, 0xbb, 0x2c, 0x79, 0x02, 0x29, 0x55, 0x49, + 0x8f, 0xec, 0xc4, 0x50, 0xb5, 0xbb, 0x27, 0x3b, 0xb9, 0x96, 0x24, 0x49, + 0xda, 0x50, 0x8e, 0x13, 0xc8, 0xa7, 0x1b, 0xa1, 0x25, 0xb2, 0xa4, 0x34, + 0xdc, 0x88, 0x0f, 0x7c, 0xc4, 0x52, 0xa6, 0xee, 0xa4, 0x5f, 0x72, 0xb9, + 0x4a, 0xab, 0x89, 0x30, 0x6a, 0xe0, 0x12, 0xe0, 0x49, 0xe0, 0x9f, 0x09, + 0xf7, 0x58, 0x24, 0x45, 0x66, 0x61, 0x80, 0x14, 0x57, 0x57, 0xe0, 0x14, + 0xc2, 0x1c, 0xab, 0x5f, 0x02, 0x43, 0x8d, 0xa4, 0x12, 0x46, 0x01, 0xdb, + 0x96, 0x60, 0x3f, 0xc7, 0x61, 0xab, 0xac, 0x58, 0x2c, 0x0c, 0x90, 0xd2, + 0x71, 0x34, 0xd0, 0xd7, 0x18, 0x72, 0xf1, 0xc2, 0xbe, 0x24, 0x49, 0xaa, + 0xd5, 0xc5, 0xc0, 0x52, 0x63, 0xc8, 0xc5, 0x2e, 0x57, 0x52, 0x3a, 0x1c, + 0x11, 0x19, 0x4f, 0x59, 0xba, 0x93, 0x0e, 0x05, 0xf6, 0x77, 0xb9, 0x2a, + 0x61, 0x7b, 0xe0, 0xd7, 0xc0, 0x73, 0xc0, 0xd7, 0x81, 0xee, 0x46, 0x22, + 0xc5, 0x63, 0x61, 0x80, 0x14, 0xcf, 0xb1, 0x84, 0x0e, 0x01, 0x67, 0x13, + 0xda, 0x2c, 0xa9, 0x3a, 0x9a, 0x28, 0x47, 0x75, 0xac, 0x63, 0x04, 0xe2, + 0x98, 0x45, 0x28, 0xee, 0x91, 0x94, 0x06, 0x2f, 0xb0, 0xe6, 0xb3, 0x06, + 0xc7, 0x08, 0x48, 0x92, 0xa4, 0xda, 0x2d, 0x05, 0xae, 0x30, 0x86, 0x5c, + 0x0e, 0x00, 0xb6, 0x33, 0x06, 0x29, 0x19, 0x3e, 0xf4, 0x11, 0xc7, 0x48, + 0x60, 0x50, 0x09, 0xf6, 0xb3, 0x99, 0x70, 0x0d, 0x57, 0xd5, 0x31, 0x00, + 0x38, 0x13, 0x78, 0x9c, 0x30, 0xae, 0x59, 0x52, 0x04, 0x16, 0x06, 0x48, + 0xed, 0x37, 0x38, 0x3b, 0x69, 0xbe, 0x10, 0xd8, 0xc6, 0x38, 0x2a, 0xeb, + 0xc0, 0xc4, 0xf7, 0xaf, 0x2b, 0x70, 0x84, 0xcb, 0x14, 0xc5, 0x55, 0x46, + 0x20, 0x25, 0x63, 0x53, 0xe0, 0x48, 0x63, 0xc8, 0x65, 0x3a, 0x30, 0xcf, + 0x18, 0x24, 0x49, 0x52, 0x0e, 0x76, 0x1d, 0xca, 0xa7, 0x09, 0x38, 0xd1, + 0x18, 0xa4, 0x64, 0x58, 0x18, 0x10, 0xef, 0xb3, 0x6d, 0x4c, 0x09, 0xf6, + 0xf3, 0x40, 0x97, 0xaa, 0xb2, 0xb6, 0x25, 0x74, 0x34, 0xba, 0x1c, 0xd8, + 0xca, 0x38, 0xa4, 0xf6, 0xb1, 0x30, 0x40, 0x6a, 0x9f, 0x03, 0x80, 0x19, + 0x94, 0x6b, 0xd6, 0x92, 0xf2, 0xd9, 0xa5, 0x04, 0x07, 0xbf, 0xfd, 0x5c, + 0x26, 0x4f, 0x1c, 0xa5, 0x8a, 0x39, 0x81, 0x30, 0xaf, 0x55, 0xb5, 0xf3, + 0x82, 0xbe, 0x24, 0x49, 0xca, 0xeb, 0x1a, 0xe0, 0x65, 0x63, 0xc8, 0xe5, + 0x64, 0x23, 0x90, 0x92, 0x31, 0x13, 0x3b, 0x42, 0xc6, 0x52, 0x86, 0x2e, + 0xa5, 0xbb, 0xba, 0x4c, 0x95, 0x37, 0x01, 0x78, 0x00, 0xf8, 0xa0, 0x51, + 0x48, 0xf9, 0x59, 0x18, 0x20, 0xb5, 0xef, 0x80, 0xe8, 0x06, 0x60, 0xa0, + 0x51, 0x34, 0x84, 0x6d, 0x49, 0xbb, 0x1d, 0x95, 0x63, 0x04, 0xe2, 0x58, + 0x01, 0xdc, 0x64, 0x0c, 0x52, 0x32, 0x1c, 0x23, 0x90, 0xcf, 0x32, 0xe0, + 0x52, 0x63, 0x90, 0x24, 0x49, 0x39, 0xad, 0x26, 0x3c, 0x99, 0xa7, 0xda, + 0xed, 0x40, 0x68, 0xbb, 0x2d, 0x29, 0x0d, 0xd7, 0x18, 0x41, 0x14, 0x47, + 0x00, 0x3d, 0x12, 0xde, 0xbf, 0x26, 0xec, 0xe4, 0xdb, 0x28, 0xfa, 0x67, + 0xdf, 0xd7, 0x63, 0x8c, 0x42, 0xca, 0xc7, 0xc2, 0x00, 0x29, 0x9f, 0xad, + 0x81, 0xf3, 0x08, 0xed, 0xdb, 0xd5, 0x18, 0x7a, 0x26, 0x7e, 0x00, 0x6c, + 0xd7, 0x8a, 0x38, 0x6e, 0x24, 0xdc, 0x50, 0x93, 0x54, 0x7f, 0x43, 0x81, + 0xfd, 0x8c, 0x21, 0x97, 0xcb, 0x80, 0x25, 0xc6, 0x20, 0x49, 0x92, 0xda, + 0xc1, 0xee, 0x43, 0xf9, 0x59, 0xdc, 0x2a, 0xa5, 0xc3, 0xae, 0x90, 0x71, + 0xf4, 0x06, 0x0e, 0x4a, 0x78, 0xff, 0x7a, 0x02, 0xdd, 0x5d, 0xa6, 0x86, + 0xd1, 0x2d, 0x3b, 0x4e, 0xd9, 0xd2, 0x28, 0xa4, 0xda, 0x59, 0x18, 0x20, + 0xe5, 0xf3, 0x61, 0x6c, 0xdb, 0xde, 0x88, 0x7a, 0x26, 0xba, 0x5f, 0x43, + 0x81, 0x1d, 0x5d, 0x1e, 0x4f, 0x18, 0xa5, 0x8a, 0x39, 0x89, 0xb4, 0x3b, + 0xb5, 0xa4, 0xcc, 0x0b, 0xf9, 0x92, 0x24, 0xa9, 0xbd, 0xee, 0x00, 0x9e, + 0x32, 0x86, 0x5c, 0x4e, 0x04, 0xba, 0x18, 0x83, 0x94, 0x84, 0x1b, 0xf0, + 0x01, 0x90, 0x58, 0x52, 0xee, 0x56, 0xda, 0xd3, 0xe5, 0x69, 0x38, 0x9b, + 0x00, 0x1f, 0x31, 0x06, 0xa9, 0x76, 0x16, 0x06, 0x48, 0xf9, 0x3c, 0x67, + 0x04, 0x0d, 0x69, 0x65, 0xa2, 0xfb, 0x75, 0xb4, 0x4b, 0x13, 0xcd, 0xd5, + 0x46, 0x20, 0x25, 0xe3, 0x04, 0x23, 0xc8, 0x65, 0x01, 0x70, 0xad, 0x31, + 0x48, 0x92, 0xa4, 0x08, 0x2e, 0x30, 0x82, 0x5c, 0x06, 0x02, 0x87, 0x19, + 0x83, 0x94, 0x84, 0xe5, 0xc0, 0xcd, 0xc6, 0x10, 0xc5, 0x84, 0x84, 0xf7, + 0x6d, 0xa5, 0xcb, 0xd3, 0x90, 0x9e, 0x35, 0x02, 0xa9, 0x76, 0x16, 0x06, + 0x48, 0xf9, 0x5c, 0x01, 0xfc, 0xcd, 0x18, 0x1a, 0xca, 0x6a, 0x60, 0x69, + 0xa2, 0xfb, 0x36, 0xce, 0xe5, 0x89, 0x62, 0x16, 0xf0, 0xb4, 0x31, 0x48, + 0x49, 0xd8, 0x17, 0xd8, 0xc9, 0x18, 0x72, 0xb9, 0x00, 0x58, 0x65, 0x0c, + 0x92, 0x24, 0x29, 0x82, 0x73, 0x81, 0x16, 0x63, 0xc8, 0xc5, 0x71, 0x02, + 0x52, 0x3a, 0xec, 0x0e, 0x19, 0xc7, 0x10, 0x60, 0x97, 0x44, 0xf7, 0x6d, + 0x29, 0xb0, 0xd6, 0x25, 0x6a, 0x28, 0x17, 0x01, 0x57, 0x19, 0x83, 0x54, + 0x3b, 0x0b, 0x03, 0xa4, 0x7c, 0x5a, 0x80, 0x4f, 0x00, 0xd7, 0x18, 0x45, + 0xc3, 0x98, 0x4d, 0x9a, 0x17, 0x44, 0x36, 0x06, 0x46, 0xbb, 0x3c, 0x51, + 0x78, 0x30, 0x29, 0xa5, 0xc3, 0x0b, 0xa9, 0xf9, 0x39, 0x46, 0x40, 0x92, + 0x24, 0xc5, 0xf2, 0x34, 0x30, 0xc3, 0x18, 0x72, 0xf9, 0x30, 0xd0, 0xc7, + 0x18, 0xa4, 0x24, 0x58, 0x18, 0x10, 0x4f, 0x73, 0xa2, 0xfb, 0xb5, 0x16, + 0x78, 0xd1, 0xe5, 0x69, 0x18, 0x57, 0x01, 0x9f, 0xc4, 0xe2, 0x45, 0x29, + 0x17, 0x0b, 0x03, 0xa4, 0xfc, 0x96, 0x64, 0x07, 0x43, 0x67, 0x02, 0x6b, + 0x8c, 0xa3, 0xf2, 0x9e, 0x4c, 0x74, 0xbf, 0x8e, 0x02, 0xba, 0xb9, 0x3c, + 0x9e, 0x28, 0x4a, 0x15, 0xd2, 0x05, 0x38, 0xce, 0x18, 0x72, 0x79, 0x06, + 0xb8, 0xdb, 0x18, 0x24, 0x49, 0x52, 0x44, 0x16, 0x1d, 0xe6, 0xd3, 0x1b, + 0xf8, 0x90, 0x31, 0x48, 0x49, 0x98, 0x89, 0x1d, 0x22, 0x63, 0x49, 0xb9, + 0x6b, 0xe9, 0x93, 0x2e, 0x4f, 0xe5, 0xad, 0x01, 0xbe, 0x47, 0x18, 0x6b, + 0xb1, 0xd4, 0x38, 0xa4, 0x7c, 0x2c, 0x0c, 0x90, 0xda, 0xff, 0xc3, 0xe8, + 0xdf, 0x80, 0xf7, 0x63, 0x15, 0x7d, 0xd5, 0xdd, 0xee, 0x01, 0x79, 0xa5, + 0xad, 0x00, 0x6e, 0x32, 0x06, 0x29, 0x09, 0x47, 0x02, 0x9b, 0x19, 0x43, + 0x2e, 0xe7, 0x61, 0xc5, 0xbc, 0x24, 0x49, 0x8a, 0xeb, 0x02, 0xc2, 0x68, + 0x3d, 0xd5, 0xee, 0x24, 0x23, 0x90, 0x92, 0x61, 0xd7, 0xd7, 0x38, 0x46, + 0x01, 0xfd, 0x13, 0xdd, 0xb7, 0x3b, 0x5c, 0x9e, 0x4a, 0x7b, 0x30, 0x7b, + 0xff, 0x7d, 0x1b, 0xc7, 0x46, 0x48, 0xed, 0x62, 0x61, 0x80, 0x14, 0xc7, + 0xfd, 0xd9, 0x0f, 0xa6, 0x53, 0xb1, 0x6d, 0x51, 0x55, 0x4d, 0x4f, 0xf4, + 0x33, 0xfc, 0x28, 0x97, 0x26, 0x8a, 0x1b, 0x81, 0x65, 0xc6, 0x20, 0x25, + 0xc1, 0x31, 0x02, 0xf9, 0x9d, 0x6f, 0x04, 0x92, 0x24, 0x29, 0xb2, 0xf9, + 0xc0, 0xb5, 0xc6, 0x90, 0xcb, 0x61, 0xc0, 0xe6, 0xc6, 0x20, 0x25, 0xc1, + 0x2e, 0x91, 0x71, 0x74, 0x26, 0xdd, 0x6b, 0x91, 0xd3, 0x5d, 0x9e, 0x4a, + 0x9a, 0x0d, 0x7c, 0x1a, 0x18, 0x89, 0x1d, 0x12, 0xa5, 0x28, 0x2c, 0x0c, + 0x90, 0xe2, 0x59, 0x0d, 0xfc, 0x0e, 0xd8, 0x01, 0xf8, 0x57, 0x60, 0x8e, + 0x91, 0x54, 0xc6, 0x73, 0xc0, 0x9d, 0x09, 0xee, 0xd7, 0x7e, 0xc0, 0x40, + 0x97, 0xc7, 0x13, 0x44, 0xa9, 0x42, 0x7a, 0x13, 0x5a, 0xc2, 0xa9, 0x76, + 0x77, 0x01, 0x4f, 0x19, 0x83, 0x24, 0x49, 0xea, 0x00, 0x8e, 0x13, 0xc8, + 0xa7, 0x33, 0x70, 0x82, 0x31, 0x48, 0x49, 0xb8, 0x01, 0x58, 0x6e, 0x0c, + 0x51, 0x34, 0x27, 0xba, 0x5f, 0xb7, 0x01, 0x2f, 0xb8, 0x3c, 0x95, 0xf1, + 0x12, 0x70, 0x1a, 0xb0, 0x23, 0xf0, 0x07, 0xec, 0x5e, 0x24, 0x45, 0x63, + 0x61, 0x80, 0x14, 0xdf, 0x0a, 0xe0, 0xbf, 0x81, 0x6d, 0x81, 0x4f, 0x02, + 0x8f, 0x18, 0x49, 0xe9, 0xfd, 0x9e, 0x34, 0x5b, 0x33, 0x37, 0xbb, 0x34, + 0xd1, 0x58, 0x18, 0x20, 0xa5, 0xe1, 0xa3, 0x84, 0xe2, 0x00, 0xd5, 0xce, + 0x0b, 0xf6, 0x92, 0x24, 0xa9, 0xa3, 0x5c, 0x06, 0x2c, 0x31, 0x86, 0x5c, + 0xec, 0x86, 0x25, 0xa5, 0x61, 0x39, 0x70, 0xb3, 0x31, 0x44, 0x31, 0x06, + 0xe8, 0x9a, 0xe0, 0x7e, 0xad, 0x25, 0xdc, 0x40, 0x56, 0xb9, 0x3d, 0x0c, + 0xfc, 0x03, 0xb0, 0x1d, 0xf0, 0x33, 0xc2, 0xbd, 0x16, 0x49, 0x11, 0x59, + 0x18, 0x20, 0x75, 0x9c, 0x95, 0xc0, 0x9f, 0x81, 0xdd, 0x81, 0xc3, 0x81, + 0x8b, 0x81, 0x55, 0xc6, 0x52, 0x3a, 0xaf, 0x01, 0xbf, 0x4c, 0x74, 0xdf, + 0x2c, 0x0c, 0x88, 0xe3, 0x59, 0x60, 0xa6, 0x31, 0x48, 0x49, 0xf0, 0xc2, + 0x69, 0x3e, 0xab, 0x81, 0x0b, 0x8d, 0x41, 0x92, 0x24, 0x75, 0x90, 0xa5, + 0xc0, 0xe5, 0xc6, 0x90, 0xcb, 0xde, 0xc0, 0x2e, 0xc6, 0x20, 0x25, 0xc1, + 0x87, 0x42, 0xe2, 0xe8, 0x0b, 0x1c, 0x90, 0xe8, 0xbe, 0xfd, 0x12, 0x58, + 0xe4, 0x12, 0x95, 0xce, 0x4a, 0xc2, 0x35, 0x8d, 0xc3, 0x80, 0x11, 0xc0, + 0x39, 0xd9, 0x9f, 0x49, 0xea, 0x00, 0x16, 0x06, 0x48, 0x1d, 0xaf, 0x85, + 0x30, 0xe3, 0xe8, 0x58, 0x60, 0x30, 0xf0, 0xef, 0xd8, 0xea, 0xb7, 0x4c, + 0xbe, 0x09, 0x2c, 0x4e, 0x70, 0xbf, 0x06, 0x03, 0xbb, 0xb9, 0x3c, 0x51, + 0x5c, 0x65, 0x04, 0x52, 0x12, 0xb6, 0x00, 0x0e, 0x31, 0x86, 0x5c, 0xa6, + 0x01, 0x2f, 0x1b, 0x83, 0x24, 0x49, 0xea, 0x40, 0x76, 0x27, 0xca, 0xcf, + 0x71, 0x02, 0x52, 0x1a, 0x2c, 0x0c, 0x88, 0x67, 0x5c, 0xa2, 0xfb, 0xb5, + 0x10, 0xf8, 0x0f, 0x97, 0xa7, 0x34, 0x9e, 0x04, 0xbe, 0x41, 0xb8, 0xce, + 0x7d, 0x3c, 0x70, 0x1d, 0x69, 0x76, 0xed, 0x95, 0x2a, 0xc5, 0xc2, 0x00, + 0xa9, 0x58, 0xf3, 0x80, 0x1f, 0x00, 0x3b, 0x01, 0xfb, 0x13, 0xaa, 0x18, + 0x5f, 0x31, 0x96, 0x64, 0xdd, 0x00, 0xfc, 0x2e, 0xd1, 0x7d, 0x1b, 0xef, + 0xf2, 0x78, 0x62, 0x28, 0x55, 0xcc, 0x89, 0x84, 0x39, 0xac, 0xaa, 0x9d, + 0x17, 0xea, 0x25, 0x49, 0x52, 0x47, 0xbb, 0x96, 0x70, 0x4d, 0x43, 0xb5, + 0x3b, 0x09, 0x68, 0x32, 0x06, 0xa9, 0xee, 0x9e, 0x02, 0x9e, 0x31, 0x86, + 0x28, 0x52, 0xee, 0x62, 0xfa, 0x2b, 0xe0, 0x16, 0x97, 0x28, 0x59, 0x0b, + 0x80, 0x5f, 0x00, 0xfb, 0x02, 0xc3, 0x80, 0x1f, 0xe2, 0x83, 0x0e, 0x52, + 0xa1, 0x2c, 0x0c, 0x90, 0xea, 0xe7, 0x4e, 0xe0, 0xf3, 0xc0, 0x20, 0x60, + 0x2c, 0xe1, 0x06, 0xb4, 0x27, 0xd9, 0xe9, 0x78, 0x91, 0x50, 0xd5, 0xbf, + 0x36, 0xd1, 0xfd, 0x1b, 0xe7, 0x12, 0x45, 0xb1, 0x02, 0xb8, 0xd1, 0x18, + 0xa4, 0x24, 0x38, 0x46, 0x20, 0x9f, 0xa5, 0xc0, 0xdf, 0x8d, 0x41, 0x92, + 0x24, 0x75, 0x30, 0x47, 0x17, 0xe5, 0x37, 0x04, 0x18, 0x6d, 0x0c, 0x52, + 0x12, 0xae, 0x31, 0x82, 0x28, 0x86, 0x01, 0x3b, 0x24, 0xba, 0x6f, 0x6b, + 0x08, 0x4f, 0x9f, 0xcf, 0x71, 0x99, 0x92, 0x31, 0x17, 0x38, 0x9b, 0x70, + 0x0f, 0x64, 0x4b, 0xe0, 0x0b, 0xc0, 0xdd, 0xc6, 0x22, 0xd5, 0x87, 0x85, + 0x01, 0x52, 0xfd, 0xad, 0x22, 0x3c, 0xb1, 0x7c, 0x6a, 0xf6, 0x83, 0x71, + 0x24, 0x70, 0x06, 0xf0, 0x98, 0xd1, 0xd4, 0xcd, 0x2b, 0xc0, 0x91, 0xa4, + 0x5b, 0xad, 0xd8, 0x0b, 0x38, 0xd8, 0x65, 0x8a, 0xe2, 0x26, 0x60, 0x99, + 0x31, 0x48, 0x75, 0x37, 0x1c, 0xd8, 0xd3, 0x18, 0x72, 0xf9, 0x1b, 0xb0, + 0xc4, 0x18, 0x24, 0x49, 0x52, 0x01, 0xec, 0x52, 0x94, 0x9f, 0x45, 0xb0, + 0x52, 0x1a, 0xec, 0x1a, 0x19, 0x4f, 0xca, 0x0f, 0x2d, 0xcd, 0x25, 0x5c, + 0xdb, 0x7d, 0xd5, 0x65, 0xaa, 0x9b, 0x59, 0xc0, 0xcf, 0x81, 0x03, 0x81, + 0xad, 0x80, 0xcf, 0x64, 0xdf, 0x7f, 0xab, 0x8c, 0x46, 0xaa, 0x2f, 0x0b, + 0x03, 0xa4, 0xb4, 0xac, 0x05, 0xee, 0x05, 0x4e, 0x07, 0x76, 0x01, 0x86, + 0x02, 0xa7, 0x01, 0xb7, 0x91, 0xee, 0x93, 0xeb, 0x55, 0x33, 0x07, 0x38, + 0x8c, 0xb4, 0x0b, 0x33, 0x0e, 0x07, 0x7a, 0xba, 0x54, 0x9e, 0x10, 0x4a, + 0x15, 0x72, 0xb2, 0x11, 0xe4, 0xe6, 0x05, 0x7a, 0x49, 0x92, 0x54, 0x94, + 0xbb, 0x09, 0xf3, 0x80, 0x55, 0xbb, 0xe3, 0x80, 0xee, 0xc6, 0x20, 0xd5, + 0xdd, 0xf5, 0xc0, 0x72, 0x63, 0x88, 0x22, 0xf5, 0x6e, 0xa6, 0x8f, 0x00, + 0x07, 0x01, 0x2f, 0xb8, 0x54, 0x85, 0x68, 0xbd, 0xaf, 0x71, 0x06, 0xeb, + 0xee, 0x6b, 0x7c, 0x11, 0xb8, 0x15, 0xef, 0x6b, 0x48, 0x49, 0xb1, 0x30, + 0x40, 0x4a, 0xdb, 0x2c, 0xe0, 0x67, 0x84, 0x96, 0x73, 0x5b, 0x02, 0x1f, + 0x07, 0xfe, 0x07, 0x78, 0xd6, 0x68, 0x3a, 0xc4, 0xcd, 0x84, 0x8e, 0x0d, + 0x0f, 0x7a, 0xe0, 0xdd, 0x30, 0x2c, 0x0c, 0x90, 0xea, 0xaf, 0x09, 0xf8, + 0x98, 0x31, 0xe4, 0x32, 0x1f, 0xb8, 0xce, 0x18, 0x24, 0x49, 0x52, 0x81, + 0xce, 0x37, 0x82, 0x5c, 0x36, 0x21, 0xb4, 0x50, 0x96, 0x54, 0x5f, 0xcb, + 0x71, 0xfe, 0x7c, 0x2c, 0x07, 0x01, 0x7d, 0x13, 0xdf, 0xc7, 0x47, 0x81, + 0x51, 0x84, 0x87, 0xee, 0x14, 0xdf, 0x2c, 0xe0, 0x8f, 0xc0, 0x49, 0x84, + 0x71, 0xc9, 0x23, 0x09, 0x0f, 0x3c, 0xda, 0x09, 0x59, 0x4a, 0x98, 0x85, + 0x01, 0x52, 0x79, 0xcc, 0x03, 0xce, 0x03, 0x3e, 0x05, 0x6c, 0x97, 0x6d, + 0x9f, 0xca, 0xfe, 0xcc, 0x99, 0x49, 0xed, 0xb3, 0x14, 0xf8, 0x37, 0xe0, + 0x10, 0x42, 0xab, 0xa9, 0x94, 0x35, 0x79, 0x31, 0x21, 0x9a, 0x67, 0x81, + 0xa7, 0x8c, 0x41, 0x4a, 0xe2, 0x62, 0xc2, 0x36, 0xc6, 0x90, 0xcb, 0xf9, + 0x84, 0x79, 0xbf, 0x92, 0x24, 0x49, 0x45, 0x99, 0x04, 0xb4, 0x18, 0x43, + 0x2e, 0x8e, 0x13, 0x90, 0xd2, 0xe0, 0x43, 0x22, 0x71, 0x74, 0x25, 0x74, + 0x35, 0x4d, 0xdd, 0x4b, 0x84, 0x91, 0xac, 0xdf, 0xc2, 0x71, 0xa2, 0xed, + 0x35, 0x87, 0x70, 0x2f, 0xe2, 0x1f, 0x81, 0x6d, 0x09, 0x5d, 0x01, 0xfe, + 0x29, 0x3b, 0x36, 0x78, 0xd9, 0x78, 0xa4, 0x72, 0xb0, 0x30, 0x40, 0x2a, + 0xaf, 0x67, 0x09, 0xdd, 0x03, 0x3e, 0x4e, 0xe8, 0x26, 0x30, 0x1c, 0xf8, + 0x2c, 0x70, 0x31, 0xe1, 0x09, 0x42, 0xbd, 0xb7, 0x16, 0xc2, 0x4d, 0x95, + 0x9d, 0x80, 0x33, 0x81, 0x35, 0x25, 0xd8, 0xe7, 0xbd, 0xb2, 0xf5, 0x56, + 0xfb, 0x5d, 0x6d, 0x04, 0x52, 0x12, 0xbc, 0x40, 0x9a, 0x9f, 0x63, 0x04, + 0x24, 0x49, 0x52, 0xd1, 0x9e, 0x01, 0xee, 0x34, 0x86, 0x5c, 0xc6, 0x03, + 0x9b, 0x1a, 0x83, 0x54, 0x77, 0x16, 0x06, 0xc4, 0x53, 0x96, 0xae, 0xa6, + 0xab, 0x81, 0xef, 0x03, 0xc3, 0x80, 0xbf, 0xba, 0x6c, 0x1b, 0xec, 0x65, + 0xe0, 0x22, 0xc2, 0x3d, 0x87, 0x61, 0xac, 0xeb, 0x68, 0xfc, 0x27, 0xe0, + 0x39, 0xe3, 0x91, 0xca, 0xa9, 0x8b, 0x11, 0x48, 0x95, 0xf1, 0x44, 0xb6, + 0xfd, 0x26, 0xfb, 0xfd, 0x10, 0x42, 0xfb, 0x9e, 0xf7, 0x67, 0xdb, 0xde, + 0xa4, 0xdf, 0xde, 0xa9, 0xc8, 0x83, 0xc1, 0xbf, 0x03, 0x3f, 0x01, 0xee, + 0x28, 0xd9, 0xbe, 0x37, 0xbb, 0x7c, 0x9e, 0x08, 0x4a, 0x15, 0xd2, 0x03, + 0xf8, 0xa8, 0x31, 0xe4, 0x32, 0x13, 0xb8, 0xc7, 0x18, 0x24, 0x49, 0x52, + 0x1d, 0x4c, 0x02, 0xf6, 0x37, 0x86, 0x9a, 0x75, 0x03, 0x8e, 0x01, 0x7e, + 0x6f, 0x14, 0x52, 0x5d, 0x3d, 0x49, 0x28, 0x72, 0x1a, 0x6a, 0x14, 0xed, + 0x36, 0x8e, 0xf0, 0xf0, 0x69, 0x59, 0x66, 0xc8, 0xcf, 0x26, 0x8c, 0x32, + 0xfc, 0x05, 0xf0, 0x65, 0x60, 0x02, 0xd0, 0xd9, 0x65, 0x04, 0x60, 0x11, + 0xe1, 0x1a, 0xc3, 0x8c, 0x36, 0x5f, 0x5f, 0x30, 0x16, 0xa9, 0x7a, 0x2c, + 0x0c, 0x90, 0xaa, 0xeb, 0xf9, 0x6c, 0xbb, 0x24, 0xfb, 0x7d, 0x13, 0xb0, + 0x23, 0xeb, 0x8a, 0x05, 0x46, 0x02, 0x7b, 0x02, 0xbd, 0x1a, 0x28, 0x93, + 0x05, 0xc0, 0x1f, 0x08, 0xc5, 0x13, 0xb3, 0x4b, 0x7c, 0xc0, 0xad, 0xf6, + 0x7b, 0x13, 0xb8, 0xc9, 0x18, 0xa4, 0xba, 0x6b, 0x06, 0xfa, 0x19, 0x43, + 0x2e, 0xe7, 0x1a, 0x81, 0x24, 0x49, 0xaa, 0x93, 0x0b, 0x80, 0xb3, 0x08, + 0x37, 0xba, 0x55, 0x9b, 0x89, 0x58, 0x18, 0x20, 0xa5, 0xe0, 0x1a, 0xe0, + 0x73, 0xc6, 0xd0, 0x6e, 0x03, 0x80, 0x7d, 0x28, 0x5f, 0x27, 0x99, 0xdb, + 0xb2, 0x6d, 0x08, 0xf0, 0xcf, 0x84, 0x71, 0xbd, 0xef, 0x6b, 0xa0, 0x75, + 0x5b, 0x06, 0xdc, 0xcf, 0x5b, 0x8b, 0x00, 0x66, 0xe2, 0xa8, 0x20, 0xa9, + 0x21, 0x58, 0x18, 0x20, 0x35, 0x8e, 0x16, 0x42, 0x45, 0xec, 0x93, 0xac, + 0x6b, 0x3d, 0xdc, 0x85, 0x30, 0x82, 0x60, 0xd7, 0x6c, 0xdb, 0x39, 0xfb, + 0xba, 0x2d, 0xd5, 0xa9, 0x96, 0x9c, 0x05, 0x5c, 0x4e, 0xe8, 0x10, 0x70, + 0x0b, 0xe5, 0x18, 0x17, 0xf0, 0x4e, 0x06, 0x12, 0x3a, 0x3f, 0xa8, 0xfd, + 0x6e, 0x04, 0x96, 0x18, 0x83, 0x54, 0x77, 0x8e, 0x11, 0xc8, 0xff, 0x33, + 0xdd, 0x31, 0x02, 0x92, 0x24, 0xa9, 0x5e, 0x5e, 0x05, 0xa6, 0x61, 0x47, + 0xbb, 0x3c, 0x3e, 0x00, 0x6c, 0x83, 0x2d, 0x98, 0xa5, 0x7a, 0x9b, 0x82, + 0x85, 0x01, 0xb1, 0x8c, 0xa3, 0xbc, 0x23, 0x66, 0x9e, 0x07, 0xbe, 0x01, + 0x7c, 0x2b, 0xfb, 0x7c, 0x9e, 0x90, 0x6d, 0xdb, 0x56, 0x64, 0x6d, 0xd6, + 0x10, 0xae, 0x8d, 0x3f, 0x02, 0x3c, 0x9e, 0x7d, 0x6d, 0xfd, 0xf5, 0x6a, + 0xdf, 0xba, 0x52, 0x63, 0xb2, 0x30, 0x40, 0x6a, 0x6c, 0xab, 0x81, 0x87, + 0xb3, 0xad, 0xad, 0x1e, 0x84, 0xb9, 0x41, 0x3b, 0x00, 0xdb, 0xaf, 0xf7, + 0x75, 0xf3, 0x84, 0x5f, 0xcf, 0xda, 0xec, 0xc0, 0xe6, 0x6e, 0xe0, 0x2e, + 0xe0, 0x56, 0xe0, 0xd1, 0x0a, 0xad, 0xd7, 0x78, 0x42, 0x7b, 0x2e, 0xc5, + 0x39, 0x01, 0x94, 0x54, 0x5f, 0x9b, 0x00, 0x63, 0x8c, 0x21, 0x97, 0x3b, + 0xb2, 0x93, 0x7b, 0x49, 0x92, 0xa4, 0x7a, 0x99, 0x84, 0x85, 0x01, 0x79, + 0x34, 0x01, 0x27, 0x00, 0x3f, 0x30, 0x0a, 0xa9, 0xae, 0xae, 0x07, 0x96, + 0x03, 0x3d, 0x8d, 0xa2, 0xdd, 0x9a, 0x81, 0x6f, 0x97, 0xfc, 0x35, 0xac, + 0xce, 0xde, 0x13, 0xd7, 0x03, 0xa7, 0x11, 0x1e, 0x9c, 0x1b, 0x4d, 0xe8, + 0x86, 0xb0, 0x2f, 0xe1, 0x3a, 0x79, 0xca, 0xd7, 0x64, 0xe7, 0x11, 0x9e, + 0xf8, 0x9f, 0x09, 0x3c, 0x9d, 0x6d, 0x33, 0x09, 0x63, 0x87, 0x57, 0xf8, + 0x16, 0x95, 0xd4, 0x96, 0x85, 0x01, 0x92, 0xde, 0xce, 0x0a, 0xe0, 0x81, + 0x6c, 0x5b, 0x5f, 0x2f, 0x60, 0x30, 0xb0, 0x55, 0xb6, 0xb5, 0xfe, 0x7a, + 0x10, 0xa1, 0xe5, 0xd2, 0x66, 0x84, 0x36, 0x52, 0xbd, 0x3b, 0x70, 0xff, + 0x5e, 0x23, 0x54, 0x74, 0x3e, 0xdd, 0x66, 0x7b, 0x0a, 0x78, 0x10, 0x78, + 0xa3, 0xc2, 0xeb, 0xe2, 0x18, 0x81, 0x78, 0x2c, 0x0c, 0x90, 0xea, 0xef, + 0x78, 0xa0, 0xbb, 0x31, 0xe4, 0x62, 0xb7, 0x00, 0x49, 0x92, 0x54, 0x6f, + 0x97, 0x13, 0xe6, 0x11, 0xf7, 0x35, 0x8a, 0x9a, 0x7d, 0x1c, 0x0b, 0x03, + 0xa4, 0x7a, 0x5b, 0x4e, 0xe8, 0x2c, 0x7a, 0x84, 0x51, 0xb4, 0xdb, 0x1e, + 0x84, 0x96, 0xfc, 0xcf, 0x57, 0xe8, 0x35, 0xb5, 0x3e, 0x59, 0xff, 0xdb, + 0xec, 0xf7, 0x1b, 0x03, 0x23, 0x08, 0x0f, 0xcd, 0xb5, 0x3e, 0x40, 0xb7, + 0x7d, 0xf6, 0xba, 0x37, 0xe9, 0xc0, 0xfd, 0x58, 0x0a, 0xcc, 0xcf, 0xb6, + 0x05, 0xc0, 0x5c, 0xe0, 0xc5, 0x2c, 0xeb, 0x97, 0xb2, 0x5f, 0xbf, 0x40, + 0x18, 0x0d, 0x20, 0x49, 0x1b, 0xc4, 0xc2, 0x00, 0x49, 0xb5, 0x5a, 0x46, + 0xa8, 0x36, 0x7c, 0xe2, 0x3d, 0xfe, 0x5e, 0x4f, 0x42, 0xa1, 0x40, 0x7f, + 0x42, 0x91, 0x40, 0xef, 0xec, 0x82, 0xc1, 0x46, 0xd9, 0xaf, 0x7b, 0xad, + 0xf7, 0xf7, 0x9b, 0x08, 0xf3, 0x09, 0xdf, 0xcc, 0xfe, 0x1f, 0x6f, 0x66, + 0x07, 0xe9, 0x2b, 0x80, 0x57, 0xda, 0x6c, 0x0b, 0x68, 0xcc, 0x56, 0x47, + 0xdd, 0x81, 0xc3, 0x7c, 0xfb, 0x45, 0xf1, 0x2c, 0xa1, 0x90, 0x44, 0x52, + 0x7d, 0x39, 0x46, 0x20, 0x9f, 0x55, 0xc0, 0x85, 0xc6, 0x20, 0x49, 0x92, + 0xea, 0x6c, 0x39, 0x70, 0x19, 0xf0, 0x09, 0xa3, 0xa8, 0xd9, 0x70, 0x60, + 0x4f, 0xc2, 0x7c, 0x67, 0x49, 0xf5, 0x33, 0x05, 0x0b, 0x03, 0x62, 0x19, + 0xc3, 0xba, 0x9b, 0xe8, 0x55, 0xb4, 0x98, 0x50, 0x48, 0x72, 0xcb, 0xdb, + 0xfc, 0xb3, 0xae, 0x84, 0x6b, 0xe0, 0xef, 0x23, 0x3c, 0x2c, 0xd7, 0x9f, + 0x70, 0x5d, 0xbc, 0x47, 0xb6, 0xf5, 0x24, 0x5c, 0xd7, 0x5d, 0x49, 0x18, + 0x0b, 0xd8, 0xd6, 0x32, 0xc2, 0xcd, 0xff, 0x37, 0x08, 0xc5, 0x76, 0x4b, + 0xb3, 0xed, 0x55, 0xc2, 0x75, 0xf0, 0xe5, 0xbe, 0xb5, 0x24, 0xc5, 0x66, + 0x61, 0x80, 0xa4, 0x8e, 0xbc, 0x48, 0x30, 0x3b, 0xdb, 0xd4, 0x7e, 0x07, + 0x13, 0x8a, 0x2a, 0xd4, 0x7e, 0x57, 0x1b, 0x81, 0x54, 0x77, 0x43, 0x80, + 0x03, 0x8c, 0x21, 0x97, 0x6b, 0xb2, 0x0b, 0x04, 0x92, 0x24, 0x49, 0xf5, + 0x36, 0x09, 0x0b, 0x03, 0xf2, 0x9a, 0x88, 0x85, 0x01, 0x52, 0xbd, 0x4d, + 0x01, 0xfe, 0xdb, 0x18, 0xa2, 0x18, 0x47, 0xb5, 0x0b, 0x03, 0xde, 0xcd, + 0x2a, 0xc2, 0x93, 0xfc, 0x73, 0x7d, 0x1b, 0x48, 0x2a, 0x03, 0x67, 0x55, + 0x4b, 0x52, 0x79, 0x0e, 0xb0, 0x15, 0xef, 0xc4, 0x4f, 0x52, 0x7d, 0x7d, + 0x9c, 0xd0, 0x29, 0x46, 0xb5, 0x73, 0x8c, 0x80, 0x24, 0x49, 0x4a, 0xc5, + 0x75, 0x84, 0x56, 0xc6, 0xaa, 0xdd, 0x89, 0x40, 0x67, 0x63, 0x90, 0xea, + 0xea, 0x49, 0xe0, 0x19, 0x63, 0x88, 0xe2, 0x50, 0xfe, 0x6f, 0x77, 0x58, + 0x49, 0x52, 0x82, 0x2c, 0x0c, 0x90, 0xa4, 0x72, 0x18, 0x6b, 0x04, 0x51, + 0xbc, 0x09, 0xdc, 0x64, 0x0c, 0x52, 0xdd, 0x7d, 0xcc, 0x08, 0x72, 0x59, + 0x0c, 0x5c, 0x61, 0x0c, 0x92, 0x24, 0x29, 0x11, 0x6b, 0x81, 0xbf, 0x1a, + 0x43, 0x2e, 0x5b, 0x00, 0x87, 0x18, 0x83, 0x54, 0x77, 0x53, 0x8d, 0x20, + 0x8a, 0x9e, 0x7e, 0xa6, 0x49, 0x52, 0x39, 0x58, 0x18, 0x20, 0x49, 0xe9, + 0xdb, 0x05, 0x18, 0x6a, 0x0c, 0x51, 0xdc, 0x04, 0x2c, 0x31, 0x06, 0xa9, + 0xae, 0x46, 0x66, 0x9f, 0x6b, 0xaa, 0xdd, 0xdf, 0x08, 0x33, 0x08, 0x25, + 0x49, 0x92, 0x52, 0x61, 0x37, 0xa3, 0xfc, 0x26, 0x1a, 0x81, 0x54, 0x77, + 0x76, 0x95, 0x8c, 0xc7, 0x6e, 0xa7, 0x92, 0x54, 0x02, 0x16, 0x06, 0x48, + 0x52, 0xfa, 0x9a, 0x8d, 0xc0, 0x13, 0x3e, 0xa9, 0x42, 0xbc, 0x00, 0x9a, + 0x9f, 0x17, 0xde, 0x25, 0x49, 0x52, 0x6a, 0xee, 0x03, 0x1e, 0x35, 0x86, + 0x5c, 0x3e, 0x0a, 0xf4, 0x36, 0x06, 0xa9, 0xae, 0x6e, 0x00, 0x56, 0x18, + 0x43, 0x14, 0x13, 0x70, 0x64, 0xa0, 0x24, 0x25, 0xcf, 0xc2, 0x00, 0x49, + 0x4a, 0x9f, 0x15, 0xb7, 0xf1, 0x58, 0x18, 0x20, 0xd5, 0x57, 0x67, 0x1c, + 0x7e, 0x28, 0xa1, 0xa0, 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, + 0x23, 0x90, 0xd7, 0x1c, 0xc2, 0x45, 0x2b, 0x49, 0x92, 0xa4, 0xd4, 0x4c, + 0x36, 0x82, 0x5c, 0x7a, 0x13, 0x6e, 0xa4, 0x49, 0xaa, 0x9f, 0xa5, 0xc0, + 0x2d, 0xc6, 0x10, 0xc5, 0x20, 0x60, 0x84, 0x31, 0x48, 0x52, 0xda, 0x2c, + 0x0c, 0x90, 0xa4, 0xb4, 0x6d, 0x0a, 0xec, 0x6f, 0x0c, 0x51, 0x3c, 0x0b, + 0x3c, 0x69, 0x0c, 0x52, 0x5d, 0x1d, 0x0e, 0x6c, 0x6e, 0x0c, 0xb9, 0x4c, + 0x06, 0xd6, 0x18, 0x83, 0x24, 0x49, 0x4a, 0xd0, 0x79, 0x40, 0x8b, 0x31, + 0xe4, 0x62, 0x37, 0x2d, 0xa9, 0xfe, 0x7c, 0x88, 0x24, 0x1e, 0xbb, 0x9e, + 0x4a, 0x52, 0xe2, 0x2c, 0x0c, 0x90, 0xa4, 0xb4, 0x8d, 0x01, 0xba, 0x18, + 0x83, 0x27, 0x7a, 0x52, 0x45, 0x78, 0xe1, 0x33, 0x3f, 0xc7, 0x08, 0x48, + 0x92, 0xa4, 0x54, 0x3d, 0x0f, 0xdc, 0x66, 0x0c, 0xb9, 0x1c, 0x09, 0x6c, + 0x66, 0x0c, 0x52, 0x5d, 0x79, 0xbd, 0x28, 0x1e, 0xbb, 0x9e, 0x4a, 0x52, + 0xe2, 0x2c, 0x0c, 0x90, 0x24, 0x0f, 0xa8, 0x3d, 0xd1, 0x93, 0x54, 0x84, + 0xde, 0xc0, 0x87, 0x8c, 0x21, 0x97, 0xc7, 0x81, 0xfb, 0x8d, 0x41, 0x92, + 0x24, 0x25, 0xcc, 0x22, 0xc6, 0x7c, 0xba, 0x00, 0xc7, 0x19, 0x83, 0x54, + 0x57, 0x4f, 0x00, 0xb3, 0x8c, 0x21, 0x8a, 0x7d, 0xb0, 0xd8, 0x49, 0x92, + 0x92, 0x66, 0x61, 0x80, 0x24, 0xa5, 0xab, 0x33, 0x70, 0x84, 0x31, 0x44, + 0xf1, 0x26, 0x70, 0xa3, 0x31, 0x48, 0x75, 0xf5, 0x61, 0xa0, 0x8f, 0x31, + 0xe4, 0x72, 0xae, 0x11, 0x48, 0x92, 0xa4, 0xc4, 0xfd, 0x35, 0x3b, 0xef, + 0x52, 0xed, 0xec, 0xaa, 0x25, 0xd5, 0xdf, 0x54, 0x23, 0x88, 0xa2, 0x13, + 0xa1, 0xfb, 0xa9, 0x24, 0x29, 0xe1, 0x0f, 0x6a, 0x49, 0x52, 0x9a, 0x46, + 0x03, 0xfd, 0x8d, 0x21, 0x8a, 0x9b, 0x81, 0x25, 0xc6, 0x20, 0xd5, 0x95, + 0x17, 0x3c, 0xf3, 0x69, 0x01, 0x2e, 0x30, 0x06, 0x49, 0x92, 0x94, 0xb8, + 0x85, 0xc0, 0x35, 0xc6, 0x90, 0xcb, 0xbe, 0xc0, 0x4e, 0xc6, 0x20, 0xd5, + 0x95, 0x5d, 0x26, 0xe3, 0x69, 0x36, 0x02, 0x49, 0x4a, 0x97, 0x85, 0x01, + 0x92, 0xe4, 0x81, 0xb4, 0x27, 0x78, 0x92, 0x3a, 0xda, 0x40, 0xe0, 0x30, + 0x63, 0xc8, 0xe5, 0x16, 0xe0, 0x59, 0x63, 0x90, 0x24, 0x49, 0x25, 0xe0, + 0x38, 0x81, 0xfc, 0x4e, 0x30, 0x02, 0xa9, 0xae, 0xae, 0xc7, 0xae, 0x27, + 0xb1, 0x1c, 0x09, 0x74, 0x37, 0x06, 0x49, 0x4a, 0x93, 0x85, 0x01, 0x92, + 0x94, 0x2e, 0x0b, 0x03, 0xe2, 0xb1, 0x30, 0x40, 0xaa, 0xaf, 0x13, 0x09, + 0xf3, 0x53, 0x55, 0x3b, 0x2f, 0xb0, 0x4b, 0x92, 0xa4, 0xb2, 0xb8, 0x02, + 0x78, 0xdd, 0x18, 0x72, 0x39, 0x09, 0x68, 0x32, 0x06, 0xa9, 0x6e, 0x96, + 0x12, 0x8a, 0xb2, 0xd5, 0x7e, 0x7d, 0x80, 0x0f, 0x18, 0x83, 0x24, 0xa5, + 0xc9, 0xc2, 0x00, 0x49, 0x4a, 0xd3, 0x76, 0xc0, 0x30, 0x63, 0x88, 0xe2, + 0x39, 0xe0, 0x09, 0x63, 0x90, 0xea, 0xca, 0x31, 0x02, 0xf9, 0xac, 0x04, + 0x2e, 0x31, 0x06, 0x49, 0x92, 0x54, 0x12, 0x2b, 0x80, 0xbf, 0x19, 0x43, + 0x2e, 0x43, 0x81, 0xfd, 0x8c, 0x41, 0xaa, 0x2b, 0x1f, 0x2a, 0x89, 0x67, + 0x9c, 0x11, 0x48, 0x52, 0x9a, 0x2c, 0x0c, 0x90, 0xa4, 0x34, 0x4d, 0x30, + 0x82, 0x68, 0xae, 0x36, 0x02, 0xa9, 0xae, 0x76, 0x00, 0x46, 0x1a, 0x43, + 0x2e, 0x57, 0x01, 0xaf, 0x1a, 0x83, 0x24, 0x49, 0x2a, 0x11, 0xbb, 0x1d, + 0xe5, 0x67, 0x31, 0xad, 0x54, 0x5f, 0x16, 0x06, 0xc4, 0x33, 0xde, 0x08, + 0x24, 0x29, 0x4d, 0x16, 0x06, 0x48, 0x52, 0x9a, 0xac, 0xac, 0xf5, 0xc4, + 0x4e, 0xaa, 0x8a, 0x93, 0x8d, 0x20, 0x37, 0x2f, 0xac, 0x4b, 0x92, 0xa4, + 0xb2, 0xb9, 0x11, 0x78, 0xd1, 0x18, 0x72, 0x39, 0x01, 0xe8, 0x66, 0x0c, + 0x52, 0xdd, 0x3c, 0x0e, 0xcc, 0x32, 0x86, 0x28, 0xb6, 0x03, 0x86, 0x1b, + 0x83, 0x24, 0xa5, 0xc7, 0xc2, 0x00, 0x49, 0x4a, 0x4f, 0x1f, 0xe0, 0x40, + 0x63, 0x88, 0xe2, 0x4d, 0xc2, 0x85, 0x29, 0x49, 0xf5, 0xd1, 0x04, 0x9c, + 0x68, 0x0c, 0xb9, 0x2c, 0xc6, 0x8e, 0x27, 0x92, 0x24, 0xa9, 0x7c, 0xd6, + 0x02, 0x93, 0x8d, 0x21, 0x97, 0x4d, 0x81, 0x23, 0x8d, 0x41, 0xaa, 0xab, + 0xa9, 0x46, 0x10, 0x4d, 0xb3, 0x11, 0x48, 0x52, 0x7a, 0x2c, 0x0c, 0x90, + 0xa4, 0xf4, 0x1c, 0x05, 0x74, 0x37, 0x86, 0x28, 0x6e, 0x06, 0x96, 0x18, + 0x83, 0x54, 0x37, 0x07, 0x10, 0x9e, 0x14, 0x50, 0xed, 0x2e, 0x04, 0x96, + 0x1b, 0x83, 0x24, 0x49, 0x2a, 0x21, 0xbb, 0x1e, 0xe5, 0xe7, 0x38, 0x01, + 0xa9, 0xbe, 0xec, 0x3a, 0x19, 0x8f, 0xdd, 0x50, 0x25, 0x29, 0x41, 0x16, + 0x06, 0x48, 0x92, 0x07, 0xce, 0x9e, 0xd0, 0x49, 0xea, 0x28, 0x5e, 0xd8, + 0xcc, 0xcf, 0x0b, 0xea, 0x92, 0x24, 0xa9, 0xac, 0x1e, 0x04, 0x1e, 0x36, + 0x86, 0x5c, 0x8e, 0x06, 0xfa, 0x1a, 0x83, 0x54, 0x37, 0xd7, 0x13, 0xba, + 0x4f, 0xaa, 0xfd, 0x46, 0x03, 0xfd, 0x8d, 0x41, 0x92, 0xd2, 0x62, 0x61, + 0x80, 0x24, 0xa5, 0xf7, 0xb9, 0x3c, 0xc6, 0x18, 0xa2, 0xb1, 0x30, 0x40, + 0xaa, 0x9f, 0x6e, 0xc0, 0xb1, 0xc6, 0x90, 0xcb, 0x4b, 0xc0, 0x2d, 0xc6, + 0x20, 0x49, 0x92, 0x4a, 0xec, 0x7c, 0x23, 0xc8, 0xa5, 0x07, 0xf0, 0x11, + 0x63, 0x90, 0xea, 0x66, 0xa9, 0xe7, 0x62, 0xd1, 0x74, 0x06, 0x8e, 0x30, + 0x06, 0x49, 0x4a, 0x8b, 0x85, 0x01, 0x92, 0x94, 0x96, 0x7d, 0x80, 0xcd, + 0x8c, 0x21, 0x8a, 0xe7, 0x80, 0x27, 0x8c, 0x41, 0xaa, 0x9b, 0xb1, 0xf8, + 0x74, 0x40, 0x5e, 0xe7, 0x01, 0x6b, 0x8c, 0x41, 0x92, 0x24, 0x95, 0xd8, + 0x24, 0x60, 0xad, 0x31, 0xe4, 0x62, 0xd7, 0x2d, 0xa9, 0xbe, 0x7c, 0xc8, + 0x24, 0x1e, 0xbb, 0xa2, 0x4a, 0x52, 0x62, 0x2c, 0x0c, 0x90, 0x24, 0x0f, + 0x98, 0x3d, 0x91, 0x93, 0xd4, 0x11, 0xbc, 0xa0, 0x99, 0x9f, 0x63, 0x04, + 0x24, 0x49, 0x52, 0xd9, 0xcd, 0xc6, 0xa7, 0x6e, 0xf3, 0xfa, 0x20, 0xb0, + 0x95, 0x31, 0x48, 0x75, 0xe3, 0xf5, 0xa4, 0x78, 0xc6, 0x00, 0x5d, 0x8c, + 0x41, 0x92, 0xd2, 0x61, 0x61, 0x80, 0x24, 0xa5, 0xa5, 0xd9, 0x08, 0x3c, + 0x91, 0x93, 0x2a, 0x60, 0x63, 0x2c, 0x74, 0xca, 0xeb, 0x51, 0x9c, 0xc9, + 0x2b, 0x49, 0x92, 0xaa, 0xc1, 0x62, 0xc7, 0x7c, 0x3a, 0x01, 0x27, 0x18, + 0x83, 0x54, 0x37, 0x8f, 0x03, 0xb3, 0x8c, 0x21, 0x8a, 0x4d, 0x81, 0xfd, + 0x8d, 0x41, 0x92, 0xd2, 0x3a, 0xd0, 0x94, 0x24, 0xa5, 0x61, 0x10, 0x30, + 0xc2, 0x18, 0xa2, 0x58, 0x09, 0xdc, 0x60, 0x0c, 0x52, 0xdd, 0x1c, 0x07, + 0xf4, 0x34, 0x86, 0x5c, 0xfe, 0x62, 0x04, 0x92, 0x24, 0xa9, 0x22, 0x2e, + 0x04, 0x96, 0x1b, 0x43, 0x2e, 0x76, 0xdf, 0x92, 0xea, 0x6b, 0x9a, 0x11, + 0x44, 0xe3, 0x43, 0x03, 0x92, 0x94, 0x10, 0x0b, 0x03, 0x24, 0x29, 0x1d, + 0x13, 0x80, 0x26, 0x63, 0x88, 0xe2, 0x66, 0x60, 0x89, 0x31, 0x48, 0x75, + 0xe3, 0x85, 0xcc, 0x7c, 0xd6, 0x02, 0x93, 0x8d, 0x41, 0x92, 0x24, 0x55, + 0xc4, 0x22, 0xec, 0xe4, 0x96, 0xd7, 0x08, 0x60, 0x37, 0x63, 0x90, 0xea, + 0xc6, 0xcf, 0xae, 0x78, 0xec, 0x8e, 0x2a, 0x49, 0x09, 0xb1, 0x30, 0x40, + 0x92, 0xd2, 0x61, 0x05, 0xad, 0x27, 0x70, 0x52, 0x15, 0x6c, 0x0d, 0x7c, + 0xc0, 0x18, 0x72, 0xb9, 0x89, 0x30, 0x8f, 0x57, 0x92, 0x24, 0xa9, 0x2a, + 0x1c, 0x27, 0x90, 0x9f, 0xc5, 0xb6, 0x52, 0xfd, 0x5c, 0x07, 0xbc, 0x69, + 0x0c, 0x51, 0xec, 0x02, 0x0c, 0x35, 0x06, 0x49, 0x4a, 0x43, 0x17, 0x23, + 0x90, 0x2a, 0x6d, 0x13, 0xa0, 0x1b, 0xd0, 0x3b, 0xdb, 0xba, 0x65, 0x7f, + 0xd6, 0x15, 0xe8, 0xf3, 0x0e, 0xff, 0x4e, 0xcf, 0xec, 0xc0, 0x77, 0x2d, + 0xb0, 0x06, 0x58, 0x9c, 0xfd, 0xf9, 0x0a, 0x42, 0x0b, 0xc0, 0x25, 0xc0, + 0x42, 0xe0, 0x75, 0x42, 0xbb, 0x76, 0xc5, 0xd1, 0x13, 0x38, 0xc4, 0x18, + 0xa2, 0xb1, 0x30, 0x40, 0xaa, 0x9f, 0x89, 0x58, 0x7c, 0x9a, 0x97, 0x17, + 0xce, 0x25, 0x49, 0x52, 0xd5, 0x5c, 0x09, 0xbc, 0x0a, 0xf4, 0x37, 0x8a, + 0x9a, 0x9d, 0x04, 0x7c, 0x93, 0x70, 0x6d, 0x46, 0x52, 0xb1, 0x96, 0x02, + 0xb7, 0x02, 0x87, 0x1a, 0x45, 0x14, 0x63, 0x81, 0x5f, 0x18, 0x43, 0x54, + 0xad, 0xd7, 0xf9, 0x37, 0x21, 0x5c, 0xf7, 0xef, 0x09, 0xf4, 0xc8, 0xfe, + 0x59, 0x5f, 0xc2, 0x75, 0x99, 0xce, 0xd9, 0xdf, 0x7b, 0xa7, 0xb1, 0x3e, + 0x4b, 0x08, 0xd7, 0xf7, 0x5b, 0xaf, 0xf3, 0x2f, 0xcd, 0xfe, 0x6c, 0x15, + 0xe1, 0xfa, 0xbf, 0xa4, 0x0a, 0xb2, 0x30, 0x40, 0x2a, 0x87, 0xce, 0xc0, + 0x40, 0x60, 0x00, 0x61, 0x0e, 0xfd, 0x40, 0x60, 0xb3, 0x6c, 0xdb, 0x04, + 0xe8, 0xd7, 0xe6, 0x40, 0xa0, 0xf5, 0xf7, 0x7d, 0x0b, 0x3a, 0x48, 0x5e, + 0x98, 0x6d, 0xaf, 0x02, 0x2f, 0x10, 0x9e, 0x74, 0x7c, 0x31, 0xfb, 0xfa, + 0x02, 0xf0, 0x3c, 0xeb, 0x8a, 0x0b, 0xf4, 0xce, 0x0e, 0x05, 0x7a, 0x19, + 0x43, 0x14, 0xb3, 0x81, 0xc7, 0x8d, 0x41, 0xaa, 0x9b, 0x13, 0x8d, 0x20, + 0x97, 0x15, 0xc0, 0x25, 0xc6, 0x20, 0x49, 0x92, 0x2a, 0x66, 0x25, 0xf0, + 0x37, 0xe0, 0xd3, 0x46, 0x51, 0xb3, 0x2d, 0x09, 0x9d, 0xb8, 0x6e, 0x30, + 0x0a, 0xa9, 0x2e, 0xa6, 0x60, 0x61, 0x40, 0x2c, 0xe3, 0xb0, 0x30, 0x60, + 0x43, 0xf5, 0x05, 0x06, 0x03, 0x43, 0x80, 0xad, 0xb2, 0x6d, 0x70, 0xb6, + 0x6d, 0xca, 0x5b, 0x8b, 0x01, 0x3a, 0xda, 0x22, 0xd6, 0x3d, 0x20, 0xb8, + 0xb0, 0xcd, 0xf6, 0x3a, 0x30, 0x0f, 0x98, 0x9f, 0x6d, 0x73, 0x80, 0x05, + 0xd9, 0xaf, 0x2d, 0x66, 0x93, 0x12, 0x67, 0x61, 0x80, 0x54, 0x7f, 0xdd, + 0xd7, 0xfb, 0x21, 0xdf, 0xfa, 0xeb, 0xad, 0xb3, 0x6d, 0x0b, 0x42, 0x21, + 0x40, 0x8a, 0xb3, 0xe7, 0x5b, 0x3b, 0x11, 0x6c, 0xf5, 0x1e, 0x7f, 0x6f, + 0x36, 0xf0, 0x28, 0xf0, 0x70, 0xf6, 0xf5, 0x91, 0xec, 0xeb, 0x0a, 0x97, + 0xff, 0x2d, 0x07, 0xc8, 0x8a, 0xe3, 0x2a, 0x23, 0x90, 0xea, 0x66, 0x0f, + 0x9c, 0x85, 0x9a, 0xd7, 0x95, 0xd9, 0xc9, 0xb5, 0x24, 0x49, 0x52, 0xd5, + 0x4c, 0xc2, 0xc2, 0x80, 0xbc, 0x26, 0x62, 0x61, 0x80, 0x54, 0x2f, 0x53, + 0x80, 0x9f, 0x18, 0x43, 0x14, 0x07, 0x03, 0x1b, 0x01, 0x6f, 0x18, 0xc5, + 0xff, 0xea, 0x41, 0x18, 0xb3, 0xb0, 0x6b, 0xf6, 0x75, 0xf7, 0xec, 0xeb, + 0x56, 0x09, 0xed, 0x63, 0x5f, 0x6a, 0x7b, 0xf8, 0x70, 0x2d, 0xa1, 0x40, + 0x60, 0x2e, 0xe1, 0x7e, 0x40, 0xeb, 0x03, 0x84, 0x2f, 0x12, 0x1e, 0x1e, + 0x7c, 0x29, 0xfb, 0xb5, 0x63, 0x3a, 0xa4, 0x3a, 0xb2, 0x30, 0x40, 0x2a, + 0xc6, 0x00, 0xc2, 0x2c, 0xa5, 0xed, 0xd6, 0xdb, 0x86, 0x12, 0x2a, 0xc0, + 0x9b, 0x2a, 0xfe, 0xfa, 0x5b, 0x8b, 0x1c, 0x8e, 0x6a, 0xf3, 0x67, 0x6f, + 0x02, 0x77, 0x03, 0x37, 0x02, 0xb7, 0x00, 0xb7, 0x13, 0x3a, 0x10, 0x34, + 0xaa, 0x31, 0x7e, 0x9b, 0x44, 0x3d, 0x71, 0x93, 0x54, 0x1f, 0xce, 0x41, + 0xcd, 0xcf, 0x31, 0x02, 0x92, 0x24, 0xa9, 0xaa, 0x6e, 0x06, 0x9e, 0x03, + 0xb6, 0x31, 0x8a, 0x9a, 0x1d, 0x0b, 0x7c, 0x9e, 0x77, 0x6e, 0x03, 0x2d, + 0xa9, 0xe3, 0x3c, 0x46, 0xb8, 0x99, 0x39, 0xc4, 0x28, 0xda, 0xad, 0x3b, + 0x70, 0x18, 0x70, 0x69, 0x03, 0x67, 0xd0, 0x07, 0x18, 0x05, 0x1c, 0x08, + 0x1c, 0x04, 0xec, 0x93, 0xe5, 0x52, 0x25, 0x9d, 0x58, 0xd7, 0xe5, 0x78, + 0x8f, 0x77, 0xf8, 0x3b, 0x6b, 0x09, 0x05, 0x02, 0xb3, 0xb2, 0xed, 0x99, + 0xf5, 0x7e, 0xfd, 0x8a, 0xdf, 0x2e, 0x52, 0xc7, 0xb2, 0x30, 0x40, 0x8a, + 0x6b, 0x4b, 0x60, 0xe7, 0x6c, 0x1b, 0xde, 0xe6, 0xd7, 0xce, 0xd2, 0x7b, + 0xfb, 0x03, 0xc2, 0x03, 0xb3, 0x0d, 0xc2, 0xec, 0xa2, 0xbb, 0x80, 0x8b, + 0x81, 0x8b, 0x08, 0x2d, 0x88, 0x1a, 0xc5, 0x1e, 0x9e, 0x64, 0x44, 0xb3, + 0x12, 0x9f, 0xa6, 0x90, 0xea, 0x79, 0x02, 0xf8, 0x31, 0x63, 0xc8, 0x65, + 0x21, 0x16, 0x35, 0x49, 0x92, 0xa4, 0xea, 0x6a, 0x01, 0x2e, 0x00, 0xbe, + 0x61, 0x14, 0x35, 0xdb, 0x18, 0x68, 0x26, 0x5c, 0x27, 0x91, 0x54, 0xbc, + 0x6b, 0x80, 0x53, 0x8d, 0x21, 0x8a, 0x71, 0x34, 0x5e, 0x61, 0xc0, 0x56, + 0x84, 0x02, 0xaf, 0x63, 0x80, 0x7d, 0xf1, 0x7e, 0x1c, 0x84, 0x6b, 0x47, + 0xad, 0x0f, 0x11, 0x1e, 0xf4, 0x36, 0xff, 0xfc, 0x55, 0x42, 0xa7, 0xe1, + 0xc7, 0x09, 0xc5, 0x39, 0xad, 0xdb, 0x1c, 0xa3, 0x93, 0xe2, 0xf0, 0x83, + 0x48, 0xaa, 0x5d, 0x13, 0xa1, 0xe5, 0xff, 0x70, 0x42, 0x7b, 0x9f, 0xb6, + 0x5f, 0xfb, 0x1a, 0x4f, 0x6e, 0x5d, 0x81, 0xd1, 0xd9, 0x76, 0x16, 0x70, + 0x2b, 0xf0, 0x57, 0xe0, 0x42, 0xaa, 0x5f, 0x29, 0xd8, 0xec, 0xf2, 0x47, + 0x73, 0x0b, 0xb6, 0x25, 0x93, 0xea, 0xe5, 0x10, 0xd2, 0x6a, 0x79, 0x57, + 0x26, 0x17, 0x62, 0x2b, 0x3d, 0x49, 0x92, 0x54, 0x6d, 0xe7, 0x62, 0x61, + 0x40, 0x5e, 0x13, 0xb1, 0x30, 0x40, 0xaa, 0x97, 0x29, 0x58, 0x18, 0x10, + 0xcb, 0x78, 0xc2, 0x4d, 0xe1, 0xb5, 0x15, 0x7f, 0x9d, 0x03, 0x80, 0xe3, + 0x81, 0xe3, 0x80, 0x03, 0xb2, 0xd7, 0xac, 0x0d, 0xd7, 0x1f, 0xf8, 0x40, + 0xb6, 0xb5, 0xf5, 0x3a, 0xa1, 0x58, 0xe0, 0xd1, 0x36, 0x5f, 0x9f, 0x20, + 0x74, 0xf5, 0x90, 0x54, 0x03, 0x0b, 0x03, 0xa4, 0x77, 0xd7, 0x95, 0x30, + 0x2b, 0x79, 0x64, 0xb6, 0xed, 0x41, 0x28, 0x00, 0xe8, 0x63, 0x34, 0x1d, + 0xaa, 0x53, 0x9b, 0x03, 0x80, 0x1f, 0x03, 0x7f, 0x04, 0x7e, 0x5a, 0xe1, + 0x1f, 0xf4, 0xe3, 0x5c, 0xf2, 0xa8, 0x27, 0x6c, 0x92, 0xea, 0xc3, 0x31, + 0x02, 0xf9, 0x39, 0x46, 0x40, 0x92, 0x24, 0x55, 0xdd, 0x63, 0xc0, 0x83, + 0xc0, 0x08, 0xa3, 0xa8, 0xd9, 0x58, 0xe0, 0x7d, 0xd8, 0x5e, 0x59, 0xaa, + 0x87, 0xe9, 0x84, 0x22, 0xee, 0xee, 0x46, 0xd1, 0x6e, 0x03, 0x81, 0xbd, + 0x81, 0x19, 0x15, 0x7d, 0x7d, 0xdb, 0x02, 0x5f, 0x06, 0xfe, 0x11, 0xe8, + 0xe9, 0x72, 0x47, 0xd7, 0x0f, 0xd8, 0x3f, 0xdb, 0xda, 0x7a, 0x83, 0x50, + 0x20, 0x70, 0x3f, 0x70, 0x4f, 0xb6, 0x3d, 0x42, 0xe8, 0x4e, 0x2c, 0xe9, + 0x6d, 0x58, 0x18, 0x20, 0xad, 0xd3, 0x99, 0xd0, 0xf6, 0x7f, 0x64, 0x9b, + 0x6d, 0x84, 0x07, 0x7e, 0x75, 0xd7, 0x8b, 0x30, 0x4f, 0xef, 0x9f, 0x09, + 0xad, 0x07, 0x7f, 0x90, 0x5d, 0x50, 0xa8, 0x8a, 0x01, 0x84, 0x99, 0x52, + 0x8a, 0xc3, 0xc2, 0x00, 0xa9, 0x3e, 0x7a, 0x00, 0x1f, 0x36, 0x86, 0x5c, + 0x5e, 0x00, 0x6e, 0x33, 0x06, 0x49, 0x92, 0xd4, 0x00, 0x26, 0x61, 0x61, + 0x40, 0x1e, 0x5d, 0x09, 0x4f, 0x9e, 0xfe, 0xda, 0x28, 0xa4, 0xc2, 0x2d, + 0x25, 0x74, 0x35, 0x3d, 0xd4, 0x28, 0xa2, 0x18, 0x47, 0xf5, 0x0a, 0x03, + 0x76, 0x05, 0xfe, 0x2d, 0xfb, 0x9c, 0xf6, 0x7e, 0x5b, 0xf1, 0x36, 0x02, + 0xde, 0x9f, 0x6d, 0xa7, 0x64, 0x7f, 0xb6, 0x82, 0x50, 0x8c, 0x78, 0x4f, + 0x9b, 0xed, 0x71, 0x60, 0x8d, 0x71, 0x49, 0x7e, 0x50, 0xa9, 0x71, 0x75, + 0x02, 0x76, 0xe4, 0xad, 0x45, 0x00, 0x7b, 0x00, 0xbd, 0x8d, 0x26, 0xe9, + 0xcf, 0xab, 0x93, 0x08, 0xf3, 0xab, 0x7f, 0x09, 0x7c, 0x07, 0x58, 0x5c, + 0x91, 0x03, 0x62, 0x5b, 0x4a, 0xc5, 0x31, 0x9b, 0x6a, 0x15, 0x8d, 0x48, + 0x65, 0xf2, 0x21, 0x1c, 0xa7, 0x93, 0xd7, 0x79, 0x54, 0xbf, 0x95, 0xa2, + 0x24, 0x49, 0x12, 0x84, 0xc2, 0x80, 0x1f, 0x10, 0x1e, 0xcc, 0x50, 0x6d, + 0x26, 0x62, 0x61, 0x80, 0x54, 0x2f, 0x53, 0xb0, 0x30, 0x20, 0x96, 0x66, + 0xe0, 0xf4, 0x8a, 0xbc, 0x96, 0x7e, 0xc0, 0x77, 0x09, 0x0f, 0xb3, 0x79, + 0x9f, 0x2d, 0x2d, 0x3d, 0x80, 0x7d, 0xb3, 0xad, 0xd5, 0x52, 0xde, 0xda, + 0x55, 0xe0, 0x1e, 0xe0, 0x29, 0xa0, 0xc5, 0xb8, 0xd4, 0x68, 0xfc, 0xc0, + 0x52, 0xa3, 0xe8, 0x44, 0x18, 0x01, 0x70, 0x00, 0x70, 0x18, 0x61, 0x0e, + 0x72, 0x7f, 0x63, 0x29, 0xed, 0xe7, 0xd6, 0x69, 0xc0, 0x47, 0x80, 0x8f, + 0x03, 0x37, 0x97, 0xfc, 0xf5, 0x38, 0x46, 0x20, 0x9e, 0xab, 0x8c, 0x40, + 0xaa, 0x1b, 0xc7, 0x08, 0xe4, 0x37, 0xd9, 0x08, 0x24, 0x49, 0x52, 0x83, + 0x98, 0x03, 0xdc, 0x44, 0xb8, 0x26, 0xa3, 0xda, 0x8c, 0x02, 0x76, 0x00, + 0x66, 0x1a, 0x85, 0x54, 0xb8, 0x29, 0xc0, 0x4f, 0x8c, 0x21, 0x8a, 0xbd, + 0x80, 0x2d, 0x81, 0x97, 0x4a, 0xfe, 0x3a, 0xf6, 0x23, 0x14, 0xbb, 0x6d, + 0xe7, 0x92, 0x96, 0x46, 0x6f, 0x60, 0x74, 0xb6, 0xb5, 0x7a, 0x03, 0xb8, + 0x8b, 0x30, 0x32, 0x64, 0x3a, 0xa1, 0x70, 0xc0, 0x07, 0x37, 0x54, 0x79, + 0x3e, 0xa5, 0xaa, 0xaa, 0xea, 0x4c, 0x98, 0x59, 0xf4, 0xaf, 0xc0, 0xdf, + 0x81, 0x57, 0x09, 0xb3, 0x65, 0xce, 0x06, 0x8e, 0xc5, 0xa2, 0x80, 0x2a, + 0x18, 0x0c, 0x5c, 0x4f, 0x18, 0x33, 0x50, 0x56, 0x5d, 0x81, 0xc3, 0x5d, + 0xca, 0xa8, 0x27, 0x6a, 0x92, 0x8a, 0x37, 0x00, 0x38, 0xd2, 0x18, 0x72, + 0xb9, 0x3f, 0x3b, 0x3e, 0x91, 0x24, 0x49, 0x6a, 0x14, 0x93, 0x8c, 0x20, + 0xb7, 0x13, 0x8c, 0x40, 0xaa, 0x8b, 0xc7, 0x80, 0xe7, 0x8d, 0x21, 0x8a, + 0x26, 0x60, 0x6c, 0xc9, 0x5f, 0xc3, 0x69, 0x84, 0xf1, 0x12, 0x16, 0x05, + 0x94, 0xdf, 0x46, 0x84, 0x87, 0x48, 0xcf, 0x24, 0x74, 0x10, 0x78, 0x05, + 0xb8, 0x1c, 0xf8, 0x12, 0xa1, 0x88, 0xc5, 0x0e, 0x47, 0xaa, 0x24, 0x0b, + 0x03, 0x54, 0x15, 0x9d, 0x09, 0x73, 0x64, 0xbe, 0x02, 0x5c, 0x41, 0x28, + 0x04, 0xb8, 0x07, 0xf8, 0x29, 0x30, 0x9e, 0xd0, 0xda, 0x47, 0xd5, 0x5c, + 0xf7, 0x9f, 0x03, 0x3f, 0x2e, 0xe9, 0xfe, 0x1f, 0x84, 0xad, 0xb7, 0x63, + 0x59, 0x09, 0xdc, 0x60, 0x0c, 0x52, 0x5d, 0x7c, 0x8c, 0x50, 0xe8, 0xa4, + 0xda, 0x79, 0x61, 0x5c, 0x92, 0x24, 0x35, 0x9a, 0x8b, 0x81, 0xe5, 0xc6, + 0x90, 0xcb, 0xc7, 0x09, 0x37, 0xd5, 0x24, 0x15, 0xef, 0x1a, 0x23, 0x88, + 0xa6, 0xb9, 0xc4, 0xfb, 0x7e, 0x16, 0xf0, 0xdf, 0x78, 0xc3, 0xb8, 0xaa, + 0x36, 0x01, 0x26, 0x64, 0xeb, 0x7c, 0x2f, 0xe1, 0x1e, 0xd3, 0x15, 0xc0, + 0x97, 0x09, 0xa3, 0xa8, 0x5d, 0x77, 0x55, 0x82, 0xa3, 0x04, 0x54, 0x66, + 0x03, 0x81, 0xa3, 0x08, 0x55, 0x86, 0x87, 0x03, 0x9b, 0x1a, 0x49, 0xc3, + 0xfa, 0x0a, 0xf0, 0x26, 0xf0, 0x2d, 0x0f, 0x84, 0x1b, 0xd6, 0x2d, 0x84, + 0xf6, 0x4f, 0x92, 0x8a, 0xe7, 0x18, 0x81, 0x7c, 0xd6, 0x02, 0x17, 0x18, + 0x83, 0x24, 0x49, 0x6a, 0x30, 0x8b, 0x81, 0x2b, 0x09, 0xdd, 0x1c, 0x55, + 0x9b, 0xed, 0x09, 0x0f, 0xc5, 0xdc, 0x6d, 0x14, 0x52, 0xe1, 0xa6, 0x00, + 0xa7, 0x1a, 0x43, 0x14, 0x87, 0x03, 0xbd, 0x80, 0x65, 0x25, 0xdb, 0xef, + 0x33, 0x09, 0x4f, 0x92, 0xab, 0x71, 0xf4, 0x25, 0x5c, 0xbf, 0x6f, 0xbd, + 0x86, 0xff, 0x1a, 0x30, 0x0d, 0xb8, 0x1a, 0x98, 0x0a, 0xcc, 0x37, 0x22, + 0x95, 0x91, 0x1d, 0x03, 0x54, 0x36, 0x23, 0x80, 0xd3, 0x81, 0x19, 0xc0, + 0x5c, 0xe0, 0x1c, 0xe0, 0x78, 0x2c, 0x0a, 0x10, 0x7c, 0x93, 0xf0, 0xd4, + 0x6a, 0x99, 0x8c, 0x73, 0xd9, 0xa2, 0x9e, 0xa0, 0x49, 0x2a, 0xde, 0xf6, + 0xc0, 0x3e, 0xc6, 0x90, 0xcb, 0xf5, 0x94, 0x7f, 0xae, 0xa2, 0x24, 0x49, + 0x52, 0x1e, 0x76, 0x4d, 0xca, 0xcf, 0xa2, 0x5c, 0xa9, 0x3e, 0xa6, 0x13, + 0x1e, 0x4a, 0x52, 0xfb, 0xf5, 0x04, 0x0e, 0x2e, 0xd9, 0x3e, 0x9f, 0x04, + 0x7c, 0xdd, 0xa5, 0x6b, 0x78, 0x9b, 0x12, 0xee, 0x3f, 0xfc, 0x85, 0x70, + 0x6f, 0xea, 0x6e, 0xe0, 0x3b, 0xc0, 0x6e, 0x46, 0xa3, 0x32, 0xb1, 0x30, + 0x40, 0xa9, 0x6b, 0x02, 0xf6, 0x05, 0x7e, 0x08, 0x3c, 0x0d, 0x3c, 0x90, + 0x7d, 0xd8, 0x8e, 0xf4, 0xfd, 0xab, 0xb7, 0xf1, 0x7b, 0x60, 0x70, 0x49, + 0xf6, 0x75, 0x38, 0xe1, 0x86, 0x9a, 0xe2, 0xb0, 0x30, 0x40, 0xaa, 0xdf, + 0xc9, 0xb1, 0xed, 0x4c, 0xf3, 0xf1, 0x82, 0xb8, 0x24, 0x49, 0x6a, 0x54, + 0x57, 0x13, 0xe6, 0xf8, 0xaa, 0x76, 0x27, 0xe0, 0x18, 0x2f, 0xa9, 0x1e, + 0x96, 0x02, 0xb7, 0x19, 0x43, 0x34, 0x65, 0x7a, 0x58, 0x6a, 0x5b, 0xe0, + 0xb7, 0x2e, 0x99, 0xd6, 0xd3, 0x89, 0xd0, 0xc5, 0xe7, 0x74, 0xe0, 0x21, + 0xe0, 0x29, 0x42, 0x57, 0x89, 0x7d, 0xf0, 0x3a, 0x99, 0x4a, 0xf0, 0xe6, + 0x95, 0x52, 0x34, 0x1c, 0xf8, 0x1e, 0xf0, 0x2c, 0x70, 0x27, 0xf0, 0x35, + 0x60, 0xa8, 0xb1, 0xe8, 0x3d, 0xf4, 0x01, 0x7e, 0x5a, 0x92, 0x7d, 0x75, + 0x8c, 0x40, 0x3c, 0xb3, 0x81, 0xc7, 0x8c, 0x41, 0xaa, 0x8b, 0x13, 0x8c, + 0x20, 0x97, 0x15, 0xc0, 0xa5, 0xc6, 0x20, 0x49, 0x92, 0x1a, 0xd4, 0x2a, + 0xe0, 0x62, 0x63, 0xc8, 0x65, 0x00, 0xa1, 0x0d, 0xb7, 0xa4, 0xe2, 0xf9, + 0x50, 0x4a, 0x3c, 0xe3, 0x29, 0xcf, 0xcd, 0xd3, 0xb3, 0x80, 0xde, 0x2e, + 0x99, 0xde, 0xc3, 0x0e, 0x84, 0xae, 0x12, 0x77, 0x01, 0xb3, 0x80, 0xff, + 0x04, 0x76, 0x32, 0x16, 0xa5, 0xc8, 0xc2, 0x00, 0xa5, 0x64, 0x63, 0xe0, + 0x5f, 0x08, 0x63, 0x02, 0x1e, 0x23, 0xb4, 0x86, 0x1f, 0x62, 0x2c, 0xaa, + 0xd1, 0x31, 0x94, 0xa3, 0x7d, 0x8f, 0x63, 0x04, 0xe2, 0xb9, 0xda, 0x08, + 0xa4, 0xba, 0xd8, 0x1f, 0xd8, 0xd1, 0x18, 0x72, 0xb9, 0x1c, 0x58, 0x64, + 0x0c, 0x92, 0x24, 0xa9, 0x81, 0xd9, 0x3d, 0x29, 0x3f, 0xc7, 0x09, 0x48, + 0xf5, 0x61, 0x61, 0x40, 0x3c, 0x5b, 0x53, 0x8e, 0xeb, 0xb7, 0x7b, 0x00, + 0x1f, 0x72, 0xb9, 0x54, 0xa3, 0x6d, 0x80, 0x6f, 0x01, 0x4f, 0x10, 0x0a, + 0x05, 0x3e, 0x0b, 0x6c, 0x64, 0x2c, 0x4a, 0x85, 0x85, 0x01, 0x4a, 0xc1, + 0xce, 0xc0, 0xaf, 0x80, 0x17, 0x81, 0x5f, 0x10, 0xc6, 0x04, 0x48, 0x79, + 0x35, 0x01, 0x9f, 0x4f, 0x7c, 0x1f, 0xfb, 0x02, 0xa3, 0x5c, 0x2a, 0x4f, + 0xcc, 0xa4, 0x92, 0xf3, 0x82, 0x64, 0x7e, 0x5e, 0x08, 0x97, 0x24, 0x49, + 0x8d, 0xee, 0x36, 0xc2, 0x13, 0x75, 0xaa, 0xdd, 0x87, 0xf0, 0x06, 0x83, + 0x54, 0x0f, 0x8f, 0x02, 0xcf, 0x1b, 0x43, 0x34, 0x65, 0xe8, 0xa6, 0xfa, + 0x05, 0x97, 0x49, 0xed, 0xb4, 0x0f, 0xe1, 0xde, 0xd7, 0x4b, 0xc0, 0x2f, + 0x81, 0x61, 0x46, 0xa2, 0x7a, 0xb3, 0x30, 0x40, 0xf5, 0xb4, 0x2b, 0x70, + 0x21, 0xf0, 0x08, 0x56, 0x4d, 0x29, 0xfe, 0x49, 0x72, 0xe7, 0x84, 0xf7, + 0x6f, 0x2c, 0xce, 0x04, 0x8c, 0x65, 0x25, 0x70, 0xbd, 0x31, 0x48, 0x85, + 0xeb, 0x02, 0x1c, 0x6b, 0x0c, 0xb9, 0xbc, 0x06, 0x4c, 0x35, 0x06, 0x49, + 0x92, 0xd4, 0xe0, 0x5a, 0x80, 0xc9, 0xc6, 0x90, 0x4b, 0x2f, 0xe0, 0xc3, + 0xc6, 0x20, 0xd5, 0x85, 0xe7, 0x72, 0xf1, 0xa4, 0xde, 0x4d, 0xb5, 0x33, + 0x30, 0xc1, 0x65, 0x52, 0x24, 0x1b, 0x01, 0x9f, 0x03, 0x1e, 0x07, 0xae, + 0x05, 0xf6, 0x32, 0x12, 0xd5, 0x8b, 0x85, 0x01, 0xaa, 0x87, 0xad, 0x09, + 0xb3, 0xe4, 0x1e, 0x22, 0xdc, 0x54, 0x68, 0x32, 0x12, 0x45, 0x36, 0x00, + 0xd8, 0xd3, 0x03, 0xdf, 0x86, 0x70, 0x2b, 0xf0, 0x86, 0x31, 0x48, 0x85, + 0x1b, 0x03, 0x0c, 0x34, 0x86, 0x5c, 0x2e, 0x20, 0x14, 0x35, 0x49, 0x92, + 0x24, 0x35, 0xba, 0xf3, 0x8c, 0x20, 0x37, 0xbb, 0x77, 0x49, 0xf5, 0x61, + 0xd7, 0xca, 0x78, 0xf6, 0x23, 0xed, 0xeb, 0x0a, 0x23, 0x81, 0xfe, 0x2e, + 0x93, 0x3a, 0xc0, 0x61, 0xc0, 0x3d, 0x84, 0x87, 0x66, 0xb7, 0x32, 0x0e, + 0x15, 0xcd, 0xc2, 0x00, 0x15, 0xed, 0xd3, 0x84, 0x0e, 0x01, 0xc7, 0x60, + 0x41, 0x80, 0x3a, 0x56, 0xaa, 0x73, 0xaa, 0x3a, 0x03, 0x47, 0xb9, 0x3c, + 0x9e, 0x90, 0x49, 0x25, 0xe7, 0x85, 0xc8, 0xfc, 0x1c, 0x23, 0x20, 0x49, + 0x92, 0x14, 0x3c, 0x01, 0xdc, 0x6b, 0x0c, 0xb9, 0x1c, 0x06, 0x6c, 0x69, + 0x0c, 0x52, 0xe1, 0xa6, 0x03, 0x6f, 0x1a, 0x43, 0x14, 0x9d, 0x48, 0xfb, + 0x1a, 0xe9, 0x6e, 0x2e, 0x91, 0x3a, 0x50, 0x13, 0xe1, 0xa1, 0xd9, 0x47, + 0x80, 0x4f, 0x19, 0x87, 0x8a, 0xfe, 0xf0, 0x95, 0x8a, 0xf2, 0x3d, 0xe0, + 0x77, 0xc0, 0xc6, 0x46, 0xa1, 0x02, 0x6c, 0x9f, 0xe8, 0x7e, 0x8d, 0xc2, + 0x6a, 0xd3, 0x98, 0x2c, 0x0c, 0x90, 0x8a, 0xb7, 0x31, 0x30, 0xde, 0x18, + 0x72, 0x79, 0x1e, 0xb8, 0xc3, 0x18, 0x24, 0x49, 0x92, 0xfe, 0x97, 0x45, + 0x93, 0xf9, 0x74, 0x02, 0x8e, 0x37, 0x06, 0xa9, 0x70, 0x4b, 0x80, 0xdb, + 0x8d, 0x21, 0x9a, 0x94, 0xbb, 0xaa, 0x6e, 0xef, 0xf2, 0xa8, 0x00, 0x7d, + 0x81, 0x3f, 0x00, 0x67, 0x18, 0x85, 0x8a, 0x3c, 0x88, 0x94, 0x8a, 0x70, + 0x0c, 0xf0, 0x4d, 0x63, 0x50, 0x81, 0x52, 0x2d, 0x40, 0x71, 0x8c, 0x40, + 0x3c, 0x2f, 0x02, 0x8f, 0x1a, 0x83, 0x54, 0x97, 0x9f, 0xe9, 0xbd, 0x8c, + 0x21, 0x97, 0xbf, 0x10, 0xe6, 0xe9, 0x4a, 0x92, 0x24, 0x29, 0x38, 0x1f, + 0x58, 0x6d, 0x0c, 0xb9, 0xd8, 0xc5, 0x4b, 0xaa, 0x0f, 0x1f, 0x52, 0x89, + 0xe7, 0x28, 0xa0, 0x5b, 0xa2, 0xfb, 0xb6, 0x91, 0xcb, 0xa3, 0x02, 0xfd, + 0x07, 0xf0, 0x21, 0x63, 0x50, 0x11, 0x2c, 0x0c, 0x50, 0x51, 0xf6, 0x30, + 0x02, 0x15, 0xac, 0x7b, 0xa2, 0xfb, 0xd5, 0xec, 0xd2, 0x44, 0x73, 0xb5, + 0x11, 0x48, 0x75, 0xe1, 0x05, 0xc8, 0xfc, 0xce, 0x37, 0x02, 0x49, 0x92, + 0xa4, 0xb7, 0x78, 0x19, 0xb8, 0xde, 0x18, 0x72, 0xd9, 0x0b, 0xd8, 0xd5, + 0x18, 0xa4, 0xc2, 0x59, 0x18, 0x10, 0xcf, 0xc6, 0xc0, 0xe8, 0x44, 0xf7, + 0xad, 0xab, 0xcb, 0xa3, 0x82, 0xed, 0x69, 0x04, 0x2a, 0x82, 0x85, 0x01, + 0x2a, 0xca, 0x39, 0xc0, 0x42, 0x63, 0x50, 0x81, 0x5e, 0x4f, 0x70, 0x9f, + 0x86, 0x00, 0xbb, 0xb8, 0x34, 0x9e, 0x88, 0x49, 0x25, 0x36, 0x08, 0x38, + 0xd8, 0x18, 0x72, 0xb9, 0x87, 0x30, 0x47, 0x57, 0x92, 0x24, 0x49, 0x6f, + 0xe5, 0x38, 0x81, 0xfc, 0x4e, 0x30, 0x02, 0xa9, 0x70, 0x8f, 0x00, 0x2f, + 0x18, 0x43, 0x34, 0xa9, 0x76, 0x57, 0x5d, 0xec, 0xd2, 0xa8, 0x40, 0xaf, + 0x11, 0xee, 0xa1, 0x49, 0x1d, 0xce, 0xc2, 0x00, 0x15, 0xe5, 0x69, 0xe0, + 0x50, 0x60, 0x81, 0x51, 0xa8, 0x20, 0xf3, 0x12, 0xdc, 0xa7, 0x09, 0x2e, + 0x4b, 0x34, 0xab, 0x80, 0x1b, 0x8c, 0x41, 0x2a, 0xdc, 0x44, 0xa0, 0xb3, + 0x31, 0xe4, 0xe2, 0x05, 0x6f, 0x49, 0x92, 0xa4, 0xb7, 0x77, 0x09, 0xb0, + 0xd4, 0x18, 0x72, 0x39, 0x09, 0xaf, 0xef, 0x4a, 0xf5, 0x70, 0x8d, 0x11, + 0x44, 0x73, 0x74, 0xa2, 0xfb, 0xf5, 0xb2, 0x4b, 0xa3, 0x82, 0xcc, 0x07, + 0x0e, 0x01, 0x66, 0x19, 0x85, 0x8a, 0xe0, 0x81, 0xa3, 0x8a, 0x74, 0x3f, + 0xa1, 0xc5, 0xd9, 0xb9, 0x46, 0xa1, 0x02, 0x3c, 0x94, 0xe0, 0x3e, 0x8d, + 0x73, 0x59, 0xa2, 0xb9, 0x05, 0x58, 0x64, 0x0c, 0x52, 0xe1, 0x1c, 0x23, + 0x90, 0xcf, 0x1a, 0xe0, 0x02, 0x63, 0x90, 0x24, 0x49, 0x7a, 0x5b, 0x4b, + 0x81, 0xbf, 0x1b, 0x43, 0x2e, 0x83, 0x49, 0xb7, 0x0d, 0xb7, 0x54, 0x65, + 0x76, 0xb1, 0x8c, 0x67, 0x28, 0xb0, 0x63, 0x82, 0xfb, 0xf5, 0xb0, 0x4b, + 0xa3, 0x02, 0x5c, 0x04, 0xec, 0x06, 0x3c, 0x68, 0x14, 0x2a, 0x8a, 0x85, + 0x01, 0x2a, 0xda, 0x7c, 0xe0, 0x64, 0x60, 0x0c, 0x30, 0xc3, 0x38, 0xd4, + 0x41, 0x56, 0x03, 0xf7, 0x26, 0xb6, 0x4f, 0xbd, 0x81, 0x83, 0x5c, 0x1a, + 0x4f, 0xc0, 0xa4, 0x12, 0xdb, 0x19, 0x18, 0x61, 0x0c, 0xb9, 0x4c, 0x27, + 0xcd, 0x4e, 0x36, 0x92, 0x24, 0x49, 0xa9, 0xb0, 0xbb, 0x52, 0x7e, 0x16, + 0xef, 0x4a, 0xc5, 0xbb, 0x0e, 0x58, 0x69, 0x0c, 0xd1, 0x34, 0x27, 0xb8, + 0x4f, 0x33, 0x08, 0x45, 0xfe, 0x52, 0x47, 0xb8, 0x1b, 0x38, 0x12, 0x38, + 0x8e, 0x70, 0xcf, 0x4c, 0x2a, 0x8c, 0x85, 0x01, 0xaa, 0x97, 0x6b, 0x80, + 0x7d, 0x80, 0xf1, 0xc0, 0x9d, 0xc6, 0xa1, 0xc8, 0x6e, 0x06, 0x16, 0x26, + 0xb6, 0x4f, 0x47, 0x00, 0x3d, 0x5c, 0x9a, 0x68, 0x2c, 0x0c, 0x90, 0x8a, + 0x77, 0xb2, 0x11, 0xe4, 0xe6, 0x85, 0x6e, 0x49, 0x92, 0xa4, 0x77, 0x37, + 0x15, 0xdb, 0x36, 0xe7, 0x75, 0x2c, 0xd0, 0xdd, 0x18, 0xa4, 0x42, 0xbd, + 0x01, 0xdc, 0x66, 0x0c, 0xd1, 0xa4, 0xd8, 0x65, 0xf5, 0x55, 0xd7, 0x58, + 0x1d, 0xe0, 0x76, 0x42, 0x21, 0xcc, 0xbe, 0xc0, 0x34, 0xe3, 0x50, 0x3d, + 0x58, 0x18, 0xa0, 0x7a, 0xbb, 0x12, 0xd8, 0x1f, 0x18, 0x09, 0xfc, 0x0f, + 0xb0, 0xdc, 0x48, 0x14, 0xc1, 0x9f, 0x3d, 0xc0, 0xad, 0xb4, 0x17, 0x81, + 0x47, 0x8d, 0x41, 0x2a, 0xfc, 0x98, 0xf1, 0x44, 0x63, 0xc8, 0x65, 0x19, + 0x70, 0xa9, 0x31, 0x48, 0x92, 0x24, 0xbd, 0xab, 0xd5, 0x84, 0x76, 0xba, + 0xaa, 0xdd, 0x26, 0x78, 0xcd, 0x41, 0xaa, 0x07, 0x1f, 0x5a, 0x89, 0xe7, + 0x40, 0xa0, 0x5f, 0x82, 0xfb, 0x75, 0x8e, 0x4b, 0xa3, 0x08, 0x96, 0x01, + 0x7f, 0x04, 0xf6, 0x02, 0x0e, 0x00, 0xae, 0x32, 0x12, 0xd5, 0x93, 0x85, + 0x01, 0x4a, 0xc5, 0xbd, 0xc0, 0xa7, 0x80, 0x2d, 0x81, 0xcf, 0x01, 0x77, + 0x18, 0x89, 0x72, 0x9a, 0x4d, 0x7a, 0x73, 0x9c, 0x9b, 0x08, 0xe3, 0x33, + 0x14, 0xc7, 0xd5, 0x46, 0x20, 0x15, 0xee, 0x20, 0x60, 0x6b, 0x63, 0xc8, + 0xe5, 0x32, 0x60, 0x89, 0x31, 0x48, 0x92, 0x24, 0xbd, 0x27, 0xbb, 0x2c, + 0xe5, 0xe7, 0x38, 0x01, 0xa9, 0x78, 0x16, 0x06, 0xc4, 0xd3, 0x95, 0xd0, + 0x6d, 0x35, 0xc5, 0x9f, 0x4b, 0x73, 0x5c, 0x1e, 0xe5, 0xd0, 0x42, 0xe8, + 0x0e, 0xf0, 0x59, 0x60, 0x2b, 0xe0, 0x9f, 0x80, 0xfb, 0x8d, 0x45, 0x29, + 0xb0, 0x30, 0x40, 0xa9, 0x59, 0x08, 0xfc, 0x1a, 0x18, 0x05, 0xec, 0x08, + 0x9c, 0x01, 0x3c, 0x69, 0x2c, 0xaa, 0xc1, 0xd7, 0x80, 0x55, 0x89, 0xed, + 0xd3, 0x48, 0x60, 0x90, 0x4b, 0xe3, 0x89, 0x97, 0x54, 0x62, 0x5e, 0x68, + 0xcc, 0xcf, 0x0b, 0xdc, 0x92, 0x24, 0x49, 0x1b, 0xe6, 0x4e, 0xe0, 0x29, + 0x63, 0xc8, 0xa5, 0x19, 0xe8, 0x6f, 0x0c, 0x52, 0xa1, 0x1e, 0x01, 0x5e, + 0x30, 0x86, 0x68, 0x52, 0xec, 0x7c, 0xf2, 0x26, 0xf0, 0x75, 0x97, 0x46, + 0x35, 0x78, 0x02, 0x38, 0x1d, 0xd8, 0x81, 0xd0, 0x1d, 0xe0, 0x37, 0xa4, + 0x37, 0xf2, 0x58, 0x0d, 0xce, 0xc2, 0x00, 0xa5, 0x6c, 0x66, 0xf6, 0x21, + 0x3a, 0x0c, 0xd8, 0x15, 0xf8, 0x36, 0x56, 0x55, 0xe9, 0xdd, 0x5d, 0x41, + 0x7a, 0xdd, 0x02, 0x52, 0x3d, 0xb0, 0x2d, 0xab, 0x55, 0xc0, 0x0d, 0xc6, + 0x20, 0x15, 0xaa, 0x07, 0x70, 0x8c, 0x31, 0xe4, 0xb2, 0x00, 0xb8, 0xd6, + 0x18, 0x24, 0x49, 0x92, 0x36, 0xd8, 0x64, 0x23, 0xc8, 0xa5, 0x9b, 0xc7, + 0xec, 0x52, 0x5d, 0x4c, 0x35, 0x82, 0x68, 0xc6, 0x01, 0x9d, 0x13, 0xdc, + 0xaf, 0x49, 0xc0, 0x35, 0x2e, 0x8f, 0xde, 0xc5, 0x7d, 0xc0, 0xb7, 0x80, + 0x5d, 0x80, 0xe1, 0x84, 0x87, 0x5d, 0x9f, 0x31, 0x16, 0xa5, 0xca, 0xc2, + 0x00, 0x95, 0xc5, 0xa3, 0xc0, 0xf7, 0x08, 0x73, 0x58, 0xb6, 0x03, 0xbe, + 0x90, 0xfd, 0x40, 0x5e, 0x61, 0x34, 0xca, 0x3c, 0x03, 0x7c, 0x22, 0xd1, + 0x7d, 0x6b, 0x76, 0x79, 0xa2, 0xb9, 0x15, 0x58, 0x64, 0x0c, 0x52, 0xa1, + 0xc6, 0x93, 0xe6, 0xac, 0xbf, 0x32, 0xb8, 0x80, 0xf4, 0xba, 0xd8, 0x48, + 0x92, 0x24, 0xa5, 0xec, 0x3c, 0x42, 0xfb, 0x5d, 0xd5, 0xce, 0x2e, 0x5f, + 0x52, 0xf1, 0xec, 0x6a, 0x19, 0x4f, 0x7f, 0x60, 0xdf, 0x04, 0xf7, 0xab, + 0x05, 0x38, 0x09, 0x78, 0xce, 0x25, 0x52, 0x66, 0x79, 0xf6, 0xbd, 0xff, + 0x79, 0x60, 0x5b, 0x60, 0x6f, 0xe0, 0xfb, 0xc0, 0x63, 0x46, 0xa3, 0x32, + 0xb0, 0x30, 0x40, 0x65, 0xf4, 0x2c, 0xf0, 0x0b, 0xc2, 0xcc, 0xf6, 0xfe, + 0x84, 0x1b, 0x16, 0xbf, 0x01, 0x9e, 0x36, 0x9a, 0x86, 0xf5, 0x12, 0x70, + 0x24, 0x69, 0xb6, 0xe5, 0xd9, 0x82, 0x50, 0xd0, 0x22, 0x4f, 0xb8, 0xa4, + 0xb2, 0xf2, 0x02, 0x63, 0x7e, 0x8e, 0x11, 0x90, 0x24, 0x49, 0xaa, 0xcd, + 0xd3, 0xc0, 0x0c, 0x63, 0xc8, 0xe5, 0x40, 0xc2, 0x0d, 0x0a, 0x49, 0xc5, + 0x99, 0x0e, 0xac, 0x34, 0x86, 0x68, 0x52, 0xed, 0xba, 0xfa, 0x2a, 0xe1, + 0xda, 0xf3, 0x3c, 0x97, 0xa8, 0x61, 0xcd, 0x24, 0x8c, 0xc0, 0x6e, 0x06, + 0xde, 0x07, 0x8c, 0x05, 0x7e, 0x89, 0x05, 0x23, 0x2a, 0x21, 0x0b, 0x03, + 0x54, 0x76, 0xcb, 0x80, 0x2b, 0x81, 0xcf, 0x12, 0xe6, 0xb6, 0x6c, 0x45, + 0xa8, 0xe0, 0xfb, 0x3d, 0xce, 0xa5, 0x6b, 0x14, 0xcf, 0x00, 0x1f, 0x24, + 0xdd, 0xf6, 0x3c, 0xcd, 0x40, 0x93, 0xcb, 0x14, 0x8d, 0x85, 0x01, 0x52, + 0xb1, 0x36, 0x05, 0x8e, 0x32, 0x86, 0x5c, 0x9e, 0x06, 0xee, 0x36, 0x06, + 0x49, 0x92, 0xa4, 0x9a, 0x59, 0x5c, 0x99, 0x4f, 0x13, 0x70, 0x82, 0x31, + 0x48, 0x85, 0x7a, 0x03, 0xb8, 0xdd, 0x18, 0xa2, 0x49, 0xb9, 0xeb, 0xea, + 0x53, 0xc0, 0x21, 0x84, 0x87, 0x16, 0x55, 0x7d, 0x4f, 0x11, 0xee, 0x31, + 0x9d, 0x44, 0xb8, 0xe7, 0xb4, 0x23, 0xf0, 0x39, 0xe0, 0x2a, 0xc2, 0x3d, + 0x29, 0xa9, 0xb4, 0x2c, 0x0c, 0x50, 0xd5, 0xbc, 0x94, 0x9d, 0x40, 0x9e, + 0x02, 0xec, 0x04, 0x6c, 0x49, 0x78, 0xd2, 0xf1, 0x77, 0xc0, 0x93, 0xc6, + 0x53, 0x39, 0x37, 0x00, 0xfb, 0x11, 0x2a, 0xf6, 0x52, 0x35, 0xce, 0x65, + 0x8a, 0xe6, 0x45, 0xc2, 0x58, 0x11, 0x49, 0xc5, 0x39, 0x1e, 0xe8, 0x6e, + 0x0c, 0xb9, 0xd8, 0x06, 0x57, 0x92, 0x24, 0x29, 0x9f, 0xc9, 0xc0, 0x6a, + 0x63, 0xc8, 0xe5, 0x24, 0x23, 0x90, 0x0a, 0xe7, 0x43, 0x2c, 0xf1, 0xec, + 0x0e, 0x6c, 0x93, 0xf0, 0xfe, 0x3d, 0x4e, 0xb8, 0x16, 0x7d, 0x93, 0x4b, + 0x55, 0x39, 0x4f, 0x00, 0x67, 0x03, 0x27, 0x02, 0x83, 0x08, 0xf7, 0x96, + 0x4e, 0x21, 0xdc, 0x6b, 0x7a, 0xc9, 0x78, 0x54, 0x25, 0x16, 0x06, 0xa8, + 0xea, 0xe6, 0x00, 0xe7, 0x03, 0xa7, 0x02, 0xc3, 0xb2, 0x0f, 0xf5, 0x13, + 0x80, 0xdf, 0x02, 0x0f, 0x79, 0xa2, 0x59, 0x5a, 0x2b, 0x80, 0xaf, 0x03, + 0x87, 0x01, 0xaf, 0x24, 0xbc, 0x9f, 0xdd, 0x81, 0x43, 0x5d, 0xae, 0xa8, + 0x27, 0x5a, 0xde, 0x64, 0x93, 0x8a, 0xe5, 0x18, 0x81, 0xfc, 0x26, 0x1b, + 0x81, 0x24, 0x49, 0x52, 0x2e, 0x0b, 0x80, 0x6b, 0x8d, 0x21, 0x97, 0xe1, + 0x38, 0xce, 0x50, 0x2a, 0x9a, 0x85, 0x01, 0x71, 0x8d, 0x4d, 0x7c, 0xff, + 0xe6, 0x13, 0xae, 0xf7, 0xfe, 0x3b, 0xf0, 0xa6, 0xcb, 0x55, 0x4a, 0xab, + 0x81, 0x07, 0x09, 0xe3, 0xa9, 0x3f, 0x46, 0x18, 0x05, 0x3c, 0x1c, 0xf8, + 0x0c, 0xe1, 0x5a, 0xce, 0x5c, 0x23, 0x52, 0x95, 0x75, 0x31, 0x02, 0x35, + 0x98, 0xb9, 0xc0, 0x05, 0xd9, 0x06, 0xd0, 0x0b, 0xd8, 0x13, 0x18, 0xd9, + 0x66, 0xdb, 0x11, 0x8b, 0x66, 0x52, 0x76, 0x25, 0x70, 0x1a, 0xe9, 0x8e, + 0x0e, 0x68, 0xeb, 0x50, 0xa0, 0x8f, 0x4b, 0xe6, 0x89, 0x96, 0x54, 0x52, + 0x43, 0x80, 0x51, 0xc6, 0x90, 0xcb, 0x9d, 0x38, 0xd2, 0x48, 0x92, 0x24, + 0xa9, 0x3d, 0x26, 0x01, 0x63, 0x8c, 0x21, 0x97, 0x89, 0xc0, 0x7d, 0xc6, + 0x20, 0x15, 0xe6, 0x61, 0xe0, 0x05, 0x60, 0xb0, 0x51, 0x44, 0xd1, 0x4c, + 0x98, 0xe5, 0x9e, 0xb2, 0x35, 0xc0, 0x0f, 0x80, 0x8b, 0x81, 0x9f, 0xf9, + 0xf3, 0x2a, 0x69, 0x6b, 0x09, 0xd7, 0x67, 0x66, 0x00, 0xf7, 0x64, 0xdb, + 0xfd, 0xc0, 0x72, 0xa3, 0x51, 0xa3, 0xb2, 0x30, 0x40, 0x8d, 0x6e, 0x19, + 0x70, 0x5b, 0xb6, 0xb5, 0xda, 0x08, 0x18, 0x01, 0xec, 0xdd, 0x66, 0x1b, + 0x8e, 0x73, 0xe2, 0xeb, 0xfd, 0x03, 0xfc, 0x6a, 0xe0, 0xbf, 0x80, 0x3b, + 0x4a, 0xb4, 0xdf, 0x8e, 0x11, 0x88, 0x67, 0x15, 0x70, 0xbd, 0x31, 0x48, + 0x85, 0x3a, 0xd9, 0x9f, 0x7d, 0xb9, 0x39, 0x17, 0x57, 0x92, 0x24, 0xa9, + 0x7d, 0x2e, 0x05, 0x96, 0x60, 0xb1, 0x7d, 0x1e, 0x13, 0x09, 0x5d, 0x16, + 0xed, 0x92, 0x29, 0x15, 0x67, 0x1a, 0xf0, 0x4f, 0xc6, 0x10, 0xc5, 0x21, + 0xd9, 0x67, 0xff, 0x92, 0x12, 0xec, 0xeb, 0x4c, 0x42, 0x87, 0x83, 0xbd, + 0x08, 0x0f, 0xb2, 0x9d, 0x08, 0x74, 0x76, 0x09, 0xeb, 0x6a, 0x2e, 0x70, + 0x6f, 0x9b, 0xed, 0x76, 0xe0, 0x55, 0x63, 0x91, 0xd6, 0xb1, 0x30, 0x40, + 0xfa, 0xbf, 0xde, 0x00, 0x6e, 0xcd, 0xb6, 0x56, 0xef, 0x23, 0x74, 0x13, + 0xd8, 0x13, 0xd8, 0x39, 0xdb, 0x86, 0x11, 0x3a, 0x0e, 0xa8, 0xe3, 0xac, + 0x20, 0x8c, 0x82, 0xf8, 0x31, 0x61, 0xce, 0x4f, 0xd9, 0x8c, 0x75, 0x09, + 0xa3, 0xb9, 0x0d, 0x58, 0x64, 0x0c, 0x52, 0xa1, 0x4e, 0x34, 0x82, 0x5c, + 0x56, 0x03, 0x17, 0x19, 0x83, 0x24, 0x49, 0x52, 0xbb, 0x2c, 0x03, 0x2e, + 0x03, 0x4e, 0x32, 0x8a, 0x9a, 0x6d, 0x46, 0xb8, 0xb1, 0x36, 0xcd, 0x28, + 0xa4, 0xc2, 0x4c, 0xc1, 0xc2, 0x80, 0x58, 0x5a, 0x47, 0xb3, 0x5e, 0x5e, + 0xa2, 0x7d, 0xbe, 0x8f, 0xf0, 0x70, 0xc5, 0x99, 0xc0, 0x57, 0x09, 0xa3, + 0x8c, 0xbb, 0xbb, 0x94, 0x1d, 0x7e, 0x9c, 0xf0, 0x78, 0xb6, 0x3d, 0x4a, + 0xe8, 0x02, 0x70, 0x0f, 0x16, 0x01, 0x48, 0xef, 0xc9, 0xc2, 0x00, 0x69, + 0xc3, 0xbc, 0x02, 0x5c, 0x93, 0x6d, 0x6d, 0x0d, 0x22, 0x14, 0x09, 0xec, + 0xd2, 0xe6, 0xeb, 0xee, 0x84, 0xae, 0x03, 0xca, 0x67, 0x0d, 0x70, 0x03, + 0x70, 0x6e, 0x76, 0x11, 0x60, 0x71, 0x49, 0x5f, 0xc7, 0xee, 0xc0, 0x36, + 0x2e, 0x67, 0xd4, 0x13, 0x2c, 0x49, 0xc5, 0x79, 0x3f, 0xa1, 0x00, 0x4e, + 0xb5, 0x9b, 0x0a, 0xbc, 0x6c, 0x0c, 0x92, 0x24, 0x49, 0xed, 0x36, 0x09, + 0x0b, 0x03, 0xf2, 0x9a, 0x88, 0x85, 0x01, 0x52, 0x91, 0xa6, 0x13, 0xba, + 0x5d, 0x76, 0x35, 0x8a, 0x28, 0xc6, 0x51, 0xae, 0xc2, 0x80, 0x56, 0x8f, + 0x01, 0x9f, 0x04, 0x3e, 0x97, 0xbd, 0x86, 0x93, 0x81, 0x23, 0x80, 0x6e, + 0x2e, 0x69, 0x6e, 0x6f, 0x12, 0x46, 0x0a, 0x3f, 0x9a, 0xe5, 0xdb, 0xfa, + 0xf5, 0x71, 0x42, 0x97, 0x61, 0x49, 0x35, 0xb2, 0x30, 0x40, 0x6a, 0x9f, + 0x39, 0xd9, 0x36, 0xbd, 0xcd, 0x9f, 0x35, 0x11, 0xe6, 0x32, 0x0f, 0x03, + 0x76, 0xcd, 0xbe, 0xee, 0x0c, 0x6c, 0x47, 0xa8, 0xda, 0xd6, 0xdb, 0xe7, + 0x78, 0x53, 0x76, 0xd2, 0x7a, 0x19, 0xf0, 0x7a, 0x05, 0x5e, 0x53, 0xb3, + 0xcb, 0x1a, 0x95, 0x85, 0x01, 0x52, 0xb1, 0x26, 0x1a, 0x41, 0x6e, 0x8e, + 0x11, 0x90, 0x24, 0x49, 0x8a, 0xe3, 0x5a, 0x60, 0x1e, 0xb0, 0xb9, 0x51, + 0xd4, 0xec, 0x18, 0xc2, 0x8d, 0xa9, 0x25, 0x46, 0x21, 0x15, 0x62, 0x31, + 0xa1, 0x65, 0xf9, 0x41, 0x46, 0x11, 0x45, 0x33, 0xe1, 0x1a, 0x7b, 0x4b, + 0x49, 0xf7, 0x7f, 0x19, 0xa1, 0x93, 0xe0, 0x45, 0xc0, 0x26, 0xc0, 0x87, + 0x81, 0xc3, 0xb3, 0xf7, 0xc7, 0x16, 0x2e, 0xef, 0xdb, 0x9a, 0x07, 0xcc, + 0x62, 0x5d, 0x17, 0x80, 0x47, 0x08, 0x1d, 0x84, 0x9f, 0x37, 0x1a, 0x29, + 0x2e, 0x0b, 0x03, 0xa4, 0xf8, 0x5a, 0x80, 0xe7, 0xb2, 0x6d, 0xfd, 0x0e, + 0x03, 0xbd, 0x81, 0xa1, 0x84, 0x22, 0x81, 0xb6, 0xdb, 0xe0, 0x6c, 0x6b, + 0x84, 0x4e, 0x03, 0x6b, 0xb2, 0x1f, 0xf2, 0x77, 0x02, 0x37, 0x13, 0x0a, + 0x02, 0x66, 0x56, 0xf0, 0x75, 0x8e, 0xf3, 0x5b, 0x21, 0x9a, 0x17, 0xb3, + 0x83, 0x41, 0x49, 0xc5, 0x1d, 0x1f, 0x1e, 0x6f, 0x0c, 0xb9, 0x2c, 0x05, + 0xae, 0x30, 0x06, 0x49, 0x92, 0xa4, 0x28, 0xd6, 0x00, 0x7f, 0x05, 0xbe, + 0x68, 0x14, 0x35, 0xeb, 0x0d, 0x4c, 0x20, 0x8c, 0x67, 0x94, 0x54, 0x8c, + 0x29, 0x58, 0x18, 0x10, 0xcb, 0x16, 0xc0, 0x5e, 0x84, 0x19, 0xf1, 0x65, + 0xb7, 0x10, 0xf8, 0x9f, 0x6c, 0x03, 0xd8, 0x31, 0x7b, 0x9f, 0x7c, 0x00, + 0xd8, 0x97, 0x70, 0x6f, 0xa0, 0x73, 0x03, 0xac, 0xe9, 0x62, 0x60, 0x36, + 0xe1, 0x46, 0xff, 0xac, 0xb7, 0xd9, 0x96, 0xfa, 0xb6, 0x97, 0x8a, 0x61, + 0x61, 0x80, 0x54, 0xac, 0xa5, 0xc0, 0x43, 0xd9, 0xf6, 0x76, 0xfa, 0x02, + 0x5b, 0x13, 0x3a, 0x0e, 0x6c, 0xd5, 0x66, 0x1b, 0x40, 0xa8, 0x90, 0xdf, + 0x3c, 0xfb, 0x75, 0xb7, 0x92, 0xbc, 0xd6, 0xe7, 0x81, 0x67, 0x09, 0x37, + 0x75, 0x1f, 0x65, 0x5d, 0xab, 0x9f, 0x15, 0x15, 0x5f, 0xe7, 0xfe, 0xd9, + 0x81, 0x9d, 0xe2, 0x9d, 0x58, 0xb5, 0x18, 0x83, 0x54, 0x98, 0xc3, 0xf1, + 0xa9, 0xac, 0xbc, 0xfe, 0x86, 0x4f, 0x65, 0x49, 0x92, 0x24, 0xc5, 0x34, + 0x09, 0x0b, 0x03, 0xf2, 0x9a, 0x88, 0x85, 0x01, 0x52, 0x91, 0xa6, 0x10, + 0x66, 0xcc, 0x2b, 0x8e, 0x66, 0xaa, 0x51, 0x18, 0xb0, 0xbe, 0xa7, 0xb2, + 0xed, 0xf7, 0xd9, 0xef, 0x7b, 0x02, 0xc3, 0x09, 0x9d, 0x87, 0x77, 0xc9, + 0xbe, 0x6e, 0x4b, 0x78, 0x88, 0xb0, 0x77, 0x09, 0x5e, 0xcf, 0x4a, 0x60, + 0x3e, 0x61, 0xa4, 0xe2, 0x3c, 0x60, 0x01, 0xe1, 0x21, 0xaf, 0x17, 0x59, + 0x57, 0x08, 0xf0, 0x22, 0xb0, 0xc8, 0xb7, 0xb4, 0x94, 0x06, 0x0b, 0x03, + 0xa4, 0xb4, 0x2c, 0xca, 0xb6, 0xf7, 0x7a, 0x3a, 0x7a, 0x53, 0xc2, 0x58, + 0x82, 0x81, 0x40, 0x3f, 0x42, 0x4b, 0xa2, 0xf5, 0xb7, 0x7e, 0x40, 0x8f, + 0xec, 0x6b, 0xb7, 0xec, 0x40, 0xa2, 0x77, 0xf6, 0xeb, 0x4d, 0x6a, 0xd8, + 0xa7, 0xe5, 0xac, 0xbb, 0x91, 0xff, 0x3a, 0xe1, 0x86, 0xc7, 0xc2, 0xec, + 0xd7, 0x0b, 0xdb, 0x6c, 0xf3, 0xb3, 0x1f, 0xf2, 0xad, 0x3f, 0xec, 0x17, + 0x36, 0xf0, 0x3a, 0x8e, 0xa3, 0x31, 0x2a, 0x3d, 0x8b, 0x3c, 0xb1, 0x92, + 0x54, 0x1c, 0xc7, 0x08, 0xe4, 0xe7, 0x18, 0x01, 0x49, 0x92, 0xa4, 0xb8, + 0x66, 0x00, 0x4f, 0x02, 0x3b, 0x19, 0x45, 0xcd, 0x8e, 0x20, 0x5c, 0x3b, + 0x7a, 0xd9, 0x28, 0xa4, 0x42, 0x3c, 0x04, 0xbc, 0x40, 0xb8, 0xa1, 0xab, + 0xf6, 0x1b, 0x07, 0x9c, 0xd1, 0x00, 0xaf, 0x73, 0x39, 0x70, 0x5f, 0xb6, + 0xad, 0x6f, 0x53, 0xc2, 0x43, 0x83, 0x83, 0x09, 0x0f, 0x13, 0x0e, 0x64, + 0xdd, 0x75, 0xff, 0xb6, 0xf7, 0x01, 0x7a, 0x67, 0x7f, 0x06, 0xe1, 0x7e, + 0x40, 0xcf, 0x0d, 0xfc, 0x7f, 0xb7, 0x10, 0xae, 0xf1, 0xaf, 0x24, 0x3c, + 0xe4, 0xb7, 0x34, 0xfb, 0xf5, 0xeb, 0x84, 0xfb, 0x01, 0xad, 0xd7, 0xfd, + 0xd7, 0xbf, 0x0f, 0xb0, 0x90, 0x50, 0x00, 0xf0, 0x32, 0xf0, 0x9a, 0x6f, + 0x55, 0xa9, 0x5c, 0x2c, 0x0c, 0x90, 0xca, 0xe9, 0xb5, 0x6c, 0x7b, 0x3c, + 0xd2, 0x7f, 0xaf, 0x2b, 0xd0, 0xa7, 0xcd, 0xef, 0xd7, 0x62, 0x15, 0x5f, + 0x7b, 0x0f, 0x5c, 0x15, 0xc7, 0x2a, 0xe0, 0x7a, 0x63, 0x90, 0x0a, 0xd3, + 0x1b, 0x38, 0xda, 0x18, 0x72, 0x99, 0x0f, 0x5c, 0x67, 0x0c, 0x92, 0x24, + 0x49, 0xd1, 0x9d, 0x4f, 0x63, 0xdc, 0x1c, 0x8a, 0xad, 0x75, 0x44, 0xd8, + 0xcf, 0x8d, 0x42, 0x2a, 0xcc, 0x34, 0xe0, 0x9f, 0x8c, 0x21, 0x8a, 0x91, + 0xc0, 0x20, 0x60, 0x4e, 0x03, 0x67, 0xd0, 0x7a, 0x0f, 0xe0, 0xa1, 0x9c, + 0xff, 0x7e, 0x3f, 0xa0, 0xa9, 0xcd, 0xef, 0x97, 0x10, 0xae, 0xb5, 0x4a, + 0x6a, 0x60, 0x9d, 0x8c, 0x40, 0x52, 0x76, 0x40, 0xd0, 0xb6, 0xe2, 0xcf, + 0xa2, 0x80, 0xfc, 0xba, 0x12, 0xaa, 0xf2, 0x15, 0xc7, 0x6d, 0xbe, 0x1f, + 0xa5, 0x42, 0x7d, 0x84, 0xb7, 0x16, 0x8a, 0x69, 0xc3, 0x9d, 0x0f, 0xac, + 0x36, 0x06, 0x49, 0x92, 0xa4, 0xe8, 0x26, 0xe1, 0x78, 0xb9, 0xbc, 0xec, + 0x06, 0x26, 0x15, 0xcb, 0xae, 0x97, 0xf1, 0x34, 0x01, 0x63, 0x8c, 0xa1, + 0x5d, 0xd6, 0x7f, 0xd2, 0xdf, 0xa2, 0x00, 0x49, 0x16, 0x06, 0x48, 0x52, + 0x64, 0x07, 0xb2, 0xae, 0x75, 0x93, 0x3c, 0xa1, 0x92, 0xca, 0xc6, 0x0b, + 0x87, 0xf9, 0x39, 0x46, 0x40, 0x92, 0x24, 0xa9, 0x63, 0x3c, 0x03, 0xdc, + 0x69, 0x0c, 0xb9, 0xec, 0x83, 0x63, 0x18, 0xa4, 0x22, 0x4d, 0xc7, 0x9b, + 0xaf, 0x31, 0xd9, 0x95, 0x55, 0x92, 0x22, 0xb3, 0x30, 0x40, 0x92, 0x3c, + 0x60, 0x4d, 0x99, 0x85, 0x01, 0x52, 0x71, 0x06, 0x02, 0x87, 0x1a, 0x43, + 0x2e, 0x33, 0x81, 0x7b, 0x8c, 0x41, 0x92, 0x24, 0xa9, 0xc3, 0x58, 0x84, + 0x99, 0xdf, 0x89, 0x46, 0x20, 0x15, 0x66, 0x31, 0x70, 0xbb, 0x31, 0x44, + 0x73, 0x04, 0xd0, 0xc3, 0x18, 0x24, 0x29, 0x1e, 0x0b, 0x03, 0x24, 0x29, + 0xae, 0x66, 0x23, 0x88, 0xe6, 0x45, 0xe0, 0x11, 0x63, 0x90, 0x0a, 0x33, + 0x91, 0x30, 0x87, 0x54, 0xb5, 0xfb, 0x8b, 0x11, 0x48, 0x92, 0x24, 0x75, + 0xa8, 0xc9, 0xc0, 0x4a, 0x63, 0xc8, 0xe5, 0x64, 0xde, 0x3a, 0x63, 0x5a, + 0x52, 0xc7, 0xf2, 0x21, 0x97, 0x78, 0x7a, 0x03, 0x07, 0x19, 0x83, 0x24, + 0xc5, 0x63, 0x61, 0x80, 0x24, 0xc5, 0x33, 0x14, 0xd8, 0xd1, 0x18, 0xa2, + 0xb9, 0x06, 0xe7, 0x48, 0x4a, 0x45, 0x72, 0x8c, 0x40, 0x3e, 0x2d, 0xc0, + 0xf9, 0xc6, 0x20, 0x49, 0x92, 0xd4, 0xa1, 0x5e, 0x03, 0xa6, 0x19, 0x43, + 0x2e, 0xdb, 0x00, 0xfb, 0x1b, 0x83, 0x54, 0x18, 0x0b, 0x03, 0xe2, 0xb2, + 0x3b, 0xab, 0x24, 0x45, 0x64, 0x61, 0x80, 0x24, 0xc5, 0x73, 0xb4, 0x11, + 0x78, 0x22, 0x25, 0x95, 0xd4, 0x30, 0x60, 0x6f, 0x63, 0xc8, 0xe5, 0x76, + 0x60, 0x96, 0x31, 0x48, 0x92, 0x24, 0x75, 0x38, 0xc7, 0x09, 0xe4, 0x67, + 0x11, 0xb0, 0x54, 0x9c, 0x87, 0x80, 0xd9, 0xc6, 0x10, 0xcd, 0x04, 0x23, + 0x90, 0xa4, 0x78, 0x2c, 0x0c, 0x90, 0xa4, 0x78, 0xac, 0x60, 0x8d, 0x67, + 0x35, 0x70, 0x9d, 0x31, 0x48, 0x85, 0x39, 0xc9, 0x08, 0x72, 0xf3, 0x02, + 0xb5, 0x24, 0x49, 0x52, 0x31, 0x2e, 0x03, 0x16, 0x19, 0x43, 0x2e, 0x1f, + 0x03, 0xba, 0x19, 0x83, 0x54, 0x18, 0x3b, 0x9c, 0xc4, 0x33, 0x04, 0xd8, + 0xc5, 0x18, 0x24, 0x29, 0x0e, 0x0b, 0x03, 0x24, 0x29, 0x8e, 0x8d, 0x81, + 0xd1, 0xc6, 0x10, 0xcd, 0x6d, 0x78, 0xc1, 0x47, 0x2a, 0x4a, 0x13, 0x70, + 0xa2, 0x31, 0xe4, 0xb2, 0x0a, 0xb8, 0xc8, 0x18, 0x24, 0x49, 0x92, 0x0a, + 0xb1, 0x82, 0x50, 0x1c, 0xa0, 0xda, 0x6d, 0x0a, 0x1c, 0x65, 0x0c, 0x52, + 0x61, 0xec, 0x82, 0x19, 0x57, 0xb3, 0x11, 0x48, 0x52, 0x1c, 0x16, 0x06, + 0x48, 0x52, 0x1c, 0x47, 0x61, 0xf5, 0xbd, 0x27, 0x50, 0x52, 0x39, 0x8d, + 0x06, 0xb6, 0x35, 0x86, 0xdc, 0x9f, 0x55, 0xaf, 0x18, 0x83, 0x24, 0x49, + 0x52, 0x61, 0xec, 0xd6, 0x94, 0x9f, 0xe3, 0x04, 0xa4, 0xe2, 0x5c, 0x4b, + 0x28, 0x24, 0x57, 0x1c, 0x76, 0x69, 0x95, 0xa4, 0x48, 0x2c, 0x0c, 0x90, + 0x24, 0x0f, 0x50, 0x53, 0x64, 0x61, 0x80, 0x54, 0x1c, 0x2f, 0x10, 0xe6, + 0xe7, 0x85, 0x69, 0x49, 0x92, 0xa4, 0x62, 0x5d, 0x07, 0xbc, 0x64, 0x0c, + 0xb9, 0x4c, 0x00, 0xfa, 0x19, 0x83, 0x54, 0x88, 0xc5, 0xc0, 0x1d, 0xc6, + 0x10, 0xcd, 0x28, 0xa0, 0xbf, 0x31, 0x48, 0x52, 0xfb, 0x59, 0x18, 0x20, + 0x49, 0x71, 0x3e, 0x4b, 0x6d, 0xc9, 0x17, 0xcf, 0x5c, 0xe0, 0x61, 0x63, + 0x90, 0x0a, 0xd1, 0x0d, 0xf8, 0xa8, 0x31, 0xe4, 0xb2, 0x18, 0xb8, 0xd2, + 0x18, 0x24, 0x49, 0x92, 0x0a, 0xb5, 0x16, 0xf8, 0xab, 0x31, 0xe4, 0xd2, + 0x03, 0x38, 0xc6, 0x18, 0xa4, 0xc2, 0xf8, 0xd0, 0x4b, 0x3c, 0x9d, 0xf1, + 0xda, 0xab, 0x24, 0x45, 0x61, 0x61, 0x80, 0x24, 0xb5, 0xdf, 0x7e, 0xc0, + 0x40, 0x63, 0x88, 0xe6, 0x6a, 0xa0, 0xc5, 0x18, 0xa4, 0x42, 0x34, 0x63, + 0xd5, 0x7d, 0x5e, 0x97, 0x00, 0xcb, 0x8c, 0x41, 0x92, 0x24, 0xa9, 0x70, + 0x76, 0x6d, 0xca, 0xcf, 0x6e, 0x61, 0x52, 0x71, 0x2c, 0x0c, 0x88, 0xcb, + 0x6e, 0xad, 0x92, 0x14, 0x81, 0x85, 0x01, 0x92, 0xe4, 0x81, 0xa9, 0x27, + 0x4e, 0x52, 0xe3, 0xf2, 0xc2, 0x60, 0x7e, 0x5e, 0x90, 0x96, 0x24, 0x49, + 0xaa, 0x8f, 0xfb, 0x80, 0x47, 0x8d, 0x21, 0x97, 0x83, 0x80, 0xad, 0x8d, + 0x41, 0x2a, 0xc4, 0x43, 0x38, 0xfa, 0x24, 0xa6, 0xb1, 0x40, 0x57, 0x63, + 0x90, 0xa4, 0xf6, 0xb1, 0x30, 0x40, 0x92, 0xda, 0xaf, 0xd9, 0x08, 0xa2, + 0x59, 0x4d, 0x98, 0x19, 0x29, 0xa9, 0xe3, 0xf5, 0xcd, 0x4e, 0xac, 0x55, + 0xbb, 0x39, 0xc0, 0x8d, 0xc6, 0x20, 0x49, 0x92, 0x54, 0x37, 0x93, 0x8d, + 0x20, 0x97, 0x4e, 0xc0, 0x89, 0xc6, 0x20, 0x15, 0xa2, 0x05, 0x98, 0x6a, + 0x0c, 0xd1, 0xf4, 0x05, 0x46, 0x19, 0x83, 0x24, 0xb5, 0xff, 0x60, 0x50, + 0x92, 0x94, 0xdf, 0xd6, 0xc0, 0x6e, 0xc6, 0x10, 0xcd, 0xed, 0xc0, 0xeb, + 0xc6, 0x20, 0x15, 0xe2, 0x78, 0xc2, 0x9c, 0x51, 0xd5, 0xee, 0x7c, 0x60, + 0x8d, 0x31, 0x48, 0x92, 0x24, 0xd5, 0xcd, 0x79, 0x38, 0x82, 0x2e, 0xaf, + 0x93, 0x8d, 0x40, 0x2a, 0x8c, 0x5d, 0x31, 0xe3, 0xb2, 0x6b, 0xab, 0x24, + 0xb5, 0x93, 0x85, 0x01, 0x92, 0xd4, 0x3e, 0xe3, 0x81, 0x26, 0x63, 0xf0, + 0x84, 0x49, 0x2a, 0x21, 0xc7, 0x08, 0xe4, 0xe7, 0x18, 0x01, 0x49, 0x92, + 0xa4, 0xfa, 0x7a, 0x1e, 0xb8, 0xcd, 0x18, 0x72, 0xd9, 0x19, 0x18, 0x61, + 0x0c, 0x52, 0x21, 0xa6, 0x01, 0xab, 0x8c, 0x21, 0x1a, 0xbb, 0xb6, 0x4a, + 0x52, 0x3b, 0x59, 0x18, 0x20, 0x49, 0xed, 0x63, 0xa5, 0x6a, 0x5c, 0x16, + 0x06, 0x48, 0xc5, 0x18, 0x02, 0x8c, 0x36, 0x86, 0x5c, 0x1e, 0x07, 0x1e, + 0x30, 0x06, 0x49, 0x92, 0xa4, 0xba, 0xb3, 0x58, 0x33, 0x3f, 0x8b, 0x84, + 0xa5, 0x62, 0x2c, 0x06, 0xee, 0x30, 0x86, 0x68, 0x86, 0x03, 0xdb, 0x1b, + 0x83, 0x24, 0xe5, 0x67, 0x61, 0x80, 0x24, 0xe5, 0xd7, 0x0b, 0xf8, 0xa0, + 0x31, 0x44, 0x33, 0x07, 0x78, 0xc8, 0x18, 0xa4, 0x42, 0x4c, 0xf0, 0x38, + 0x30, 0xb7, 0x73, 0x8d, 0x40, 0x92, 0x24, 0x29, 0x09, 0x17, 0x02, 0x2b, + 0x8d, 0x21, 0x97, 0x0f, 0x19, 0x81, 0x54, 0x18, 0x1f, 0x82, 0x89, 0xcb, + 0x87, 0xb4, 0x24, 0xa9, 0x1d, 0xbc, 0x20, 0x2c, 0x49, 0xf9, 0x1d, 0x0e, + 0xf4, 0x34, 0x86, 0xa8, 0x27, 0x4a, 0xce, 0x88, 0x94, 0x8a, 0xd1, 0xcb, + 0x08, 0x72, 0x69, 0x01, 0x26, 0x1b, 0x83, 0x24, 0x49, 0x52, 0x12, 0x5e, + 0xc3, 0x1b, 0x6e, 0x9e, 0x0f, 0x48, 0xe9, 0xf3, 0x73, 0x2a, 0x2e, 0xc7, + 0x09, 0x48, 0x52, 0x3b, 0x58, 0x18, 0x20, 0x49, 0xf9, 0x59, 0xa1, 0xea, + 0x89, 0x92, 0xa4, 0xc6, 0x72, 0x0b, 0xf0, 0x9c, 0x31, 0x48, 0x92, 0x24, + 0x25, 0xc3, 0x71, 0x02, 0x92, 0x52, 0xf7, 0x10, 0xf0, 0x92, 0x31, 0x44, + 0x73, 0x10, 0xd0, 0xd7, 0x18, 0x24, 0x29, 0x1f, 0x0b, 0x03, 0x24, 0x29, + 0x9f, 0x26, 0x60, 0xac, 0x31, 0x44, 0xb3, 0x1a, 0xb8, 0xce, 0x18, 0x24, + 0x25, 0xce, 0x0b, 0xcf, 0x92, 0x24, 0x49, 0x69, 0xb9, 0x02, 0x78, 0xdd, + 0x18, 0x24, 0x25, 0xac, 0x05, 0x98, 0x6a, 0x0c, 0xd1, 0x74, 0x25, 0x74, + 0x71, 0x95, 0x24, 0xe5, 0x60, 0x61, 0x80, 0x24, 0xe5, 0xb3, 0x17, 0xb0, + 0xa5, 0x31, 0x44, 0x73, 0x3b, 0x5e, 0xcc, 0x91, 0x94, 0xb6, 0x95, 0xc0, + 0x25, 0xc6, 0x20, 0x49, 0x92, 0x94, 0x94, 0x15, 0xc0, 0xdf, 0x8c, 0x41, + 0x52, 0xe2, 0xec, 0x92, 0x19, 0x97, 0x5d, 0x5c, 0x25, 0x29, 0x27, 0x0b, + 0x03, 0x24, 0x29, 0x1f, 0xe7, 0x59, 0x79, 0x82, 0x24, 0xa9, 0xb1, 0x5c, + 0x05, 0xbc, 0x6a, 0x0c, 0x92, 0x24, 0x49, 0xc9, 0xb1, 0xab, 0x93, 0xa4, + 0xd4, 0x4d, 0x03, 0x56, 0x19, 0x43, 0x34, 0xe3, 0xf0, 0xde, 0x96, 0x24, + 0xe5, 0xe2, 0x87, 0xa7, 0x24, 0xe5, 0x3f, 0x00, 0x55, 0x3c, 0x16, 0x06, + 0x48, 0x4a, 0x9d, 0x17, 0x9c, 0x25, 0x49, 0x92, 0xd2, 0x74, 0x23, 0x30, + 0xdb, 0x18, 0x24, 0x25, 0x6c, 0x31, 0x70, 0xa7, 0x31, 0x44, 0x33, 0x00, + 0xd8, 0xc7, 0x18, 0x24, 0xa9, 0x76, 0x16, 0x06, 0x48, 0x52, 0xed, 0x06, + 0x02, 0x7b, 0x1b, 0x43, 0x34, 0x73, 0x81, 0x87, 0x8c, 0x41, 0x52, 0xc2, + 0x16, 0x03, 0x57, 0x1b, 0x83, 0x24, 0x49, 0x52, 0x92, 0xd6, 0x02, 0x17, + 0x18, 0x83, 0xa4, 0xc4, 0xf9, 0x50, 0x4c, 0x5c, 0x3e, 0xb4, 0x25, 0x49, + 0x39, 0x58, 0x18, 0x20, 0x49, 0xb5, 0x1b, 0xef, 0xe7, 0x67, 0xf4, 0x13, + 0xa3, 0x16, 0x63, 0x90, 0x94, 0xb0, 0x0b, 0x81, 0xe5, 0xc6, 0x20, 0x49, + 0x92, 0x94, 0x2c, 0xbb, 0x3b, 0x49, 0x4a, 0x9d, 0x85, 0x01, 0x71, 0x39, + 0xe6, 0x55, 0x92, 0x72, 0xf0, 0xc6, 0x96, 0x24, 0xd5, 0xce, 0x8a, 0x54, + 0x4f, 0x8c, 0x24, 0x35, 0x16, 0x2f, 0x34, 0x4b, 0x92, 0x24, 0xa5, 0xed, + 0x41, 0xe0, 0x61, 0x63, 0x90, 0x94, 0xf8, 0xe7, 0xd4, 0x1c, 0x63, 0x88, + 0x66, 0x0f, 0x60, 0x88, 0x31, 0x48, 0x52, 0x6d, 0x2c, 0x0c, 0x90, 0xa4, + 0xda, 0x74, 0x07, 0x0e, 0x33, 0x86, 0x68, 0x56, 0x03, 0xd3, 0x8d, 0x41, + 0x52, 0xc2, 0x5e, 0x02, 0x6e, 0x36, 0x06, 0x49, 0x92, 0xa4, 0xe4, 0x59, + 0xcc, 0x29, 0x29, 0x65, 0x2d, 0xc0, 0x54, 0x63, 0x88, 0x6a, 0x8c, 0x11, + 0x48, 0x52, 0x6d, 0x2c, 0x0c, 0x90, 0xa4, 0xda, 0x1c, 0x0c, 0x6c, 0x64, + 0x0c, 0xd1, 0xdc, 0x01, 0xbc, 0x6e, 0x0c, 0x92, 0x12, 0x76, 0x1e, 0x61, + 0x6e, 0xad, 0x24, 0x49, 0x92, 0x3c, 0x6e, 0x93, 0xa4, 0xf6, 0xb0, 0x6b, + 0x66, 0x5c, 0x76, 0x75, 0x95, 0xa4, 0x1a, 0x59, 0x18, 0x20, 0x49, 0x1e, + 0x70, 0x7a, 0x42, 0x24, 0x49, 0xef, 0xcc, 0x27, 0xcf, 0x24, 0x49, 0x92, + 0xca, 0xc1, 0x4e, 0x4f, 0x92, 0x52, 0x37, 0x0d, 0x58, 0x65, 0x0c, 0xd1, + 0x1c, 0x0a, 0xf4, 0x32, 0x06, 0x49, 0xda, 0x70, 0x16, 0x06, 0x48, 0x52, + 0x6d, 0xc6, 0x1a, 0x41, 0x54, 0x16, 0x06, 0x48, 0x4a, 0xd9, 0x43, 0x38, + 0xab, 0x56, 0x92, 0x24, 0xa9, 0x4c, 0x2c, 0xea, 0x94, 0x94, 0xb2, 0x45, + 0xc0, 0x5d, 0xc6, 0x10, 0x4d, 0x4f, 0xe0, 0x10, 0x63, 0x90, 0xa4, 0x0d, + 0xd7, 0xc5, 0x08, 0xa4, 0x4a, 0xe8, 0x43, 0x68, 0x6f, 0xdf, 0x07, 0xd8, + 0xf8, 0x5d, 0xfe, 0xde, 0xeb, 0x84, 0x79, 0x56, 0xaf, 0x03, 0xcb, 0xb3, + 0x4d, 0x1b, 0x6e, 0x17, 0x60, 0xa8, 0x31, 0x44, 0x33, 0x0f, 0x78, 0xd0, + 0x18, 0x24, 0x25, 0xcc, 0x0b, 0xcb, 0x92, 0x24, 0x49, 0xe5, 0x72, 0x11, + 0xf0, 0x73, 0xc2, 0xcd, 0x22, 0x49, 0x4a, 0xd1, 0x14, 0x60, 0xb4, 0x31, + 0x44, 0x33, 0x0e, 0xb8, 0xd2, 0x18, 0x6a, 0xd6, 0x2b, 0xfb, 0x59, 0xd9, + 0x17, 0x68, 0x02, 0xfa, 0xbd, 0xcb, 0xdf, 0x5d, 0x0c, 0xbc, 0x01, 0x2c, + 0xc9, 0x36, 0x49, 0x25, 0x66, 0x61, 0x80, 0x94, 0xa6, 0x4e, 0xc0, 0x16, + 0xc0, 0x36, 0xc0, 0x10, 0x60, 0xf3, 0xec, 0xf7, 0x03, 0xb2, 0x6d, 0x73, + 0xe0, 0x7d, 0x84, 0x62, 0x80, 0x4d, 0xda, 0xf1, 0xff, 0x59, 0x42, 0xb8, + 0x39, 0x3b, 0x1f, 0x58, 0x00, 0xcc, 0x06, 0x9e, 0x00, 0x9e, 0xca, 0xb6, + 0x17, 0x08, 0x85, 0x04, 0x0a, 0x9a, 0x8d, 0x20, 0xfa, 0x89, 0x90, 0xef, + 0x2f, 0x49, 0xa9, 0x5a, 0x0b, 0x4c, 0x36, 0x06, 0x49, 0x92, 0xa4, 0x52, + 0x59, 0x04, 0x5c, 0x0d, 0x1c, 0x63, 0x14, 0x92, 0x12, 0x35, 0x05, 0xf8, + 0xbe, 0x31, 0x44, 0x33, 0x01, 0xf8, 0x2c, 0x5e, 0x63, 0x6c, 0xab, 0x13, + 0x30, 0x18, 0xd8, 0x31, 0xdb, 0x86, 0x01, 0x5b, 0x11, 0xee, 0x2b, 0x6c, + 0x46, 0xb8, 0xb7, 0xd0, 0x3b, 0xe7, 0x7f, 0xbb, 0xf5, 0xa1, 0xc3, 0x37, + 0x08, 0xf7, 0x13, 0x5e, 0xce, 0xbe, 0xce, 0x27, 0xdc, 0x67, 0x98, 0x4b, + 0xb8, 0xa7, 0xf0, 0x6c, 0xf6, 0xfb, 0xb5, 0x2e, 0x87, 0x94, 0x16, 0x0b, + 0x03, 0xa4, 0xfa, 0xe9, 0x0a, 0x6c, 0x9b, 0xfd, 0x70, 0xde, 0x29, 0xfb, + 0xba, 0x3d, 0xa1, 0x18, 0x60, 0x2b, 0xa0, 0x5b, 0x01, 0xfb, 0xd0, 0x27, + 0xfb, 0x7f, 0x6e, 0xff, 0x0e, 0xff, 0x7c, 0x19, 0x70, 0x2f, 0x70, 0x1b, + 0x70, 0x7b, 0xb6, 0xbd, 0xda, 0xc0, 0x6b, 0x36, 0xce, 0xb7, 0x6d, 0xf4, + 0x13, 0x21, 0x49, 0x4a, 0xd5, 0x4d, 0x84, 0x82, 0x39, 0x49, 0x92, 0x24, + 0x95, 0xcb, 0x24, 0x2c, 0x0c, 0x90, 0x94, 0xae, 0x07, 0x80, 0x39, 0xc0, + 0x20, 0xa3, 0x88, 0x62, 0x10, 0x30, 0x22, 0xcb, 0xb5, 0x51, 0xbd, 0x0f, + 0xd8, 0x1f, 0x38, 0x20, 0xdb, 0xf6, 0xa6, 0xe3, 0x3a, 0xe7, 0x34, 0x11, + 0x1e, 0x54, 0xdc, 0x84, 0x50, 0x7c, 0xf0, 0x6e, 0x56, 0x12, 0xae, 0xab, + 0x3c, 0x0f, 0xcc, 0xcc, 0xb6, 0x27, 0x09, 0x0f, 0x24, 0x3e, 0x0b, 0xac, + 0xf2, 0xed, 0x2b, 0x15, 0xcf, 0xc2, 0x00, 0xa9, 0xe3, 0x35, 0x11, 0x6e, + 0xf6, 0xef, 0x0e, 0xec, 0xd6, 0xe6, 0xeb, 0x50, 0x42, 0x71, 0x40, 0xca, + 0x7a, 0x01, 0x07, 0x66, 0x1b, 0x84, 0x8a, 0xc0, 0xfb, 0x80, 0x4b, 0xb2, + 0xed, 0xa9, 0x06, 0x5a, 0xc7, 0x4d, 0xb3, 0x03, 0x2c, 0xc5, 0xb1, 0x06, + 0xb8, 0xce, 0x18, 0x24, 0x25, 0xcc, 0x31, 0x02, 0x92, 0x24, 0x49, 0xe5, + 0x74, 0x15, 0xe1, 0xa1, 0x86, 0xfe, 0x46, 0x21, 0x29, 0x41, 0x2d, 0xc0, + 0x34, 0xe0, 0x1f, 0x8c, 0x22, 0x9a, 0x66, 0x1a, 0xaf, 0x30, 0x60, 0x27, + 0x42, 0x11, 0xdc, 0x31, 0xc0, 0x9e, 0x84, 0x7b, 0x10, 0xa9, 0xe9, 0x46, + 0xb8, 0x07, 0x32, 0x14, 0x38, 0x64, 0xbd, 0x7f, 0xb6, 0x0a, 0x78, 0x1a, + 0x78, 0x18, 0x78, 0x28, 0xfb, 0xfa, 0x30, 0xa1, 0x60, 0x40, 0x52, 0x07, + 0xb2, 0x30, 0x40, 0x8a, 0x6f, 0x20, 0xb0, 0x6f, 0xb6, 0xed, 0x0f, 0x8c, + 0x04, 0x36, 0xae, 0xc8, 0x6b, 0x6b, 0x22, 0x54, 0x1c, 0xee, 0x0d, 0xfc, + 0x57, 0xf6, 0xc3, 0xfa, 0x4f, 0xc0, 0x1f, 0x08, 0xed, 0x83, 0xaa, 0x6c, + 0x8c, 0x9f, 0x99, 0x51, 0xdd, 0x0e, 0xbc, 0x66, 0x0c, 0x92, 0x12, 0xb5, + 0x82, 0x50, 0x00, 0x27, 0x49, 0x92, 0xa4, 0xf2, 0x59, 0x99, 0x1d, 0xcb, + 0x9d, 0x62, 0x14, 0x92, 0x12, 0x35, 0x05, 0x0b, 0x03, 0x62, 0x1a, 0x07, + 0x7c, 0xaf, 0x01, 0x5e, 0xe7, 0xc6, 0xc0, 0xa7, 0x81, 0x4f, 0x02, 0xbb, + 0x94, 0xfc, 0xb5, 0x74, 0x05, 0x86, 0x67, 0xdb, 0x71, 0x6d, 0xfe, 0x7c, + 0x31, 0x30, 0x03, 0xb8, 0x33, 0xdb, 0xee, 0x22, 0x8c, 0x2a, 0x90, 0x14, + 0x89, 0x37, 0xb9, 0xa4, 0xf6, 0x7f, 0x0f, 0xed, 0x44, 0x68, 0xd1, 0x33, + 0x9a, 0x70, 0xc3, 0x7c, 0x38, 0x69, 0x56, 0xe8, 0x75, 0x84, 0xdd, 0x80, + 0xb3, 0x80, 0x33, 0x08, 0x05, 0x02, 0x3f, 0xa1, 0xba, 0x6d, 0x97, 0x1d, + 0x23, 0x10, 0xff, 0x04, 0x48, 0x92, 0x52, 0x75, 0x25, 0x61, 0x66, 0x9e, + 0x24, 0x49, 0x92, 0xca, 0x69, 0x12, 0x16, 0x06, 0x48, 0x4a, 0xd7, 0x34, + 0x60, 0x35, 0xde, 0x9f, 0x89, 0x65, 0x1f, 0x60, 0x33, 0xc2, 0xbc, 0xfb, + 0x2a, 0xda, 0x1c, 0xf8, 0x0c, 0xf0, 0x05, 0x42, 0x0b, 0xff, 0x2a, 0xdb, + 0x18, 0x38, 0x34, 0xdb, 0x5a, 0xcd, 0x25, 0x8c, 0x3b, 0xbe, 0x95, 0x30, + 0xf2, 0xf8, 0x1e, 0xc2, 0x03, 0x1d, 0x92, 0x72, 0xf0, 0x07, 0x8f, 0x54, + 0x9b, 0x9e, 0x84, 0xb6, 0xfa, 0x87, 0x03, 0xa3, 0x80, 0xbd, 0x80, 0x1e, + 0xc6, 0xc2, 0x46, 0xd9, 0x81, 0xc9, 0xa7, 0x81, 0xef, 0x03, 0x3f, 0x26, + 0x54, 0xe8, 0x57, 0x45, 0x67, 0xe0, 0x08, 0x97, 0x39, 0x2a, 0x0b, 0x03, + 0x24, 0xa5, 0xcc, 0x31, 0x02, 0x92, 0x24, 0x49, 0xe5, 0x76, 0x0b, 0xf0, + 0x1c, 0x61, 0xb4, 0xa3, 0x24, 0xa5, 0xe6, 0x75, 0xc2, 0xd3, 0xd0, 0xa3, + 0x8d, 0x22, 0x8a, 0x4e, 0x84, 0x6e, 0xaf, 0x7f, 0xae, 0xd8, 0xeb, 0xea, + 0x0e, 0x7c, 0x0d, 0xf8, 0x77, 0x1a, 0xfb, 0x1e, 0xc4, 0x16, 0x84, 0x71, + 0x11, 0xcd, 0xd9, 0xef, 0x57, 0x10, 0x0a, 0x05, 0x6e, 0x07, 0xa6, 0x67, + 0x3f, 0xf3, 0x97, 0xfb, 0x6d, 0x20, 0x6d, 0xf8, 0x07, 0xa6, 0xa4, 0x77, + 0xd6, 0x04, 0xec, 0x91, 0xfd, 0x00, 0xbe, 0x96, 0xd0, 0xfa, 0x7c, 0x2a, + 0xf0, 0x15, 0x42, 0x61, 0x80, 0x45, 0x01, 0x6f, 0xd5, 0x93, 0xd0, 0xb6, + 0xe9, 0x7e, 0x42, 0x01, 0x45, 0x55, 0x8c, 0xc6, 0xd9, 0x84, 0x31, 0xcd, + 0x03, 0x1e, 0x34, 0x06, 0x49, 0x89, 0x5a, 0x88, 0xc5, 0x4b, 0x92, 0x24, + 0x49, 0x65, 0xd7, 0x02, 0x5c, 0x60, 0x0c, 0x92, 0x12, 0xe6, 0x79, 0x67, + 0x5c, 0x55, 0xeb, 0xf6, 0x7a, 0x30, 0xf0, 0x00, 0xf0, 0x5d, 0xbc, 0x07, + 0xb1, 0xbe, 0x1e, 0x84, 0x0e, 0xce, 0x5f, 0x25, 0xdc, 0xab, 0x79, 0x8d, + 0xd0, 0x85, 0xe3, 0xab, 0x84, 0x7b, 0x39, 0x4d, 0x46, 0x24, 0xbd, 0x33, + 0x0b, 0x03, 0xa4, 0xff, 0x6b, 0x33, 0xe0, 0x58, 0xe0, 0x6c, 0x42, 0x5b, + 0xfc, 0xfb, 0x81, 0x1f, 0x02, 0x87, 0xf9, 0x43, 0x13, 0xad, 0xd4, 0xa9, + 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, 0x78, 0x83, 0xed, 0x0c, + 0xdc, 0x04, 0x9c, 0x59, 0x91, 0xcf, 0x19, 0xc7, 0x08, 0xc4, 0x3f, 0xf1, + 0x69, 0x31, 0x06, 0x49, 0x89, 0xba, 0x10, 0x78, 0xd3, 0x18, 0x24, 0x49, + 0x92, 0x4a, 0xef, 0x5c, 0x23, 0x90, 0x94, 0x30, 0x0b, 0x03, 0xe2, 0x3a, + 0x8a, 0xf0, 0x84, 0x7d, 0xd9, 0x35, 0x01, 0x5f, 0x07, 0xae, 0x03, 0x86, + 0xb9, 0xac, 0x1b, 0xa4, 0x07, 0xa1, 0xc3, 0xf3, 0x8f, 0x08, 0xf7, 0x72, + 0x5e, 0x26, 0x5c, 0xdb, 0x39, 0x05, 0xd8, 0xda, 0x78, 0xa4, 0xb7, 0x72, + 0x94, 0x80, 0x14, 0xec, 0x0c, 0x7c, 0x14, 0x38, 0x06, 0xd8, 0xdd, 0x38, + 0xa2, 0x1e, 0xc4, 0x6c, 0x0e, 0x7c, 0x0a, 0x58, 0x53, 0xe2, 0xd7, 0xd2, + 0xec, 0x72, 0x7a, 0xe2, 0x23, 0xa9, 0x61, 0x38, 0x46, 0x40, 0x92, 0x24, + 0xa9, 0x1a, 0x1e, 0x23, 0x3c, 0x6d, 0xb9, 0x87, 0x51, 0x48, 0x4a, 0xd0, + 0x03, 0xc0, 0x1c, 0x60, 0x90, 0x51, 0x44, 0xd1, 0x87, 0xd0, 0xc1, 0x76, + 0x7a, 0x89, 0x5f, 0x43, 0x17, 0xc2, 0x38, 0x84, 0x89, 0x2e, 0x67, 0xbb, + 0x0c, 0x20, 0x3c, 0xf8, 0x79, 0x6c, 0xf6, 0xfb, 0x07, 0x81, 0x4b, 0x80, + 0x8b, 0x81, 0xc7, 0x8d, 0x47, 0x8d, 0xce, 0x8e, 0x01, 0x6a, 0x64, 0xbb, + 0x02, 0xa7, 0x03, 0x8f, 0x66, 0xdb, 0x19, 0x58, 0x14, 0xd0, 0x11, 0x3e, + 0x01, 0x9c, 0x43, 0x79, 0x5b, 0xf8, 0x6c, 0x07, 0x0c, 0x77, 0x19, 0xa3, + 0x59, 0x43, 0xa8, 0x78, 0x95, 0xa4, 0x14, 0xbd, 0x00, 0xdc, 0x6a, 0x0c, + 0x92, 0x24, 0x49, 0x95, 0x61, 0xd1, 0xa7, 0xa4, 0x54, 0xb5, 0x10, 0xda, + 0x9f, 0x2b, 0x9e, 0x32, 0x77, 0x7d, 0xed, 0x04, 0xfc, 0x05, 0x8b, 0x02, + 0x3a, 0xc2, 0x08, 0xc2, 0x48, 0x86, 0xc7, 0x80, 0x87, 0x81, 0xef, 0x00, + 0xbb, 0x18, 0x8b, 0x1a, 0x95, 0x85, 0x01, 0x6a, 0x34, 0xbb, 0x67, 0x3f, + 0x04, 0x1e, 0x6f, 0xf3, 0x43, 0x60, 0x67, 0x63, 0xe9, 0x70, 0x13, 0x09, + 0x85, 0x17, 0x65, 0x34, 0xde, 0xe5, 0x8b, 0xea, 0x0e, 0xc2, 0xdc, 0x27, + 0x49, 0x4a, 0xd1, 0x79, 0x38, 0xea, 0x44, 0x92, 0x24, 0xa9, 0x4a, 0xce, + 0xa7, 0xdc, 0x1d, 0x0c, 0x25, 0x55, 0x9b, 0x5d, 0x35, 0xe3, 0x9a, 0x50, + 0xe2, 0x7d, 0xff, 0x1e, 0x70, 0x82, 0x4b, 0xd8, 0xe1, 0x5a, 0x1f, 0x16, + 0x7d, 0x84, 0x50, 0x28, 0xf0, 0x5d, 0x7c, 0x58, 0x54, 0x0d, 0xc6, 0xc2, + 0x00, 0x35, 0x82, 0xcd, 0x81, 0xaf, 0x66, 0x1f, 0xf4, 0x0f, 0x02, 0xdf, + 0xc6, 0xf9, 0x3c, 0xf5, 0xf0, 0x4d, 0xe0, 0xd0, 0x12, 0xee, 0xb7, 0x63, + 0x04, 0x3c, 0xe1, 0x91, 0xd4, 0x38, 0x26, 0x1b, 0x81, 0x24, 0x49, 0x52, + 0xa5, 0xcc, 0x01, 0x6e, 0x34, 0x06, 0x49, 0x89, 0xba, 0x16, 0x58, 0x6d, + 0x0c, 0xd1, 0x6c, 0x47, 0x39, 0xaf, 0xfb, 0x1f, 0x01, 0x7c, 0xc3, 0xe5, + 0x2b, 0xdc, 0x70, 0xc2, 0xbd, 0xa2, 0x07, 0x09, 0x1d, 0xa5, 0xbf, 0x02, + 0x6c, 0x66, 0x2c, 0xaa, 0x3a, 0x0b, 0x03, 0x54, 0xe5, 0xf7, 0xf6, 0x78, + 0xe0, 0xef, 0xc0, 0x6c, 0xe0, 0x47, 0xd8, 0x0e, 0x3e, 0x85, 0x35, 0xf9, + 0x1d, 0xd0, 0xbd, 0x44, 0xfb, 0xdc, 0x3a, 0x9b, 0x4a, 0xf1, 0x58, 0x18, + 0x20, 0x29, 0x55, 0xf7, 0x13, 0x2a, 0xc6, 0x25, 0x49, 0x92, 0x54, 0x2d, + 0x8e, 0x13, 0x90, 0x94, 0xaa, 0x85, 0xc0, 0x5d, 0xc6, 0x10, 0x55, 0xd9, + 0xba, 0xbf, 0xf6, 0x04, 0xce, 0xa6, 0xbc, 0x63, 0x78, 0xab, 0x62, 0x67, + 0xe0, 0xc7, 0x84, 0x7b, 0x49, 0x97, 0x11, 0xc6, 0x52, 0x78, 0xff, 0x54, + 0x95, 0xe4, 0x1b, 0x5b, 0x55, 0xd3, 0x0f, 0xf8, 0x57, 0x60, 0x26, 0xa1, + 0x28, 0x60, 0x3c, 0xd0, 0xc5, 0x58, 0x92, 0xb1, 0x1d, 0xf0, 0x2f, 0x25, + 0xda, 0xdf, 0xa3, 0x28, 0x57, 0x21, 0x43, 0xea, 0xe6, 0x01, 0x0f, 0x18, + 0x83, 0xa4, 0x44, 0x79, 0xc1, 0x58, 0x92, 0x24, 0xa9, 0x9a, 0x2e, 0x01, + 0x96, 0x1b, 0x83, 0xa4, 0x44, 0xf9, 0x10, 0x4d, 0x5c, 0xe3, 0x4a, 0xb6, + 0xbf, 0x9f, 0x07, 0xb6, 0x71, 0xd9, 0x92, 0xd1, 0x15, 0x38, 0x1a, 0xb8, + 0x12, 0x78, 0x0a, 0x38, 0x0d, 0xe8, 0x6b, 0x2c, 0xaa, 0x12, 0x0b, 0x03, + 0x54, 0x15, 0x83, 0x80, 0xb3, 0x80, 0x17, 0x81, 0x9f, 0x12, 0x6e, 0x40, + 0x2b, 0x4d, 0xa7, 0x65, 0x3f, 0x60, 0x3d, 0x90, 0x6c, 0x3c, 0xd7, 0xe0, + 0xec, 0x6e, 0x49, 0x69, 0x5a, 0x0b, 0x5c, 0x60, 0x0c, 0x92, 0x24, 0x49, + 0x95, 0xb4, 0x18, 0xb8, 0xc2, 0x18, 0x24, 0x25, 0xca, 0xc2, 0x80, 0xb8, + 0x46, 0x03, 0xfd, 0x4b, 0xb2, 0xaf, 0xdd, 0x80, 0x2f, 0xba, 0x64, 0xc9, + 0x1a, 0x0a, 0xfc, 0x37, 0xe1, 0x9e, 0xd3, 0x4f, 0x80, 0x2d, 0x8c, 0x44, + 0x55, 0x60, 0x61, 0x80, 0xca, 0x6e, 0x2b, 0xe0, 0x37, 0xc0, 0x2c, 0xe0, + 0x4b, 0x40, 0x6f, 0x23, 0x29, 0xc5, 0x9a, 0x8d, 0x29, 0xc9, 0xe7, 0xe3, + 0x18, 0x97, 0xcb, 0x13, 0x1d, 0x49, 0x0d, 0xe1, 0x7a, 0xe0, 0x25, 0x63, + 0x90, 0x24, 0x49, 0xaa, 0x2c, 0xbb, 0x43, 0x49, 0x4a, 0xd5, 0xfd, 0xc0, + 0x5c, 0x63, 0x88, 0xa6, 0x33, 0x70, 0x44, 0x49, 0xf6, 0x75, 0x2c, 0xe1, + 0x81, 0x47, 0xa5, 0xad, 0x0f, 0xf0, 0x65, 0xc2, 0x3d, 0xa8, 0x5f, 0x01, + 0x5b, 0x1a, 0x89, 0xca, 0xcc, 0xc2, 0x00, 0x95, 0xf9, 0xc3, 0xf8, 0x3f, + 0x81, 0x27, 0x81, 0xcf, 0x60, 0xbb, 0xf7, 0xb2, 0x39, 0xa6, 0x04, 0xfb, + 0xb8, 0x0f, 0xb0, 0x99, 0x4b, 0x15, 0xcd, 0x1a, 0x60, 0xba, 0x31, 0x48, + 0x4a, 0x94, 0x17, 0x8a, 0x25, 0x49, 0x92, 0xaa, 0x6d, 0x0a, 0xf0, 0x8a, + 0x31, 0x48, 0x4a, 0x50, 0x0b, 0x30, 0xcd, 0x18, 0xa2, 0x2a, 0x4b, 0x17, + 0xd8, 0x63, 0x5d, 0xaa, 0x52, 0xe9, 0x01, 0x7c, 0x96, 0x30, 0x62, 0xe0, + 0x0c, 0x7c, 0x48, 0x55, 0x25, 0x65, 0x61, 0x80, 0xca, 0xa8, 0x99, 0x50, + 0x10, 0xf0, 0x2d, 0xa0, 0x97, 0x71, 0x94, 0xd2, 0x07, 0x3d, 0x80, 0x6c, + 0x38, 0x77, 0x02, 0xaf, 0x19, 0x83, 0xa4, 0x04, 0xad, 0x00, 0x2e, 0x35, + 0x06, 0x49, 0x92, 0xa4, 0x4a, 0x5b, 0x05, 0x5c, 0x64, 0x0c, 0x92, 0x12, + 0x65, 0x97, 0xcd, 0xb8, 0xc6, 0x00, 0x5d, 0x4a, 0xb0, 0x9f, 0x07, 0xbb, + 0x54, 0xa5, 0xd4, 0x0b, 0xf8, 0x0f, 0xc2, 0x3d, 0x2a, 0xef, 0x21, 0xa8, + 0x74, 0x2c, 0x0c, 0x50, 0x99, 0xf4, 0x04, 0xfe, 0x44, 0x98, 0x0b, 0x67, + 0x8b, 0x9d, 0x72, 0xdb, 0x9a, 0xf4, 0x67, 0xf2, 0x34, 0xbb, 0x4c, 0x9e, + 0xe0, 0x48, 0x6a, 0x08, 0x97, 0x03, 0x8b, 0x8c, 0x41, 0x92, 0x24, 0xa9, + 0xf2, 0xec, 0x12, 0x25, 0x29, 0x55, 0xd3, 0x80, 0xd5, 0xc6, 0x10, 0xcd, + 0xa6, 0xc0, 0xfe, 0x89, 0xef, 0xe3, 0xd6, 0x78, 0x8f, 0xa3, 0xec, 0xb6, + 0x04, 0xae, 0x04, 0xfe, 0x40, 0xe8, 0x26, 0x20, 0x95, 0x82, 0x85, 0x01, + 0x2a, 0xd3, 0x0f, 0xf3, 0x69, 0xc0, 0x3f, 0x18, 0x45, 0x65, 0x6c, 0x9f, + 0xf0, 0xbe, 0x0d, 0x02, 0x46, 0xb8, 0x44, 0x51, 0x59, 0x18, 0x20, 0x29, + 0x55, 0x5e, 0x20, 0x96, 0x24, 0x49, 0x6a, 0x0c, 0xb7, 0x13, 0xe6, 0x03, + 0x4b, 0x52, 0x6a, 0x16, 0x02, 0x77, 0x1b, 0x43, 0x54, 0xa9, 0x3f, 0xc9, + 0xbd, 0xbd, 0x4b, 0x54, 0x19, 0x9f, 0x02, 0x6e, 0x00, 0x06, 0x18, 0x85, + 0xca, 0xc0, 0xc2, 0x00, 0x95, 0x41, 0x57, 0x42, 0x97, 0x80, 0xd1, 0x46, + 0x51, 0x29, 0x83, 0x13, 0xde, 0xb7, 0x09, 0x40, 0x93, 0x4b, 0x14, 0xcd, + 0x3c, 0xe0, 0x7e, 0x63, 0x90, 0x94, 0xa0, 0xd7, 0x80, 0xa9, 0xc6, 0x20, + 0x49, 0x92, 0xd4, 0x10, 0x5a, 0x80, 0xf3, 0x8d, 0x41, 0x52, 0xa2, 0x7c, + 0xa8, 0x26, 0xae, 0xd4, 0xbb, 0xc1, 0x6e, 0xe5, 0x12, 0x55, 0xca, 0x7e, + 0xc0, 0xdf, 0x28, 0xc7, 0x08, 0x0b, 0x35, 0x38, 0x0b, 0x03, 0x54, 0x06, + 0xff, 0x02, 0x8c, 0x32, 0x86, 0xca, 0xe9, 0x93, 0xf0, 0xbe, 0x39, 0x1b, + 0x28, 0xae, 0xa9, 0x84, 0x0b, 0x30, 0x92, 0x94, 0x9a, 0x0b, 0x80, 0x95, + 0xc6, 0x20, 0x49, 0x92, 0xd4, 0x30, 0xec, 0x16, 0x25, 0x29, 0x55, 0x16, + 0x06, 0xc4, 0xb5, 0x0b, 0x30, 0x34, 0xe1, 0xfd, 0xeb, 0xed, 0x12, 0x55, + 0xce, 0x68, 0xe0, 0xb3, 0xc6, 0xa0, 0xd4, 0x59, 0x18, 0xa0, 0x32, 0x78, + 0xbf, 0x11, 0x54, 0x52, 0xf7, 0x44, 0xf7, 0xab, 0x27, 0x70, 0x88, 0xcb, + 0xe3, 0x89, 0x8d, 0xa4, 0x86, 0xe0, 0x85, 0x61, 0x49, 0x92, 0xa4, 0xc6, + 0xf2, 0x04, 0x70, 0xaf, 0x31, 0x48, 0x4a, 0xd0, 0x7d, 0xc0, 0x5c, 0x63, + 0x88, 0x6a, 0x6c, 0xc2, 0xfb, 0xd6, 0xcd, 0xe5, 0xa9, 0xa4, 0x7d, 0x8c, + 0x40, 0xa9, 0xb3, 0x30, 0x40, 0x65, 0x70, 0xbd, 0x11, 0x54, 0xd2, 0xd2, + 0x44, 0xf7, 0xeb, 0x50, 0xa0, 0x97, 0xcb, 0x13, 0xcd, 0x1a, 0xe0, 0x5a, + 0x63, 0x90, 0x94, 0xa0, 0xe7, 0x80, 0x3b, 0x8c, 0x41, 0x92, 0x24, 0xa9, + 0xe1, 0x58, 0x1c, 0x2a, 0x29, 0x45, 0x2d, 0xc0, 0x34, 0x63, 0x88, 0x2a, + 0xe5, 0xae, 0xb0, 0xcb, 0x5d, 0x9e, 0x4a, 0xba, 0xce, 0x08, 0x94, 0xba, + 0x22, 0xe7, 0x5d, 0xf4, 0x05, 0x3e, 0xb3, 0xde, 0x9f, 0x75, 0x63, 0xc3, + 0x5a, 0xa6, 0xf4, 0x04, 0x7a, 0x6c, 0xc0, 0xdf, 0xeb, 0x43, 0x98, 0x47, + 0x0f, 0xf0, 0x63, 0x60, 0x86, 0x4b, 0x5c, 0x09, 0x7f, 0x24, 0xcc, 0x7c, + 0x1f, 0x6f, 0x14, 0x95, 0xf2, 0xba, 0x07, 0x8c, 0x0d, 0xe1, 0x4e, 0xc2, + 0x0c, 0x6f, 0x49, 0x4a, 0xcd, 0xb9, 0x38, 0xe6, 0x44, 0x92, 0x24, 0xa9, + 0x11, 0x4d, 0x02, 0x7e, 0x84, 0x73, 0x80, 0x25, 0xa5, 0x67, 0x0a, 0xf0, + 0x09, 0x63, 0x88, 0xe6, 0x60, 0x60, 0x23, 0xe0, 0x8d, 0x04, 0xf7, 0x6d, + 0x91, 0xcb, 0x53, 0x39, 0x97, 0x03, 0x7f, 0x36, 0x06, 0xa5, 0xae, 0xc8, + 0x03, 0xe0, 0x5f, 0x01, 0x13, 0x0b, 0xfc, 0xff, 0xed, 0x0d, 0xec, 0x09, + 0x2c, 0x76, 0x99, 0x4b, 0xaf, 0x05, 0x38, 0x21, 0x3b, 0x71, 0x3b, 0xda, + 0x38, 0x2a, 0xe3, 0xd9, 0x44, 0xf7, 0x6b, 0x8c, 0x4b, 0x13, 0xfd, 0x84, + 0x46, 0x92, 0x52, 0x74, 0xbe, 0x11, 0x48, 0x92, 0x24, 0x35, 0xa4, 0xf9, + 0x84, 0xee, 0x94, 0x47, 0x18, 0x85, 0xa4, 0xc4, 0x4c, 0x03, 0x56, 0x63, + 0xe1, 0x52, 0x2c, 0xdd, 0x81, 0xc3, 0x80, 0x4b, 0x13, 0xdc, 0xb7, 0xe7, + 0x5c, 0x9e, 0x4a, 0xb9, 0x14, 0x38, 0x09, 0x1f, 0x40, 0x51, 0x09, 0x14, + 0x35, 0x4a, 0xe0, 0x23, 0x14, 0x5b, 0x14, 0x00, 0xb0, 0x1d, 0xf0, 0x7b, + 0x97, 0xb8, 0x32, 0x96, 0x02, 0xc7, 0x00, 0xdf, 0xcf, 0x0e, 0x8e, 0x54, + 0x6e, 0x6b, 0x80, 0x99, 0x09, 0xee, 0xd7, 0x1e, 0xc0, 0x10, 0x97, 0x27, + 0x2a, 0x0b, 0x03, 0x24, 0xa5, 0x68, 0x06, 0x61, 0xbe, 0xac, 0x24, 0x49, + 0x92, 0x1a, 0x93, 0xe3, 0x04, 0x24, 0xa5, 0x68, 0x21, 0x70, 0xb7, 0x31, + 0x44, 0x95, 0x6a, 0x77, 0xd8, 0x27, 0x81, 0xb5, 0x2e, 0x4f, 0xe9, 0xad, + 0x06, 0xce, 0x00, 0x3e, 0x0a, 0x2c, 0x33, 0x0e, 0x95, 0x41, 0x11, 0x85, + 0x01, 0x5b, 0x52, 0xbf, 0x1b, 0xf4, 0xc7, 0x01, 0x27, 0xbb, 0xcc, 0x95, + 0xb1, 0x06, 0xf8, 0x16, 0x30, 0x0a, 0x78, 0xc4, 0x38, 0x4a, 0xed, 0x21, + 0xd2, 0x6c, 0xe1, 0xd4, 0xec, 0xd2, 0x44, 0x35, 0x1f, 0x78, 0xc0, 0x18, + 0x24, 0x25, 0xc8, 0x0b, 0xc1, 0x92, 0x24, 0x49, 0x8d, 0xed, 0x12, 0xc2, + 0x43, 0x28, 0x92, 0x94, 0x1a, 0x1f, 0xb2, 0x89, 0x6b, 0x3c, 0xc5, 0x3d, + 0x20, 0x5b, 0x8b, 0x45, 0xc0, 0x63, 0x2e, 0x4f, 0xa9, 0x3d, 0x04, 0xec, + 0x0b, 0x9c, 0x8e, 0x45, 0x1e, 0x2a, 0x91, 0x8e, 0xfe, 0x40, 0x6c, 0x22, + 0x14, 0x05, 0x6c, 0x5a, 0xc7, 0xd7, 0xf8, 0x6b, 0x60, 0x27, 0x97, 0xba, + 0x52, 0x66, 0x10, 0xc6, 0x44, 0xfc, 0x33, 0xe1, 0xc6, 0xa3, 0xca, 0x67, + 0x7a, 0xa2, 0xfb, 0x35, 0xce, 0xa5, 0x89, 0x7e, 0x22, 0xe3, 0x41, 0x91, + 0xa4, 0xd4, 0xac, 0x01, 0xfe, 0x6a, 0x0c, 0x92, 0x24, 0x49, 0x0d, 0x6d, + 0x29, 0xf0, 0x77, 0x63, 0x90, 0x94, 0x20, 0x0b, 0x03, 0xe2, 0x1a, 0x48, + 0x18, 0x3b, 0x9d, 0xa2, 0xe9, 0x2e, 0x4f, 0x29, 0xcd, 0x03, 0x4e, 0x05, + 0xf6, 0x02, 0xee, 0x33, 0x0e, 0x95, 0x4d, 0x47, 0x17, 0x06, 0x7c, 0x91, + 0xfa, 0xcf, 0xeb, 0xee, 0x4d, 0x98, 0x21, 0xdb, 0xcd, 0xe5, 0xae, 0x94, + 0xd5, 0xc0, 0x6f, 0x81, 0xed, 0x81, 0xef, 0x00, 0xaf, 0x1a, 0x49, 0xa9, + 0x5c, 0x98, 0xe0, 0x3e, 0x0d, 0x00, 0xf6, 0x71, 0x69, 0x3c, 0x91, 0x91, + 0x54, 0x79, 0xd7, 0x66, 0x27, 0x71, 0x92, 0x24, 0x49, 0x6a, 0x6c, 0x76, + 0x91, 0x92, 0x94, 0xa2, 0xfb, 0x80, 0x97, 0x8d, 0x21, 0xaa, 0x54, 0x1f, + 0x06, 0xf3, 0xa1, 0x85, 0x72, 0x79, 0x85, 0xd0, 0xd1, 0x7a, 0x07, 0xe0, + 0x77, 0x84, 0x07, 0x4f, 0xa4, 0xd2, 0xe9, 0xc8, 0xc2, 0x80, 0x9d, 0x81, + 0xff, 0x4a, 0xe4, 0x75, 0xee, 0x95, 0xd0, 0xbe, 0x28, 0xae, 0x37, 0x80, + 0xef, 0x02, 0xdb, 0x00, 0x5f, 0xc3, 0x0b, 0xfd, 0x65, 0x30, 0x03, 0xb8, + 0x27, 0xd1, 0x03, 0xc4, 0x4e, 0x2e, 0x4f, 0x34, 0x6b, 0xb0, 0xea, 0x55, + 0x52, 0x9a, 0xbc, 0x00, 0x2c, 0x49, 0x92, 0x24, 0x80, 0xa9, 0x78, 0xf3, + 0x4d, 0x52, 0x7a, 0x5a, 0xb2, 0xcf, 0x27, 0xc5, 0x93, 0xea, 0xf8, 0xd8, + 0x3b, 0x81, 0xfb, 0x5d, 0x9e, 0xe4, 0xcd, 0x01, 0xbe, 0x42, 0xb8, 0x07, + 0xf5, 0x7d, 0x60, 0x89, 0x91, 0xa8, 0xcc, 0x3a, 0xea, 0x26, 0x58, 0x57, + 0xe0, 0x1c, 0xa0, 0x67, 0x42, 0xaf, 0xf5, 0x5f, 0x09, 0xf3, 0x64, 0x54, + 0x4d, 0x4b, 0x80, 0x1f, 0x03, 0x43, 0x80, 0x89, 0xc0, 0x5d, 0x46, 0x92, + 0xac, 0x1f, 0x24, 0xba, 0x5f, 0x8e, 0x11, 0x88, 0xeb, 0x2e, 0xec, 0xe4, + 0x21, 0x29, 0x3d, 0xcb, 0x80, 0xcb, 0x8c, 0x41, 0x92, 0x24, 0x49, 0x84, + 0x6e, 0x94, 0x17, 0x19, 0x83, 0xa4, 0x04, 0xd9, 0x85, 0x33, 0xae, 0xbd, + 0x80, 0x2d, 0x13, 0xdd, 0xb7, 0x33, 0x5d, 0x9e, 0x64, 0xdd, 0x01, 0x9c, + 0x48, 0x28, 0x08, 0xf8, 0x29, 0x61, 0x0c, 0x91, 0x54, 0x7a, 0x1d, 0x55, + 0x18, 0xf0, 0x9f, 0xc0, 0xc8, 0xc4, 0x5e, 0x6b, 0x13, 0xf0, 0x47, 0x60, + 0x0b, 0x97, 0xbd, 0xd2, 0x56, 0x12, 0x46, 0x47, 0xec, 0x47, 0x68, 0x0b, + 0xff, 0x07, 0x42, 0x57, 0x01, 0xa5, 0xe1, 0x46, 0xe0, 0xd2, 0x04, 0xf7, + 0xab, 0x2b, 0x70, 0xb8, 0xcb, 0xe3, 0x09, 0x8c, 0xa4, 0xca, 0xbb, 0x14, + 0x2b, 0xbb, 0x25, 0x49, 0x92, 0xb4, 0x8e, 0xdd, 0xa4, 0x24, 0xa5, 0x68, + 0x2a, 0xb6, 0x29, 0x8f, 0xa9, 0x09, 0x18, 0x9b, 0xe8, 0xbe, 0x5d, 0x04, + 0xdc, 0xea, 0x12, 0x25, 0x63, 0x31, 0x61, 0x4c, 0xc0, 0x48, 0x60, 0x14, + 0x30, 0x19, 0x58, 0x65, 0x2c, 0xaa, 0x92, 0x8e, 0x28, 0x0c, 0x38, 0x80, + 0xd0, 0x56, 0x23, 0x45, 0x03, 0x08, 0x37, 0x8d, 0x6d, 0x17, 0xde, 0x18, + 0x66, 0x00, 0x9f, 0x26, 0x14, 0x83, 0xfc, 0x63, 0xf6, 0x03, 0xb6, 0xc5, + 0x58, 0xea, 0xe6, 0x0d, 0xe0, 0x94, 0x44, 0xf7, 0xed, 0x20, 0xa0, 0xaf, + 0x4b, 0x14, 0x95, 0x85, 0x01, 0x92, 0x52, 0xe4, 0x85, 0x5f, 0x49, 0x92, + 0x24, 0xb5, 0x75, 0x27, 0xf0, 0x94, 0x31, 0x48, 0x4a, 0xcc, 0x42, 0xe0, + 0x6e, 0x63, 0x88, 0x2a, 0xd5, 0x6e, 0xb1, 0x2d, 0x84, 0x7b, 0x18, 0x3e, + 0x8d, 0x5e, 0xdf, 0x35, 0xb8, 0x05, 0xf8, 0x07, 0x60, 0x10, 0x70, 0x2a, + 0x70, 0xaf, 0xb1, 0xa8, 0xaa, 0x62, 0xdf, 0x20, 0xdf, 0x18, 0x38, 0x0f, + 0xe8, 0x9c, 0xf0, 0x6b, 0x3e, 0x98, 0x74, 0x0b, 0x17, 0xd4, 0x31, 0x96, + 0x02, 0x7f, 0x02, 0x0e, 0x24, 0xb4, 0x7d, 0xf9, 0x32, 0xa1, 0x0d, 0x8c, + 0x45, 0x02, 0xc5, 0xfe, 0x70, 0x3d, 0x05, 0x98, 0xe9, 0x81, 0x61, 0x43, + 0x58, 0x80, 0xf3, 0xb1, 0x24, 0xa5, 0xf9, 0xd9, 0x34, 0xdd, 0x18, 0x24, + 0x49, 0x92, 0xb4, 0x9e, 0xc9, 0x46, 0x20, 0x29, 0x41, 0x3e, 0x74, 0x13, + 0xd7, 0xe1, 0xa4, 0x35, 0xfa, 0xba, 0xad, 0x27, 0x08, 0x37, 0xa3, 0xbd, + 0x5f, 0x51, 0x9c, 0xb5, 0xc0, 0xed, 0xc0, 0x97, 0x08, 0xe3, 0xa9, 0x3f, + 0x40, 0x18, 0x8f, 0x6e, 0x81, 0x86, 0x2a, 0x2f, 0x76, 0x61, 0xc0, 0x2f, + 0x08, 0x37, 0x5e, 0x53, 0xf7, 0x7d, 0x42, 0xab, 0x79, 0x35, 0x9e, 0x17, + 0x80, 0xb3, 0x08, 0x6d, 0x60, 0x86, 0x64, 0x1f, 0xfc, 0xb7, 0x65, 0x3f, + 0x08, 0xd4, 0x71, 0xbe, 0x01, 0x5c, 0x90, 0xf0, 0xfe, 0x59, 0x18, 0x10, + 0xff, 0xc4, 0xc5, 0xef, 0x29, 0x49, 0xa9, 0xb1, 0xfd, 0x9b, 0x24, 0x49, + 0x92, 0xde, 0xce, 0x79, 0x78, 0x33, 0x46, 0x52, 0x7a, 0x2c, 0x0c, 0x88, + 0xab, 0x17, 0xe1, 0xa1, 0xd1, 0x54, 0x4d, 0x02, 0xbe, 0xe9, 0x32, 0x75, + 0xa8, 0xb5, 0x84, 0xae, 0xd2, 0x5f, 0x24, 0xdc, 0x1b, 0x3a, 0x00, 0xf8, + 0x7f, 0xc0, 0x6c, 0xa3, 0x51, 0x23, 0x89, 0x59, 0x18, 0x70, 0x0c, 0x70, + 0x72, 0x49, 0x5e, 0x77, 0x97, 0xec, 0xa0, 0x7f, 0x63, 0xdf, 0x02, 0x0d, + 0x6d, 0x76, 0xf6, 0xc1, 0x3f, 0x1a, 0x18, 0x9c, 0xfd, 0x40, 0xb8, 0x05, + 0xe7, 0x37, 0xc5, 0xd4, 0x42, 0xe8, 0xd0, 0xf0, 0xa3, 0x84, 0xf7, 0x71, + 0x18, 0xb0, 0x83, 0x4b, 0xe5, 0x89, 0x8b, 0xa4, 0xca, 0x73, 0x8c, 0x80, + 0x24, 0x49, 0x92, 0xde, 0xce, 0xd3, 0x84, 0x71, 0x94, 0x92, 0x94, 0x92, + 0xfb, 0x80, 0x97, 0x8d, 0x21, 0xaa, 0xd4, 0x1f, 0x0e, 0xfb, 0x01, 0xf0, + 0x75, 0x2c, 0x56, 0x8b, 0x69, 0x35, 0x70, 0x13, 0xf0, 0x79, 0x60, 0x6b, + 0x42, 0x57, 0xe9, 0x9f, 0x03, 0x2f, 0x1a, 0x8d, 0x72, 0xea, 0x0c, 0x7c, + 0x12, 0x18, 0x51, 0xd6, 0x17, 0x10, 0xab, 0x30, 0x60, 0x10, 0x70, 0x76, + 0xc9, 0x5e, 0xfb, 0x50, 0xe0, 0xf7, 0xbe, 0x87, 0x95, 0x79, 0x29, 0xfb, + 0x81, 0xf0, 0x01, 0xa0, 0x1f, 0xa1, 0xb5, 0xd0, 0x0f, 0x81, 0xc7, 0x8c, + 0x26, 0xb7, 0x25, 0xc0, 0xb1, 0x84, 0x0e, 0x0d, 0x29, 0x6b, 0x76, 0xa9, + 0xa2, 0x5a, 0x03, 0x5c, 0x6b, 0x0c, 0x92, 0x12, 0xe3, 0xc5, 0x5e, 0x49, + 0x92, 0x24, 0xbd, 0x1b, 0x8b, 0x48, 0x25, 0xa5, 0x66, 0x2d, 0x30, 0xcd, + 0x18, 0xa2, 0x1a, 0x5f, 0x82, 0x7d, 0xfc, 0x11, 0xf0, 0x21, 0x60, 0x91, + 0xcb, 0x95, 0xdb, 0x2c, 0xe0, 0x77, 0xc0, 0x71, 0xc0, 0x40, 0x42, 0xa7, + 0x88, 0x5f, 0x02, 0x73, 0x8c, 0x46, 0xed, 0xb4, 0x0d, 0x70, 0x03, 0xf0, + 0x3f, 0xc0, 0x03, 0xc0, 0xa3, 0xc0, 0xe9, 0x84, 0xfb, 0xcd, 0xa5, 0x11, + 0xa3, 0x30, 0xa0, 0x89, 0x70, 0x83, 0xbd, 0x7f, 0x09, 0x17, 0xf1, 0x38, + 0xe0, 0x13, 0xbe, 0x97, 0xb5, 0x9e, 0x25, 0x84, 0x19, 0xc4, 0xdf, 0x00, + 0x76, 0x21, 0x3c, 0x4d, 0xfe, 0x39, 0xe0, 0x32, 0x60, 0xb1, 0xf1, 0x6c, + 0x90, 0x29, 0xc0, 0xee, 0xc0, 0x25, 0x25, 0xd8, 0x57, 0x0b, 0x03, 0xe2, + 0xba, 0x1b, 0x78, 0xd5, 0x18, 0x24, 0x25, 0xc6, 0xf6, 0xb0, 0x92, 0x24, + 0x49, 0x7a, 0x37, 0x8e, 0x9d, 0x92, 0x94, 0x22, 0xbb, 0x72, 0xc6, 0x35, + 0x18, 0xd8, 0xad, 0x04, 0xfb, 0xf9, 0x77, 0x60, 0x6f, 0x2c, 0x0c, 0xd9, + 0x50, 0x8b, 0x80, 0x4b, 0x81, 0xcf, 0x02, 0xdb, 0x13, 0x6e, 0xd2, 0x9e, + 0x0a, 0x5c, 0x04, 0x2c, 0x34, 0x1e, 0x45, 0x72, 0x32, 0xf0, 0x30, 0xa1, + 0xeb, 0x44, 0xab, 0x9d, 0x81, 0xef, 0x10, 0x1e, 0x48, 0xba, 0x87, 0xd0, + 0x95, 0x7c, 0x40, 0xea, 0x2f, 0x24, 0x46, 0x61, 0xc0, 0xbf, 0x00, 0x63, + 0x4b, 0xbc, 0x98, 0xbf, 0x02, 0x76, 0xf2, 0x3d, 0xad, 0x77, 0xf1, 0x34, + 0xf0, 0x6b, 0xe0, 0xc3, 0x84, 0x02, 0x98, 0x03, 0x81, 0xef, 0x02, 0xd7, + 0x01, 0x6f, 0x18, 0xcf, 0x5b, 0xcc, 0x05, 0x8e, 0xcf, 0x3e, 0x13, 0x9e, + 0x2d, 0xc1, 0xfe, 0xf6, 0x05, 0x46, 0xb9, 0x6c, 0x9e, 0xb0, 0x48, 0xaa, + 0xbc, 0xc9, 0x46, 0x20, 0x49, 0x92, 0xa4, 0x77, 0xb1, 0x80, 0xf0, 0x90, + 0x88, 0x24, 0xa5, 0x64, 0x2a, 0x8e, 0xbd, 0x8d, 0x6d, 0x7c, 0x49, 0xf6, + 0xf3, 0x19, 0xe0, 0x48, 0xe0, 0x44, 0x60, 0x9e, 0xcb, 0xf6, 0x16, 0x8b, + 0x09, 0xf7, 0x66, 0xce, 0x20, 0x8c, 0x89, 0x7e, 0x1f, 0xf0, 0x11, 0xe0, + 0x37, 0x59, 0x6e, 0x52, 0x4c, 0x03, 0x09, 0x0f, 0x0d, 0x9f, 0x03, 0xf4, + 0x79, 0x97, 0xbf, 0xb7, 0x37, 0x61, 0x74, 0xf9, 0x6c, 0xe0, 0x0a, 0x42, + 0x21, 0x41, 0xef, 0x14, 0x5f, 0x50, 0x7b, 0x0b, 0x03, 0x86, 0x13, 0xda, + 0xad, 0x97, 0x59, 0x6f, 0xe0, 0x7c, 0xa0, 0xbb, 0xef, 0x6f, 0x6d, 0x80, + 0xd5, 0xc0, 0xad, 0x84, 0x2a, 0xa0, 0xc3, 0x80, 0x8d, 0x09, 0x15, 0x68, + 0x9f, 0x20, 0x8c, 0x22, 0xb8, 0x97, 0xd0, 0xe6, 0xa9, 0xd1, 0x3c, 0x0b, + 0x9c, 0x46, 0xe8, 0xae, 0x70, 0x61, 0x89, 0xf6, 0x7b, 0x2c, 0xd0, 0xd5, + 0xb7, 0x75, 0x54, 0x16, 0x06, 0x48, 0x4a, 0xcd, 0x9d, 0xc0, 0x53, 0xc6, + 0x20, 0x49, 0x92, 0xa4, 0xf7, 0xe0, 0x38, 0x01, 0x49, 0xa9, 0x79, 0x8d, + 0xd0, 0x9d, 0x53, 0xf1, 0x8c, 0x2b, 0xd9, 0xfe, 0x4e, 0x26, 0x5c, 0x73, + 0x3f, 0x15, 0x78, 0xb2, 0x41, 0xd7, 0x6c, 0x16, 0x70, 0x2e, 0xe1, 0xfe, + 0xc3, 0x48, 0x60, 0x13, 0xc2, 0xbd, 0x99, 0xd3, 0x81, 0xdb, 0x08, 0xf7, + 0x6c, 0xa4, 0x8e, 0x70, 0x14, 0x61, 0x64, 0xc0, 0xd1, 0x35, 0xfc, 0x3b, + 0xdd, 0x09, 0x5d, 0xaa, 0xcf, 0x21, 0x8c, 0x30, 0xff, 0x0b, 0xa1, 0x20, + 0xa9, 0x4b, 0x2a, 0x2f, 0xaa, 0x4b, 0x3b, 0xff, 0xdd, 0x73, 0x80, 0x9e, + 0x15, 0x58, 0xdc, 0xbd, 0x80, 0xff, 0x02, 0xbe, 0xec, 0xfb, 0x5c, 0x39, + 0x7f, 0x30, 0xcd, 0xca, 0xbe, 0xc1, 0x21, 0x3c, 0x85, 0xbe, 0x6f, 0xb6, + 0xed, 0x07, 0xec, 0x43, 0xa8, 0x5a, 0xab, 0x9a, 0xd5, 0x84, 0x79, 0x2a, + 0x67, 0x13, 0x2a, 0xa6, 0xca, 0x58, 0xbd, 0x3a, 0xce, 0xb7, 0x6f, 0x54, + 0x0b, 0x80, 0xfb, 0x8c, 0x41, 0x52, 0x62, 0xbc, 0xc0, 0x2b, 0x49, 0x92, + 0xa4, 0x0d, 0x71, 0x29, 0x61, 0xbc, 0x64, 0x1f, 0xa3, 0x90, 0x94, 0x90, + 0x29, 0xc0, 0xfe, 0xc6, 0x10, 0xcd, 0x7e, 0x84, 0x27, 0x80, 0xe7, 0x97, + 0x68, 0x9f, 0x97, 0x00, 0xbf, 0x03, 0xfe, 0x48, 0x78, 0x32, 0xfe, 0x54, + 0xe0, 0x60, 0xa0, 0x73, 0x05, 0xd7, 0x67, 0x01, 0xa1, 0x18, 0xe6, 0x2e, + 0xc2, 0x83, 0x1e, 0x77, 0xe1, 0x78, 0x67, 0x15, 0xaf, 0x17, 0xf0, 0x03, + 0xe0, 0x0b, 0xed, 0xfc, 0xef, 0xf4, 0x05, 0x3e, 0x9e, 0x6d, 0x2f, 0x11, + 0x46, 0x6f, 0x5f, 0x44, 0x78, 0xf8, 0xb8, 0x6e, 0xda, 0x53, 0x18, 0xf0, + 0x5d, 0xe0, 0xfd, 0x15, 0x5a, 0xe8, 0x2f, 0x01, 0x37, 0x12, 0x5a, 0x3c, + 0x48, 0xed, 0xb1, 0x88, 0x30, 0xff, 0xa7, 0xed, 0x0c, 0xa0, 0x41, 0x84, + 0xf9, 0x45, 0x23, 0xb2, 0xaf, 0xbb, 0x12, 0x3a, 0x6e, 0x94, 0xad, 0x53, + 0xc5, 0x9b, 0x84, 0x62, 0x80, 0x8b, 0x81, 0xcb, 0x81, 0x57, 0x4a, 0xbc, + 0x4e, 0x9d, 0x09, 0x15, 0x5f, 0x8a, 0x7b, 0xa2, 0xb2, 0xd6, 0x18, 0x24, + 0x25, 0x64, 0x75, 0x76, 0xc0, 0x2d, 0x49, 0x92, 0x24, 0xbd, 0x97, 0x65, + 0x84, 0x07, 0x1f, 0x4e, 0x32, 0x0a, 0x49, 0x09, 0x99, 0x42, 0xb8, 0x17, + 0xa3, 0x38, 0x3a, 0x11, 0xae, 0x09, 0xff, 0xa5, 0x84, 0xfb, 0xbe, 0x86, + 0x70, 0x8d, 0xe3, 0x22, 0xc2, 0x83, 0x88, 0x1f, 0x06, 0x8e, 0x01, 0x3e, + 0x08, 0x74, 0x2b, 0xd9, 0x6b, 0x59, 0x01, 0x3c, 0x0e, 0x3c, 0x42, 0x98, + 0xdb, 0xfe, 0x60, 0xf6, 0x75, 0xae, 0x6f, 0x51, 0xd5, 0xd9, 0xbe, 0x84, + 0x0e, 0x15, 0x3b, 0x44, 0xfe, 0xef, 0x6e, 0x49, 0x28, 0x34, 0xf8, 0x02, + 0xf0, 0x58, 0xf6, 0x7d, 0x7c, 0x2e, 0x75, 0x18, 0x7f, 0x91, 0xb7, 0x30, + 0xe0, 0x00, 0xe0, 0x6b, 0x15, 0x5b, 0xec, 0x26, 0x42, 0xc5, 0xd5, 0x08, + 0x3f, 0x7c, 0xd4, 0x01, 0xe6, 0x64, 0xdb, 0xd4, 0xf5, 0x0e, 0x42, 0x86, + 0x00, 0x3b, 0x02, 0xc3, 0x80, 0x9d, 0x80, 0xed, 0xb3, 0x3f, 0x1b, 0x0c, + 0xf4, 0x48, 0x60, 0xbf, 0xe7, 0x12, 0x2a, 0xf4, 0x6e, 0x03, 0xee, 0x00, + 0xee, 0xc9, 0x7e, 0x68, 0x57, 0xc1, 0x28, 0xa0, 0xbf, 0x6f, 0xcd, 0xe8, + 0x27, 0x2a, 0x92, 0x94, 0x92, 0xa9, 0xc0, 0xcb, 0xc6, 0x20, 0x49, 0x92, + 0xa4, 0x0d, 0x34, 0x09, 0x0b, 0x03, 0x24, 0xa5, 0xe5, 0xbe, 0xec, 0xbc, + 0x76, 0x33, 0xa3, 0x88, 0x66, 0x1c, 0xe5, 0x2c, 0x0c, 0x68, 0xeb, 0x15, + 0xe0, 0xf7, 0xd9, 0xd6, 0x93, 0x30, 0xdf, 0xfc, 0x00, 0xc2, 0x35, 0xef, + 0x7d, 0x13, 0x79, 0xbf, 0xac, 0x00, 0x5e, 0x00, 0x9e, 0x07, 0x66, 0x12, + 0x46, 0x21, 0x3c, 0x49, 0x18, 0xf7, 0xf8, 0x3c, 0x3e, 0x60, 0xa6, 0xb4, + 0x74, 0x01, 0xbe, 0x95, 0x6d, 0x1d, 0xdd, 0x8d, 0x63, 0x67, 0xc2, 0xb8, + 0xf2, 0x6f, 0x13, 0xee, 0xbb, 0x5d, 0x44, 0x18, 0x79, 0xbf, 0xa0, 0xa8, + 0x17, 0x5a, 0xab, 0x3e, 0xc0, 0x9f, 0xa9, 0x66, 0x9b, 0x92, 0x01, 0x59, + 0xf8, 0x87, 0xfa, 0xa1, 0xa4, 0x02, 0xac, 0x05, 0x9e, 0xcd, 0xb6, 0xa9, + 0x6f, 0xf3, 0xcf, 0x37, 0x27, 0x14, 0x08, 0x0c, 0x26, 0x74, 0x1c, 0x18, + 0x00, 0x6c, 0x91, 0x7d, 0x1d, 0x40, 0x68, 0x79, 0xd4, 0x37, 0xfb, 0x9e, + 0xcc, 0x53, 0x44, 0xb0, 0x3a, 0xfb, 0xa0, 0x59, 0x00, 0xcc, 0x23, 0xb4, + 0x4f, 0x7a, 0x7e, 0xbd, 0x1f, 0xd0, 0xaf, 0x57, 0xfc, 0x00, 0x50, 0xf1, + 0xac, 0x01, 0xae, 0x35, 0x06, 0x49, 0x89, 0x71, 0x8c, 0x80, 0x24, 0x49, + 0x92, 0x6a, 0x71, 0x2d, 0xe1, 0x1a, 0xc9, 0xe6, 0x46, 0x21, 0x29, 0x11, + 0x6b, 0x09, 0x9d, 0x69, 0x3f, 0x6e, 0x14, 0xd1, 0x1c, 0x45, 0x78, 0xc2, + 0x7e, 0x65, 0x45, 0x5e, 0xcf, 0x72, 0x42, 0x6b, 0xf2, 0xb6, 0xed, 0xc9, + 0x37, 0x21, 0x3c, 0x90, 0xb8, 0x53, 0xb6, 0x0d, 0x26, 0xdc, 0x4f, 0xd8, + 0x9c, 0x75, 0xf7, 0x17, 0xf2, 0xdc, 0x1f, 0x5c, 0x01, 0xbc, 0x41, 0xe8, + 0x9a, 0xdc, 0x7a, 0x6f, 0x61, 0x7e, 0xf6, 0xb3, 0x73, 0x01, 0xe1, 0xe1, + 0xc8, 0x17, 0xb2, 0x6d, 0x9e, 0x6f, 0x35, 0x95, 0xc4, 0x70, 0xc2, 0xd3, + 0xfb, 0x7b, 0x17, 0xfc, 0xff, 0xed, 0x44, 0x28, 0xe8, 0x39, 0x00, 0xf8, + 0x61, 0x76, 0x1c, 0x7a, 0x11, 0xa1, 0x63, 0xf7, 0xb2, 0x8e, 0xfa, 0x9f, + 0xe6, 0xf9, 0xc6, 0xff, 0x39, 0xe1, 0xa9, 0xe6, 0xaa, 0x3a, 0x18, 0xf8, + 0x6a, 0xb6, 0x08, 0x52, 0x3d, 0xcd, 0xcb, 0xb6, 0xbb, 0x37, 0xf0, 0x7b, + 0x79, 0xa3, 0xec, 0x07, 0x7e, 0xab, 0xbe, 0xd9, 0x07, 0x4b, 0xab, 0xd7, + 0xb3, 0x03, 0xc9, 0xd6, 0xaf, 0x8b, 0x1a, 0x3c, 0xdf, 0x66, 0xdf, 0x62, + 0x51, 0xdd, 0x0d, 0xbc, 0x6a, 0x0c, 0x92, 0x12, 0xb2, 0x14, 0xf8, 0xbb, + 0x31, 0x48, 0x92, 0x24, 0xa9, 0x06, 0x6b, 0x80, 0xbf, 0x02, 0x5f, 0x34, + 0x0a, 0x49, 0x09, 0x99, 0x82, 0x85, 0x01, 0x31, 0x6d, 0x0c, 0x8c, 0x06, + 0xae, 0xaf, 0xf0, 0x6b, 0x5c, 0x08, 0xdc, 0x95, 0x6d, 0xef, 0xa4, 0x1f, + 0xa1, 0x93, 0xf6, 0x26, 0xd9, 0xd7, 0x7e, 0x6d, 0xfe, 0x59, 0xdb, 0xfb, + 0x07, 0x2d, 0x84, 0x7b, 0x0a, 0x6f, 0x10, 0x1e, 0x36, 0x94, 0xaa, 0xa2, + 0x09, 0xf8, 0x3c, 0x70, 0x26, 0xa1, 0xf3, 0x46, 0x3d, 0x75, 0x27, 0xdc, + 0xb3, 0x6a, 0x06, 0x7e, 0x06, 0x5c, 0x02, 0x7c, 0x8e, 0x30, 0xde, 0x3b, + 0xaa, 0x5a, 0x0b, 0x03, 0xc6, 0x02, 0x9f, 0x6c, 0x80, 0x37, 0xc3, 0x19, + 0xc0, 0x59, 0xc0, 0x2a, 0xbf, 0x2f, 0x54, 0x12, 0xab, 0xb3, 0x1f, 0xf6, + 0x0b, 0x8d, 0x62, 0x83, 0x0c, 0x01, 0x76, 0x31, 0x86, 0xe8, 0x27, 0x28, + 0x92, 0x94, 0x92, 0x4b, 0x08, 0xc5, 0x01, 0x92, 0x24, 0x49, 0x52, 0x2d, + 0x26, 0x61, 0x61, 0x80, 0xa4, 0xb4, 0x4c, 0x25, 0x14, 0x2e, 0x75, 0x36, + 0x8a, 0x68, 0xc6, 0x51, 0xed, 0xc2, 0x80, 0x0d, 0xd1, 0xda, 0x2d, 0xd8, + 0x7b, 0x0a, 0x6a, 0x44, 0x5b, 0x02, 0x7f, 0x02, 0x0e, 0x4f, 0x70, 0xdf, + 0xfa, 0x01, 0x9f, 0x22, 0x14, 0xab, 0x46, 0xef, 0xd2, 0xdc, 0xa9, 0xc6, + 0xbf, 0xbf, 0x6b, 0x83, 0xbc, 0x21, 0xba, 0x03, 0xdb, 0xf9, 0x7d, 0x21, + 0x55, 0xd6, 0x04, 0x23, 0x88, 0xce, 0xc2, 0x00, 0x49, 0xa9, 0x71, 0x8c, + 0x80, 0x24, 0x49, 0x92, 0xf2, 0x98, 0x41, 0x18, 0xb1, 0x28, 0x49, 0xa9, + 0x78, 0x2d, 0xfb, 0x6c, 0x52, 0x3c, 0x47, 0x1b, 0x81, 0xd4, 0xb0, 0x3e, + 0x0a, 0x3c, 0x48, 0x9a, 0x45, 0x01, 0x6d, 0x1d, 0xd5, 0x11, 0xff, 0xd1, + 0x5a, 0x0b, 0x03, 0x5a, 0x1a, 0xe8, 0x8d, 0x31, 0xcc, 0xef, 0x0d, 0xa9, + 0xb2, 0xc6, 0x19, 0x41, 0x54, 0x0b, 0x80, 0xfb, 0x8c, 0x41, 0x52, 0x42, + 0xe6, 0x63, 0xe5, 0xbf, 0x24, 0x49, 0x92, 0xf2, 0x3b, 0xdf, 0x08, 0x24, + 0x25, 0xc6, 0x87, 0x72, 0xe2, 0x1a, 0x0a, 0xec, 0x68, 0x0c, 0x52, 0x43, + 0xe9, 0x0b, 0x9c, 0x0d, 0x5c, 0x04, 0xf4, 0x2f, 0xc1, 0xfe, 0x8e, 0xed, + 0x88, 0xff, 0xa8, 0x85, 0x01, 0xef, 0xcc, 0xc2, 0x00, 0xa9, 0x9a, 0x7a, + 0x03, 0x07, 0x19, 0x43, 0x54, 0xd7, 0x10, 0xe6, 0x4e, 0x49, 0x52, 0x2a, + 0x26, 0xe1, 0xdc, 0x3b, 0x49, 0x92, 0x24, 0xe5, 0xf7, 0x17, 0x1a, 0xeb, + 0x3a, 0xa8, 0xa4, 0xf4, 0x59, 0x18, 0x10, 0x5f, 0xb3, 0x11, 0x48, 0x0d, + 0xe3, 0x10, 0xe0, 0x61, 0xe0, 0x94, 0x12, 0xed, 0xf3, 0x30, 0x3a, 0xa0, + 0xbb, 0x7d, 0xad, 0x85, 0x01, 0x8d, 0x74, 0xe3, 0x67, 0x27, 0xbf, 0x4f, + 0xa4, 0x4a, 0x3a, 0x02, 0xe8, 0x61, 0x0c, 0x9e, 0x98, 0x48, 0xaa, 0x34, + 0xc7, 0x08, 0x48, 0x92, 0x24, 0xa9, 0x3d, 0x9e, 0x03, 0xee, 0x34, 0x06, + 0x49, 0x09, 0xb9, 0x97, 0xd0, 0x1d, 0x4f, 0xf1, 0xd8, 0x55, 0x56, 0xaa, + 0xbe, 0x1e, 0xc0, 0x99, 0xc0, 0xb5, 0xc0, 0xd6, 0x25, 0xdc, 0xff, 0x23, + 0x63, 0xff, 0x07, 0x2d, 0x0c, 0x78, 0x67, 0x76, 0x0c, 0x90, 0x3c, 0xe0, + 0xd3, 0x7b, 0x5b, 0x03, 0x4c, 0x33, 0x06, 0x49, 0x09, 0x79, 0x82, 0x70, + 0xc1, 0x44, 0x92, 0x24, 0x49, 0x6a, 0x0f, 0x8b, 0x4d, 0x25, 0xa5, 0x64, + 0x2d, 0x5e, 0x83, 0x8b, 0xed, 0x40, 0xa0, 0x9f, 0x31, 0x48, 0x95, 0x35, + 0x02, 0x98, 0x01, 0x7c, 0x9d, 0xda, 0xef, 0x87, 0xa7, 0x22, 0xfa, 0x38, + 0x81, 0x4e, 0xbe, 0x2f, 0xde, 0xd1, 0x70, 0x23, 0x90, 0x2a, 0xa7, 0x09, + 0x18, 0x63, 0x0c, 0x51, 0xcd, 0x00, 0x5e, 0x35, 0x06, 0x49, 0x09, 0xf1, + 0x02, 0xae, 0x24, 0x49, 0x92, 0x62, 0x98, 0x0c, 0xac, 0x34, 0x06, 0x49, + 0x09, 0xb1, 0x6b, 0x67, 0x5c, 0x5d, 0x09, 0xdd, 0x65, 0x25, 0x55, 0xd3, + 0x79, 0xc0, 0xae, 0x25, 0x7f, 0x0d, 0x1f, 0x24, 0x72, 0x07, 0x6c, 0x3b, + 0x06, 0xbc, 0xb3, 0x7e, 0xc0, 0x40, 0xbf, 0x6f, 0xa4, 0x4a, 0x19, 0x09, + 0x0c, 0x32, 0x06, 0x4f, 0x48, 0x24, 0x55, 0x56, 0x0b, 0x70, 0xbe, 0x31, + 0x48, 0x92, 0x24, 0x29, 0x82, 0xd7, 0xf0, 0xe9, 0x5c, 0x49, 0x69, 0xb9, + 0x86, 0xd0, 0xbd, 0x53, 0xf1, 0xd8, 0x5d, 0x56, 0xaa, 0xa6, 0xdd, 0x29, + 0x7f, 0x51, 0x00, 0x40, 0x6f, 0x42, 0x77, 0x93, 0x68, 0x6a, 0x2d, 0x0c, + 0x68, 0x69, 0xb0, 0x37, 0x8e, 0xe3, 0x04, 0x24, 0x0f, 0xf4, 0xf4, 0xee, + 0x2c, 0x0c, 0x90, 0x94, 0x92, 0xdb, 0xff, 0x3f, 0x7b, 0x77, 0x1e, 0x6e, + 0xd9, 0x5d, 0xd7, 0xf9, 0xfe, 0x5d, 0x43, 0x46, 0x32, 0x32, 0x85, 0x04, + 0x90, 0x24, 0x32, 0x07, 0x49, 0x42, 0x06, 0x66, 0xc5, 0x30, 0xc9, 0x2c, + 0x22, 0x20, 0x28, 0xa8, 0xad, 0x82, 0xf8, 0xd8, 0x38, 0x5c, 0xbd, 0x5e, + 0xaf, 0x3e, 0xad, 0x3d, 0xa8, 0x8d, 0xfd, 0x78, 0xbd, 0xb6, 0xed, 0x63, + 0xb7, 0x38, 0xb4, 0xa2, 0x70, 0x05, 0x14, 0x05, 0x5a, 0x40, 0x03, 0x01, + 0x92, 0x30, 0x04, 0x32, 0x00, 0x12, 0xc2, 0x94, 0x30, 0x27, 0x40, 0x20, + 0x43, 0x65, 0x28, 0x92, 0x54, 0xd5, 0xfd, 0x63, 0x9d, 0xd3, 0xe7, 0xa4, + 0xc8, 0x54, 0xa9, 0x7d, 0xce, 0xd9, 0x7b, 0xad, 0xd7, 0xeb, 0x79, 0xd6, + 0xb3, 0x87, 0x3a, 0x67, 0xed, 0xfd, 0xfb, 0xae, 0xbd, 0xea, 0xec, 0xbd, + 0xd7, 0x67, 0x7d, 0x7f, 0xd5, 0xc5, 0xca, 0x00, 0x00, 0xc0, 0x8c, 0xe8, + 0x46, 0x05, 0xcc, 0x93, 0x6f, 0x56, 0x1f, 0x56, 0x86, 0x99, 0x7a, 0x46, + 0xb5, 0x45, 0x19, 0x60, 0x74, 0x5e, 0x34, 0xa2, 0xb1, 0xcc, 0xb4, 0x0b, + 0xf6, 0x9e, 0x06, 0x03, 0xb6, 0x4d, 0xec, 0x85, 0x23, 0x18, 0x00, 0xe3, + 0xf2, 0x4c, 0x25, 0x98, 0xa9, 0xcb, 0x33, 0x8f, 0x37, 0x30, 0x5f, 0x7c, + 0x71, 0x0b, 0x00, 0xc0, 0x2c, 0xfd, 0x43, 0x75, 0x95, 0x32, 0x00, 0x73, + 0xc4, 0x49, 0x3a, 0xb3, 0x75, 0xb7, 0xea, 0x91, 0xca, 0x00, 0xa3, 0xb2, + 0xa9, 0x7a, 0xe1, 0x88, 0xc6, 0xf3, 0xf4, 0x59, 0xae, 0x6c, 0x4f, 0x83, + 0x01, 0x9f, 0x9a, 0xd8, 0x8b, 0xe7, 0x41, 0xf6, 0x1f, 0x18, 0x8d, 0x23, + 0xab, 0x47, 0x28, 0xc3, 0x4c, 0xbd, 0xbd, 0x69, 0x4d, 0x31, 0x03, 0xcc, + 0xb7, 0x1b, 0xab, 0x37, 0x28, 0x03, 0x00, 0x00, 0x33, 0xb4, 0xbd, 0x21, + 0x1c, 0x00, 0x30, 0x2f, 0x04, 0x03, 0x66, 0x4f, 0x97, 0x59, 0x18, 0x97, + 0xc7, 0x54, 0xc7, 0x8c, 0x68, 0x3c, 0x0f, 0xaa, 0xbe, 0x73, 0x56, 0x2b, + 0xdb, 0xd3, 0x60, 0xc0, 0x85, 0x13, 0x7b, 0xf1, 0xe8, 0x18, 0x00, 0xe3, + 0xf1, 0xcc, 0x86, 0xa4, 0x18, 0x3e, 0x88, 0x00, 0xe3, 0xfd, 0x3f, 0xe9, + 0x72, 0x65, 0x00, 0x00, 0x60, 0xc6, 0x74, 0xa5, 0x02, 0xe6, 0xc9, 0x87, + 0xab, 0xaf, 0x29, 0xc3, 0x4c, 0xe9, 0x32, 0x0b, 0xe3, 0xf2, 0xa2, 0x11, + 0x8e, 0xe9, 0xa9, 0xb3, 0x5a, 0xd1, 0x9e, 0x06, 0x03, 0xae, 0xac, 0xbe, + 0x3a, 0xa1, 0x17, 0x8f, 0x60, 0x00, 0x8c, 0x87, 0xe4, 0xe7, 0x6c, 0xed, + 0xac, 0x4e, 0x57, 0x06, 0x60, 0x8e, 0xf8, 0xc2, 0x16, 0x00, 0x80, 0xb5, + 0xf0, 0xce, 0xea, 0xcb, 0xca, 0x00, 0xcc, 0x89, 0x9d, 0xd5, 0xbf, 0x28, + 0xc3, 0x4c, 0x3d, 0xbc, 0x3a, 0x5a, 0x19, 0x60, 0x14, 0xb6, 0x56, 0x3f, + 0x38, 0xc2, 0x71, 0x3d, 0x6d, 0x56, 0x2b, 0xda, 0x7c, 0x27, 0x7e, 0xe7, + 0xa2, 0x09, 0xbd, 0x80, 0x8e, 0xae, 0xf6, 0xb7, 0x1f, 0xc1, 0xc2, 0xdb, + 0xaf, 0x7a, 0xa2, 0x32, 0xcc, 0xd4, 0x39, 0x49, 0x27, 0x03, 0xf3, 0xe3, + 0xea, 0xea, 0x2d, 0xca, 0x00, 0x00, 0xc0, 0x1a, 0xd8, 0x59, 0xfd, 0xad, + 0x32, 0x00, 0x73, 0x44, 0x17, 0xcf, 0xd9, 0x7b, 0xba, 0x12, 0xc0, 0x28, + 0x3c, 0xb9, 0x3a, 0x62, 0x84, 0xe3, 0x7a, 0x62, 0x75, 0xc0, 0x2c, 0x56, + 0x24, 0x18, 0x70, 0xfb, 0xf5, 0x79, 0x80, 0xfd, 0x08, 0x16, 0xde, 0x69, + 0xd5, 0x41, 0xca, 0xe0, 0x03, 0x08, 0x30, 0x5a, 0x7f, 0x57, 0x5d, 0xaf, + 0x0c, 0x00, 0x00, 0xac, 0x11, 0xdd, 0xa9, 0x80, 0x79, 0xf2, 0x8e, 0x6a, + 0x87, 0x32, 0xcc, 0x94, 0x6e, 0xb3, 0x30, 0x0e, 0x4f, 0x1e, 0xe9, 0xb8, + 0x0e, 0xa8, 0x1e, 0x3f, 0x8b, 0x15, 0x09, 0x06, 0xdc, 0xbe, 0xe3, 0xed, + 0x47, 0xe0, 0x8d, 0x1d, 0xdf, 0x46, 0x30, 0x00, 0x98, 0x27, 0xbe, 0xa8, + 0x05, 0x00, 0x60, 0x2d, 0x9d, 0x57, 0xfd, 0xab, 0x32, 0x00, 0x73, 0xe2, + 0xf2, 0xea, 0xc3, 0xca, 0x30, 0x53, 0x4f, 0xcc, 0x89, 0x65, 0x30, 0x06, + 0x8f, 0x18, 0xf1, 0xd8, 0x66, 0xd2, 0xd9, 0xe4, 0xce, 0x04, 0x03, 0x3e, + 0x31, 0xb1, 0x17, 0xd1, 0x43, 0xec, 0x47, 0xb0, 0xf0, 0x04, 0x03, 0x66, + 0xff, 0xe1, 0xe3, 0x5c, 0x65, 0x00, 0xe6, 0xc4, 0x57, 0xaa, 0x77, 0x2b, + 0x03, 0x00, 0x00, 0x6b, 0xec, 0x75, 0x4a, 0x00, 0xcc, 0x11, 0x27, 0xed, + 0xcc, 0xd6, 0x7e, 0x0d, 0x5d, 0x67, 0x81, 0xc5, 0xb5, 0xb9, 0x3a, 0x71, + 0xc4, 0xe3, 0x7b, 0xda, 0xac, 0x8a, 0xb4, 0xa7, 0x3e, 0x39, 0xb1, 0x17, + 0xd2, 0x49, 0xf6, 0x25, 0x58, 0x68, 0xdf, 0x55, 0x1d, 0xad, 0x0c, 0x33, + 0xf5, 0xf6, 0x86, 0x39, 0x16, 0x01, 0xe6, 0xc1, 0x6b, 0xd3, 0x42, 0x11, + 0x00, 0x80, 0xb5, 0xf7, 0x37, 0xd5, 0x2e, 0x65, 0x00, 0xe6, 0x84, 0x60, + 0xc0, 0xec, 0x39, 0xb9, 0x0c, 0x16, 0xdb, 0x03, 0xab, 0x43, 0x46, 0x3e, + 0xbe, 0xef, 0xdc, 0xdb, 0x95, 0xdc, 0x99, 0x60, 0xc0, 0x17, 0xaa, 0xeb, + 0x26, 0xf4, 0x42, 0x3a, 0xa5, 0xda, 0x64, 0x7f, 0x82, 0x85, 0xf5, 0x4c, + 0x25, 0xf0, 0xc1, 0x03, 0x18, 0x35, 0xd3, 0x08, 0x00, 0x00, 0xb0, 0x1e, + 0x3e, 0x5f, 0x9d, 0xa5, 0x0c, 0xc0, 0x9c, 0xf8, 0x70, 0xf5, 0x35, 0x65, + 0x98, 0xa9, 0x67, 0xe5, 0x58, 0x10, 0x2c, 0xb2, 0x29, 0x9c, 0xe8, 0xfd, + 0x7d, 0x7b, 0xbb, 0x82, 0x3b, 0x13, 0x0c, 0xd8, 0x59, 0x7d, 0x6a, 0x42, + 0x2f, 0xa4, 0xbb, 0x36, 0x83, 0x04, 0x06, 0xb0, 0x61, 0x04, 0x03, 0x66, + 0x6b, 0x67, 0x75, 0xba, 0x32, 0x00, 0x73, 0xe2, 0x13, 0xd5, 0x05, 0xca, + 0x00, 0x00, 0xc0, 0x3a, 0x11, 0x4a, 0x05, 0xe6, 0xc5, 0xce, 0xea, 0x5f, + 0x94, 0x61, 0xa6, 0x8e, 0x6c, 0xdc, 0x6d, 0xc8, 0x61, 0xec, 0xa6, 0x10, + 0x0c, 0xd8, 0xeb, 0xe9, 0x04, 0x36, 0xdf, 0xc9, 0xdf, 0xfb, 0xc4, 0xc4, + 0x5e, 0x4c, 0xa7, 0xd8, 0x9f, 0x60, 0x21, 0xdd, 0xad, 0x7a, 0xa4, 0x32, + 0xcc, 0xd4, 0x87, 0x92, 0x46, 0x06, 0xe6, 0xc7, 0x6b, 0x94, 0x00, 0x00, + 0x80, 0x75, 0xf4, 0xfa, 0xea, 0x5b, 0xca, 0x00, 0xcc, 0x09, 0x5d, 0x3d, + 0x67, 0xef, 0x59, 0x4a, 0x00, 0x0b, 0x6b, 0x0a, 0xc1, 0x80, 0xd3, 0xaa, + 0x03, 0xf6, 0x66, 0x05, 0x77, 0x36, 0x18, 0xf0, 0xc9, 0x89, 0xbd, 0x98, + 0x04, 0x03, 0x60, 0x31, 0x3d, 0xa3, 0xda, 0xa2, 0x0c, 0x3e, 0x70, 0x00, + 0xa3, 0xb4, 0xab, 0x7a, 0x9d, 0x32, 0x00, 0x00, 0xb0, 0x8e, 0xae, 0xf0, + 0xb9, 0x18, 0x98, 0x23, 0xef, 0x68, 0xe8, 0x1c, 0xc0, 0xec, 0x3c, 0x43, + 0x09, 0x60, 0x21, 0x6d, 0xaa, 0x8e, 0x9f, 0xc0, 0x38, 0x0f, 0xa8, 0xbe, + 0x7b, 0x6f, 0x56, 0x70, 0x67, 0x83, 0x01, 0x17, 0x4d, 0xec, 0x05, 0x75, + 0xaa, 0x7d, 0x0a, 0xbc, 0x91, 0xa3, 0xf2, 0x05, 0x08, 0x30, 0x3f, 0xce, + 0xac, 0x3e, 0xa7, 0x0c, 0x00, 0x00, 0xac, 0x33, 0xd3, 0x09, 0x00, 0xf3, + 0xe2, 0xf2, 0xea, 0xc3, 0xca, 0x30, 0x53, 0x27, 0x57, 0x47, 0x29, 0x03, + 0x2c, 0x9c, 0x07, 0x56, 0x87, 0x4e, 0x64, 0xac, 0x7b, 0x35, 0x9d, 0x80, + 0xa9, 0x04, 0xee, 0x98, 0x93, 0xaa, 0x7d, 0xec, 0x57, 0xb0, 0x50, 0xf6, + 0xa9, 0x9e, 0xa2, 0x0c, 0x3e, 0x6c, 0x00, 0xa3, 0xe5, 0x0b, 0x59, 0x00, + 0x00, 0x36, 0xc2, 0x5b, 0xab, 0x2b, 0x95, 0x01, 0x98, 0x13, 0x4e, 0xe2, + 0x99, 0xad, 0x4d, 0xcd, 0x60, 0x0e, 0x6f, 0x60, 0xdd, 0x9d, 0x34, 0xa1, + 0xb1, 0x6e, 0x48, 0x30, 0xe0, 0x53, 0xd5, 0x8e, 0x09, 0x15, 0x79, 0xff, + 0xea, 0x38, 0xfb, 0x15, 0x2c, 0x94, 0xc7, 0x57, 0x87, 0x29, 0xc3, 0x4c, + 0x69, 0x4f, 0x06, 0xcc, 0x8b, 0x1b, 0xaa, 0xbf, 0x53, 0x06, 0x00, 0x00, + 0x36, 0xc0, 0x76, 0xef, 0x45, 0x81, 0x39, 0x22, 0x18, 0x30, 0x7b, 0xba, + 0xd0, 0xc2, 0xe2, 0x99, 0x52, 0x30, 0xe0, 0x81, 0xd5, 0xfd, 0xef, 0xec, + 0x2f, 0x6f, 0xdd, 0x8b, 0x37, 0xc0, 0x9f, 0xab, 0xbe, 0x73, 0x42, 0x85, + 0x3e, 0xa5, 0xba, 0xc0, 0xbe, 0x05, 0x0b, 0xe3, 0x33, 0xd5, 0x93, 0x95, + 0x61, 0xa6, 0x3e, 0xad, 0x04, 0x6c, 0x80, 0xbf, 0xad, 0xce, 0x55, 0x06, + 0x76, 0xb3, 0xad, 0xfa, 0x86, 0x32, 0xc0, 0x2d, 0xfa, 0x8b, 0xea, 0x0c, + 0x65, 0x98, 0xa9, 0x0b, 0x95, 0x60, 0x61, 0x3c, 0xbb, 0xda, 0xa2, 0x0c, + 0x33, 0xb3, 0x43, 0x09, 0xe0, 0x56, 0xfd, 0xbb, 0xea, 0xff, 0x53, 0x06, + 0x76, 0xf3, 0x2d, 0x25, 0x60, 0x03, 0x7c, 0x28, 0xdf, 0x81, 0xce, 0xda, + 0xf5, 0x4a, 0x00, 0x0b, 0xe7, 0x11, 0x13, 0x1b, 0xef, 0x63, 0x1a, 0x8e, + 0x81, 0xed, 0xb1, 0x4d, 0xbb, 0x76, 0xed, 0xba, 0xb3, 0x0f, 0xfa, 0xc6, + 0xea, 0x79, 0x13, 0x2a, 0xf2, 0xab, 0xab, 0x97, 0xd9, 0xb7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xdc, 0xa6, 0xea, 0x8a, 0xea, 0xd0, + 0x09, 0x8d, 0xf9, 0x71, 0xd5, 0xd9, 0x77, 0xe6, 0x17, 0x37, 0xef, 0xc5, + 0x83, 0x4e, 0xed, 0xec, 0xbd, 0x53, 0xed, 0x5b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x73, 0xe1, 0x01, 0x4d, 0x2b, 0x14, 0xb0, 0xa3, 0xfa, + 0xc8, 0x9d, 0xfd, 0xe5, 0xbd, 0x09, 0x06, 0x9c, 0x33, 0xb1, 0x17, 0xd6, + 0xc3, 0xaa, 0xbb, 0xd8, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x36, 0xdc, 0xc9, 0x13, 0x1b, 0xef, 0x27, 0xab, 0x6b, 0xee, 0xec, 0x2f, + 0xef, 0x4d, 0x30, 0xe0, 0xc3, 0xd5, 0xce, 0x09, 0x15, 0x7a, 0x4b, 0x75, + 0xa2, 0xfd, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xc3, 0x9d, + 0x34, 0xb1, 0xf1, 0xee, 0x55, 0x47, 0xff, 0xbd, 0x09, 0x06, 0x5c, 0x55, + 0x7d, 0x7a, 0x62, 0xc5, 0x36, 0x9d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc0, 0xc6, 0x13, 0x0c, 0xd8, 0x03, 0x9b, 0xf7, 0xf2, 0xc1, 0x3f, + 0x34, 0xb1, 0x62, 0x9f, 0x62, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xd8, 0x50, 0x9b, 0xaa, 0x13, 0x26, 0x36, 0xe6, 0xf3, 0xf6, 0xe6, + 0x97, 0x05, 0x03, 0xf6, 0x8c, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc0, 0xc6, 0x7a, 0x60, 0x75, 0xe8, 0x84, 0xc6, 0xbb, 0xb3, 0xba, + 0x60, 0x6f, 0x56, 0x20, 0x18, 0xb0, 0x67, 0x8e, 0xad, 0xee, 0x6e, 0x3f, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x30, 0x53, 0x9b, 0x46, + 0xe0, 0x53, 0xd5, 0xb6, 0xbd, 0x59, 0xc1, 0xde, 0x06, 0x03, 0xce, 0xaf, + 0x6e, 0x9c, 0x50, 0xc1, 0x37, 0x55, 0x27, 0xdb, 0xcf, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x36, 0xcc, 0xd4, 0x82, 0x01, 0xe7, 0xee, 0xed, + 0x0a, 0xf6, 0x36, 0x18, 0xb0, 0xbd, 0xfa, 0xd8, 0xc4, 0x8a, 0x7e, 0xaa, + 0xfd, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xc3, 0x4c, 0x2d, + 0x18, 0x70, 0xde, 0xde, 0xae, 0x60, 0xf3, 0x0c, 0x9e, 0xc4, 0xd4, 0xa6, + 0x13, 0x38, 0xc5, 0x7e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, + 0x21, 0x36, 0x55, 0x27, 0x4c, 0x6c, 0xcc, 0x1b, 0xde, 0x31, 0xa0, 0xa6, + 0x17, 0x0c, 0x78, 0xa4, 0x7d, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x43, 0x3c, 0xa0, 0x3a, 0x74, 0x42, 0xe3, 0xdd, 0x55, 0x5d, 0xb0, + 0xb7, 0x2b, 0x11, 0x0c, 0xd8, 0x73, 0xf7, 0xa8, 0xee, 0x67, 0x7f, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x77, 0x53, 0x9b, 0x46, 0xe0, + 0xd3, 0xd5, 0x55, 0x7b, 0xbb, 0x92, 0x59, 0x04, 0x03, 0x3e, 0x5e, 0x5d, + 0x3b, 0xb1, 0xe2, 0x9f, 0x6a, 0x7f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x58, 0x77, 0x53, 0x0b, 0x06, 0x9c, 0x3b, 0x8b, 0x95, 0xcc, 0x22, + 0x18, 0xb0, 0xa3, 0x3a, 0x7f, 0x62, 0xc5, 0x3f, 0xc5, 0xfe, 0x06, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xee, 0x4e, 0x9e, 0xd8, 0x78, 0xcf, + 0x9b, 0xc5, 0x4a, 0x36, 0xcf, 0xe8, 0xc9, 0x9c, 0x33, 0xb1, 0xe2, 0x0b, + 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xaf, 0x4d, 0xd5, + 0x09, 0x13, 0x1b, 0xf3, 0xdc, 0x74, 0x0c, 0xa8, 0xfa, 0xd0, 0xc4, 0x8a, + 0x7f, 0x72, 0xb5, 0xc5, 0x7e, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xb0, 0x6e, 0x1e, 0x50, 0x1d, 0x3a, 0xa1, 0xf1, 0xee, 0x6a, 0x46, 0xdd, + 0xfb, 0x05, 0x03, 0xee, 0x9c, 0x83, 0xaa, 0x07, 0xdb, 0xef, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0xcd, 0x49, 0x13, 0x1b, 0xef, 0x67, + 0xab, 0x2b, 0x67, 0xb1, 0xa2, 0x59, 0x05, 0x03, 0x2e, 0xae, 0xbe, 0x31, + 0xb1, 0x8d, 0x70, 0xaa, 0xfd, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0xdd, 0x4c, 0x2d, 0x18, 0x70, 0xee, 0xac, 0x56, 0x34, 0xab, 0x60, + 0xc0, 0xae, 0xea, 0xc3, 0x13, 0xdb, 0x08, 0xa7, 0xd8, 0xef, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0xcd, 0xd4, 0x82, 0x01, 0xe7, 0xcd, + 0x6a, 0x45, 0x9b, 0x67, 0xf8, 0xa4, 0xa6, 0x36, 0x9d, 0x80, 0x60, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xfa, 0xd8, 0x54, 0x9d, 0x30, + 0xb1, 0x31, 0xcf, 0x5d, 0xc7, 0x80, 0x9a, 0x5e, 0x30, 0xe0, 0xf8, 0xea, + 0x00, 0xfb, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9a, 0x7b, + 0x40, 0x75, 0xd8, 0x84, 0xc6, 0xbb, 0xab, 0x3a, 0x7f, 0x56, 0x2b, 0x9b, + 0x65, 0x30, 0xe0, 0x9c, 0x89, 0xbd, 0xf0, 0xf6, 0xa9, 0x1e, 0x6e, 0xff, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x73, 0x53, 0x9b, 0x46, + 0xe0, 0x92, 0xea, 0x9b, 0xb3, 0x5a, 0xd9, 0x2c, 0x83, 0x01, 0x97, 0x55, + 0x5f, 0x9c, 0xd8, 0xc6, 0x38, 0xd5, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xb0, 0xe6, 0xa6, 0x16, 0x0c, 0x38, 0x77, 0x96, 0x2b, 0xdb, + 0x3c, 0xe3, 0x27, 0x37, 0xb5, 0xe9, 0x04, 0x4e, 0xb1, 0xff, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xb9, 0xa9, 0x05, 0x03, 0xce, 0x9b, + 0xe5, 0xca, 0x04, 0x03, 0xf6, 0x8e, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x6b, 0x6b, 0x53, 0x75, 0xc2, 0xc4, 0xc6, 0xac, 0x63, + 0xc0, 0x1c, 0x79, 0x60, 0x75, 0x98, 0xfd, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x60, 0xcd, 0xdc, 0xbf, 0xe9, 0x1d, 0x97, 0x3d, 0x7f, 0x96, + 0x2b, 0x9b, 0x75, 0x30, 0xe0, 0xc3, 0xd5, 0xce, 0x09, 0x6d, 0x8c, 0x4d, + 0xd5, 0xc9, 0xf6, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x35, + 0x33, 0xb5, 0x69, 0x04, 0x3e, 0x57, 0x5d, 0x3e, 0xcb, 0x15, 0xce, 0x3a, + 0x18, 0x70, 0x55, 0xf5, 0xe9, 0x89, 0x6d, 0x94, 0x53, 0xec, 0x87, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x66, 0x6a, 0xc1, 0x80, 0x73, + 0x67, 0xbd, 0xc2, 0xcd, 0x6b, 0xf0, 0x24, 0xcf, 0x99, 0xd8, 0x46, 0x11, + 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x3b, 0x8f, 0x9a, + 0xd8, 0x78, 0xcf, 0x9f, 0xf5, 0x0a, 0xd7, 0x22, 0x18, 0xf0, 0xa1, 0x89, + 0x6d, 0x14, 0x53, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, + 0x8d, 0x03, 0xab, 0x53, 0x27, 0x36, 0xe6, 0x85, 0xe8, 0x18, 0x30, 0xb5, + 0x60, 0xc0, 0x91, 0xf6, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x35, 0xf1, 0xd8, 0x6a, 0xdf, 0x89, 0x8d, 0x79, 0x21, 0x82, 0x01, 0x17, + 0x54, 0x37, 0x4c, 0x68, 0xa3, 0x6c, 0x6d, 0x48, 0xa9, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x30, 0x5b, 0x4f, 0x98, 0xd8, 0x78, 0xbf, 0x50, + 0x7d, 0x7d, 0xd6, 0x2b, 0x5d, 0x8b, 0x60, 0xc0, 0xf6, 0xea, 0x5f, 0x27, + 0xb6, 0x71, 0x0e, 0xb5, 0x3f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xcc, 0xdc, 0xf7, 0x4e, 0x6c, 0xbc, 0xe7, 0xae, 0xc5, 0x4a, 0x37, 0xaf, + 0xd1, 0x93, 0x9d, 0xda, 0x74, 0x02, 0x87, 0xd9, 0x1f, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x66, 0xea, 0xa0, 0xea, 0xe4, 0x89, 0x8d, 0xf9, + 0xbc, 0xb5, 0x58, 0xa9, 0x60, 0xc0, 0x6c, 0xe8, 0x18, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x30, 0x5b, 0x8f, 0xab, 0xf6, 0x99, 0xd8, 0x98, + 0x17, 0xaa, 0x63, 0xc0, 0x39, 0x13, 0xdb, 0x38, 0x82, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xb3, 0xf5, 0x84, 0x09, 0x8e, 0xf9, 0xfc, + 0xb5, 0x58, 0xe9, 0x5a, 0x05, 0x03, 0x2e, 0xac, 0xae, 0x9d, 0xd0, 0xc6, + 0x11, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0xad, 0x27, + 0x4c, 0x6c, 0xbc, 0x5f, 0xaa, 0x2e, 0x5b, 0x8b, 0x15, 0xaf, 0x55, 0x30, + 0x60, 0x47, 0x6b, 0x34, 0xf7, 0xc1, 0x9c, 0x12, 0x0c, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x98, 0x9d, 0x83, 0xab, 0x47, 0x4c, 0x6c, 0xcc, + 0xe7, 0xae, 0xd5, 0x8a, 0x37, 0xaf, 0xe1, 0x93, 0xfe, 0xd0, 0x84, 0x36, + 0xd0, 0x67, 0xed, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, + 0xf3, 0xf8, 0x6a, 0x9f, 0x89, 0x8d, 0xf9, 0xfc, 0xb5, 0x5a, 0xb1, 0x60, + 0xc0, 0xde, 0x7b, 0x6d, 0xf5, 0x2e, 0xfb, 0x25, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0xcc, 0x3c, 0x61, 0x82, 0x63, 0x5e, 0xb3, 0x8e, 0x01, + 0x9b, 0x76, 0xed, 0xda, 0xb5, 0x56, 0xeb, 0x3e, 0xb6, 0xf1, 0x9f, 0x49, + 0xff, 0xcd, 0xea, 0x21, 0xd5, 0xd7, 0xec, 0x97, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x33, 0xf3, 0xa1, 0xea, 0xe4, 0x09, 0x8d, 0x77, 0x57, + 0x75, 0xcf, 0xea, 0xf2, 0xb5, 0x58, 0xf9, 0x5a, 0x76, 0x0c, 0xb8, 0xa4, + 0xfa, 0xca, 0xc8, 0x37, 0xce, 0xff, 0x99, 0x50, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc0, 0x2c, 0x1d, 0x5a, 0x9d, 0x38, 0xb1, 0x31, 0x7f, + 0xbc, 0x35, 0x0a, 0x05, 0xd4, 0xda, 0x06, 0x03, 0x76, 0x55, 0x2f, 0xac, + 0x6e, 0x18, 0xe9, 0x86, 0x79, 0x6f, 0xf5, 0xe7, 0xf6, 0x49, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x99, 0x7a, 0x7c, 0xb5, 0x65, 0x62, 0x63, + 0x3e, 0x63, 0x2d, 0x57, 0xbe, 0x79, 0x8d, 0x9f, 0xfc, 0x59, 0xd5, 0x2f, + 0x8d, 0x70, 0xa3, 0x7c, 0xab, 0x7a, 0x79, 0x43, 0xf8, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0xd9, 0x39, 0x66, 0x82, 0x63, 0x7e, 0xf7, + 0x5a, 0xae, 0x7c, 0xf3, 0x3a, 0x0c, 0xe0, 0x0f, 0xab, 0x57, 0x8f, 0x6c, + 0xa3, 0xfc, 0x4e, 0x75, 0x91, 0xfd, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x60, 0xe6, 0x3e, 0x38, 0xb1, 0xf1, 0xee, 0x6a, 0xe8, 0x58, 0xbf, + 0x66, 0x36, 0xed, 0xda, 0xb5, 0x2e, 0x27, 0xbd, 0xef, 0x53, 0xbd, 0xb3, + 0xa1, 0xe5, 0xc3, 0xa2, 0xfb, 0x54, 0x75, 0x7c, 0xb5, 0xdd, 0xfe, 0x08, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x73, 0xfb, 0x54, 0x57, 0x56, + 0x07, 0x4e, 0x64, 0xbc, 0x1f, 0xa9, 0x4e, 0x58, 0xcb, 0x07, 0xd8, 0xbc, + 0x4e, 0x03, 0xb9, 0xb1, 0x7a, 0x41, 0xf5, 0xa5, 0x05, 0xdf, 0x20, 0xbb, + 0xaa, 0x57, 0x24, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, + 0x56, 0x6e, 0xac, 0xce, 0x99, 0xd0, 0x78, 0xdf, 0xbd, 0xd6, 0x0f, 0xb0, + 0x79, 0x1d, 0x07, 0x73, 0x59, 0xf5, 0x9c, 0xea, 0xfa, 0x05, 0xde, 0x20, + 0x7f, 0x56, 0xbd, 0xcb, 0x7e, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xb0, 0xa6, 0xce, 0x9a, 0xd0, 0x58, 0xcf, 0x58, 0xeb, 0x07, 0xd8, 0xbc, + 0xce, 0x03, 0x3a, 0xaf, 0x7a, 0xf9, 0x82, 0x6e, 0x8c, 0xcb, 0xab, 0x5f, + 0xb5, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xb9, 0xb3, + 0x27, 0x32, 0xce, 0x9d, 0xad, 0x43, 0x08, 0x62, 0xf3, 0x06, 0x0c, 0xec, + 0x35, 0xd5, 0x7f, 0x5d, 0xc0, 0x0d, 0xf2, 0xca, 0x86, 0x70, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0xeb, 0x7d, 0xd5, 0x8e, 0x09, + 0x8c, 0xf3, 0x23, 0xd5, 0x37, 0xd6, 0xfa, 0x41, 0x36, 0x6f, 0xd0, 0xe0, + 0x7e, 0xb1, 0x7a, 0xfb, 0x02, 0x6d, 0x8c, 0x77, 0x54, 0xaf, 0xb3, 0xef, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0x8b, 0xab, 0xab, 0x8f, + 0x4f, 0x60, 0x9c, 0x67, 0xac, 0xc7, 0x83, 0x6c, 0x54, 0x30, 0x60, 0x47, + 0xf5, 0xc3, 0xd5, 0x67, 0x17, 0x60, 0x43, 0x5c, 0x57, 0xfd, 0x8c, 0xfd, + 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x5d, 0x9d, 0x35, 0x81, + 0x31, 0xbe, 0x7b, 0x3d, 0x1e, 0x64, 0xf3, 0x06, 0x0e, 0xf0, 0x9b, 0xd5, + 0x0f, 0x54, 0xd7, 0xce, 0xf9, 0x86, 0xf8, 0xcd, 0xea, 0x62, 0xfb, 0x1c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xba, 0x3a, 0x7b, 0xe4, 0xe3, + 0xdb, 0x51, 0x9d, 0xb9, 0x1e, 0x0f, 0xb4, 0x79, 0x83, 0x07, 0xfa, 0xd1, + 0xea, 0x25, 0xd5, 0xae, 0x39, 0xdd, 0x10, 0x1f, 0xab, 0xfe, 0x5f, 0xfb, + 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xba, 0x1b, 0x7b, 0x30, + 0xe0, 0xfc, 0xea, 0xca, 0xf5, 0x78, 0xa0, 0xcd, 0x73, 0x30, 0xd8, 0x37, + 0x55, 0xbf, 0x3d, 0x87, 0x1b, 0x61, 0x67, 0xf5, 0xf2, 0xea, 0x46, 0xfb, + 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xba, 0xfb, 0x7c, 0xf5, + 0xc5, 0x11, 0x8f, 0xef, 0x8c, 0xf5, 0x7a, 0xa0, 0xcd, 0x73, 0x32, 0xe0, + 0x7f, 0x57, 0xbd, 0x65, 0xce, 0x36, 0xc2, 0x7f, 0xab, 0xde, 0x6f, 0x5f, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x30, 0x63, 0xee, 0x1a, + 0xf0, 0xee, 0xf5, 0x7a, 0xa0, 0x79, 0x09, 0x06, 0xec, 0xac, 0x7e, 0xb8, + 0xfa, 0xf8, 0x9c, 0x3c, 0x9f, 0x4b, 0x1b, 0xc2, 0x0a, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6c, 0x9c, 0xb1, 0x06, 0x03, 0x6e, 0xaa, 0xce, + 0x5a, 0xaf, 0x07, 0xdb, 0x3c, 0x47, 0x03, 0xdf, 0x56, 0x3d, 0xaf, 0x75, + 0x9a, 0x43, 0xe1, 0x76, 0xfc, 0x4c, 0x75, 0x95, 0x7d, 0x0c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0x43, 0x8d, 0x35, 0x18, 0xf0, 0xe1, 0xea, + 0xea, 0xf5, 0x7a, 0xb0, 0xcd, 0x73, 0x36, 0xf8, 0x4f, 0x56, 0x2f, 0xac, + 0x76, 0x6c, 0xe0, 0x73, 0x78, 0x53, 0xf5, 0x0f, 0xf6, 0x2f, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x0d, 0xf7, 0xd1, 0xc6, 0x79, 0x52, 0xf7, + 0x5f, 0xae, 0xe7, 0x83, 0x6d, 0x9e, 0xc3, 0x02, 0xfc, 0x73, 0xf5, 0xeb, + 0x1b, 0xf4, 0xd8, 0x57, 0x57, 0xaf, 0xb4, 0x6f, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xcc, 0x85, 0x1d, 0xd5, 0x07, 0x47, 0x36, 0xa6, 0x6d, + 0xd5, 0x6b, 0xd7, 0xf3, 0x01, 0x37, 0xcf, 0x69, 0x21, 0x5e, 0x55, 0xbd, + 0x6e, 0x03, 0x1e, 0xf7, 0xff, 0xae, 0xbe, 0x64, 0xdf, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x63, 0x9b, 0x4e, 0xe0, 0x35, 0xad, + 0xe3, 0x34, 0x02, 0x55, 0x9b, 0x76, 0xed, 0xda, 0x35, 0xaf, 0xc5, 0x38, + 0x70, 0x69, 0x03, 0x9f, 0xb0, 0x87, 0xbf, 0x77, 0xcd, 0x52, 0x11, 0xaf, + 0x5a, 0x5a, 0x96, 0xaf, 0x5f, 0xb1, 0xea, 0xfa, 0xee, 0x97, 0x57, 0x55, + 0x57, 0x56, 0x97, 0x54, 0x3b, 0xed, 0x57, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x73, 0xe3, 0x89, 0xd5, 0xe9, 0x23, 0x1a, 0xcf, 0xf1, 0x0d, + 0x53, 0x24, 0xac, 0x9b, 0x79, 0x0e, 0x06, 0x54, 0xdd, 0xaf, 0xfa, 0x9d, + 0x86, 0x56, 0x0a, 0x57, 0x74, 0xcb, 0x07, 0xf5, 0x77, 0x3f, 0xf0, 0xbf, + 0xc3, 0x7e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x1a, 0x07, + 0x35, 0x1c, 0x0f, 0xde, 0x3a, 0x82, 0xb1, 0x9c, 0x5d, 0x3d, 0x6e, 0xbd, + 0x1f, 0x74, 0xde, 0x83, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xf0, 0xa1, 0xea, 0xe4, 0x11, 0x8c, 0xe3, 0x87, 0xab, 0xd7, 0xae, 0xf7, + 0x83, 0x6e, 0xf6, 0xfa, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, + 0xce, 0x9d, 0x3d, 0x82, 0x31, 0x5c, 0x5e, 0xfd, 0xfd, 0x46, 0x3c, 0xb0, + 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf3, 0x6e, 0xd1, + 0x83, 0x01, 0x3b, 0xab, 0xdf, 0xaa, 0xb6, 0x6f, 0xc4, 0x83, 0x9b, 0x4a, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x79, 0x77, 0xaf, 0xea, + 0xd2, 0x05, 0x7d, 0xee, 0x1f, 0xab, 0x5e, 0x5e, 0xbd, 0x7f, 0xa3, 0x9e, + 0x80, 0x8e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0xbb, + 0xcb, 0xaa, 0x8b, 0x17, 0xec, 0x39, 0x5f, 0x5f, 0xfd, 0xfb, 0xea, 0xe4, + 0x36, 0x30, 0x14, 0x50, 0xb5, 0xd5, 0xeb, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x05, 0x70, 0x76, 0x75, 0xec, 0x82, 0x3c, 0xd7, 0x33, + 0xaa, 0x9f, 0xae, 0x3e, 0x35, 0x0f, 0x4f, 0x46, 0xc7, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc1, 0xdf, 0x57, 0xdb, 0xe6, 0xfc, + 0x39, 0x7e, 0xb5, 0x7a, 0x71, 0x75, 0x5a, 0x73, 0x12, 0x0a, 0xa8, 0xda, + 0xb4, 0x6b, 0xd7, 0x2e, 0x2f, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x16, 0xc1, 0xc1, 0xd5, 0x8b, 0xaa, 0x9f, 0xa9, 0x8e, 0x9f, 0xa3, + 0xe7, 0xb5, 0xab, 0xfa, 0xeb, 0xea, 0x17, 0xaa, 0x6f, 0xcc, 0x5b, 0xd1, + 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x44, 0x27, + 0x55, 0x2f, 0xab, 0x5e, 0x5a, 0xed, 0xbf, 0x81, 0xcf, 0xe3, 0xd3, 0x0d, + 0xd3, 0x06, 0xbc, 0x6b, 0x5e, 0x0b, 0x25, 0x18, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc0, 0x22, 0x3b, 0xa2, 0xfa, 0xb1, 0xea, 0x15, 0xd5, + 0xfd, 0xd6, 0xf1, 0x71, 0xb7, 0x57, 0xaf, 0xaa, 0x7e, 0xa7, 0xfa, 0xd6, + 0x3c, 0x17, 0x48, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x31, 0xd8, 0x5c, 0x9d, 0x56, 0xfd, 0x5c, 0xf5, 0x8c, 0x6a, 0xd3, 0x1a, + 0x3e, 0xd6, 0x7b, 0x1a, 0xba, 0x04, 0x5c, 0xb4, 0x08, 0x85, 0x11, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x6c, 0xee, 0x5f, 0xfd, + 0xe4, 0xd2, 0x72, 0xb7, 0x19, 0xae, 0xf7, 0x9b, 0xd5, 0xaf, 0x56, 0xaf, + 0xae, 0x16, 0xe6, 0x60, 0xbb, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x63, 0xb5, 0x5f, 0xf5, 0xec, 0xea, 0xe7, 0xab, 0xc7, 0xec, + 0xc5, 0x7a, 0x76, 0x55, 0x7f, 0x5d, 0xfd, 0x62, 0x75, 0xf9, 0xa2, 0x15, + 0x41, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x29, 0x38, + 0xa9, 0x7a, 0x59, 0xf5, 0x23, 0xd5, 0x81, 0x7b, 0xf0, 0x7b, 0x9f, 0xa9, + 0x5e, 0x51, 0x9d, 0xbe, 0xa8, 0x03, 0x17, 0x0c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x60, 0x4a, 0x0e, 0xab, 0x7e, 0xb4, 0x7a, 0x65, 0x75, + 0xec, 0x6d, 0xfc, 0xdc, 0x8d, 0xd5, 0xff, 0x53, 0xfd, 0x46, 0xf5, 0xad, + 0x45, 0x1e, 0xb0, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x53, 0xb4, 0xb9, 0x3a, 0xad, 0xa1, 0x8b, 0xc0, 0x73, 0xab, 0xad, 0xab, + 0xfe, 0xed, 0xcc, 0xea, 0xe5, 0xd5, 0x27, 0xc6, 0x30, 0x50, 0xc1, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xee, 0x98, 0xea, 0xa7, + 0xab, 0xe7, 0x54, 0xff, 0xb9, 0xfa, 0xcb, 0x6a, 0x34, 0x07, 0xd3, 0x05, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xc4, 0x36, 0x2b, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x97, 0x60, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, + 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, + 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8c, 0x98, 0x60, 0x00, 0x5f, 0x75, 0x18, 0x17, 0x00, 0x00, 0x20, 0x00, + 0x49, 0x44, 0x41, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, + 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, + 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, + 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, + 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, + 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, + 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8c, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, + 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x98, + 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0xd8, 0x56, + 0x25, 0x00, 0x00, 0x00, 0x80, 0x0d, 0xb5, 0x5f, 0x75, 0xe0, 0x2d, 0x5c, + 0x5f, 0xed, 0xf0, 0x3b, 0xb0, 0x9e, 0x83, 0xaa, 0x7d, 0x6e, 0xe7, 0x67, + 0xf6, 0xaf, 0x0e, 0xa8, 0x76, 0x55, 0x57, 0xde, 0x81, 0x75, 0x5e, 0x5d, + 0xed, 0xb8, 0x9d, 0x9f, 0xb9, 0xbe, 0xda, 0xbe, 0xdb, 0x7d, 0x3b, 0xab, + 0xab, 0x6e, 0xe1, 0x3a, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x04, 0x03, 0x00, + 0x00, 0x00, 0x98, 0xaa, 0xbb, 0x54, 0xfb, 0x56, 0x87, 0x56, 0x5b, 0xaa, + 0xc3, 0x1a, 0x0e, 0xac, 0x1f, 0xd4, 0xca, 0x01, 0xf4, 0xdb, 0xfa, 0x99, + 0xe5, 0xcb, 0x6e, 0xe3, 0xfa, 0xbe, 0x4b, 0xeb, 0xd8, 0xfd, 0xfa, 0xad, + 0x05, 0x00, 0xc6, 0x6e, 0x47, 0x43, 0xd8, 0x60, 0xf7, 0xeb, 0x37, 0x55, + 0xdb, 0x6e, 0xe7, 0xfa, 0x8d, 0xd5, 0x35, 0xab, 0xee, 0xdb, 0xde, 0x10, + 0x4a, 0xb8, 0xb6, 0xba, 0xa1, 0x21, 0x7c, 0xb0, 0xa3, 0x21, 0xf0, 0xb0, + 0xfc, 0xb3, 0xcb, 0x3f, 0x73, 0xcd, 0xd2, 0x7d, 0x57, 0x35, 0x04, 0x15, + 0x00, 0x00, 0x00, 0x60, 0x52, 0x36, 0xed, 0xda, 0xb5, 0x4b, 0x15, 0x00, + 0x00, 0x00, 0x98, 0x77, 0x87, 0x54, 0x07, 0x37, 0x1c, 0x70, 0x3f, 0xb8, + 0xe1, 0x00, 0xfd, 0xea, 0xdb, 0xcb, 0xf7, 0x1d, 0xb4, 0xea, 0xfe, 0x43, + 0x97, 0x7e, 0x6f, 0xeb, 0xd2, 0xbf, 0x6d, 0x5d, 0xfa, 0xb7, 0xe5, 0x83, + 0xfe, 0x4c, 0xd3, 0x72, 0x07, 0x83, 0xe5, 0xf0, 0xc0, 0x72, 0xc7, 0x83, + 0x6b, 0x96, 0x96, 0x6d, 0x0d, 0x81, 0x85, 0xab, 0x56, 0xdd, 0xbe, 0xa6, + 0x21, 0x70, 0xb0, 0x6d, 0xd5, 0xed, 0x6d, 0xd5, 0x15, 0xad, 0x84, 0x0e, + 0x00, 0x00, 0x00, 0x60, 0x6e, 0x09, 0x06, 0x00, 0x00, 0x00, 0xb0, 0xd6, + 0x0e, 0x6a, 0x68, 0x85, 0xbf, 0xbc, 0xdc, 0x75, 0xb7, 0xdb, 0x87, 0x77, + 0xfb, 0x07, 0xf8, 0x61, 0x9e, 0x7d, 0xab, 0xdb, 0x0f, 0x14, 0x5c, 0x51, + 0x7d, 0x73, 0xe9, 0xf2, 0x96, 0x96, 0x1d, 0xca, 0x08, 0x00, 0x00, 0xc0, + 0x5a, 0x11, 0x0c, 0x00, 0x00, 0x00, 0xe0, 0x8e, 0x38, 0xb0, 0x5b, 0x3e, + 0xa0, 0x7f, 0x5b, 0x07, 0xfb, 0x97, 0x97, 0x7d, 0x94, 0x0f, 0x6e, 0xd7, + 0xd5, 0xad, 0x84, 0x04, 0x6e, 0x2b, 0x40, 0x70, 0xc5, 0x2d, 0xfc, 0x9c, + 0x2f, 0x77, 0x00, 0x00, 0x00, 0xb8, 0x4d, 0x82, 0x01, 0x00, 0x00, 0x00, + 0xd3, 0x74, 0x40, 0x2b, 0x07, 0xee, 0x8f, 0xac, 0x8e, 0xba, 0x9d, 0xdb, + 0x87, 0x2b, 0x19, 0xcc, 0xad, 0xed, 0xd5, 0x57, 0xaa, 0x4b, 0x5b, 0x09, + 0x0d, 0xdc, 0xda, 0xed, 0xaf, 0x67, 0xea, 0x03, 0x00, 0x00, 0x80, 0xc9, + 0x11, 0x0c, 0x00, 0x00, 0x00, 0x18, 0x87, 0x03, 0x1b, 0x0e, 0xe6, 0x1f, + 0x51, 0xdd, 0xbd, 0xba, 0xc7, 0xaa, 0xeb, 0xcb, 0xcb, 0xbd, 0x56, 0x5d, + 0xdf, 0x5f, 0xc9, 0x60, 0xb2, 0x2e, 0x6f, 0x08, 0x08, 0x5c, 0xbe, 0xb4, + 0x7c, 0x75, 0xb7, 0xdb, 0x5f, 0x5b, 0xba, 0xef, 0x6b, 0x4b, 0x8b, 0x2f, + 0x8f, 0x00, 0x00, 0x00, 0x16, 0x9c, 0x60, 0x00, 0x00, 0x00, 0xc0, 0x7c, + 0x3b, 0xa0, 0x95, 0x33, 0xf8, 0x77, 0xbf, 0x3c, 0x7c, 0xb7, 0xfb, 0x00, + 0xd6, 0xc2, 0x15, 0x0d, 0xdd, 0x06, 0xbe, 0x72, 0x1b, 0x97, 0x5f, 0x4c, + 0x27, 0x02, 0x00, 0x00, 0x80, 0xb9, 0x25, 0x18, 0x00, 0x00, 0x00, 0xb0, + 0x31, 0x0e, 0xef, 0xb6, 0x0f, 0xf2, 0x1f, 0x55, 0xdd, 0xa7, 0x3a, 0x44, + 0xa9, 0x80, 0x05, 0xb1, 0x1c, 0x20, 0x58, 0x3d, 0x75, 0xc1, 0xee, 0x97, + 0x5f, 0xaa, 0xae, 0x52, 0x2a, 0x00, 0x00, 0x80, 0xf5, 0x25, 0x18, 0x00, + 0x00, 0x00, 0x30, 0x7b, 0xab, 0x0f, 0xfa, 0x1f, 0xbb, 0xdb, 0xf5, 0x63, + 0xab, 0xfb, 0x56, 0xfb, 0x28, 0x13, 0x30, 0x51, 0xdb, 0x1b, 0x82, 0x02, + 0x17, 0xb7, 0x12, 0x1a, 0xb8, 0x78, 0xd5, 0xed, 0xcf, 0x57, 0xd7, 0x28, + 0x13, 0x00, 0x00, 0xc0, 0xec, 0x08, 0x06, 0x00, 0x00, 0x00, 0xec, 0x99, + 0xe5, 0xd6, 0xfe, 0xb7, 0x74, 0xc0, 0xff, 0xa8, 0xea, 0x3b, 0xaa, 0x83, + 0x94, 0x09, 0x60, 0xaf, 0xac, 0x9e, 0xbe, 0xe0, 0x96, 0x02, 0x04, 0xa6, + 0x2e, 0x00, 0x00, 0x00, 0xd8, 0x03, 0x82, 0x01, 0x00, 0x00, 0x00, 0x2b, + 0xb6, 0x34, 0xb4, 0xef, 0x3f, 0xa6, 0x3a, 0x7a, 0x69, 0xf9, 0x8e, 0xa5, + 0xfb, 0xee, 0x53, 0xdd, 0xaf, 0x3a, 0x50, 0x99, 0x00, 0x36, 0xdc, 0xce, + 0xea, 0xb2, 0x86, 0xee, 0x02, 0x5f, 0x5a, 0x5a, 0x3e, 0x5f, 0x5d, 0xb2, + 0xb4, 0x7c, 0xae, 0xda, 0xa6, 0x4c, 0x00, 0x00, 0x00, 0x03, 0xc1, 0x00, + 0x00, 0x00, 0x60, 0x6a, 0x0e, 0x6f, 0xe5, 0x0c, 0xff, 0xd5, 0xcb, 0x51, + 0x0d, 0x81, 0x80, 0x03, 0x94, 0x08, 0x60, 0x14, 0xae, 0xe8, 0x96, 0xbb, + 0x0d, 0x5c, 0x5c, 0x7d, 0x32, 0xd3, 0x15, 0x00, 0x00, 0x00, 0x13, 0x22, + 0x18, 0x00, 0x00, 0x00, 0x8c, 0xcd, 0xe1, 0x7d, 0x7b, 0x8b, 0xff, 0xe5, + 0xe5, 0x81, 0xd5, 0xc1, 0x4a, 0x04, 0x40, 0x2b, 0xc1, 0x81, 0x5b, 0x5a, + 0xbe, 0x50, 0xdd, 0xa4, 0x44, 0x00, 0x00, 0xc0, 0x58, 0x08, 0x06, 0x00, + 0x00, 0x00, 0x0b, 0xf7, 0x39, 0xa6, 0xba, 0x6f, 0x75, 0xff, 0xea, 0x01, + 0x4b, 0x97, 0xf7, 0x6f, 0x38, 0xdb, 0xff, 0x98, 0xea, 0x10, 0x25, 0x02, + 0x60, 0x2f, 0xdd, 0x54, 0x7d, 0xb1, 0x61, 0x4a, 0x82, 0xcf, 0x56, 0x9f, + 0xa9, 0x3e, 0xbd, 0xea, 0xf2, 0x7a, 0x25, 0x02, 0x00, 0x00, 0x16, 0x89, + 0x60, 0x00, 0x00, 0x00, 0x30, 0xaf, 0x56, 0xb7, 0xfc, 0x3f, 0xae, 0x7a, + 0xe8, 0xd2, 0xf5, 0x07, 0x55, 0x07, 0x29, 0x0f, 0x00, 0x1b, 0x68, 0xb9, + 0xdb, 0xc0, 0x85, 0xd5, 0xc7, 0x5b, 0xe9, 0x34, 0x70, 0x51, 0x75, 0xad, + 0xf2, 0x00, 0x00, 0x00, 0xf3, 0x46, 0x30, 0x00, 0x00, 0x00, 0xd8, 0x48, + 0xb7, 0x76, 0xf0, 0x5f, 0xcb, 0x7f, 0x00, 0x16, 0xd5, 0x15, 0x7d, 0x7b, + 0x60, 0xe0, 0xe2, 0xea, 0x13, 0xd5, 0x75, 0xca, 0x03, 0x00, 0x00, 0x6c, + 0x04, 0xc1, 0x00, 0x00, 0x00, 0x60, 0xad, 0x1d, 0x54, 0x3d, 0x78, 0x69, + 0x79, 0x48, 0x43, 0xfb, 0xff, 0xe5, 0x29, 0x00, 0x9c, 0xf9, 0x0f, 0xc0, + 0x54, 0xec, 0x68, 0x98, 0x9e, 0x60, 0x79, 0x4a, 0x82, 0x8b, 0x1a, 0xc2, + 0x02, 0x9f, 0xac, 0xbe, 0xa0, 0x3c, 0x00, 0x00, 0xc0, 0x5a, 0x12, 0x0c, + 0x00, 0x00, 0x00, 0x66, 0x65, 0xf9, 0xec, 0xff, 0xe5, 0x33, 0xff, 0x97, + 0x2f, 0x8f, 0xae, 0x36, 0x2b, 0x0f, 0x00, 0xdc, 0xaa, 0x6f, 0x55, 0x9f, + 0x6d, 0xe8, 0x32, 0xb0, 0xba, 0xdb, 0xc0, 0xc7, 0xab, 0xed, 0xca, 0x03, + 0x00, 0x00, 0xec, 0x2d, 0xc1, 0x00, 0x00, 0x00, 0x60, 0x4f, 0x1d, 0xd5, + 0x4a, 0xcb, 0xff, 0xe5, 0x83, 0xff, 0x0f, 0xab, 0xee, 0xa5, 0x34, 0x00, + 0x30, 0x53, 0x37, 0x35, 0x74, 0x13, 0x58, 0x1d, 0x16, 0xb8, 0xb0, 0xfa, + 0x48, 0xb5, 0x4d, 0x79, 0x00, 0x00, 0x80, 0x3b, 0x4a, 0x30, 0x00, 0x00, + 0x00, 0xb8, 0x25, 0xfb, 0x56, 0x0f, 0x6a, 0x65, 0x0a, 0x80, 0x87, 0x2e, + 0x5d, 0x3e, 0xa8, 0x3a, 0x40, 0x79, 0x00, 0x60, 0x43, 0xed, 0x6a, 0x08, + 0x0c, 0x2c, 0x4f, 0x47, 0xf0, 0x89, 0xa5, 0xeb, 0x17, 0x56, 0x97, 0x2b, + 0x0f, 0x00, 0x00, 0xb0, 0x3b, 0xc1, 0x00, 0x00, 0x00, 0x60, 0xb9, 0x03, + 0xc0, 0x71, 0xd5, 0x49, 0xab, 0xae, 0xef, 0xaf, 0x34, 0x00, 0xb0, 0x70, + 0xae, 0x68, 0xa5, 0xc3, 0xc0, 0x85, 0xd5, 0xb9, 0xd5, 0xf9, 0xd5, 0xb5, + 0x4a, 0x03, 0x00, 0x00, 0xd3, 0x25, 0x18, 0x00, 0x00, 0x00, 0xd3, 0x71, + 0x58, 0x43, 0xcb, 0xff, 0xe5, 0x03, 0xff, 0x0f, 0xad, 0x4e, 0xa8, 0xee, + 0xae, 0x34, 0x00, 0x30, 0x7a, 0x97, 0x36, 0x84, 0x04, 0x56, 0x07, 0x06, + 0x2e, 0xaa, 0x76, 0x28, 0x0d, 0x00, 0x00, 0x8c, 0x9f, 0x60, 0x00, 0x00, + 0x00, 0x8c, 0xcf, 0x3e, 0xd5, 0x03, 0xfb, 0xf6, 0x2e, 0x00, 0xc7, 0x54, + 0x9b, 0x94, 0x07, 0x00, 0x58, 0x72, 0x43, 0xf5, 0x99, 0x6e, 0x1e, 0x16, + 0xf8, 0x78, 0x75, 0xb1, 0xd2, 0x00, 0x00, 0xc0, 0xb8, 0x08, 0x06, 0x00, + 0x00, 0xc0, 0x62, 0x3b, 0xba, 0xe1, 0xac, 0xff, 0xef, 0x5a, 0xb5, 0x3c, + 0xa0, 0xda, 0xa2, 0x34, 0x00, 0xc0, 0x9d, 0x74, 0x79, 0xf5, 0xd1, 0xea, + 0x5f, 0xab, 0x8f, 0x55, 0x17, 0x2c, 0x5d, 0xdf, 0xae, 0x34, 0x00, 0x00, + 0xb0, 0x98, 0x04, 0x03, 0x00, 0x00, 0x60, 0x31, 0x6c, 0xa9, 0xee, 0xd7, + 0x4a, 0x07, 0x80, 0x93, 0xaa, 0x53, 0xab, 0x7b, 0x2a, 0x0d, 0x00, 0xb0, + 0x0e, 0x6e, 0xaa, 0x3e, 0xd5, 0xcd, 0xbb, 0x0b, 0xbc, 0xbf, 0x21, 0x44, + 0x00, 0x00, 0x00, 0xcc, 0x39, 0xc1, 0x00, 0x00, 0x00, 0x98, 0x3f, 0xcb, + 0x53, 0x01, 0x9c, 0xb4, 0x6a, 0x39, 0xa1, 0xba, 0x8b, 0xd2, 0x00, 0x00, + 0x73, 0xe6, 0xd2, 0x86, 0x90, 0xc0, 0xf2, 0x62, 0x2a, 0x02, 0x00, 0x00, + 0x98, 0x43, 0x82, 0x01, 0x00, 0x00, 0xb0, 0xb1, 0x0e, 0xa9, 0x1e, 0xde, + 0x70, 0xf0, 0xff, 0xa1, 0x0d, 0x1d, 0x01, 0x4e, 0xae, 0xf6, 0x53, 0x1a, + 0x00, 0x60, 0x41, 0x5d, 0xd1, 0x4a, 0x57, 0x81, 0xe5, 0xe5, 0x13, 0xd5, + 0x4e, 0xa5, 0x01, 0x00, 0x80, 0x8d, 0x21, 0x18, 0x00, 0x00, 0x00, 0xeb, + 0xe7, 0x88, 0x86, 0x83, 0xfe, 0x27, 0xae, 0x5a, 0x8e, 0x51, 0x16, 0x00, + 0x60, 0x02, 0xae, 0xae, 0x3e, 0x52, 0x9d, 0xbf, 0xb4, 0x9c, 0xdb, 0x10, + 0x1e, 0xd8, 0xa1, 0x34, 0x00, 0x00, 0xb0, 0xf6, 0x04, 0x03, 0x00, 0x00, + 0x60, 0x6d, 0x1c, 0x5c, 0x1d, 0xdf, 0xcd, 0xa7, 0x03, 0x78, 0x48, 0xb5, + 0x49, 0x69, 0x00, 0x00, 0xaa, 0xba, 0xb6, 0xba, 0xa0, 0x9b, 0x77, 0x16, + 0xb8, 0xb0, 0xf2, 0x85, 0x25, 0x00, 0x00, 0xcc, 0x98, 0x60, 0x00, 0x00, + 0x00, 0xec, 0xbd, 0x7d, 0xaa, 0x07, 0x36, 0x1c, 0xfc, 0x7f, 0x6c, 0xf5, + 0xb8, 0xea, 0xc1, 0xd5, 0x66, 0xa5, 0x01, 0x00, 0xd8, 0x23, 0x57, 0x57, + 0x1f, 0x6b, 0x25, 0x28, 0x70, 0x66, 0x75, 0x89, 0xb2, 0x00, 0x00, 0xc0, + 0xde, 0x11, 0x0c, 0x00, 0x00, 0x80, 0x3d, 0xb3, 0xa5, 0xe1, 0xa0, 0xff, + 0x49, 0xbb, 0x2d, 0xfb, 0x2b, 0x0d, 0x00, 0xc0, 0x9a, 0xb8, 0xb4, 0x9b, + 0x77, 0x15, 0x78, 0x7f, 0x75, 0xb9, 0xb2, 0x00, 0x00, 0xc0, 0x1d, 0x27, + 0x18, 0x00, 0x00, 0x00, 0xb7, 0xed, 0xa8, 0x6e, 0x1e, 0x00, 0x78, 0x5c, + 0x75, 0x98, 0xb2, 0x00, 0x00, 0x6c, 0xa8, 0xe5, 0xb0, 0xc0, 0x59, 0xd5, + 0xd9, 0xd5, 0x79, 0xd5, 0x75, 0xca, 0x02, 0x00, 0x00, 0xb7, 0x4c, 0x30, + 0x00, 0x00, 0x00, 0x56, 0x1c, 0x54, 0x9d, 0x52, 0x3d, 0xa6, 0x7a, 0x74, + 0xf5, 0xa8, 0xea, 0x6e, 0xca, 0x02, 0x00, 0x30, 0xf7, 0x6e, 0xaa, 0x3e, + 0xd2, 0xd0, 0x4d, 0xe0, 0xfd, 0xd5, 0xfb, 0xaa, 0xcf, 0x29, 0x0b, 0x00, + 0x00, 0x0c, 0x04, 0x03, 0x00, 0x00, 0x98, 0xb2, 0xa3, 0xaa, 0xc7, 0x36, + 0x74, 0x01, 0x38, 0xa9, 0x21, 0x14, 0xb0, 0xaf, 0xb2, 0x00, 0x00, 0x8c, + 0xc2, 0x65, 0xd5, 0x87, 0xbb, 0x79, 0x67, 0x81, 0xeb, 0x95, 0x05, 0x00, + 0x80, 0x29, 0x12, 0x0c, 0x00, 0x00, 0x60, 0x2a, 0xf6, 0xa9, 0x1e, 0xde, + 0x4a, 0x08, 0xe0, 0xbb, 0xab, 0xfb, 0x29, 0x0b, 0x00, 0xc0, 0x64, 0x2c, + 0x77, 0x15, 0x38, 0xbb, 0x21, 0x2c, 0x70, 0x66, 0x75, 0x89, 0xb2, 0x00, + 0x00, 0x30, 0x05, 0x82, 0x01, 0x00, 0x00, 0x8c, 0xd5, 0x51, 0x0d, 0x01, + 0x80, 0xd5, 0x1d, 0x01, 0xf6, 0x57, 0x16, 0x00, 0x00, 0x56, 0xb9, 0xb4, + 0x9b, 0x77, 0x14, 0xf8, 0x50, 0xf5, 0x2d, 0x65, 0x01, 0x00, 0x60, 0x6c, + 0x04, 0x03, 0x00, 0x00, 0x18, 0x83, 0xad, 0xd5, 0x23, 0xaa, 0x47, 0x57, + 0x8f, 0x59, 0x5a, 0xee, 0xa3, 0x2c, 0x00, 0x00, 0xec, 0xa1, 0xeb, 0x1a, + 0xa6, 0x1f, 0x78, 0x5f, 0xf5, 0xfe, 0x86, 0xb0, 0xc0, 0x37, 0x94, 0x05, + 0x00, 0x80, 0x45, 0x27, 0x18, 0x00, 0x00, 0xc0, 0x22, 0xda, 0x5a, 0x1d, + 0x5f, 0x3d, 0xa9, 0xa1, 0x1b, 0xc0, 0xe3, 0xaa, 0xc3, 0x94, 0x05, 0x00, + 0x80, 0x35, 0x70, 0x71, 0x75, 0x7a, 0x43, 0x48, 0xe0, 0x3d, 0xd5, 0xe7, + 0x95, 0x04, 0x00, 0x80, 0x45, 0x23, 0x18, 0x00, 0x00, 0xc0, 0x22, 0xb8, + 0x4b, 0x75, 0x62, 0xc3, 0xb4, 0x00, 0xcb, 0x61, 0x00, 0xd3, 0x02, 0x00, + 0x00, 0xb0, 0x11, 0x2e, 0x6d, 0x98, 0x7a, 0x60, 0x39, 0x2c, 0x70, 0x61, + 0xe5, 0x4b, 0x56, 0x00, 0x00, 0xe6, 0x9a, 0x60, 0x00, 0x00, 0x00, 0xf3, + 0xe8, 0xe0, 0xea, 0x91, 0xad, 0x84, 0x00, 0x4e, 0xa9, 0xf6, 0x55, 0x16, + 0x00, 0x00, 0xe6, 0xd0, 0x65, 0xd5, 0x99, 0x0d, 0x21, 0x81, 0xb3, 0xaa, + 0xf3, 0xab, 0x9d, 0xca, 0x02, 0x00, 0xc0, 0x3c, 0x11, 0x0c, 0x00, 0x00, + 0x60, 0x1e, 0xdc, 0xab, 0xe1, 0xe0, 0xff, 0x72, 0x47, 0x80, 0x13, 0xab, + 0xcd, 0xca, 0x02, 0x00, 0xc0, 0x02, 0xba, 0xba, 0x3a, 0xa7, 0x95, 0x8e, + 0x02, 0xe7, 0x54, 0x37, 0x28, 0x0b, 0x00, 0x00, 0x1b, 0x49, 0x30, 0x00, + 0x00, 0x80, 0x8d, 0x70, 0x74, 0xf5, 0x84, 0xea, 0xbb, 0xab, 0xc7, 0x57, + 0xf7, 0x57, 0x12, 0x00, 0x00, 0x46, 0x6a, 0x5b, 0xf5, 0xbe, 0x86, 0xae, + 0x02, 0xef, 0xa9, 0x3e, 0x58, 0xdd, 0xa8, 0x2c, 0x00, 0x00, 0xac, 0x27, + 0xc1, 0x00, 0x00, 0x00, 0xd6, 0xc3, 0x3d, 0xab, 0xef, 0x69, 0x65, 0x6a, + 0x80, 0x87, 0x2a, 0x09, 0x00, 0x00, 0x13, 0x75, 0x5d, 0x43, 0x50, 0x60, + 0xb9, 0xa3, 0x80, 0xa0, 0x00, 0x00, 0x00, 0x6b, 0x4e, 0x30, 0x00, 0x00, + 0x80, 0xb5, 0x70, 0x50, 0xf5, 0xa8, 0x86, 0x20, 0xc0, 0x93, 0xaa, 0x47, + 0x54, 0x9b, 0x94, 0x05, 0x00, 0x00, 0xbe, 0xcd, 0x35, 0xd5, 0x07, 0x1a, + 0x82, 0x02, 0xa7, 0x57, 0xe7, 0x55, 0xbe, 0xb4, 0x05, 0x00, 0x60, 0xa6, + 0x04, 0x03, 0x00, 0x00, 0x98, 0x85, 0x03, 0xab, 0xc7, 0xb4, 0xd2, 0x11, + 0xe0, 0xd4, 0x6a, 0x1f, 0x65, 0x01, 0x00, 0x80, 0x3d, 0xf6, 0xb5, 0x86, + 0x29, 0x07, 0x96, 0x3b, 0x0a, 0x7c, 0x5c, 0x49, 0x00, 0x00, 0xd8, 0x5b, + 0x82, 0x01, 0x00, 0x00, 0xdc, 0x19, 0x5b, 0xab, 0xe3, 0x5b, 0xe9, 0x08, + 0xf0, 0xf8, 0x6a, 0x3f, 0x65, 0x01, 0x00, 0x80, 0x99, 0xbb, 0xb4, 0x3a, + 0xab, 0x21, 0x28, 0xf0, 0xf6, 0xea, 0x0b, 0x4a, 0x02, 0x00, 0xc0, 0x9e, + 0x12, 0x0c, 0x00, 0x00, 0xe0, 0x8e, 0xd8, 0x5a, 0x9d, 0x5c, 0x9d, 0xb6, + 0xb4, 0x3c, 0xa6, 0x3a, 0x40, 0x59, 0x00, 0x00, 0x60, 0xdd, 0x5d, 0x54, + 0xbd, 0x6b, 0x69, 0x79, 0x77, 0xf5, 0x0d, 0x25, 0x01, 0x00, 0xe0, 0xf6, + 0x08, 0x06, 0x00, 0x00, 0x70, 0x6b, 0xee, 0x55, 0x3d, 0xa5, 0x7a, 0x66, + 0x43, 0x57, 0x80, 0xc3, 0x95, 0x04, 0x00, 0x00, 0xe6, 0xca, 0xce, 0xea, + 0xfc, 0x86, 0x6e, 0x02, 0xa7, 0x57, 0xef, 0xad, 0x6e, 0x50, 0x16, 0x00, + 0x00, 0x76, 0x27, 0x18, 0x00, 0x00, 0xc0, 0xb2, 0x03, 0x1b, 0x3a, 0x01, + 0x2c, 0x4f, 0x0f, 0x70, 0x92, 0x92, 0x00, 0x00, 0xc0, 0x42, 0xb9, 0xb6, + 0x7a, 0x7f, 0x43, 0x48, 0xe0, 0x2d, 0xd5, 0x85, 0x4a, 0x02, 0x00, 0x40, + 0x09, 0x06, 0x00, 0x00, 0x4c, 0xdd, 0xb1, 0xd5, 0xb3, 0x1a, 0xba, 0x02, + 0x3c, 0xbe, 0xda, 0x4f, 0x49, 0x00, 0x00, 0x60, 0x34, 0x2e, 0x6e, 0xa5, + 0x9b, 0xc0, 0xbf, 0x54, 0x57, 0x2a, 0x09, 0x00, 0xc0, 0x34, 0x09, 0x06, + 0x00, 0x00, 0x4c, 0xcb, 0x3d, 0xaa, 0x27, 0x34, 0x74, 0x04, 0x78, 0x46, + 0x75, 0x6f, 0x25, 0x01, 0x00, 0x80, 0x49, 0xd8, 0x51, 0x5d, 0xd0, 0x10, + 0x12, 0x78, 0x6b, 0xf5, 0xbe, 0x86, 0xa9, 0x08, 0x00, 0x00, 0x98, 0x00, + 0xc1, 0x00, 0x00, 0x80, 0x71, 0xdb, 0x5a, 0x1d, 0xdf, 0x4a, 0x57, 0x80, + 0x47, 0x54, 0x9b, 0x94, 0x05, 0x00, 0x00, 0x26, 0xef, 0xf2, 0xea, 0x8c, + 0x86, 0xa0, 0xc0, 0xdb, 0xaa, 0x2f, 0x2a, 0x09, 0x00, 0xc0, 0x78, 0x09, + 0x06, 0x00, 0x00, 0x8c, 0xcf, 0x31, 0x0d, 0xdd, 0x00, 0x9e, 0x56, 0x7d, + 0x4f, 0x75, 0x17, 0x25, 0x01, 0x00, 0x00, 0x6e, 0xc7, 0x47, 0xab, 0x77, + 0x54, 0xff, 0x54, 0x9d, 0x55, 0xdd, 0xa4, 0x24, 0x00, 0x00, 0xe3, 0x21, + 0x18, 0x00, 0x00, 0xb0, 0xf8, 0xb6, 0x54, 0x27, 0xb4, 0xd2, 0x15, 0xe0, + 0x24, 0x25, 0x01, 0x00, 0x00, 0xf6, 0xc2, 0xb5, 0x0d, 0xdd, 0x04, 0xde, + 0xd2, 0x30, 0xed, 0xc0, 0x57, 0x94, 0x04, 0x00, 0x60, 0xb1, 0x09, 0x06, + 0x00, 0x00, 0x2c, 0xa6, 0xbb, 0x55, 0xa7, 0xb5, 0x12, 0x06, 0x38, 0x5c, + 0x49, 0x00, 0x00, 0x80, 0x35, 0xb0, 0xb3, 0x3a, 0xbf, 0x61, 0xca, 0x81, + 0xb7, 0x56, 0x67, 0x57, 0xbe, 0x54, 0x06, 0x00, 0x58, 0x30, 0x82, 0x01, + 0x00, 0x00, 0x8b, 0xe3, 0xb8, 0x86, 0x10, 0xc0, 0x93, 0xaa, 0x27, 0x54, + 0x5b, 0x95, 0x04, 0x00, 0x00, 0x58, 0x67, 0x5f, 0x6b, 0x98, 0x72, 0xe0, + 0x2d, 0x4b, 0x97, 0x57, 0x2b, 0x09, 0x00, 0xc0, 0xfc, 0x13, 0x0c, 0x00, + 0x00, 0x98, 0x5f, 0x07, 0x56, 0x8f, 0x69, 0xe8, 0x0a, 0xf0, 0xdc, 0xea, + 0xbe, 0x4a, 0x02, 0x00, 0x00, 0xcc, 0x91, 0x9b, 0xaa, 0x0f, 0x36, 0x84, + 0x04, 0xde, 0x5c, 0x7d, 0x42, 0x49, 0x00, 0x00, 0xe6, 0x93, 0x60, 0x00, + 0x00, 0xc0, 0x7c, 0x39, 0xa6, 0x7a, 0x72, 0x43, 0x18, 0xe0, 0xc9, 0xd5, + 0x7e, 0x4a, 0x02, 0x00, 0x00, 0x2c, 0x88, 0x8b, 0x5b, 0x99, 0x72, 0xe0, + 0x1d, 0xd5, 0x0d, 0x4a, 0x02, 0x00, 0x30, 0x1f, 0x04, 0x03, 0x00, 0x00, + 0x36, 0xd6, 0xe6, 0xea, 0x91, 0xd5, 0xf7, 0x57, 0xcf, 0xae, 0x1e, 0xac, + 0x24, 0x00, 0x93, 0x77, 0x7d, 0xb5, 0x7d, 0xb7, 0xfb, 0x76, 0x74, 0xfb, + 0xad, 0x9a, 0x77, 0x55, 0x57, 0xde, 0x81, 0xf5, 0x5f, 0x59, 0x1d, 0xd0, + 0xed, 0x87, 0xcf, 0xf6, 0x5f, 0xfa, 0xb9, 0xdb, 0xb2, 0x6f, 0x75, 0x97, + 0x5b, 0xb8, 0xff, 0x70, 0x9b, 0x11, 0x60, 0xf2, 0xae, 0x6a, 0x08, 0x07, + 0xfc, 0x43, 0xf5, 0x4f, 0x4b, 0xb7, 0x01, 0x00, 0xd8, 0x20, 0x82, 0x01, + 0x00, 0x00, 0xeb, 0x6f, 0xbf, 0xea, 0xb4, 0x56, 0xc2, 0x00, 0xf7, 0x52, + 0x12, 0x80, 0x0d, 0x77, 0x43, 0x75, 0x6d, 0x75, 0x5d, 0xf5, 0xad, 0x86, + 0x83, 0xf0, 0x3b, 0xaa, 0x2b, 0x1a, 0xda, 0x24, 0x6f, 0x6b, 0x38, 0x58, + 0x7f, 0x7d, 0x75, 0x4d, 0x75, 0x63, 0xc3, 0x01, 0xf6, 0x1d, 0xad, 0x1c, + 0xe8, 0x58, 0xfe, 0xb9, 0x96, 0xfe, 0xfd, 0x9a, 0xdd, 0xd6, 0xdd, 0xd2, + 0xba, 0xaf, 0x5b, 0xba, 0xbe, 0xbc, 0xbe, 0xdd, 0xaf, 0x8f, 0xc9, 0xa6, + 0xea, 0xb0, 0xa5, 0xeb, 0x9b, 0xab, 0x43, 0x6f, 0xe1, 0xfa, 0x96, 0xea, + 0x90, 0xa5, 0xeb, 0x5b, 0xab, 0x83, 0x97, 0xae, 0xef, 0x53, 0x1d, 0xb4, + 0xea, 0x6f, 0xe7, 0x81, 0x0d, 0x21, 0x84, 0x7d, 0x97, 0x7e, 0x7e, 0xeb, + 0xd2, 0xba, 0x97, 0x7f, 0xee, 0x80, 0x86, 0x30, 0xc3, 0xc1, 0xab, 0xfe, + 0x6d, 0xeb, 0xaa, 0x75, 0x03, 0xb0, 0xb1, 0x7f, 0x67, 0xdf, 0xdd, 0x10, + 0x12, 0x78, 0x73, 0xf5, 0x65, 0x25, 0x01, 0x00, 0x58, 0xe7, 0x0f, 0xe8, + 0x82, 0x01, 0x00, 0x00, 0xeb, 0xe2, 0xd0, 0xea, 0xe9, 0x0d, 0x61, 0x80, + 0xa7, 0xb5, 0x72, 0xd0, 0x03, 0x80, 0x3d, 0x77, 0x7d, 0xc3, 0x01, 0xf8, + 0x6b, 0x1a, 0x0e, 0xdc, 0x6f, 0x5b, 0x75, 0x7b, 0xdb, 0xd2, 0x7d, 0xd7, + 0xac, 0xba, 0xef, 0xea, 0x86, 0x83, 0xf8, 0xd7, 0x77, 0xf3, 0x03, 0xfb, + 0x57, 0x35, 0x1c, 0xcc, 0x77, 0x06, 0xe3, 0xf8, 0xed, 0x1e, 0x2c, 0x38, + 0xb4, 0x21, 0x34, 0x70, 0xe8, 0xd2, 0xfd, 0x07, 0x37, 0x84, 0x0b, 0x0e, + 0x6b, 0x08, 0x12, 0x2c, 0xdf, 0x3e, 0x78, 0xe9, 0xbe, 0x83, 0x77, 0xbb, + 0x4f, 0x47, 0x04, 0x80, 0x3b, 0x6f, 0x57, 0xf5, 0xa1, 0x86, 0x90, 0xc0, + 0x3f, 0x56, 0x17, 0x2a, 0x09, 0x00, 0xc0, 0xda, 0x13, 0x0c, 0x00, 0x00, + 0x58, 0x3b, 0xf7, 0x6e, 0xe8, 0x08, 0xf0, 0xfd, 0xd5, 0x13, 0x1a, 0x0e, + 0x44, 0x00, 0x4c, 0xdd, 0x4d, 0x0d, 0x07, 0xee, 0xaf, 0xa8, 0xbe, 0xb9, + 0xea, 0xfa, 0xea, 0xdb, 0xdb, 0x1a, 0x0e, 0xd6, 0x5f, 0xdd, 0xcd, 0x0f, + 0xfa, 0x5f, 0xd9, 0xca, 0x99, 0xfc, 0xb0, 0xd1, 0x56, 0x07, 0x05, 0x56, + 0x07, 0x08, 0x0e, 0x6a, 0x08, 0x17, 0x1c, 0xbe, 0x6a, 0xb9, 0xeb, 0x6e, + 0xb7, 0x0f, 0x6f, 0xa5, 0x1b, 0x02, 0xc0, 0xd4, 0x7d, 0xaa, 0x95, 0x90, + 0xc0, 0x07, 0xaa, 0x9d, 0x4a, 0x02, 0x00, 0x30, 0x7b, 0x82, 0x01, 0x00, + 0x00, 0xb3, 0xf5, 0xd0, 0xea, 0x39, 0xd5, 0x73, 0xab, 0x93, 0x1b, 0x5a, + 0x28, 0x03, 0x8c, 0xd1, 0x55, 0xd5, 0xe5, 0xdd, 0xfe, 0x41, 0xfe, 0xdd, + 0xef, 0xdb, 0xa6, 0x74, 0x50, 0x0d, 0x81, 0xc1, 0xdb, 0x0a, 0x0f, 0xdc, + 0xda, 0xed, 0xbb, 0x37, 0x4c, 0x9f, 0x00, 0x30, 0x46, 0x5f, 0x6d, 0x98, + 0x6a, 0xe0, 0x1f, 0xaa, 0x77, 0x36, 0x4c, 0xc1, 0x03, 0x00, 0xc0, 0x0c, + 0x08, 0x06, 0x00, 0x00, 0xec, 0x9d, 0xcd, 0xd5, 0x89, 0xd5, 0xb3, 0xaa, + 0x17, 0x54, 0x0f, 0x51, 0x12, 0x60, 0x41, 0x6d, 0x6f, 0x38, 0x78, 0xff, + 0x95, 0xea, 0xd2, 0x56, 0x0e, 0xe6, 0xdf, 0xd2, 0xed, 0x2f, 0x35, 0xcc, + 0x15, 0x0c, 0x6c, 0x8c, 0x03, 0x1a, 0x42, 0x02, 0x47, 0x56, 0x47, 0xb5, + 0x12, 0x1e, 0xb8, 0xa5, 0xdb, 0xf7, 0x49, 0xd7, 0x22, 0x60, 0x31, 0x5d, + 0x57, 0xbd, 0xab, 0x7a, 0x43, 0x43, 0x58, 0xe0, 0x4a, 0x25, 0x01, 0x00, + 0xb8, 0xf3, 0x04, 0x03, 0x00, 0x00, 0xf6, 0xdc, 0xd6, 0xea, 0x7b, 0xab, + 0x1f, 0x6c, 0xe8, 0x0e, 0x70, 0x84, 0x92, 0x00, 0x73, 0xe8, 0x5b, 0xd5, + 0x65, 0xd5, 0x97, 0xab, 0xaf, 0xad, 0x5a, 0xbe, 0xde, 0x70, 0xa6, 0xff, + 0xf2, 0xed, 0xcb, 0x97, 0xee, 0xbb, 0x51, 0xc9, 0x60, 0xb4, 0x0e, 0xab, + 0xee, 0x59, 0xdd, 0xa3, 0xa1, 0xe3, 0xc0, 0x3d, 0x96, 0xde, 0xbf, 0x2c, + 0xdf, 0x3e, 0xa2, 0x21, 0x44, 0x70, 0x64, 0x43, 0x67, 0x02, 0x80, 0x79, + 0x73, 0x63, 0xf5, 0xee, 0xea, 0x8d, 0xd5, 0x9b, 0x96, 0xde, 0xbb, 0x00, + 0x00, 0xb0, 0x07, 0x04, 0x03, 0x00, 0x00, 0xee, 0x98, 0x2d, 0xd5, 0xa3, + 0xab, 0xe7, 0x57, 0x2f, 0x4c, 0x18, 0x00, 0xd8, 0x38, 0xbb, 0x9f, 0xd9, + 0x7f, 0x6b, 0x97, 0x97, 0x65, 0x8e, 0x5e, 0x60, 0xcf, 0xed, 0x57, 0xdd, + 0xad, 0x95, 0xee, 0x03, 0xab, 0xbb, 0x10, 0xac, 0xbe, 0xef, 0x7e, 0x4b, + 0xef, 0x8f, 0x00, 0xd6, 0xdb, 0xce, 0xea, 0xfd, 0x0d, 0x9d, 0x04, 0x5e, + 0xbf, 0xf4, 0xbe, 0x07, 0x00, 0x80, 0xdb, 0x21, 0x18, 0x00, 0x00, 0x70, + 0xeb, 0xf6, 0xad, 0x9e, 0xd8, 0xd0, 0x19, 0xe0, 0xfb, 0x73, 0x06, 0x1d, + 0xb0, 0xb6, 0xae, 0xab, 0x3e, 0xdf, 0xca, 0xc1, 0xfd, 0xd5, 0x67, 0xfb, + 0x7f, 0x69, 0xd5, 0xe5, 0x35, 0x4a, 0x05, 0xcc, 0x81, 0xad, 0x0d, 0x41, + 0xc9, 0xa3, 0xaa, 0x7b, 0xad, 0xba, 0x3c, 0x72, 0xd5, 0xf5, 0xfb, 0x2c, + 0x5d, 0x6e, 0x52, 0x2e, 0x60, 0x8d, 0xec, 0xa8, 0xce, 0x6c, 0xe8, 0x24, + 0xf0, 0xf7, 0x09, 0x09, 0x00, 0x00, 0xdc, 0x2a, 0xc1, 0x00, 0x00, 0x80, + 0x9b, 0x5b, 0xdd, 0x19, 0xe0, 0x45, 0x0d, 0x2d, 0x76, 0x01, 0xf6, 0xd6, + 0x0d, 0xd5, 0x37, 0x1a, 0x0e, 0xf8, 0x5f, 0xdc, 0xca, 0xc1, 0xff, 0x8b, + 0x57, 0xdd, 0xbe, 0xb4, 0xf2, 0x01, 0x0d, 0x18, 0x9b, 0x7d, 0x1b, 0xa6, + 0x2b, 0x38, 0xb2, 0x3a, 0xb6, 0x95, 0x8e, 0x03, 0xc7, 0xae, 0xba, 0x2d, + 0x3c, 0x00, 0xcc, 0xc2, 0xea, 0x4e, 0x02, 0x6f, 0x6c, 0x08, 0x58, 0x02, + 0x00, 0xb0, 0x44, 0x30, 0x00, 0x00, 0x60, 0x68, 0x99, 0xfb, 0x94, 0x86, + 0x30, 0xc0, 0xb3, 0xab, 0x43, 0x95, 0x04, 0xd8, 0x43, 0x57, 0x74, 0xeb, + 0x07, 0xfc, 0xbf, 0xd2, 0xd0, 0x09, 0x60, 0x87, 0x32, 0x01, 0xdc, 0xea, + 0x7b, 0xb1, 0x7b, 0x77, 0xcb, 0xa1, 0x81, 0x23, 0xab, 0xfb, 0x7b, 0x7f, + 0x06, 0xec, 0xa1, 0x9d, 0xd5, 0xf9, 0xd5, 0x5b, 0xab, 0xd7, 0x54, 0x9f, + 0x55, 0x12, 0x00, 0x60, 0xea, 0x04, 0x03, 0x00, 0x80, 0xa9, 0x3a, 0xa0, + 0x7a, 0x6a, 0xc3, 0x34, 0x01, 0xcf, 0xaa, 0x0e, 0x51, 0x12, 0xe0, 0x56, + 0xdc, 0xd4, 0xd0, 0xc2, 0xff, 0x73, 0xd5, 0x25, 0xbb, 0x2d, 0x5f, 0x6c, + 0x38, 0xf0, 0x7f, 0x93, 0x32, 0x01, 0xac, 0xa9, 0xc3, 0x1b, 0xa6, 0x26, + 0x38, 0xba, 0x3a, 0xe6, 0x16, 0x96, 0x83, 0x95, 0x08, 0xb8, 0x15, 0xbb, + 0x1a, 0x3a, 0x09, 0xbc, 0xb1, 0xfa, 0xbb, 0xea, 0x0b, 0x4a, 0x02, 0x00, + 0x4c, 0x91, 0x60, 0x00, 0x00, 0x30, 0x25, 0xfb, 0x57, 0x4f, 0x6f, 0xe8, + 0x0c, 0xf0, 0x8c, 0x7c, 0x81, 0x0c, 0xac, 0xb8, 0xac, 0x6f, 0x3f, 0xe8, + 0xff, 0xb9, 0x56, 0x0e, 0xfe, 0xdf, 0xa8, 0x44, 0x00, 0x73, 0xed, 0x6e, + 0x7d, 0x7b, 0x58, 0xe0, 0xe8, 0x55, 0x97, 0xfb, 0x29, 0x11, 0xd0, 0x10, + 0x12, 0x38, 0xa7, 0x61, 0xba, 0x81, 0xd7, 0x2f, 0xbd, 0xcf, 0x03, 0x00, + 0x98, 0x04, 0xc1, 0x00, 0x00, 0x60, 0xec, 0xb6, 0x54, 0x4f, 0xac, 0x5e, + 0x54, 0x3d, 0x37, 0x6d, 0x68, 0x61, 0xaa, 0xae, 0xec, 0xd6, 0x0f, 0xfc, + 0x5f, 0x52, 0x5d, 0xaf, 0x44, 0x00, 0xa3, 0xb5, 0xa9, 0x61, 0x5a, 0x82, + 0x5b, 0x0b, 0x0e, 0xdc, 0x67, 0xe9, 0x3d, 0x23, 0x30, 0x2d, 0x3b, 0xab, + 0xb3, 0xab, 0xd7, 0x35, 0x04, 0x05, 0x2e, 0x57, 0x12, 0x00, 0x60, 0xd4, + 0x1f, 0x8c, 0x04, 0x03, 0x00, 0x80, 0x91, 0x3a, 0xae, 0x7a, 0x49, 0xf5, + 0xa3, 0xd5, 0xbd, 0x94, 0x03, 0x26, 0x61, 0x7b, 0x75, 0x71, 0xf5, 0xf1, + 0xa5, 0xcb, 0xdd, 0x17, 0x00, 0xb8, 0x25, 0xfb, 0x54, 0xf7, 0xad, 0x8e, + 0x5d, 0xb5, 0x1c, 0x57, 0x3d, 0xb4, 0xba, 0x5f, 0x42, 0x03, 0x30, 0x05, + 0x3b, 0xaa, 0x0f, 0x54, 0x7f, 0xd5, 0x10, 0x14, 0xd8, 0xa6, 0x24, 0x00, + 0xc0, 0xd8, 0x08, 0x06, 0x00, 0x00, 0x63, 0x72, 0x5c, 0xc3, 0x34, 0x01, + 0x2f, 0xae, 0x1e, 0xa0, 0x1c, 0x30, 0x4a, 0xdf, 0xaa, 0xbe, 0x5c, 0x5d, + 0xd8, 0xb7, 0x07, 0x00, 0x2e, 0x69, 0x68, 0x0f, 0x0b, 0x00, 0xb3, 0xb2, + 0x6f, 0x43, 0x47, 0x81, 0xdd, 0x03, 0x03, 0xc7, 0x36, 0x74, 0x1c, 0xd8, + 0xac, 0x44, 0x30, 0x3a, 0xdb, 0xab, 0xd3, 0x1b, 0xba, 0x08, 0xbc, 0xb1, + 0xba, 0x4e, 0x49, 0x00, 0x80, 0x31, 0x10, 0x0c, 0x00, 0x00, 0x16, 0xdd, + 0x7d, 0xab, 0x1f, 0x68, 0x08, 0x04, 0x3c, 0x56, 0x39, 0x60, 0x14, 0x6e, + 0xa8, 0xbe, 0xd4, 0x70, 0xb0, 0x7f, 0xf7, 0x00, 0xc0, 0xe7, 0x1a, 0xda, + 0xbe, 0x02, 0xc0, 0x46, 0x5b, 0x1d, 0x1a, 0x58, 0x1d, 0x18, 0x38, 0xb6, + 0x61, 0x8a, 0x82, 0x4d, 0x4a, 0x04, 0x0b, 0xef, 0xca, 0xea, 0x2d, 0x0d, + 0x21, 0x81, 0xb7, 0x55, 0x37, 0x29, 0x09, 0x00, 0xb0, 0xa8, 0x04, 0x03, + 0x00, 0x80, 0x45, 0x74, 0xd7, 0xea, 0x99, 0x0d, 0x53, 0x05, 0x3c, 0x31, + 0x5f, 0xba, 0xc2, 0xa2, 0xba, 0xb2, 0xfa, 0x6c, 0x37, 0x3f, 0xf8, 0x7f, + 0x61, 0xf5, 0x89, 0x1c, 0xfc, 0x07, 0x60, 0xb1, 0x1d, 0xd2, 0xd0, 0xc1, + 0x6a, 0x75, 0x68, 0xe0, 0xb8, 0xea, 0x41, 0x99, 0x9a, 0x00, 0x16, 0xd5, + 0x37, 0xaa, 0xbf, 0xab, 0x5e, 0x53, 0x9d, 0x9d, 0x4e, 0x55, 0x00, 0xc0, + 0x82, 0x11, 0x0c, 0x00, 0x00, 0x16, 0xc5, 0x81, 0xd5, 0x33, 0xaa, 0x97, + 0x56, 0x4f, 0x6d, 0x98, 0x0b, 0x16, 0x58, 0x0c, 0x57, 0xb4, 0x72, 0xf0, + 0x7f, 0xf7, 0x0e, 0x00, 0x00, 0x30, 0x25, 0xfb, 0x34, 0x74, 0xbc, 0x5a, + 0x1d, 0x16, 0x78, 0x68, 0xf5, 0xe0, 0xea, 0x2e, 0xca, 0x03, 0x0b, 0xe3, + 0xf3, 0xd5, 0x3f, 0x56, 0xff, 0xb3, 0x3a, 0x5f, 0x39, 0x00, 0x80, 0x45, + 0x20, 0x18, 0x00, 0x00, 0xcc, 0xb3, 0x7d, 0xaa, 0xef, 0x6b, 0x08, 0x03, + 0x3c, 0xb3, 0xda, 0x5f, 0x49, 0x60, 0x6e, 0xdd, 0xd4, 0xca, 0x19, 0xff, + 0x17, 0x35, 0x9c, 0xf5, 0xff, 0x89, 0xa5, 0xeb, 0xdb, 0x94, 0x07, 0x00, + 0x6e, 0xd3, 0x96, 0xea, 0xe8, 0xea, 0x21, 0x4b, 0xcb, 0x83, 0x5b, 0x09, + 0x0c, 0x1c, 0xa6, 0x3c, 0x30, 0xd7, 0x2e, 0x68, 0xe8, 0x22, 0xf0, 0xda, + 0xea, 0x32, 0xe5, 0x00, 0x00, 0xe6, 0x95, 0x60, 0x00, 0x00, 0x30, 0x8f, + 0x1e, 0xd1, 0x10, 0x06, 0x78, 0x51, 0x75, 0x4f, 0xe5, 0x80, 0xb9, 0xb2, + 0xb3, 0xba, 0xa4, 0xfa, 0x68, 0xf5, 0xaf, 0xd5, 0xc7, 0x1a, 0xc2, 0x00, + 0x9f, 0xae, 0x6e, 0x50, 0x1e, 0x00, 0x98, 0xb9, 0x23, 0x1b, 0xc2, 0x02, + 0x0f, 0xab, 0xbe, 0xab, 0x7a, 0x78, 0x43, 0x68, 0xe0, 0x20, 0xa5, 0x81, + 0xb9, 0x72, 0x53, 0xf5, 0x8e, 0x86, 0x90, 0xc0, 0x3f, 0x56, 0xdb, 0x95, + 0x04, 0x00, 0x98, 0x27, 0x82, 0x01, 0x00, 0xc0, 0xbc, 0x38, 0xb2, 0x7a, + 0x41, 0xf5, 0xa3, 0xd5, 0x89, 0xca, 0x01, 0x73, 0xe1, 0xca, 0x86, 0xb6, + 0xff, 0xcb, 0x53, 0x00, 0x9c, 0xdb, 0x70, 0x46, 0xd4, 0x35, 0x4a, 0x03, + 0x00, 0x1b, 0xee, 0xa8, 0xea, 0xa4, 0x6e, 0x3e, 0x25, 0xc1, 0xc3, 0xaa, + 0xfd, 0x94, 0x06, 0x36, 0xdc, 0x55, 0xd5, 0x9b, 0xab, 0xbf, 0xaa, 0xde, + 0x59, 0xf9, 0x12, 0x1e, 0x00, 0xd8, 0x70, 0x82, 0x01, 0x00, 0xc0, 0x46, + 0xda, 0xbf, 0x7a, 0x72, 0xf5, 0x92, 0xea, 0xb9, 0xd5, 0x56, 0x25, 0x81, + 0x0d, 0x71, 0x63, 0xc3, 0x19, 0xff, 0xab, 0x03, 0x00, 0x1f, 0x6f, 0x98, + 0x1a, 0x00, 0x00, 0x58, 0x1c, 0xfb, 0x54, 0x0f, 0x6c, 0x25, 0x2c, 0xb0, + 0x1c, 0x1c, 0x38, 0xa6, 0xda, 0xa4, 0x3c, 0xb0, 0x21, 0xbe, 0x50, 0xbd, + 0xae, 0x7a, 0x75, 0xf5, 0x59, 0xe5, 0x00, 0x00, 0x36, 0x8a, 0x60, 0x00, + 0x00, 0xb0, 0xee, 0xef, 0x3f, 0xaa, 0xc7, 0x35, 0x74, 0x06, 0xf8, 0xc1, + 0xea, 0x50, 0x25, 0x81, 0x75, 0xb3, 0xb3, 0xe1, 0x60, 0xff, 0xea, 0x69, + 0x00, 0x3e, 0xda, 0xf0, 0x05, 0xe5, 0x0e, 0xe5, 0x01, 0x80, 0xd1, 0xba, + 0x5b, 0xc3, 0x14, 0x04, 0xab, 0xa7, 0x23, 0x38, 0x2e, 0xd3, 0x11, 0xc0, + 0x7a, 0xda, 0x55, 0xbd, 0xb7, 0xfa, 0xcb, 0xea, 0xef, 0xaa, 0xab, 0x95, + 0x04, 0x00, 0x58, 0x4f, 0x82, 0x01, 0x00, 0xc0, 0x7a, 0xb9, 0x6f, 0xf5, + 0xe2, 0xea, 0x27, 0xab, 0xfb, 0x2b, 0x07, 0xac, 0xb9, 0x9b, 0xaa, 0x4f, + 0x35, 0x9c, 0xfd, 0xbf, 0xdc, 0x01, 0xe0, 0xfc, 0xea, 0x1b, 0x4a, 0x03, + 0x00, 0x2c, 0x59, 0x9e, 0x8e, 0x60, 0x79, 0x39, 0xa5, 0x3a, 0x42, 0x59, + 0x60, 0xcd, 0x6d, 0xaf, 0xde, 0x52, 0xbd, 0xa6, 0x7a, 0xdb, 0xd2, 0x7b, + 0x77, 0x00, 0x80, 0x35, 0x25, 0x18, 0x00, 0x00, 0xac, 0xa5, 0x43, 0xaa, + 0xef, 0x6f, 0x98, 0x2a, 0xe0, 0x89, 0x69, 0x5f, 0x0a, 0x6b, 0xe5, 0x86, + 0xea, 0x33, 0xad, 0x84, 0x00, 0x96, 0x97, 0xeb, 0x95, 0x06, 0x00, 0xd8, + 0x43, 0xcb, 0x61, 0x81, 0xd5, 0xd3, 0x11, 0x3c, 0xc4, 0x7b, 0x79, 0x58, + 0x33, 0x5f, 0xa9, 0xde, 0x58, 0xfd, 0x45, 0x75, 0x81, 0x72, 0x00, 0x00, + 0x6b, 0x45, 0x30, 0x00, 0x00, 0x98, 0xf9, 0xfb, 0x8b, 0xea, 0x09, 0xd5, + 0x4f, 0x54, 0x3f, 0x50, 0x1d, 0xa0, 0x24, 0x30, 0x53, 0x97, 0x37, 0x7c, + 0x61, 0x78, 0x5e, 0x43, 0x07, 0x80, 0x0b, 0x1a, 0x3a, 0x03, 0xec, 0x54, + 0x1a, 0x00, 0x60, 0x8d, 0xdc, 0xb5, 0x7a, 0x44, 0x75, 0x62, 0x75, 0xc2, + 0xd2, 0xe5, 0x03, 0xab, 0x2d, 0x4a, 0x03, 0x33, 0xf5, 0xa1, 0xea, 0xcf, + 0xaa, 0xd7, 0x65, 0xaa, 0x01, 0x00, 0x60, 0xc6, 0x04, 0x03, 0x00, 0x80, + 0x59, 0x39, 0xaa, 0xfa, 0xd1, 0xea, 0xdf, 0x64, 0xaa, 0x00, 0x98, 0x95, + 0x2f, 0x35, 0x9c, 0xf9, 0x7f, 0xfe, 0xaa, 0xe5, 0x8b, 0xca, 0x02, 0x00, + 0xcc, 0x81, 0xbb, 0x54, 0x0f, 0x6f, 0x08, 0x09, 0x9c, 0xd8, 0x10, 0x1c, + 0xf8, 0xae, 0x6a, 0x1f, 0xa5, 0x81, 0xbd, 0x76, 0x5d, 0xf5, 0x86, 0xea, + 0x4f, 0xab, 0xb3, 0x94, 0x03, 0x00, 0x98, 0x05, 0xc1, 0x00, 0x6e, 0xcd, + 0xc1, 0xd5, 0xa9, 0xd5, 0xbb, 0x2a, 0x2f, 0x12, 0x00, 0x6e, 0xcd, 0xe6, + 0xea, 0xb4, 0xea, 0x65, 0x0d, 0x53, 0x06, 0xf8, 0x12, 0x10, 0xee, 0xbc, + 0xab, 0xab, 0x8f, 0xb5, 0x32, 0x0d, 0xc0, 0x99, 0xd5, 0x25, 0xca, 0x02, + 0x00, 0x2c, 0x90, 0x7d, 0x1a, 0x3a, 0x09, 0x9c, 0x54, 0x3d, 0xb6, 0x7a, + 0x5c, 0xf5, 0xe0, 0xa5, 0xcf, 0x0d, 0xc0, 0x9d, 0xf3, 0xa9, 0xea, 0xcf, + 0xab, 0xff, 0x59, 0x7d, 0x55, 0x39, 0x00, 0x80, 0x3b, 0x4b, 0x30, 0x80, + 0xd5, 0xee, 0x5a, 0x3d, 0x73, 0x69, 0x79, 0x7a, 0x43, 0xf2, 0xfb, 0x9d, + 0xd5, 0x8f, 0x54, 0x97, 0x29, 0x0f, 0x00, 0xab, 0xdc, 0xb7, 0x7a, 0x71, + 0xf5, 0x33, 0xd5, 0x77, 0x28, 0x07, 0xec, 0xb1, 0x1b, 0xab, 0x8f, 0x56, + 0x67, 0xb7, 0x12, 0x04, 0xb8, 0x30, 0x81, 0x4c, 0x00, 0x60, 0x7c, 0x0e, + 0xae, 0x8e, 0x6f, 0x08, 0x0b, 0x2c, 0x2f, 0x0f, 0x55, 0x16, 0xd8, 0x63, + 0x3b, 0xaa, 0x33, 0xaa, 0x3f, 0xa9, 0xde, 0x54, 0xdd, 0xa4, 0x24, 0x00, + 0xc0, 0x9e, 0x10, 0x0c, 0xe0, 0x1e, 0xd5, 0xd3, 0xaa, 0xe7, 0x57, 0x4f, + 0xed, 0x96, 0xcf, 0xf4, 0xfc, 0x6a, 0x43, 0x38, 0xe0, 0x74, 0xe5, 0x02, + 0x98, 0xb4, 0xfd, 0xaa, 0x67, 0x37, 0x74, 0x07, 0x78, 0x62, 0xb5, 0x49, + 0x49, 0xe0, 0x0e, 0xb9, 0xa9, 0xe1, 0x2c, 0x9f, 0x73, 0x57, 0x2d, 0xe7, + 0x54, 0x37, 0x28, 0x0d, 0x00, 0x30, 0x51, 0x87, 0x55, 0x27, 0x37, 0x74, + 0x14, 0x38, 0xa9, 0xa1, 0x6b, 0xe5, 0x3d, 0x95, 0x05, 0xee, 0xb0, 0xaf, + 0x54, 0xaf, 0x69, 0x08, 0x09, 0x5c, 0xac, 0x1c, 0x00, 0xc0, 0x1d, 0x21, + 0x18, 0x30, 0x4d, 0x47, 0x57, 0xcf, 0x69, 0x08, 0x03, 0x3c, 0xba, 0x3b, + 0xd6, 0xce, 0x6d, 0x47, 0xf5, 0x9f, 0xaa, 0xff, 0x50, 0xed, 0x54, 0x42, + 0x80, 0x49, 0x79, 0x68, 0xf5, 0xd2, 0xea, 0x27, 0xaa, 0xbb, 0x2b, 0x07, + 0xdc, 0xae, 0x4b, 0x1b, 0x0e, 0xfe, 0x9f, 0xd5, 0xd0, 0x11, 0xe0, 0xbc, + 0x86, 0x39, 0x42, 0x01, 0x00, 0xb8, 0x75, 0x47, 0x75, 0xf3, 0xae, 0x02, + 0x8f, 0x6b, 0x08, 0x10, 0x00, 0xb7, 0x6e, 0x67, 0xf5, 0xfe, 0xea, 0xaf, + 0x1a, 0x82, 0x02, 0xd7, 0x2b, 0x09, 0x00, 0x70, 0x6b, 0x04, 0x03, 0xa6, + 0xe3, 0xb8, 0x86, 0x29, 0x02, 0x9e, 0x55, 0x3d, 0xa6, 0x3b, 0x7f, 0x96, + 0xe7, 0xbb, 0x1a, 0xba, 0x07, 0x5c, 0xaa, 0xa4, 0x00, 0xa3, 0x76, 0x48, + 0xf5, 0x43, 0x0d, 0x81, 0x80, 0xc7, 0x2a, 0x07, 0xdc, 0xaa, 0x6b, 0xab, + 0x0b, 0x5a, 0x09, 0x02, 0x9c, 0x51, 0x5d, 0xae, 0x2c, 0x00, 0x00, 0x7b, + 0x6d, 0x4b, 0xf5, 0xe0, 0x86, 0x90, 0xc0, 0x63, 0x1b, 0x82, 0x02, 0x0f, + 0x49, 0xe7, 0x32, 0xb8, 0x35, 0x57, 0x56, 0xaf, 0xaf, 0xfe, 0x78, 0xe9, + 0x33, 0x0a, 0x00, 0xc0, 0xcd, 0x08, 0x06, 0x8c, 0xdb, 0x71, 0x0d, 0x5d, + 0x01, 0x5e, 0xb8, 0xf4, 0x41, 0x6a, 0x56, 0xbe, 0xd6, 0x10, 0x0e, 0xf8, + 0x17, 0x25, 0x06, 0x18, 0x9d, 0x53, 0xab, 0x57, 0x54, 0x2f, 0xa8, 0x0e, + 0x54, 0x0e, 0xf8, 0x36, 0x9f, 0x6d, 0x38, 0x23, 0xe7, 0xfd, 0xd5, 0xfb, + 0xaa, 0x8f, 0x35, 0x74, 0x56, 0x02, 0x00, 0x60, 0xed, 0xdd, 0xab, 0xa1, + 0xfb, 0xe5, 0x63, 0x96, 0x2e, 0x4f, 0xaa, 0xf6, 0x57, 0x16, 0xf8, 0x36, + 0x1f, 0xa8, 0xfe, 0x47, 0xf5, 0xb7, 0xe9, 0x22, 0x00, 0x00, 0x2c, 0x11, + 0x0c, 0x18, 0x97, 0x2d, 0x4b, 0x1f, 0x8a, 0x9e, 0x5f, 0xfd, 0x40, 0x75, + 0x9f, 0x35, 0x7c, 0xac, 0xe5, 0xa9, 0x05, 0xfe, 0x63, 0xbe, 0x0c, 0x07, + 0x58, 0x74, 0xfb, 0x37, 0x74, 0x94, 0xf9, 0xf9, 0x86, 0x2f, 0xd8, 0x80, + 0xc1, 0x8d, 0xd5, 0x47, 0x1b, 0xa6, 0x03, 0x38, 0xb7, 0x7a, 0x77, 0xf5, + 0x05, 0x65, 0x01, 0x00, 0x98, 0x1b, 0x5b, 0xab, 0x07, 0xb5, 0xd2, 0x51, + 0xe0, 0x71, 0xd5, 0x31, 0xca, 0x02, 0xff, 0xdb, 0x55, 0x0d, 0xe1, 0x80, + 0x3f, 0xac, 0xfe, 0x55, 0x39, 0x00, 0x60, 0xda, 0x04, 0x03, 0x16, 0xdf, + 0x7e, 0xd5, 0xe3, 0x1b, 0x0e, 0xe8, 0xbc, 0xb0, 0x3a, 0x62, 0x9d, 0x1f, + 0xff, 0x8c, 0xea, 0x87, 0x33, 0xb5, 0x00, 0xc0, 0x22, 0x7a, 0x50, 0xf5, + 0xe3, 0xd5, 0x4f, 0x55, 0x77, 0x55, 0x0e, 0xe8, 0xd2, 0x56, 0xa6, 0x04, + 0x38, 0xbb, 0xfa, 0x70, 0xb5, 0x5d, 0x59, 0x00, 0x00, 0x16, 0xca, 0x51, + 0xdd, 0x7c, 0xfa, 0x81, 0x93, 0x1b, 0xbe, 0x3f, 0x83, 0xa9, 0x3b, 0xbb, + 0xfa, 0x83, 0xea, 0x1f, 0x1a, 0x42, 0xd0, 0x00, 0xc0, 0xc4, 0x08, 0x06, + 0x2c, 0xa6, 0x2d, 0xd5, 0xf3, 0x1a, 0xba, 0x02, 0x3c, 0xbd, 0x3a, 0x78, + 0x83, 0x9f, 0xcf, 0x65, 0x0d, 0xe1, 0x80, 0x77, 0xd9, 0x34, 0x00, 0x73, + 0x6f, 0xdf, 0xa5, 0xbf, 0x1f, 0xaf, 0xa8, 0xbe, 0x5b, 0x39, 0x98, 0xb0, + 0x9d, 0x0d, 0xd3, 0x00, 0xbc, 0xb7, 0x21, 0x08, 0xf0, 0xbe, 0xea, 0x4b, + 0xca, 0x02, 0x00, 0x30, 0x3a, 0x07, 0x34, 0x84, 0x03, 0x1e, 0xdb, 0x70, + 0x72, 0xcd, 0x63, 0xab, 0x43, 0x95, 0x85, 0x09, 0xfb, 0x4a, 0xf5, 0xa7, + 0xd5, 0xab, 0x7d, 0x06, 0x02, 0x80, 0x69, 0x11, 0x0c, 0x58, 0x4c, 0x4f, + 0xae, 0xfe, 0x79, 0xce, 0x9e, 0xd3, 0xae, 0xea, 0x77, 0xab, 0x5f, 0xcb, + 0xd4, 0x02, 0x00, 0xf3, 0xe8, 0xde, 0xd5, 0x8f, 0x54, 0x3f, 0xdb, 0xda, + 0x4e, 0x35, 0x03, 0xf3, 0x6a, 0x47, 0x75, 0x41, 0xc3, 0x59, 0x32, 0x67, + 0x35, 0x04, 0x1a, 0xbf, 0xa1, 0x2c, 0x00, 0x00, 0x93, 0xb3, 0xa5, 0x7a, + 0x70, 0x2b, 0x1d, 0x05, 0xbe, 0xd7, 0x67, 0x24, 0x26, 0x6a, 0xe7, 0xd2, + 0xe7, 0xa2, 0x3f, 0xa9, 0xfe, 0x3e, 0xdf, 0xe9, 0x02, 0xc0, 0xe8, 0x09, + 0x06, 0x2c, 0xa6, 0x3f, 0xae, 0x7e, 0x7a, 0x4e, 0x9f, 0xdb, 0x7b, 0xaa, + 0x17, 0x37, 0x24, 0x4f, 0x01, 0xd8, 0x58, 0x9b, 0xab, 0xd3, 0xaa, 0x97, + 0x55, 0xcf, 0x6d, 0x98, 0x7f, 0x13, 0xa6, 0xe2, 0xc6, 0xea, 0xa3, 0xd5, + 0xe9, 0x0d, 0x61, 0x80, 0xf7, 0x36, 0xcc, 0xaf, 0x09, 0x00, 0x00, 0xbb, + 0x3b, 0xb6, 0x21, 0x24, 0xf0, 0xd8, 0x86, 0x13, 0x72, 0x8e, 0x51, 0x12, + 0x26, 0xe6, 0xb3, 0x0d, 0x1d, 0x04, 0xfe, 0xbc, 0xfa, 0xba, 0x72, 0x00, + 0xc0, 0x38, 0x09, 0x06, 0x2c, 0x9e, 0xcd, 0x0d, 0x2d, 0x9e, 0x8e, 0x9c, + 0xe3, 0xe7, 0xf8, 0xf5, 0xea, 0xa5, 0xd5, 0xdb, 0x6d, 0x2e, 0x80, 0x0d, + 0x71, 0x44, 0xf5, 0x63, 0xd5, 0xcb, 0xf3, 0x85, 0x16, 0xd3, 0x71, 0x4d, + 0xf5, 0x81, 0x56, 0x3a, 0x02, 0x9c, 0x55, 0x6d, 0x57, 0x16, 0x00, 0x00, + 0xee, 0x84, 0xa3, 0x5a, 0xe9, 0x28, 0xf0, 0xd8, 0xea, 0x11, 0xd5, 0x26, + 0x65, 0x61, 0x02, 0xbe, 0x55, 0xbd, 0xb9, 0xa1, 0x8b, 0xc0, 0xe9, 0xca, + 0x01, 0x00, 0xe3, 0x22, 0x18, 0xb0, 0x78, 0x1e, 0xdf, 0x70, 0xc6, 0xdb, + 0xbc, 0xdb, 0x55, 0xfd, 0x61, 0xf5, 0x4b, 0x0d, 0x67, 0xec, 0x01, 0xb0, + 0xf6, 0xbe, 0xbb, 0xfa, 0x99, 0x86, 0xee, 0x00, 0xfb, 0x2a, 0x07, 0x23, + 0x77, 0x79, 0x75, 0xe6, 0xd2, 0xfb, 0xa2, 0x33, 0x1b, 0xa6, 0x09, 0xd0, + 0xfa, 0x12, 0x00, 0x80, 0xb5, 0x70, 0xaf, 0xa5, 0xcf, 0x5b, 0x8f, 0x5f, + 0xba, 0x7c, 0x58, 0xc3, 0xc9, 0x3b, 0x30, 0x66, 0x1f, 0x69, 0xe8, 0x5c, + 0xfb, 0xd7, 0xd5, 0xb5, 0xca, 0x01, 0x00, 0x8b, 0x4f, 0x30, 0x60, 0xf1, + 0xfc, 0x7e, 0xf5, 0xf3, 0x0b, 0xf4, 0x7c, 0xdf, 0xdb, 0x30, 0xb5, 0xc0, + 0x97, 0x6d, 0x3a, 0x80, 0x35, 0xb1, 0xff, 0xd2, 0xff, 0xb3, 0xff, 0xb6, + 0x3a, 0x41, 0x39, 0x18, 0xb1, 0x6f, 0x36, 0x4c, 0x59, 0xf4, 0xae, 0xea, + 0x8c, 0xea, 0xc2, 0x86, 0x20, 0x22, 0x00, 0x00, 0xac, 0xb7, 0xc3, 0x1b, + 0x02, 0x02, 0xa7, 0x55, 0x4f, 0xac, 0x1e, 0x9a, 0x8e, 0x02, 0x8c, 0xd7, + 0x95, 0xd5, 0x9f, 0x56, 0x7f, 0x54, 0x7d, 0x4e, 0x39, 0x00, 0x60, 0x71, + 0x09, 0x06, 0x2c, 0xd8, 0xf6, 0xaa, 0x2e, 0xa9, 0xee, 0xb7, 0x60, 0xcf, + 0xfb, 0xeb, 0xd5, 0x4b, 0xaa, 0x77, 0xd8, 0x84, 0x00, 0x33, 0x73, 0xaf, + 0xea, 0xa7, 0x1b, 0x3a, 0x04, 0xdc, 0x43, 0x39, 0x18, 0xa1, 0xeb, 0xaa, + 0xf7, 0x35, 0xb4, 0xaf, 0x3c, 0xbb, 0xfa, 0x60, 0xba, 0x10, 0x01, 0x00, + 0x30, 0x9f, 0xee, 0x51, 0x3d, 0xa1, 0x95, 0xa9, 0x07, 0x4e, 0x52, 0x12, + 0x46, 0x68, 0x67, 0x43, 0x50, 0xfb, 0xbf, 0x56, 0x6f, 0x4d, 0x50, 0x1b, + 0x60, 0x5e, 0x9d, 0x54, 0x3d, 0xaf, 0x7a, 0x50, 0xc3, 0x89, 0xc6, 0x5f, + 0x54, 0x12, 0x96, 0x09, 0x06, 0x2c, 0x96, 0x53, 0xaa, 0x73, 0x16, 0xf4, + 0xb9, 0x9b, 0x5a, 0x00, 0x60, 0x76, 0x6f, 0xec, 0x7e, 0xae, 0xfa, 0xa1, + 0x6a, 0x1f, 0xe5, 0x60, 0x44, 0x6e, 0x6a, 0x68, 0x55, 0x79, 0xfa, 0xd2, + 0x72, 0x66, 0xc3, 0xfc, 0x96, 0x00, 0x00, 0xb0, 0x68, 0x8e, 0x6c, 0x08, + 0x09, 0x3c, 0xa9, 0x7a, 0x6a, 0x8b, 0x77, 0x92, 0x0f, 0xdc, 0x9e, 0x4f, + 0x36, 0x4c, 0x33, 0xf0, 0xea, 0x86, 0x50, 0x37, 0x00, 0x1b, 0xeb, 0xb8, + 0xea, 0xf9, 0xd5, 0x8b, 0xaa, 0x07, 0xae, 0xba, 0xff, 0xaa, 0xea, 0xa7, + 0xaa, 0x37, 0x28, 0x11, 0x25, 0x18, 0xb0, 0x68, 0x7e, 0xbb, 0xfa, 0xd5, + 0x05, 0x1f, 0xc3, 0x99, 0xd5, 0x0b, 0xaa, 0xcb, 0x6c, 0x4e, 0x80, 0x3b, + 0x6c, 0xdf, 0xea, 0x39, 0x0d, 0x09, 0xcf, 0xc7, 0x28, 0x07, 0x23, 0xb1, + 0xa3, 0xba, 0xa0, 0x95, 0x8e, 0x00, 0xef, 0xae, 0xb6, 0x29, 0x0b, 0x00, + 0x00, 0x23, 0x74, 0x6c, 0x43, 0x48, 0xe0, 0x49, 0xd5, 0xf7, 0x56, 0x77, + 0x57, 0x12, 0x46, 0xe2, 0xaa, 0xea, 0x2f, 0xab, 0xdf, 0xab, 0xbe, 0xa0, + 0x1c, 0x00, 0xeb, 0x66, 0x4b, 0x43, 0x08, 0xf1, 0x79, 0xd5, 0x73, 0xab, + 0xfb, 0xdc, 0xc6, 0xcf, 0xee, 0x6a, 0xe8, 0xf6, 0xf2, 0x2b, 0x39, 0x09, + 0x67, 0xf2, 0x04, 0x03, 0x16, 0xcb, 0x45, 0x0d, 0xad, 0x3f, 0x16, 0xdd, + 0x9f, 0x55, 0x3f, 0x69, 0x73, 0x02, 0xdc, 0xae, 0x7b, 0x56, 0x3f, 0x5e, + 0xfd, 0xec, 0xed, 0xbc, 0xb9, 0x83, 0x45, 0x71, 0x71, 0x2b, 0x1d, 0x01, + 0xfe, 0xa5, 0x61, 0xae, 0x4a, 0x00, 0x00, 0x98, 0x9a, 0xd5, 0x41, 0x81, + 0x27, 0x57, 0x87, 0x29, 0x09, 0x0b, 0x6e, 0x67, 0xf5, 0x4f, 0xd5, 0x1f, + 0x2c, 0x7d, 0xde, 0x03, 0x60, 0xf6, 0xb6, 0x54, 0x8f, 0x6e, 0xe8, 0x0c, + 0xf0, 0xfc, 0x86, 0x0e, 0x45, 0x7b, 0xe2, 0xbc, 0x86, 0x2e, 0xb4, 0x9f, + 0x56, 0xca, 0xe9, 0x12, 0x0c, 0x58, 0x1c, 0x0f, 0xab, 0x3e, 0x36, 0x92, + 0xb1, 0xdc, 0xd8, 0x10, 0x70, 0xb8, 0xc4, 0x66, 0x05, 0xb8, 0x45, 0x27, + 0x55, 0xaf, 0xac, 0x5e, 0x58, 0xed, 0xa7, 0x1c, 0x2c, 0xb0, 0x2f, 0x55, + 0xff, 0xbc, 0xb4, 0xbc, 0xb3, 0xba, 0x5c, 0x49, 0x00, 0x00, 0xe0, 0x66, + 0xb6, 0x56, 0xa7, 0x56, 0x4f, 0x59, 0x5a, 0x4e, 0x6d, 0xf8, 0xe2, 0x1f, + 0x16, 0xd5, 0x87, 0x1b, 0xce, 0x4c, 0xfd, 0xdb, 0xea, 0x06, 0xe5, 0x00, + 0xd8, 0x2b, 0xab, 0xc3, 0x00, 0x2f, 0xac, 0x8e, 0xd8, 0xcb, 0xf5, 0x6d, + 0xab, 0x5e, 0x51, 0xfd, 0x8d, 0xd2, 0x4e, 0x93, 0x60, 0xc0, 0xe2, 0xf8, + 0x8d, 0xea, 0x37, 0x47, 0x34, 0x9e, 0xff, 0xbe, 0xf4, 0x9f, 0x0f, 0x00, + 0x83, 0xcd, 0xd5, 0x33, 0x1a, 0x02, 0x01, 0x4f, 0x52, 0x0e, 0x16, 0xd4, + 0xf5, 0x0d, 0xd3, 0x02, 0x2c, 0x77, 0x05, 0x38, 0xaf, 0xa1, 0x5d, 0x19, + 0x00, 0x00, 0x70, 0xc7, 0x1c, 0x54, 0x3d, 0xaa, 0x7a, 0x56, 0xf5, 0xec, + 0xea, 0x68, 0x25, 0x61, 0x41, 0x7d, 0xad, 0xfa, 0x8b, 0xea, 0xbf, 0x35, + 0x84, 0xc6, 0x01, 0xb8, 0x63, 0xf6, 0x6f, 0xe8, 0x28, 0xf4, 0xfc, 0xa5, + 0xf7, 0x02, 0x87, 0xae, 0xc1, 0x63, 0xbc, 0xa6, 0xe1, 0x18, 0xdd, 0xb5, + 0xca, 0x3d, 0x2d, 0x82, 0x01, 0x8b, 0xe3, 0x23, 0xd5, 0xc3, 0x47, 0x34, + 0x9e, 0x1b, 0xab, 0x07, 0x54, 0x9f, 0xb7, 0x69, 0x81, 0x89, 0x3b, 0xb4, + 0x7a, 0x79, 0xc3, 0x74, 0x01, 0xf7, 0x55, 0x0e, 0x16, 0xd0, 0xc7, 0x1a, + 0x3a, 0x02, 0xbc, 0xa3, 0x3a, 0xb3, 0xda, 0xae, 0x24, 0x00, 0x00, 0x30, + 0x33, 0x0f, 0x6e, 0xe8, 0x24, 0xf0, 0xd4, 0xea, 0x7b, 0xaa, 0xbb, 0x28, + 0x09, 0x0b, 0xe6, 0x86, 0x86, 0xee, 0x01, 0xbf, 0xd7, 0xf0, 0x1d, 0x37, + 0x00, 0xdf, 0xee, 0x80, 0x86, 0x93, 0xc5, 0x9e, 0x5f, 0x3d, 0xa7, 0x3a, + 0x64, 0x1d, 0x1e, 0xf3, 0xa2, 0x86, 0xa9, 0x05, 0xfc, 0xdf, 0x3c, 0x21, + 0x82, 0x01, 0x8b, 0xe1, 0x98, 0x86, 0x39, 0x79, 0xc7, 0xe6, 0x0f, 0x1b, + 0xce, 0x8c, 0x05, 0x98, 0xa2, 0x23, 0x1b, 0x02, 0x01, 0x3f, 0x97, 0xf9, + 0x24, 0x59, 0x2c, 0x97, 0x57, 0x67, 0x34, 0x74, 0x04, 0x78, 0x5b, 0xf5, + 0x45, 0x25, 0x01, 0x00, 0x80, 0x75, 0xb1, 0xb5, 0x3a, 0xbe, 0xa1, 0x9b, + 0xc0, 0x33, 0xab, 0x13, 0x1b, 0xba, 0xcf, 0xc1, 0xa2, 0x38, 0xbb, 0x7a, + 0x55, 0xf5, 0xd6, 0x74, 0x97, 0x03, 0x38, 0xb0, 0x7a, 0x62, 0x43, 0x18, + 0xe0, 0xb9, 0x0d, 0x5d, 0x83, 0xd6, 0xdb, 0xf6, 0xea, 0xff, 0xaa, 0xfe, + 0xc0, 0xe6, 0x98, 0x06, 0xc1, 0x80, 0xc5, 0xf0, 0xcb, 0xd5, 0xef, 0x8e, + 0x70, 0x5c, 0xdb, 0xab, 0x63, 0xab, 0x4b, 0x6d, 0x62, 0x60, 0x42, 0x4e, + 0xa8, 0x7e, 0xb1, 0x21, 0x8d, 0xb9, 0x8f, 0x72, 0xb0, 0x00, 0x76, 0x54, + 0x17, 0x34, 0x04, 0x01, 0xde, 0x5a, 0xbd, 0xaf, 0xda, 0xa9, 0x2c, 0x00, + 0x00, 0xb0, 0xe1, 0xee, 0x51, 0x3d, 0xa1, 0xe1, 0x0c, 0xc3, 0x67, 0x54, + 0xf7, 0x56, 0x12, 0x16, 0xc4, 0x47, 0xab, 0x3f, 0xaa, 0xfe, 0x2a, 0x5d, + 0xe7, 0x80, 0xe9, 0x79, 0x74, 0xf5, 0x6b, 0x4b, 0x7f, 0xbf, 0xf7, 0x9b, + 0x93, 0xe7, 0xf4, 0xfa, 0xea, 0x65, 0xd5, 0x55, 0x36, 0xcf, 0xb8, 0x09, + 0x06, 0x2c, 0x86, 0x0f, 0x54, 0x8f, 0x1c, 0xe9, 0xd8, 0x7e, 0xbf, 0xe1, + 0x00, 0x19, 0xc0, 0xa8, 0xff, 0xde, 0x56, 0xdf, 0x57, 0xfd, 0x52, 0x75, + 0x9a, 0x72, 0xb0, 0x00, 0xbe, 0x58, 0xfd, 0xaf, 0x86, 0x8e, 0x00, 0x67, + 0x54, 0xdb, 0x94, 0x04, 0x00, 0x00, 0xe6, 0xfe, 0x73, 0xe7, 0x09, 0x0d, + 0x53, 0x0e, 0x3c, 0xa3, 0xe1, 0xa0, 0xc3, 0x16, 0x65, 0x61, 0xce, 0x7d, + 0xb9, 0xe1, 0x2c, 0xd5, 0x3f, 0xc9, 0xc1, 0x28, 0x60, 0x1a, 0xee, 0xd9, + 0x70, 0x02, 0xce, 0x91, 0x73, 0xf8, 0xdc, 0x3e, 0x5f, 0xbd, 0xb8, 0xe1, + 0xa4, 0x20, 0xc6, 0xfa, 0x86, 0x51, 0x30, 0x60, 0xee, 0xdd, 0xbb, 0xe1, + 0xcb, 0xf9, 0x4d, 0x23, 0x1d, 0xdf, 0x75, 0x0d, 0x53, 0x25, 0x7c, 0xcd, + 0xa6, 0x06, 0x46, 0x68, 0xdf, 0x86, 0xce, 0x00, 0xbf, 0x5c, 0x3d, 0x4c, + 0x39, 0x98, 0x63, 0xcb, 0x5d, 0x01, 0xde, 0x5a, 0xbd, 0xa5, 0x3a, 0x2f, + 0x6d, 0x1d, 0x01, 0x00, 0x60, 0x91, 0xdd, 0xb5, 0xa1, 0x3d, 0xf1, 0x93, + 0xaa, 0x67, 0x57, 0xf7, 0x52, 0x12, 0xe6, 0xd8, 0x35, 0xd5, 0x9f, 0x57, + 0xbf, 0x57, 0x7d, 0x41, 0x39, 0x80, 0x91, 0xda, 0x5c, 0xbd, 0xbd, 0x7a, + 0xf2, 0x1c, 0x3f, 0xc7, 0x9b, 0xaa, 0xdf, 0xaa, 0xfe, 0x43, 0x3a, 0x86, + 0x8e, 0x92, 0x60, 0xc0, 0xfc, 0x7b, 0x65, 0xe3, 0x9f, 0xdb, 0xe3, 0x77, + 0xab, 0x5f, 0xb1, 0xa9, 0x81, 0x11, 0x39, 0xa4, 0xfa, 0xf1, 0x86, 0x0e, + 0x01, 0xf7, 0x51, 0x0e, 0xe6, 0xd4, 0x37, 0xab, 0x77, 0x36, 0x4c, 0x11, + 0xf0, 0xe6, 0xea, 0x32, 0x25, 0x01, 0x00, 0x80, 0x51, 0xda, 0x5c, 0x9d, + 0x58, 0x3d, 0xab, 0x7a, 0x66, 0xf5, 0x88, 0xc6, 0x7b, 0x12, 0x12, 0x8b, + 0x6d, 0x67, 0xf5, 0x4f, 0xd5, 0x7f, 0xaa, 0x3e, 0xa8, 0x1c, 0xc0, 0xc8, + 0xfc, 0x7a, 0xf5, 0x1f, 0x17, 0xe4, 0xb9, 0x9e, 0x5e, 0xbd, 0x24, 0xdf, + 0x17, 0x8e, 0x8e, 0x60, 0xc0, 0xfc, 0x7b, 0x77, 0xf5, 0x3d, 0x23, 0x1f, + 0xe3, 0xb5, 0x0d, 0x5d, 0x03, 0xbe, 0x6e, 0x73, 0x03, 0x0b, 0xee, 0xe8, + 0xea, 0xa7, 0x97, 0x96, 0x43, 0x95, 0x83, 0x39, 0x74, 0x71, 0x2b, 0x5d, + 0x01, 0xde, 0x53, 0xdd, 0xa8, 0x24, 0x00, 0x00, 0x30, 0x39, 0x47, 0x34, + 0x4c, 0x39, 0xf0, 0xcc, 0x86, 0x69, 0xef, 0x0e, 0x56, 0x12, 0xe6, 0xd0, + 0xd9, 0xd5, 0xab, 0x96, 0x3e, 0xc3, 0x3a, 0x88, 0x01, 0x2c, 0xba, 0x47, + 0x55, 0xef, 0xad, 0xf6, 0x59, 0xa0, 0xe7, 0xfc, 0xd5, 0xea, 0xa5, 0xd5, + 0x3f, 0xdb, 0x7c, 0xe3, 0x21, 0x18, 0x30, 0xdf, 0xee, 0x5e, 0x5d, 0x5a, + 0x6d, 0x9d, 0xc0, 0x58, 0x7f, 0xab, 0x21, 0x2d, 0x05, 0xb0, 0x88, 0x4e, + 0xac, 0x7e, 0xa1, 0x7a, 0xd1, 0x44, 0xfe, 0xcf, 0x66, 0x71, 0x5c, 0xdf, + 0xf0, 0x65, 0xca, 0x5b, 0xab, 0x37, 0xa5, 0x25, 0x23, 0x00, 0x00, 0x70, + 0x73, 0xfb, 0x57, 0x8f, 0x6b, 0x98, 0x72, 0xe0, 0xfb, 0xab, 0x07, 0x29, + 0x09, 0x73, 0xe6, 0xd3, 0xd5, 0x1f, 0x55, 0xff, 0xa3, 0xda, 0xae, 0x1c, + 0xc0, 0x02, 0x3a, 0xbc, 0x3a, 0xbf, 0xba, 0xdf, 0x02, 0x3e, 0xf7, 0x9d, + 0xd5, 0x7f, 0xa9, 0x7e, 0xad, 0x61, 0x2a, 0x52, 0x16, 0x9c, 0x60, 0xc0, + 0x7c, 0x7b, 0xd9, 0xd2, 0x1b, 0x9e, 0x29, 0xb8, 0xba, 0xe1, 0x4c, 0xdb, + 0x2b, 0x6c, 0x76, 0x60, 0x81, 0x3c, 0xa5, 0xfa, 0xd5, 0xea, 0x09, 0x4a, + 0xc1, 0x1c, 0xf9, 0x5c, 0x43, 0xeb, 0xc5, 0xb7, 0x36, 0x74, 0x1e, 0xba, + 0x5e, 0x49, 0x00, 0x00, 0x80, 0x3b, 0xe8, 0xb8, 0xea, 0x19, 0xd5, 0xd3, + 0xab, 0xc7, 0x26, 0xfc, 0xce, 0xfc, 0xf8, 0x4a, 0xf5, 0xfb, 0xd5, 0x7f, + 0xaf, 0xae, 0x51, 0x0e, 0x60, 0x41, 0x6c, 0x6a, 0x38, 0x59, 0xe7, 0x39, + 0x0b, 0x3e, 0x8e, 0xf7, 0x54, 0x3f, 0x5c, 0x7d, 0xd9, 0x26, 0x5d, 0xf0, + 0x17, 0xa4, 0x60, 0xc0, 0x5c, 0x7b, 0x5b, 0x43, 0x3b, 0xaf, 0xa9, 0xf8, + 0xf7, 0xd5, 0x6f, 0xda, 0xec, 0xc0, 0x9c, 0xdb, 0xdc, 0xf0, 0x25, 0xc9, + 0xaf, 0x55, 0x8f, 0x54, 0x0e, 0xe6, 0xc4, 0x85, 0x0d, 0xd3, 0x03, 0xbc, + 0xb5, 0xa1, 0x43, 0x80, 0x37, 0x78, 0x00, 0x00, 0xc0, 0xde, 0x3a, 0xbc, + 0xa1, 0x93, 0xc0, 0xb3, 0x1a, 0xba, 0x09, 0x98, 0x72, 0x80, 0x79, 0x70, + 0x75, 0xf5, 0xc7, 0x0d, 0x67, 0xb0, 0x7e, 0x43, 0x39, 0x80, 0x39, 0xf7, + 0xf2, 0x86, 0x40, 0xd3, 0x18, 0x7c, 0xbd, 0xfa, 0xb1, 0x86, 0x13, 0x92, + 0x58, 0x50, 0x82, 0x01, 0xf3, 0xeb, 0xb0, 0x86, 0xf9, 0x3b, 0xf6, 0x9d, + 0xd0, 0x98, 0xaf, 0xa8, 0x8e, 0xa9, 0xae, 0xb2, 0xf9, 0x81, 0x39, 0xb4, + 0xb9, 0x7a, 0x5e, 0x43, 0x80, 0xe9, 0xa1, 0xca, 0xc1, 0x06, 0xdb, 0x51, + 0x7d, 0xa0, 0x21, 0x0c, 0xf0, 0xa6, 0xea, 0x53, 0x4a, 0x02, 0x00, 0x00, + 0xac, 0xa1, 0xe5, 0x29, 0x07, 0x9e, 0x55, 0x3d, 0xbf, 0x3a, 0x52, 0x49, + 0xd8, 0x60, 0xd7, 0x56, 0x7f, 0xd6, 0x10, 0x10, 0xf8, 0x92, 0x72, 0x00, + 0x73, 0xe8, 0xa0, 0xea, 0x33, 0xd5, 0x11, 0x23, 0x1a, 0xd3, 0xae, 0x86, + 0xee, 0xdf, 0xa6, 0x2b, 0x5d, 0x50, 0x9b, 0x95, 0x60, 0x6e, 0x3d, 0xab, + 0x69, 0x85, 0x02, 0x6a, 0x48, 0x21, 0xff, 0xac, 0x4d, 0x0f, 0xcc, 0x99, + 0x7d, 0xab, 0x97, 0x56, 0x17, 0x55, 0xaf, 0x4f, 0x28, 0x80, 0x8d, 0x73, + 0x7d, 0x43, 0x47, 0x80, 0x97, 0x57, 0xf7, 0x6e, 0xf8, 0x52, 0xee, 0x55, + 0x09, 0x05, 0x00, 0x00, 0x00, 0x6b, 0x6f, 0x7b, 0x75, 0x7a, 0xf5, 0x73, + 0xd5, 0x7d, 0xaa, 0x93, 0x1b, 0xba, 0x7f, 0x5e, 0xa4, 0x34, 0x6c, 0x90, + 0xbb, 0x54, 0xaf, 0xac, 0x3e, 0x5b, 0xfd, 0x55, 0xf5, 0x40, 0x25, 0x01, + 0xe6, 0xcc, 0x2f, 0x34, 0xae, 0x50, 0x40, 0x0d, 0x53, 0x23, 0x6c, 0xb2, + 0x69, 0x17, 0x78, 0x03, 0xea, 0x18, 0x30, 0xb7, 0xde, 0xd4, 0xd0, 0xa2, + 0x6b, 0x6a, 0xbe, 0xd1, 0xd0, 0x35, 0x60, 0x9b, 0x97, 0x00, 0xb0, 0xc1, + 0x0e, 0xaa, 0x7e, 0xa2, 0xfa, 0xe5, 0x86, 0x83, 0xb0, 0xb0, 0x51, 0x7f, + 0x17, 0xff, 0xa9, 0xa1, 0x33, 0xc0, 0xdb, 0x32, 0x8f, 0x22, 0x00, 0x00, + 0x30, 0x7f, 0x8e, 0x6d, 0xa5, 0x93, 0xc0, 0x63, 0x72, 0xc0, 0x80, 0x8d, + 0xb1, 0x73, 0xe9, 0xf3, 0xf3, 0x6f, 0x54, 0xe7, 0x29, 0x07, 0xb0, 0xc1, + 0x0e, 0x6f, 0x08, 0x2e, 0x1d, 0x3e, 0xc2, 0xb1, 0xdd, 0xa7, 0xfa, 0xb2, + 0x4d, 0xbc, 0x98, 0x04, 0x03, 0xe6, 0xd3, 0x81, 0x0d, 0x73, 0x75, 0x1c, + 0x38, 0xd1, 0xf1, 0xff, 0x4a, 0xf5, 0xbb, 0x5e, 0x06, 0xc0, 0x06, 0xb9, + 0x5b, 0xf5, 0x6f, 0x97, 0x96, 0xbb, 0x2a, 0x07, 0x1b, 0xe0, 0x73, 0xd5, + 0x9b, 0x1b, 0xc2, 0x00, 0xef, 0xa9, 0x6e, 0x54, 0x12, 0x00, 0x00, 0x60, + 0x41, 0xdc, 0xb7, 0x7a, 0x5a, 0x43, 0x50, 0xe0, 0x29, 0x4d, 0xaf, 0x23, + 0x2a, 0x1b, 0x6f, 0x57, 0xf5, 0xbf, 0xaa, 0xdf, 0x6a, 0x98, 0x82, 0x0f, + 0x60, 0x23, 0xfc, 0x97, 0xea, 0x97, 0x46, 0x3a, 0xb6, 0x23, 0xab, 0xcb, + 0x6c, 0xe2, 0xc5, 0x24, 0x18, 0x30, 0x9f, 0x9e, 0x52, 0xbd, 0x63, 0xc2, + 0xe3, 0xbf, 0xbc, 0x7a, 0x40, 0x75, 0xa5, 0x97, 0x02, 0xb0, 0x8e, 0x8e, + 0xaa, 0xfe, 0x8f, 0xea, 0x65, 0x0d, 0xdd, 0x02, 0x60, 0x3d, 0x9d, 0xd7, + 0xd0, 0x2d, 0xe8, 0x1f, 0xab, 0x8f, 0x29, 0x07, 0x00, 0x00, 0x30, 0x02, + 0x87, 0x57, 0x4f, 0x6f, 0xe8, 0x8a, 0xfa, 0xf4, 0xa6, 0x7b, 0x12, 0x14, + 0x1b, 0xe7, 0xf4, 0xea, 0xb7, 0xab, 0x33, 0x94, 0x02, 0x58, 0x47, 0xf7, + 0xae, 0x3e, 0x5d, 0x1d, 0x30, 0xd2, 0xf1, 0xdd, 0xb3, 0xe1, 0xe4, 0x66, + 0x16, 0x90, 0x60, 0xc0, 0x7c, 0xba, 0x5b, 0x43, 0xda, 0x66, 0xeb, 0x84, + 0x6b, 0xf0, 0xbb, 0x0d, 0x9d, 0x03, 0x00, 0xd6, 0xda, 0xd1, 0x0d, 0xf3, + 0x3d, 0xfd, 0xd4, 0x88, 0xdf, 0xac, 0x31, 0x9f, 0x2e, 0xac, 0xde, 0x50, + 0xbd, 0xb6, 0xfa, 0x94, 0x72, 0x00, 0x00, 0x00, 0x23, 0xb6, 0x7f, 0xf5, + 0xe4, 0x86, 0xe9, 0x06, 0x9e, 0x53, 0x1d, 0xa2, 0x24, 0xac, 0xa3, 0xf3, + 0xab, 0xdf, 0xa9, 0xde, 0xd8, 0xd0, 0x51, 0x00, 0x60, 0x2d, 0xfd, 0x49, + 0xc3, 0x77, 0xcd, 0x63, 0x75, 0xd7, 0xea, 0x0a, 0x9b, 0x79, 0x31, 0x09, + 0x06, 0xcc, 0xaf, 0x77, 0x56, 0xa7, 0x4d, 0x78, 0xfc, 0xdb, 0xab, 0x07, + 0x57, 0x9f, 0xf7, 0x52, 0x00, 0xd6, 0xc8, 0x83, 0xab, 0x5f, 0xaf, 0x5e, + 0xd8, 0xb4, 0x83, 0x58, 0xac, 0x9f, 0x5d, 0xd5, 0x39, 0x0d, 0x5f, 0x44, + 0xbc, 0xb1, 0x61, 0xca, 0x00, 0x00, 0x00, 0x80, 0xa9, 0x39, 0xa0, 0xfa, + 0xbe, 0xea, 0x07, 0xab, 0x67, 0x26, 0x24, 0xc0, 0xfa, 0xf9, 0x68, 0xc3, + 0x14, 0x03, 0x6f, 0xac, 0x76, 0x2a, 0x07, 0xb0, 0x06, 0x1e, 0xd0, 0x70, + 0x32, 0xd0, 0x98, 0xbf, 0x6f, 0x3e, 0xa4, 0xda, 0x66, 0x53, 0x2f, 0x26, + 0xc1, 0x80, 0xf9, 0xf5, 0xb3, 0xd5, 0x1f, 0x4e, 0xbc, 0x06, 0x7f, 0x5d, + 0xbd, 0xc4, 0x4b, 0x01, 0x98, 0xb1, 0x63, 0x1b, 0x3a, 0x92, 0xfc, 0x9b, + 0x04, 0x02, 0x58, 0x1f, 0xcb, 0x9d, 0x01, 0xfe, 0xba, 0xfa, 0x8c, 0x72, + 0x00, 0x00, 0x00, 0xfc, 0x6f, 0xfb, 0x35, 0x4c, 0xab, 0xfa, 0xfc, 0xea, + 0xd9, 0xd5, 0xa1, 0x4a, 0xc2, 0x3a, 0x7d, 0x4e, 0x7f, 0x55, 0xf5, 0x37, + 0xd5, 0x0e, 0xe5, 0x00, 0x66, 0xe8, 0x6f, 0xab, 0x17, 0x8c, 0x7c, 0x8c, + 0x77, 0xa9, 0xae, 0xb3, 0xa9, 0x17, 0x93, 0x60, 0xc0, 0xfc, 0xba, 0x77, + 0xf5, 0xc5, 0x6a, 0xd3, 0x84, 0x6b, 0xb0, 0xab, 0x3a, 0xa5, 0x3a, 0xd7, + 0xcb, 0x01, 0x98, 0x01, 0x81, 0x00, 0xd6, 0xcb, 0xce, 0xea, 0xfd, 0x0d, + 0x61, 0x80, 0x37, 0x56, 0x5f, 0x56, 0x12, 0x00, 0x00, 0x80, 0xdb, 0xb5, + 0xa5, 0x7a, 0x74, 0x43, 0x48, 0xe0, 0x87, 0x1a, 0xe6, 0x30, 0x86, 0xb5, + 0x24, 0x20, 0x00, 0xcc, 0xd2, 0xf1, 0xd5, 0x79, 0xd5, 0xe6, 0x91, 0x8f, + 0x73, 0xbf, 0xea, 0x06, 0x9b, 0x7b, 0x31, 0x09, 0x06, 0xcc, 0xb7, 0xf7, + 0x57, 0x8f, 0x9a, 0x78, 0x0d, 0xde, 0x5d, 0x7d, 0xaf, 0x97, 0x02, 0xb0, + 0x17, 0x04, 0x02, 0x58, 0x0f, 0xab, 0xc3, 0x00, 0x6f, 0xa8, 0xbe, 0xa2, + 0x24, 0x00, 0x00, 0x00, 0x77, 0xda, 0xea, 0x90, 0xc0, 0x0b, 0xab, 0x23, + 0x94, 0xe4, 0xff, 0x67, 0xef, 0xbe, 0xa3, 0x2d, 0xad, 0xcb, 0xc3, 0x7d, + 0xdf, 0x33, 0x74, 0x04, 0x15, 0xb1, 0xa3, 0x51, 0x22, 0xd8, 0x4d, 0x44, + 0xec, 0x58, 0x51, 0xa2, 0x12, 0xc1, 0x82, 0x60, 0x05, 0x6c, 0xc1, 0x16, + 0x15, 0x23, 0x0a, 0xb6, 0x88, 0xb1, 0x04, 0xa2, 0x58, 0xc0, 0x06, 0xc6, + 0x02, 0x44, 0x51, 0x11, 0xa2, 0x01, 0x6c, 0x80, 0x28, 0x62, 0xf9, 0x1a, + 0x14, 0x09, 0x46, 0x45, 0xac, 0x3f, 0x30, 0x56, 0x10, 0x44, 0x10, 0x29, + 0x33, 0xbf, 0x3f, 0xde, 0x83, 0x22, 0xc2, 0xcc, 0x99, 0x99, 0x53, 0x76, + 0xb9, 0xae, 0xb5, 0x58, 0x60, 0x16, 0xc6, 0xb3, 0xef, 0xf7, 0xcc, 0x3e, + 0xfb, 0xec, 0xfd, 0xbc, 0xcf, 0x87, 0x79, 0x64, 0x40, 0x00, 0x98, 0x0b, + 0x9f, 0xae, 0x1e, 0x36, 0x05, 0x8f, 0x73, 0x6d, 0xcf, 0x95, 0xe3, 0xcb, + 0x06, 0x71, 0x85, 0x06, 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54, + 0x60, 0xc0, 0x68, 0x7b, 0xe9, 0xcc, 0x0b, 0x92, 0x69, 0xf7, 0xc8, 0xea, + 0x38, 0x19, 0x80, 0x55, 0x74, 0xfb, 0xea, 0x95, 0x0d, 0x77, 0x19, 0xac, + 0x25, 0x07, 0xf3, 0xe0, 0x8a, 0xea, 0x0b, 0x0d, 0x83, 0x00, 0xff, 0x59, + 0xfd, 0x42, 0x12, 0x00, 0x00, 0x80, 0x39, 0xb7, 0x4e, 0xc3, 0x8d, 0x43, + 0x8f, 0xab, 0x1e, 0x5b, 0x6d, 0x2a, 0x09, 0xf3, 0xe4, 0x5b, 0xd5, 0xbf, + 0x54, 0x47, 0x35, 0xdc, 0x00, 0x00, 0x30, 0x5b, 0xf7, 0xaf, 0x4e, 0x9e, + 0x92, 0xc7, 0xba, 0xc4, 0xe5, 0x1e, 0xe3, 0x8b, 0x67, 0x30, 0x60, 0xa4, + 0x6d, 0x5e, 0xfd, 0x50, 0x86, 0xbe, 0x5b, 0xdd, 0xa5, 0xba, 0x5c, 0x0a, + 0x60, 0x16, 0x6c, 0x08, 0x60, 0xbe, 0x7d, 0xbb, 0x3a, 0xac, 0x3a, 0x3c, + 0x9b, 0x01, 0x00, 0x00, 0x00, 0x16, 0xd2, 0x5a, 0x0d, 0x43, 0x02, 0xbb, + 0x55, 0x8f, 0xae, 0x36, 0x96, 0x84, 0x79, 0xf0, 0xbf, 0xd5, 0xbf, 0x65, + 0x83, 0x00, 0x30, 0x7b, 0x5f, 0xaa, 0xee, 0x3b, 0x05, 0x8f, 0xf3, 0xf2, + 0x86, 0x81, 0x3d, 0xc6, 0x94, 0xc1, 0x80, 0xd1, 0xf7, 0xcd, 0x86, 0x73, + 0x49, 0xa6, 0xdd, 0x1e, 0xd5, 0x7b, 0x64, 0x00, 0x56, 0xc0, 0x40, 0x00, + 0xf3, 0xe9, 0x3b, 0xd5, 0x47, 0xab, 0x0f, 0x55, 0xdf, 0x93, 0x03, 0x00, + 0x00, 0x60, 0xd1, 0xad, 0x5f, 0x6d, 0x57, 0xed, 0x5a, 0x3d, 0xaa, 0x5a, + 0x57, 0x12, 0xe6, 0x98, 0x01, 0x01, 0x60, 0x36, 0x76, 0xac, 0x3e, 0x31, + 0x25, 0x8f, 0xf5, 0x0f, 0x33, 0x3f, 0x7f, 0x19, 0x53, 0x06, 0x03, 0x46, + 0xdf, 0xd3, 0xaa, 0xf7, 0xc9, 0xd0, 0x2f, 0xab, 0x2d, 0xaa, 0x0b, 0xa5, + 0x00, 0xae, 0xc6, 0x40, 0x00, 0xf3, 0xe5, 0x9c, 0xea, 0xe8, 0x86, 0xa3, + 0x02, 0x4e, 0x91, 0x03, 0x00, 0x00, 0x60, 0x64, 0x5d, 0xbf, 0xe1, 0x83, + 0x99, 0x9d, 0xab, 0x87, 0xe7, 0xfd, 0x01, 0xe6, 0x96, 0x01, 0x01, 0xe0, + 0xda, 0x2c, 0xad, 0xbe, 0xd1, 0xf4, 0xdc, 0xe0, 0x7b, 0x51, 0xb5, 0x91, + 0xcb, 0x3e, 0xbe, 0x0c, 0x06, 0x8c, 0xbe, 0x75, 0xaa, 0x33, 0x1b, 0x8e, + 0x15, 0x98, 0x76, 0xaf, 0xa9, 0xf6, 0x95, 0x01, 0x98, 0x71, 0xbb, 0xea, + 0x55, 0xd5, 0x13, 0x1a, 0x56, 0x09, 0xc2, 0x5c, 0xf8, 0x55, 0xc3, 0x20, + 0xc0, 0x11, 0x0d, 0x2b, 0xc0, 0xbc, 0x50, 0x02, 0x00, 0x00, 0x18, 0x2f, + 0x37, 0xaf, 0x76, 0xa9, 0x9e, 0x58, 0xdd, 0x53, 0x0e, 0xe6, 0xd0, 0x19, + 0xd5, 0xbf, 0x54, 0x47, 0xe5, 0xfd, 0x02, 0x60, 0xb0, 0x5b, 0x75, 0xe8, + 0x14, 0x3d, 0xde, 0xdf, 0x56, 0xd7, 0x73, 0xd9, 0xc7, 0x97, 0xc1, 0x80, + 0xf1, 0xb0, 0x47, 0x75, 0xb0, 0x0c, 0x5d, 0x54, 0x6d, 0x59, 0xfd, 0x4c, + 0x0a, 0x98, 0x6a, 0xb7, 0xac, 0x5e, 0x99, 0x0d, 0x01, 0xcc, 0x9d, 0xdf, + 0x57, 0xc7, 0x56, 0x87, 0x57, 0x9f, 0xae, 0x2e, 0x93, 0x04, 0x00, 0x00, + 0x60, 0x22, 0xdc, 0xaa, 0x7a, 0x74, 0xb5, 0x7b, 0xb5, 0x95, 0x1c, 0xcc, + 0x91, 0x6f, 0x35, 0x0c, 0x08, 0x1c, 0x29, 0x05, 0x4c, 0xb5, 0x75, 0xaa, + 0xef, 0x36, 0x6c, 0xb4, 0x9d, 0x16, 0xe7, 0x55, 0x9b, 0xba, 0xf4, 0xe3, + 0xcb, 0x60, 0xc0, 0xf8, 0x3c, 0xb9, 0x9c, 0x35, 0xf3, 0x42, 0x76, 0xda, + 0xbd, 0xa7, 0x61, 0x50, 0x02, 0x98, 0x3e, 0x37, 0xac, 0xf6, 0xaa, 0x5e, + 0x98, 0x73, 0x8c, 0x58, 0x73, 0x7f, 0xa8, 0x8e, 0x9f, 0xf9, 0x25, 0xfe, + 0xa8, 0x86, 0xe1, 0x33, 0x00, 0x00, 0x00, 0x26, 0xd7, 0x9d, 0x1a, 0x8e, + 0x1a, 0x78, 0x4a, 0x75, 0x1b, 0x39, 0x98, 0x03, 0x5f, 0xa9, 0x5e, 0x51, + 0x9d, 0x24, 0x05, 0x4c, 0xa5, 0xe7, 0x57, 0x07, 0x4e, 0xd9, 0x63, 0xfe, + 0x55, 0x75, 0x63, 0x97, 0x7e, 0x7c, 0x19, 0x0c, 0x18, 0x1f, 0xcf, 0xab, + 0xde, 0x2e, 0x43, 0x57, 0x54, 0x77, 0x6d, 0x98, 0xca, 0x04, 0xa6, 0xc3, + 0x46, 0x33, 0xcf, 0x81, 0x2f, 0xaf, 0xae, 0x2b, 0x07, 0x6b, 0xe8, 0xeb, + 0x0d, 0x9b, 0x01, 0x3e, 0x58, 0xfd, 0x5a, 0x0e, 0x00, 0x00, 0x80, 0xa9, + 0xb4, 0x75, 0xc3, 0xcd, 0x47, 0x4f, 0xc8, 0x7b, 0x0d, 0xac, 0xb9, 0x13, + 0xaa, 0x7d, 0x1a, 0xde, 0x73, 0x00, 0xa6, 0xc3, 0x75, 0xaa, 0xef, 0x57, + 0x37, 0x9d, 0xb2, 0xc7, 0xfd, 0xb3, 0x86, 0x23, 0x7b, 0x18, 0x53, 0x06, + 0x03, 0xc6, 0xc7, 0x7a, 0xd5, 0x0f, 0xaa, 0xcd, 0xa4, 0xe8, 0xb8, 0xea, + 0x91, 0x32, 0xc0, 0xc4, 0xdb, 0xb0, 0xfa, 0x87, 0x86, 0x81, 0x00, 0x53, + 0x88, 0xac, 0x89, 0xb3, 0xab, 0x0f, 0x55, 0xef, 0x6d, 0xd8, 0xc0, 0x03, + 0x00, 0x00, 0x00, 0x35, 0x6c, 0x24, 0xdc, 0xa1, 0xe1, 0x8c, 0xe8, 0x87, + 0xe7, 0xc8, 0x42, 0x56, 0xdf, 0xf2, 0xea, 0x63, 0xd5, 0xab, 0xaa, 0x33, + 0xe5, 0x80, 0x89, 0xf7, 0xca, 0xea, 0xb5, 0x53, 0xf8, 0xb8, 0xcf, 0x69, + 0x38, 0xea, 0x97, 0x31, 0x65, 0x30, 0x60, 0xbc, 0xec, 0x59, 0xbd, 0x45, + 0x86, 0xaa, 0xb6, 0x6b, 0x98, 0xc4, 0x04, 0x26, 0xcf, 0x3a, 0xd5, 0xd3, + 0xaa, 0x57, 0x67, 0xfa, 0x90, 0xd5, 0xf7, 0xdb, 0xea, 0x13, 0xd5, 0x61, + 0xd5, 0x89, 0x33, 0xbf, 0xa0, 0x03, 0x00, 0x00, 0xc0, 0xb5, 0xb9, 0x79, + 0xc3, 0x51, 0x03, 0xbb, 0x57, 0x5b, 0xc9, 0xc1, 0x6a, 0x5a, 0xd6, 0x70, + 0x64, 0xe1, 0x3e, 0xd5, 0x0f, 0xe5, 0x80, 0x89, 0xb4, 0x49, 0xc3, 0x8d, + 0xbc, 0x9b, 0x4c, 0xe1, 0x63, 0xff, 0x71, 0xb5, 0xb9, 0x6f, 0x81, 0xf1, + 0x65, 0x30, 0x60, 0xbc, 0xac, 0x3f, 0xf3, 0x62, 0xe2, 0x66, 0x52, 0x74, + 0x7a, 0x75, 0xb7, 0x99, 0x17, 0x5a, 0xc0, 0x64, 0x58, 0x5a, 0xed, 0x54, + 0xbd, 0xa1, 0xda, 0x42, 0x0e, 0x56, 0xf3, 0x97, 0xef, 0xcf, 0x35, 0x1c, + 0x15, 0x70, 0x54, 0x75, 0x91, 0x24, 0x00, 0x00, 0x00, 0xac, 0x86, 0x3b, + 0x55, 0xbb, 0x56, 0x4f, 0xad, 0x6e, 0x22, 0x07, 0xab, 0xe1, 0xd2, 0xea, + 0x03, 0x0d, 0x37, 0xbe, 0xfc, 0x5c, 0x0e, 0x98, 0x28, 0xff, 0x56, 0xbd, + 0x64, 0x4a, 0x1f, 0xfb, 0x0f, 0xf2, 0xde, 0xfd, 0x58, 0x33, 0x18, 0x30, + 0x7e, 0x5e, 0x5a, 0xed, 0x2f, 0x43, 0xcd, 0xbc, 0x38, 0xff, 0x0f, 0x19, + 0x60, 0x22, 0x3c, 0xb4, 0x7a, 0x63, 0x75, 0x57, 0x29, 0x58, 0x0d, 0xdf, + 0xae, 0x8e, 0xac, 0xde, 0x5f, 0xfd, 0x44, 0x0e, 0x00, 0x00, 0x00, 0xe6, + 0xc8, 0x5a, 0xd5, 0x83, 0x1b, 0x8e, 0x1a, 0xd8, 0xa9, 0xe1, 0xd8, 0x43, + 0x58, 0x15, 0x17, 0x55, 0x6f, 0xaf, 0xf6, 0xab, 0xce, 0x97, 0x03, 0xc6, + 0xde, 0xcd, 0x1b, 0x8e, 0x2a, 0x9d, 0xd6, 0x9f, 0x07, 0x67, 0x56, 0xb7, + 0xf7, 0x6d, 0x30, 0xbe, 0x0c, 0x06, 0x8c, 0x9f, 0xeb, 0x54, 0x3f, 0xaa, + 0x6e, 0x24, 0x45, 0xe7, 0x54, 0xb7, 0xab, 0x2e, 0x96, 0x02, 0xc6, 0xd6, + 0xfd, 0x1a, 0x36, 0x04, 0xdc, 0x5f, 0x0a, 0x56, 0xd1, 0x79, 0x0d, 0x67, + 0xf7, 0x1d, 0x5e, 0x9d, 0x22, 0x07, 0x00, 0x00, 0x00, 0xf3, 0xec, 0xfa, + 0xd5, 0x8e, 0x0d, 0x37, 0x2b, 0x3d, 0xa4, 0x5a, 0x22, 0x09, 0xab, 0xe0, + 0xbc, 0x86, 0xbb, 0x8c, 0x0f, 0xca, 0xfb, 0xd9, 0x30, 0xce, 0x0e, 0xae, + 0xf6, 0x98, 0xe2, 0xc7, 0xff, 0xed, 0x86, 0xad, 0x3a, 0x8c, 0xa9, 0xa5, + 0x12, 0x8c, 0x9d, 0x8b, 0xaa, 0xb7, 0xc9, 0x50, 0xd5, 0x2d, 0xaa, 0xe7, + 0xcb, 0x00, 0x63, 0x69, 0xeb, 0xea, 0x84, 0xea, 0x8b, 0x19, 0x0a, 0x60, + 0xf6, 0x2e, 0x6d, 0x38, 0x22, 0x60, 0x87, 0x86, 0x55, 0x8e, 0xcf, 0xca, + 0x50, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xe3, 0xfc, 0xea, 0xb0, 0x6a, 0xbb, + 0x86, 0xbb, 0x25, 0x5f, 0x5f, 0xfd, 0x54, 0x16, 0x66, 0xe9, 0x06, 0x0d, + 0x5b, 0x03, 0xce, 0x6a, 0x78, 0x3f, 0x63, 0x6d, 0x49, 0x60, 0xec, 0x6c, + 0x59, 0x3d, 0x6d, 0xca, 0x1b, 0x5c, 0xee, 0xdb, 0x60, 0xbc, 0xd9, 0x18, + 0x30, 0x9e, 0xae, 0x5b, 0xfd, 0xb8, 0xda, 0x44, 0x8a, 0x2e, 0x6c, 0x38, + 0xcf, 0xe4, 0x97, 0x52, 0xc0, 0x58, 0xb8, 0x65, 0xf5, 0xca, 0xea, 0x99, + 0x19, 0x4e, 0x63, 0xf6, 0xce, 0x6c, 0x38, 0x26, 0xe0, 0xfd, 0x9e, 0xef, + 0x01, 0x00, 0x00, 0x18, 0x21, 0x4b, 0xab, 0x6d, 0x1b, 0xee, 0x1e, 0x7d, + 0x74, 0xb5, 0x8e, 0x24, 0xcc, 0xd2, 0x99, 0xd5, 0xab, 0x1a, 0x8e, 0x46, + 0x04, 0xc6, 0xc3, 0x87, 0xab, 0xc7, 0x4f, 0x79, 0x83, 0xd3, 0xaa, 0xbb, + 0xf9, 0x56, 0x18, 0xef, 0x17, 0x2e, 0x8c, 0x9f, 0xdf, 0x56, 0x07, 0xca, + 0x50, 0xd5, 0xc6, 0xd5, 0x2b, 0x64, 0x80, 0x91, 0xb7, 0x49, 0xc3, 0x54, + 0xf4, 0xf7, 0x66, 0x7e, 0x59, 0xf6, 0xf3, 0x87, 0x95, 0xb9, 0x64, 0xe6, + 0x97, 0xe3, 0xed, 0xaa, 0x3b, 0x54, 0xfb, 0x67, 0x28, 0x00, 0x00, 0x00, + 0x80, 0xd1, 0xb2, 0xac, 0x61, 0x23, 0xe2, 0x2e, 0x0d, 0x37, 0x43, 0xec, + 0x59, 0x9d, 0x21, 0x0b, 0xb3, 0x70, 0xbb, 0xea, 0xa3, 0xd5, 0x57, 0xaa, + 0x6d, 0xe4, 0x80, 0x91, 0xf7, 0x37, 0xd5, 0xce, 0x32, 0x74, 0x85, 0x04, + 0xe3, 0xcd, 0xc6, 0x80, 0xf1, 0x75, 0xbd, 0x86, 0xad, 0x01, 0xd7, 0x97, + 0xa2, 0xcb, 0x1a, 0xce, 0x34, 0x39, 0x4b, 0x0a, 0x18, 0x39, 0xeb, 0x34, + 0xac, 0x57, 0x7a, 0x6d, 0x75, 0x63, 0x39, 0x98, 0x85, 0xaf, 0x57, 0x87, + 0xcf, 0xfc, 0x75, 0x9e, 0x1c, 0x00, 0x00, 0x00, 0x8c, 0xa1, 0xad, 0x1b, + 0x6e, 0x8c, 0x78, 0x52, 0xb5, 0x91, 0x1c, 0xac, 0xc4, 0xf2, 0xea, 0x63, + 0xd5, 0xcb, 0xaa, 0x1f, 0xc8, 0x01, 0x23, 0xe9, 0x53, 0xd5, 0xc3, 0x65, + 0xe8, 0xab, 0xd5, 0x7d, 0x64, 0x18, 0x5f, 0xee, 0xd8, 0x1c, 0x5f, 0x17, + 0x54, 0xef, 0x90, 0xa1, 0x1a, 0x3e, 0x78, 0x7c, 0x83, 0x0c, 0x30, 0x72, + 0x76, 0xa8, 0xbe, 0x53, 0x1d, 0x9c, 0xa1, 0x00, 0x56, 0xec, 0xfc, 0xea, + 0x90, 0x6a, 0xab, 0xea, 0xee, 0xd5, 0xdb, 0x32, 0x14, 0x00, 0x00, 0x00, + 0xc0, 0xf8, 0xfa, 0x7a, 0xc3, 0x39, 0xf2, 0x9b, 0xcd, 0xfc, 0xfd, 0x4b, + 0x92, 0xb0, 0x02, 0x4b, 0x1a, 0xee, 0x44, 0xbe, 0xf2, 0x7d, 0xb4, 0x1b, + 0x49, 0x02, 0x23, 0xe5, 0x01, 0x19, 0x0a, 0xb8, 0xea, 0xcf, 0x37, 0xc6, + 0xf9, 0x07, 0x8e, 0x8d, 0x01, 0x63, 0x6d, 0xd3, 0xea, 0x47, 0x0d, 0xeb, + 0xf4, 0xa9, 0xfb, 0x57, 0xa7, 0xc8, 0x00, 0x8b, 0xee, 0xde, 0xd5, 0x1b, + 0xab, 0xfb, 0x49, 0xc1, 0x0a, 0x2c, 0x6b, 0x58, 0x97, 0x77, 0x58, 0xf5, + 0x1f, 0xd5, 0xc5, 0x92, 0x00, 0x00, 0x00, 0x30, 0xc1, 0xee, 0x50, 0xed, + 0x5e, 0x3d, 0xa3, 0xba, 0xa1, 0x1c, 0xac, 0xc0, 0x6f, 0x1a, 0x8e, 0x54, + 0x7c, 0x5b, 0xc3, 0x51, 0x8b, 0xc0, 0xe2, 0xfa, 0x52, 0x75, 0x5f, 0x19, + 0xfa, 0x7d, 0xb5, 0x65, 0xf5, 0x53, 0x29, 0xc6, 0x97, 0x8d, 0x01, 0xe3, + 0xed, 0xdc, 0xea, 0xdd, 0x32, 0xfc, 0xd1, 0x9b, 0x1a, 0xa6, 0x2b, 0x81, + 0xc5, 0x71, 0xdb, 0x86, 0xb3, 0xd1, 0xbe, 0x9c, 0xa1, 0x00, 0xae, 0xdd, + 0xff, 0xcd, 0xfc, 0x72, 0xbb, 0xe5, 0xcc, 0xf7, 0xc9, 0x21, 0x19, 0x0a, + 0x00, 0x00, 0x00, 0x60, 0xf2, 0x7d, 0xa7, 0xda, 0xa7, 0xba, 0x45, 0xb5, + 0x4b, 0x75, 0x42, 0xc3, 0x0a, 0x79, 0xb8, 0xba, 0x4d, 0xaa, 0xfd, 0xaa, + 0xef, 0x35, 0x1c, 0x49, 0xe1, 0x73, 0x1c, 0x58, 0x3c, 0x3b, 0x66, 0x28, + 0xe0, 0x4a, 0x6f, 0xcd, 0x50, 0xc0, 0xd8, 0xb3, 0x31, 0x60, 0xfc, 0xdd, + 0xb0, 0x61, 0x6b, 0x80, 0xb3, 0xaa, 0x06, 0x8f, 0xab, 0x8e, 0x92, 0x01, + 0x16, 0xd4, 0x4d, 0xaa, 0x57, 0x57, 0xff, 0x50, 0xad, 0x2d, 0x07, 0xd7, + 0xe0, 0x8a, 0xea, 0x93, 0x0d, 0xc3, 0x6c, 0x9f, 0x99, 0xf9, 0xcf, 0x00, + 0x00, 0x00, 0x30, 0xed, 0xfe, 0xba, 0xe1, 0xfd, 0x94, 0xa7, 0xe7, 0x18, + 0x46, 0xae, 0xdd, 0x7f, 0x57, 0x2f, 0xa9, 0xbe, 0x20, 0x05, 0x2c, 0xa8, + 0xa5, 0xd5, 0x37, 0xaa, 0xbf, 0x95, 0xa2, 0xf3, 0xab, 0xdb, 0xe4, 0xf8, + 0xd7, 0x89, 0xf8, 0xa6, 0x66, 0xbc, 0xfd, 0xba, 0x7a, 0x8f, 0x0c, 0x7f, + 0xf4, 0xaf, 0xd5, 0x3a, 0x32, 0xc0, 0x82, 0xd8, 0xb0, 0xda, 0xbb, 0x3a, + 0xb3, 0x7a, 0x4e, 0x86, 0x02, 0xf8, 0x4b, 0xbf, 0x68, 0xd8, 0x0e, 0xb0, + 0x45, 0xc3, 0x74, 0xed, 0x27, 0x33, 0x14, 0x00, 0x00, 0x00, 0x00, 0x57, + 0xfa, 0x61, 0xf5, 0xb2, 0xea, 0x96, 0xd9, 0x22, 0xc0, 0xb5, 0xbb, 0x47, + 0xf5, 0xf9, 0xea, 0xf8, 0xea, 0x6f, 0xe4, 0x80, 0x05, 0xf3, 0xa4, 0x0c, + 0x05, 0x5c, 0x69, 0xff, 0x0c, 0x05, 0x4c, 0x04, 0x1b, 0x03, 0x26, 0xc3, + 0x4d, 0xab, 0xef, 0x57, 0xd7, 0x91, 0xa2, 0xaa, 0x17, 0x56, 0x07, 0xca, + 0x00, 0xf3, 0xf7, 0xb3, 0xa3, 0xda, 0xad, 0x7a, 0x7d, 0xb5, 0x99, 0x1c, + 0x5c, 0xcd, 0xf2, 0xea, 0xa4, 0x86, 0xed, 0x00, 0x1f, 0xaf, 0x2e, 0x93, + 0x04, 0x00, 0x00, 0x00, 0x66, 0xed, 0x4e, 0xd5, 0xb3, 0xab, 0x5d, 0xab, + 0xeb, 0xc9, 0xc1, 0xd5, 0x5c, 0x5e, 0xfd, 0x7b, 0xf5, 0xaa, 0x86, 0x9b, + 0x06, 0x81, 0xf9, 0xb1, 0x61, 0xc3, 0x11, 0x30, 0x7f, 0x25, 0x45, 0x3f, + 0x6b, 0xb8, 0xf1, 0xcb, 0x71, 0xb0, 0x13, 0xc0, 0xc6, 0x80, 0xc9, 0xf0, + 0xf3, 0xea, 0x00, 0x19, 0xfe, 0x68, 0xdf, 0xea, 0x06, 0x32, 0xc0, 0xbc, + 0xb8, 0x7b, 0x75, 0x4a, 0xf5, 0x81, 0x0c, 0x05, 0xf0, 0xe7, 0x2e, 0xa8, + 0x0e, 0x69, 0x98, 0x5c, 0x7f, 0x48, 0x75, 0x64, 0x86, 0x02, 0x00, 0x00, + 0x00, 0x60, 0x55, 0xfd, 0x6f, 0xf5, 0xfc, 0x86, 0x9b, 0xc1, 0x76, 0xa9, + 0xbe, 0x2c, 0x09, 0x57, 0xb1, 0x76, 0xc3, 0xe0, 0xc8, 0x59, 0x0d, 0x9b, + 0x3c, 0xd7, 0x93, 0x04, 0xe6, 0xc5, 0x2b, 0x32, 0x14, 0x70, 0xa5, 0x7f, + 0xc9, 0x50, 0xc0, 0xc4, 0xb0, 0x31, 0x60, 0x72, 0x6c, 0x54, 0x7d, 0xaf, + 0xba, 0x99, 0x14, 0xd5, 0xb0, 0xd6, 0x64, 0x1f, 0x19, 0x60, 0xce, 0xdc, + 0xbc, 0x7a, 0x75, 0xf5, 0xcc, 0x0c, 0x95, 0xf1, 0xe7, 0xbe, 0xde, 0x30, + 0x10, 0xf0, 0xc1, 0xea, 0x22, 0x39, 0x00, 0x00, 0x00, 0x60, 0xce, 0x6d, + 0x5d, 0xed, 0x51, 0x3d, 0x39, 0x5b, 0x63, 0xf9, 0x73, 0xdf, 0xab, 0x5e, + 0x5c, 0x1d, 0x2b, 0x05, 0xcc, 0x99, 0x2d, 0xaa, 0x6f, 0x65, 0xf0, 0xa6, + 0xea, 0x47, 0xd5, 0xed, 0xab, 0x4b, 0xa5, 0x98, 0x0c, 0x06, 0x03, 0x26, + 0xcb, 0x1e, 0xd5, 0xc1, 0x32, 0x54, 0x75, 0xc9, 0xcc, 0x93, 0xd5, 0x4f, + 0xa4, 0x80, 0x35, 0xb2, 0x6e, 0xf5, 0x9c, 0xea, 0xb5, 0xd5, 0xc6, 0x72, + 0x70, 0x95, 0xe7, 0xd8, 0x23, 0xab, 0xb7, 0x56, 0xdf, 0x90, 0x03, 0x00, + 0x00, 0x00, 0x16, 0xc4, 0xf5, 0xaa, 0xc7, 0x37, 0x6c, 0x14, 0xb8, 0xb3, + 0x1c, 0x5c, 0xc5, 0x09, 0xd5, 0x9e, 0x0d, 0x1b, 0x27, 0x80, 0x35, 0x73, + 0x5c, 0xb5, 0xbd, 0x0c, 0x55, 0x3d, 0xa9, 0x3a, 0x42, 0x86, 0xc9, 0x61, + 0x30, 0x60, 0xb2, 0xac, 0x55, 0x7d, 0xd3, 0x8b, 0xc2, 0x3f, 0x3a, 0xbc, + 0xe1, 0x1c, 0x74, 0x60, 0xf5, 0xec, 0xd0, 0xf0, 0xc1, 0xef, 0x5f, 0x4b, + 0xc1, 0x8c, 0x33, 0xab, 0xf7, 0x57, 0xef, 0xa9, 0xce, 0x93, 0x03, 0x00, + 0x00, 0x00, 0x16, 0xcd, 0xd6, 0xd5, 0x0b, 0xab, 0x27, 0x54, 0xeb, 0xc8, + 0x41, 0xc3, 0x91, 0x8e, 0xef, 0xaa, 0xfe, 0xb9, 0xe1, 0xc8, 0x47, 0x60, + 0xd5, 0xed, 0x54, 0x7d, 0x4c, 0x86, 0xaa, 0xce, 0xa8, 0xee, 0x5a, 0x2d, + 0x93, 0x62, 0x72, 0x18, 0x0c, 0x98, 0x3c, 0xdb, 0x37, 0x4c, 0x33, 0x31, + 0x3c, 0x59, 0xdd, 0xad, 0x3a, 0x5d, 0x0a, 0x58, 0x25, 0x7f, 0xd3, 0x30, + 0x10, 0xf0, 0x60, 0x29, 0xa8, 0x2e, 0xaf, 0x3e, 0x5e, 0x1d, 0x54, 0x9d, + 0x2c, 0x07, 0x00, 0x00, 0x00, 0x8c, 0x94, 0x9b, 0x55, 0xcf, 0x9a, 0xf9, + 0xeb, 0xa6, 0x72, 0x50, 0xfd, 0xb2, 0xe1, 0x7c, 0xf4, 0xf7, 0xe5, 0x03, + 0x3d, 0x58, 0x15, 0xd7, 0xa9, 0xbe, 0x5d, 0xfd, 0x95, 0x14, 0x55, 0x3d, + 0x32, 0x9f, 0x37, 0x4e, 0x1c, 0xe7, 0x44, 0x4f, 0x9e, 0x4f, 0x56, 0xc7, + 0xcb, 0xf0, 0xc7, 0xef, 0xef, 0x67, 0xcb, 0x00, 0xb3, 0x76, 0x83, 0xea, + 0x6d, 0x0d, 0xab, 0xe1, 0x0d, 0x05, 0x70, 0x41, 0x75, 0x60, 0xc3, 0x99, + 0x5a, 0x3b, 0x67, 0x28, 0x00, 0x00, 0x00, 0x00, 0x46, 0xd1, 0xcf, 0xaa, + 0x7d, 0xab, 0x5b, 0x55, 0xbb, 0x54, 0x5f, 0x96, 0x64, 0xea, 0xdd, 0xb8, + 0x61, 0xdb, 0xe3, 0xa9, 0xd5, 0x03, 0xe4, 0x80, 0x59, 0x7b, 0x45, 0x86, + 0x02, 0xae, 0x74, 0x4a, 0x86, 0x02, 0x26, 0x92, 0x8d, 0x01, 0x93, 0xe9, + 0x6f, 0x1b, 0x3e, 0xd8, 0x33, 0xf8, 0x31, 0x7c, 0xb0, 0x75, 0xf3, 0xea, + 0x62, 0x29, 0xe0, 0x5a, 0xad, 0x5d, 0x3d, 0xbd, 0x7a, 0x7d, 0x75, 0x43, + 0x39, 0xa6, 0xde, 0x99, 0x0d, 0x6b, 0xe7, 0xfe, 0xbd, 0xba, 0x48, 0x0e, + 0x00, 0x00, 0x00, 0x18, 0x3b, 0x8e, 0x19, 0xe0, 0xaa, 0x8e, 0xad, 0x5e, + 0x50, 0xfd, 0x48, 0x0a, 0xb8, 0x56, 0x5b, 0x36, 0xac, 0xce, 0x5f, 0x4f, + 0x8a, 0xaa, 0x1e, 0x54, 0x7d, 0x41, 0x86, 0xc9, 0xe3, 0x83, 0xe3, 0xc9, + 0x74, 0x7a, 0x75, 0xb8, 0x0c, 0x55, 0x5d, 0xaf, 0xe1, 0x4c, 0x18, 0xe0, + 0x9a, 0x3d, 0xa4, 0x3a, 0xad, 0x3a, 0x38, 0x43, 0x01, 0xd3, 0x6c, 0x59, + 0x75, 0x42, 0xb5, 0x63, 0x75, 0x87, 0x86, 0xcd, 0x11, 0x86, 0x02, 0x00, + 0x00, 0x00, 0x60, 0x3c, 0x7d, 0xbd, 0xda, 0xad, 0xe1, 0xce, 0xd7, 0x7d, + 0xaa, 0x9f, 0x4a, 0x32, 0xd5, 0x1e, 0x59, 0xfd, 0x6f, 0xb5, 0x5f, 0xb5, + 0xb1, 0x1c, 0x70, 0x8d, 0xde, 0x96, 0xa1, 0x80, 0x2b, 0x1d, 0x9b, 0xa1, + 0x80, 0x89, 0x65, 0x63, 0xc0, 0xe4, 0xda, 0xac, 0xfa, 0x5e, 0xb5, 0xa1, + 0x14, 0x9d, 0x54, 0x6d, 0x2b, 0x03, 0xfc, 0x99, 0xdb, 0x54, 0x6f, 0x9d, + 0xf9, 0xc5, 0x80, 0xe9, 0x75, 0x7e, 0xf5, 0xde, 0xea, 0x1d, 0x99, 0x1a, + 0x07, 0x00, 0x00, 0x80, 0x49, 0xb5, 0x7e, 0xf5, 0xc4, 0xea, 0xf9, 0xd5, + 0x56, 0x72, 0x4c, 0xb5, 0xb3, 0xab, 0x97, 0x54, 0x1f, 0x91, 0x02, 0xfe, + 0x68, 0xe7, 0xea, 0xa3, 0x32, 0x54, 0xc3, 0x0d, 0x64, 0x5b, 0x57, 0xdf, + 0x94, 0x62, 0x32, 0x19, 0x0c, 0x98, 0x6c, 0xaf, 0x6b, 0x38, 0x13, 0x65, + 0xda, 0x2d, 0xaf, 0x6e, 0x5b, 0x7d, 0x5f, 0x0a, 0x68, 0x83, 0x6a, 0xef, + 0x99, 0xbf, 0xd6, 0x97, 0x63, 0x6a, 0x9d, 0xd5, 0x30, 0x0c, 0xf0, 0xde, + 0xea, 0x77, 0x72, 0x00, 0x00, 0x00, 0xc0, 0xd4, 0x70, 0xcc, 0x00, 0x55, + 0x9f, 0xaf, 0xfe, 0xb1, 0x61, 0x93, 0x00, 0x4c, 0xb3, 0x0d, 0xab, 0x6f, + 0x57, 0xb7, 0x92, 0xa2, 0xaa, 0x0f, 0x56, 0x4f, 0x91, 0x61, 0x72, 0x19, + 0x0c, 0x98, 0x6c, 0x1b, 0x35, 0x7c, 0xf8, 0x73, 0x53, 0x29, 0x7a, 0x5d, + 0xf5, 0x2a, 0x19, 0x98, 0x72, 0x0f, 0xad, 0x0e, 0xaa, 0x6e, 0x2f, 0xc5, + 0x54, 0x5a, 0x56, 0x7d, 0xae, 0x3a, 0xb0, 0x61, 0x1d, 0x94, 0x17, 0x00, + 0x00, 0x00, 0x00, 0x30, 0xbd, 0x6e, 0x56, 0x3d, 0xab, 0x7a, 0x5e, 0x8e, + 0x97, 0x9c, 0x56, 0x97, 0x55, 0xef, 0xaa, 0x5e, 0x59, 0x5d, 0x28, 0x07, + 0x53, 0x6a, 0xbf, 0x86, 0x9b, 0xe8, 0x18, 0x9e, 0x13, 0xee, 0x50, 0xfd, + 0x40, 0x8a, 0xc9, 0x65, 0x30, 0x60, 0xf2, 0x3d, 0xa7, 0x7a, 0xa7, 0x0c, + 0xfd, 0xb4, 0x61, 0xe2, 0xeb, 0x0a, 0x29, 0x98, 0x42, 0x9b, 0x37, 0x9c, + 0x91, 0xb4, 0x83, 0x14, 0x53, 0xe9, 0xa2, 0xea, 0xfd, 0x0d, 0x03, 0x01, + 0x67, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x5c, 0xc5, 0x06, 0x0d, 0x77, 0x87, + 0xbe, 0xa8, 0xe1, 0x03, 0x21, 0xa6, 0xcf, 0xd9, 0x33, 0xd7, 0xff, 0x28, + 0x29, 0x98, 0x32, 0x5b, 0x56, 0x67, 0x54, 0xeb, 0x49, 0x51, 0x0d, 0x83, + 0x42, 0xcf, 0x95, 0x61, 0xb2, 0x19, 0x0c, 0x98, 0x7c, 0x6b, 0x57, 0xff, + 0xe3, 0x45, 0x5d, 0x55, 0x0f, 0xac, 0x4e, 0x96, 0x81, 0x29, 0xb2, 0xce, + 0xcc, 0x0f, 0xf2, 0xd7, 0x35, 0x6c, 0x10, 0x61, 0xba, 0xfc, 0x72, 0xe6, + 0xc5, 0xdc, 0x41, 0xd5, 0xb9, 0x72, 0x00, 0x00, 0x00, 0x00, 0x2b, 0xb0, + 0xa4, 0x7a, 0x48, 0xc3, 0x31, 0x03, 0x8f, 0x94, 0x63, 0x2a, 0x9d, 0xd4, + 0x70, 0xbc, 0xc0, 0xb7, 0xa5, 0x60, 0x4a, 0x1c, 0xdf, 0xb0, 0x65, 0x97, + 0xba, 0xb8, 0x61, 0x50, 0xe2, 0xff, 0xa4, 0x98, 0x6c, 0x4b, 0x25, 0x98, + 0x78, 0x97, 0x57, 0xfb, 0xc8, 0x50, 0xd5, 0x8f, 0x24, 0x60, 0x8a, 0x3c, + 0xa4, 0x61, 0x28, 0xe8, 0xad, 0x19, 0x0a, 0x98, 0x36, 0x67, 0x55, 0x7b, + 0x56, 0xb7, 0xae, 0xf6, 0xcd, 0x50, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x72, + 0xcb, 0xab, 0x13, 0x1a, 0x36, 0x4e, 0x6e, 0x55, 0x1d, 0xde, 0xf0, 0xde, + 0x32, 0xd3, 0xe3, 0xc1, 0xd5, 0x37, 0x1b, 0x36, 0x8f, 0x7a, 0x3f, 0x91, + 0x49, 0xb7, 0x4b, 0x86, 0x02, 0xae, 0xea, 0xc0, 0x0c, 0x05, 0x4c, 0x05, + 0x1b, 0x03, 0xa6, 0xc7, 0x09, 0x0d, 0x1f, 0x14, 0x4e, 0xab, 0xef, 0x66, + 0x6b, 0x02, 0xd3, 0x61, 0xb3, 0xea, 0x5f, 0xab, 0x5d, 0xa5, 0x98, 0x3a, + 0x5f, 0xaa, 0xf6, 0xaf, 0x8e, 0x9d, 0xf9, 0x65, 0x1e, 0x00, 0x00, 0x00, + 0x60, 0x4d, 0xdc, 0xac, 0x7a, 0x56, 0xc3, 0x16, 0x81, 0xeb, 0xcb, 0x31, + 0x55, 0x7e, 0x5a, 0xbd, 0xbc, 0x3a, 0x4c, 0x0a, 0x26, 0xd0, 0x86, 0x0d, + 0x9b, 0x31, 0x6e, 0x25, 0x45, 0x55, 0xe7, 0x57, 0xb7, 0xa9, 0xce, 0x93, + 0x62, 0xf2, 0xd9, 0x18, 0x30, 0x3d, 0xf6, 0xaa, 0x96, 0x4d, 0xf1, 0xe3, + 0x3f, 0xde, 0xb7, 0x00, 0x13, 0x6e, 0x9d, 0x99, 0x5f, 0xd2, 0xbe, 0x9b, + 0xa1, 0x80, 0x69, 0xb2, 0xac, 0x61, 0x10, 0xe0, 0xde, 0xd5, 0xfd, 0xaa, + 0x63, 0x32, 0x14, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x8d, 0x9f, 0x35, 0x6c, + 0x23, 0xfc, 0xab, 0x86, 0xed, 0x84, 0x67, 0x4b, 0x32, 0x35, 0x36, 0xab, + 0x0e, 0x6d, 0xb8, 0xe1, 0xf0, 0xf6, 0x72, 0x30, 0x61, 0x5e, 0x9d, 0xa1, + 0x80, 0xab, 0xda, 0x3f, 0x43, 0x01, 0x53, 0xc3, 0xc6, 0x80, 0xe9, 0x72, + 0x78, 0xf5, 0x94, 0x29, 0x7d, 0xec, 0x8f, 0xaa, 0xfe, 0xcb, 0xb7, 0x00, + 0x13, 0xea, 0xfe, 0xd5, 0xc1, 0xd9, 0x8a, 0x31, 0x4d, 0x7e, 0x57, 0xbd, + 0xaf, 0x7a, 0x73, 0xf5, 0x13, 0x39, 0x00, 0x00, 0x00, 0x80, 0x05, 0xb0, + 0x4e, 0xf5, 0xe8, 0xea, 0x25, 0xd5, 0x3d, 0xe4, 0x98, 0x1a, 0x97, 0x34, + 0x7c, 0x70, 0xf8, 0xaf, 0xd5, 0x1f, 0xe4, 0x60, 0xcc, 0xdd, 0xb6, 0x3a, + 0xa3, 0x5a, 0x57, 0x8a, 0x6a, 0x18, 0x00, 0xdb, 0xb2, 0xba, 0x48, 0x8a, + 0xe9, 0x60, 0x63, 0xc0, 0x74, 0x79, 0x59, 0x75, 0xf1, 0x14, 0x3e, 0xee, + 0xcb, 0xab, 0x2f, 0xb8, 0xfc, 0x4c, 0xa0, 0x4d, 0x1a, 0x06, 0x02, 0xbe, + 0x90, 0xa1, 0x80, 0x69, 0xf1, 0xf3, 0xea, 0x35, 0x0d, 0x93, 0xfa, 0x2f, + 0xcc, 0x50, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x70, 0x2e, 0xab, 0x8e, 0xac, + 0xee, 0xd9, 0x70, 0xa3, 0x8a, 0xe3, 0x0c, 0xa7, 0xc3, 0xfa, 0x0d, 0x77, + 0x58, 0x9f, 0x51, 0x6d, 0x2b, 0x07, 0x63, 0xee, 0x3e, 0x19, 0x0a, 0xb8, + 0xaa, 0xd7, 0x66, 0x28, 0x60, 0xaa, 0x18, 0x0c, 0x98, 0x2e, 0xe7, 0x54, + 0x07, 0x4d, 0xe1, 0xe3, 0xfe, 0x7f, 0xd5, 0x05, 0x2e, 0x3f, 0x13, 0x66, + 0xd7, 0xea, 0xcc, 0x6a, 0x8f, 0x6a, 0x89, 0x1c, 0x13, 0xef, 0xf4, 0x6a, + 0xb7, 0x86, 0x81, 0x80, 0x7d, 0xab, 0xdf, 0x48, 0x02, 0x00, 0x00, 0x00, + 0x2c, 0xa2, 0x53, 0xaa, 0x1d, 0xaa, 0xad, 0x1a, 0x36, 0xd5, 0x5e, 0x26, + 0xc9, 0xc4, 0xdb, 0xb2, 0xe1, 0x68, 0x81, 0x43, 0x1a, 0x6e, 0x58, 0x82, + 0x71, 0x74, 0x3d, 0x09, 0xfe, 0xe8, 0x47, 0xd5, 0x7b, 0x65, 0x98, 0x2e, + 0x06, 0x03, 0xa6, 0xcf, 0xeb, 0xab, 0x5f, 0x4c, 0xd9, 0x63, 0x3e, 0xc1, + 0x65, 0x67, 0x82, 0xdc, 0xa6, 0xfa, 0x4c, 0x75, 0x58, 0x75, 0x23, 0x39, + 0x26, 0xde, 0x97, 0xaa, 0x1d, 0xfd, 0x92, 0x0d, 0x00, 0x00, 0x00, 0x8c, + 0xa8, 0x2b, 0x6f, 0x66, 0xd8, 0xa2, 0x3a, 0xb0, 0xe9, 0xdc, 0x58, 0x3b, + 0x4d, 0x96, 0x54, 0xff, 0x50, 0x7d, 0x67, 0xe6, 0xba, 0xc3, 0xb8, 0x31, + 0x18, 0xf0, 0x27, 0xaf, 0xac, 0x2e, 0x95, 0x61, 0xba, 0x18, 0x0c, 0x98, + 0x3e, 0x17, 0x36, 0x0c, 0x07, 0x4c, 0x93, 0xe3, 0x5d, 0x76, 0x26, 0xc0, + 0x3a, 0x0d, 0xab, 0xe3, 0x4f, 0xaf, 0xfe, 0x4e, 0x8e, 0x89, 0x77, 0xe5, + 0x40, 0xc0, 0xfd, 0xaa, 0x63, 0xb2, 0x96, 0x0f, 0x00, 0x00, 0x00, 0x18, + 0x6d, 0xff, 0x5f, 0xc3, 0x7b, 0x57, 0xb7, 0x6e, 0x38, 0x06, 0xd1, 0xb6, + 0xc3, 0xc9, 0x76, 0x93, 0xea, 0xd0, 0xea, 0xa4, 0xea, 0x76, 0x72, 0x30, + 0x46, 0x0c, 0x06, 0x0c, 0xce, 0xa8, 0x3e, 0x2c, 0xc3, 0xf4, 0x31, 0x18, + 0x30, 0x9d, 0xde, 0xd5, 0x30, 0xd1, 0x37, 0x0d, 0x2e, 0xac, 0xbe, 0xe6, + 0x92, 0x33, 0xe6, 0xb6, 0xa9, 0x4e, 0xab, 0xde, 0x5a, 0x5d, 0x47, 0x8e, + 0x89, 0xb5, 0xac, 0xe1, 0x6c, 0xbe, 0x7b, 0xf5, 0xa7, 0x81, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x71, 0xf2, 0xab, 0x86, 0x63, 0x10, 0x6f, 0x55, 0xed, + 0x59, 0xfd, 0x4c, 0x92, 0x89, 0xf6, 0xa0, 0x86, 0xf7, 0x2d, 0xf7, 0xcd, + 0xb9, 0xed, 0x8c, 0x87, 0xeb, 0x4b, 0x50, 0xd5, 0xcb, 0x1a, 0xde, 0x8f, + 0x66, 0xca, 0x18, 0x0c, 0x98, 0x4e, 0x97, 0x57, 0xaf, 0x98, 0x92, 0xc7, + 0xfa, 0xf9, 0xac, 0xde, 0x66, 0xbc, 0x5f, 0xa4, 0xbc, 0xad, 0x3a, 0xb9, + 0xba, 0x93, 0x1c, 0x13, 0xeb, 0xb2, 0x86, 0x63, 0x02, 0xee, 0xdc, 0x70, + 0x36, 0x9f, 0x61, 0x26, 0x00, 0x00, 0x00, 0x60, 0xdc, 0x5d, 0xd8, 0xf0, + 0xbe, 0xd6, 0xe6, 0xd5, 0xee, 0xd5, 0xf7, 0x25, 0x99, 0x58, 0x1b, 0x54, + 0xaf, 0xae, 0x4e, 0xad, 0xee, 0x23, 0x07, 0x23, 0xce, 0xc6, 0x80, 0x61, + 0x5b, 0xed, 0x71, 0x32, 0x4c, 0x27, 0x83, 0x01, 0xd3, 0xeb, 0x3f, 0xab, + 0x2f, 0x4e, 0xc1, 0xe3, 0x3c, 0xc1, 0xa5, 0x66, 0x4c, 0x3d, 0xa1, 0xfa, + 0x6e, 0xf5, 0x02, 0xcf, 0xd5, 0x13, 0xeb, 0xe2, 0xea, 0xa0, 0x86, 0x33, + 0xf8, 0x76, 0x6b, 0x7a, 0x36, 0xb9, 0x00, 0x00, 0x00, 0x00, 0xd3, 0xe3, + 0x0f, 0xd5, 0x61, 0xd5, 0x1d, 0xab, 0xa7, 0x57, 0x67, 0x4a, 0x32, 0xb1, + 0xee, 0x52, 0x9d, 0x52, 0xbd, 0xa3, 0xba, 0xae, 0x1c, 0x8c, 0x28, 0x83, + 0x01, 0xf5, 0x4a, 0x09, 0xa6, 0x97, 0x0f, 0x9b, 0xa6, 0xdb, 0x5e, 0x4d, + 0xfe, 0xb9, 0xd5, 0xc7, 0xbb, 0xcc, 0x8c, 0x99, 0x9b, 0x56, 0x47, 0x55, + 0x47, 0x34, 0x9c, 0xd5, 0xc5, 0xe4, 0xb9, 0xb0, 0x3a, 0xb0, 0x61, 0x20, + 0xe0, 0x05, 0x0d, 0x67, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x4c, 0xb2, 0xcb, + 0xaa, 0xf7, 0x37, 0x0c, 0x08, 0xec, 0x98, 0x8d, 0x89, 0x93, 0x6a, 0x69, + 0xf5, 0xdc, 0x86, 0x1b, 0x9e, 0x1e, 0x23, 0x07, 0x23, 0x68, 0xda, 0x07, + 0x03, 0x8e, 0x6b, 0xd8, 0xb4, 0xcd, 0x94, 0x5a, 0xb2, 0x7c, 0xf9, 0x72, + 0x15, 0xa6, 0xdb, 0x11, 0x0d, 0x77, 0x26, 0x4f, 0xa2, 0x9f, 0x56, 0xb7, + 0x70, 0x89, 0x19, 0x97, 0xe7, 0xe3, 0x6a, 0xd7, 0xea, 0x2d, 0xd5, 0x0d, + 0xe4, 0x98, 0x48, 0xbf, 0xaa, 0xde, 0xd9, 0xb0, 0x46, 0xef, 0x37, 0x72, + 0x00, 0x00, 0x00, 0x00, 0x53, 0xee, 0x7e, 0xd5, 0xde, 0xd5, 0x23, 0xa5, + 0x98, 0x58, 0x47, 0x36, 0x0c, 0x0a, 0xfc, 0x5a, 0x0a, 0x46, 0xc4, 0x99, + 0xd5, 0x6d, 0xa7, 0xf4, 0xb1, 0x2f, 0xaf, 0xb6, 0xae, 0x4e, 0xf3, 0x6d, + 0x30, 0xbd, 0x6c, 0x0c, 0xe0, 0x65, 0x0d, 0xeb, 0x9c, 0x26, 0x91, 0x6d, + 0x01, 0x8c, 0x8b, 0xbf, 0x6e, 0x38, 0xf6, 0xe2, 0xd0, 0x0c, 0x05, 0x4c, + 0xa2, 0x73, 0x1a, 0x36, 0x03, 0xdc, 0xba, 0xda, 0x37, 0x43, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x35, 0xac, 0x9d, 0xdf, 0xa1, 0xba, 0x7f, 0xf5, 0x69, + 0x39, 0x26, 0xd2, 0xce, 0xd5, 0xff, 0x56, 0xbb, 0x48, 0xc1, 0x88, 0x98, + 0xe6, 0x8d, 0x01, 0x47, 0x64, 0x28, 0x60, 0xea, 0x19, 0x0c, 0xe0, 0xc7, + 0x0d, 0x67, 0x5c, 0x4f, 0xa2, 0x13, 0x5d, 0x5e, 0xc6, 0xe0, 0x39, 0x78, + 0x8f, 0xea, 0xf4, 0x6a, 0x5b, 0x39, 0x26, 0xce, 0x2f, 0xaa, 0x7d, 0x1a, + 0x26, 0x50, 0x0f, 0xaa, 0x2e, 0x96, 0x04, 0x00, 0x00, 0x00, 0xe0, 0x2f, + 0x9c, 0x52, 0x3d, 0xa2, 0xba, 0x4f, 0x75, 0x6c, 0x93, 0x7f, 0xfc, 0xed, + 0xb4, 0xb9, 0x71, 0xf5, 0x91, 0x99, 0x6b, 0x6b, 0xc3, 0x2f, 0x8b, 0xed, + 0xba, 0x53, 0xfa, 0xb8, 0x7f, 0x5f, 0xbd, 0xc2, 0xe5, 0xc7, 0x51, 0x02, + 0x54, 0x6d, 0x52, 0x9d, 0x55, 0x6d, 0x3a, 0x41, 0x8f, 0x69, 0x79, 0x75, + 0xf3, 0xea, 0xe7, 0x2e, 0x2f, 0x23, 0x6a, 0x8b, 0xea, 0xdf, 0xab, 0x07, + 0x4a, 0x31, 0x71, 0x7e, 0xd1, 0x70, 0x24, 0xc4, 0x81, 0x33, 0x2f, 0xb8, + 0x00, 0x00, 0x00, 0x00, 0x98, 0xbd, 0xbb, 0x56, 0x2f, 0xaf, 0x1e, 0xd7, + 0x70, 0xfc, 0x26, 0x93, 0xe3, 0x82, 0xea, 0xa5, 0xd5, 0x7b, 0x32, 0x00, + 0xc2, 0xc2, 0x5b, 0xb7, 0xc9, 0xdd, 0xa0, 0xbd, 0x32, 0xaf, 0xaa, 0x5e, + 0xe7, 0x5b, 0x00, 0x1b, 0x03, 0xa8, 0x61, 0xad, 0xf5, 0xa4, 0x3d, 0x21, + 0x7c, 0x2b, 0x43, 0x01, 0x8c, 0xa6, 0xb5, 0x1b, 0xce, 0x4e, 0xfb, 0x56, + 0x86, 0x02, 0x26, 0xcd, 0xd9, 0xd5, 0x9e, 0x0d, 0x47, 0x06, 0xec, 0x9f, + 0xa1, 0x00, 0x00, 0x00, 0x00, 0x80, 0xd5, 0xf1, 0xcd, 0x86, 0xd5, 0xf3, + 0x5b, 0x35, 0x9c, 0x51, 0xef, 0x03, 0xe4, 0xc9, 0x71, 0xbd, 0xea, 0xe0, + 0xea, 0xf3, 0xd5, 0x96, 0x72, 0xb0, 0xc0, 0xae, 0x3f, 0xa5, 0x8f, 0xfb, + 0x07, 0xd5, 0x9b, 0x5c, 0x7e, 0xca, 0x60, 0x00, 0x7f, 0xf2, 0x8e, 0x86, + 0xad, 0x01, 0x93, 0xe2, 0x78, 0x97, 0x94, 0x11, 0xf4, 0xb7, 0xd5, 0x57, + 0xab, 0xfd, 0xaa, 0xf5, 0xe4, 0x98, 0x18, 0x57, 0x0e, 0x04, 0xdc, 0xb6, + 0x7a, 0x5b, 0x75, 0x89, 0x24, 0x00, 0x00, 0x00, 0x00, 0x6b, 0xec, 0xf4, + 0x0c, 0x08, 0x4c, 0xaa, 0x07, 0x34, 0x0c, 0x80, 0xec, 0x5d, 0xad, 0x25, + 0x07, 0x0b, 0xe4, 0x7a, 0x53, 0xfa, 0xb8, 0xf7, 0xcc, 0x7b, 0xd6, 0xcc, + 0x30, 0x18, 0xc0, 0x95, 0x2e, 0x6b, 0x58, 0xcf, 0x34, 0x29, 0x4e, 0x70, + 0x49, 0x19, 0x21, 0xeb, 0x55, 0xff, 0x5a, 0x9d, 0x5a, 0x6d, 0x2d, 0xc7, + 0xc4, 0x38, 0xbb, 0x7a, 0x6e, 0xc3, 0x74, 0xb3, 0x81, 0x00, 0x00, 0x00, + 0x00, 0x80, 0xf9, 0x71, 0xe5, 0x80, 0xc0, 0xbd, 0xab, 0x4f, 0xca, 0x31, + 0x31, 0x36, 0x6c, 0xb8, 0x81, 0xea, 0x0b, 0x0d, 0x37, 0xdc, 0xc0, 0x7c, + 0x9b, 0xc6, 0xc1, 0x80, 0xcf, 0x54, 0xc7, 0xba, 0xf4, 0x5c, 0x69, 0xc9, + 0xf2, 0xe5, 0x86, 0xec, 0xf8, 0x33, 0xa7, 0x54, 0xdb, 0x8c, 0xf9, 0x63, + 0xb8, 0xb4, 0xda, 0xb4, 0xfa, 0x9d, 0xcb, 0xc9, 0x08, 0xf8, 0x9b, 0xea, + 0xd0, 0x86, 0xb3, 0xd1, 0x98, 0x0c, 0x67, 0x57, 0x07, 0x34, 0xac, 0x3d, + 0x33, 0x0c, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xb0, 0xfe, 0xb6, 0x7a, 0x45, + 0xf5, 0xb8, 0x6a, 0x89, 0x1c, 0x13, 0xe1, 0xf7, 0xd5, 0x6b, 0xaa, 0x37, + 0x56, 0xcb, 0xe4, 0x60, 0x9e, 0x3c, 0xa4, 0xe9, 0xba, 0xa9, 0xf4, 0x0f, + 0x0d, 0x9f, 0x4f, 0x7c, 0xcf, 0xa5, 0xe7, 0x4a, 0x36, 0x06, 0x70, 0x75, + 0x4f, 0xaf, 0xbe, 0x31, 0xe6, 0x8f, 0xe1, 0x2b, 0x19, 0x0a, 0x60, 0xf1, + 0xad, 0xdd, 0xb0, 0x0a, 0xeb, 0xbf, 0x33, 0x14, 0x30, 0x29, 0x1c, 0x19, + 0x00, 0x00, 0x00, 0x00, 0xb0, 0xf8, 0x1c, 0x31, 0x30, 0x79, 0x36, 0x68, + 0xd8, 0x1e, 0x70, 0x72, 0xb5, 0x85, 0x1c, 0xcc, 0x93, 0x69, 0xdb, 0x18, + 0xf0, 0xc6, 0x0c, 0x05, 0x70, 0x35, 0x06, 0x03, 0xb8, 0xba, 0xef, 0x55, + 0xf7, 0xaa, 0xf6, 0x69, 0x98, 0x26, 0x1a, 0x47, 0xc7, 0xbb, 0x8c, 0x2c, + 0xb2, 0x3b, 0x57, 0xff, 0x6f, 0xe6, 0xc5, 0xec, 0xba, 0x72, 0x8c, 0xbd, + 0x9f, 0x36, 0x1c, 0x19, 0xb0, 0x45, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x46, 0xc5, 0x95, 0x03, 0x02, 0xf7, 0x6a, 0x58, 0x97, 0xcd, 0xf8, 0xdb, + 0xa6, 0xe1, 0xc6, 0xc5, 0x7f, 0xc8, 0x36, 0x08, 0xe6, 0xde, 0xf5, 0xa7, + 0xe8, 0xb1, 0x9e, 0xdd, 0xf0, 0xf9, 0x04, 0xfc, 0x19, 0x83, 0x01, 0x5c, + 0x93, 0xcb, 0xab, 0xfd, 0xab, 0xbb, 0x57, 0x5f, 0x1f, 0xc3, 0xaf, 0xdf, + 0x60, 0x00, 0x8b, 0xf9, 0x9c, 0xfa, 0xc2, 0xea, 0xd4, 0xea, 0x6e, 0x72, + 0x8c, 0xbd, 0xf3, 0x1a, 0x86, 0xa4, 0xb6, 0xac, 0xde, 0xd5, 0x70, 0x4c, + 0x09, 0x00, 0x00, 0x00, 0x00, 0xa3, 0xe5, 0xbf, 0xab, 0x87, 0x37, 0x7c, + 0xa8, 0xfc, 0x79, 0x39, 0xc6, 0xde, 0xc6, 0xd5, 0x21, 0xd5, 0xa7, 0xab, + 0x5b, 0xc8, 0xc1, 0x1c, 0x9a, 0xa6, 0x8d, 0x01, 0x2f, 0xaa, 0x2e, 0x72, + 0xc9, 0xb9, 0x3a, 0x83, 0x01, 0xac, 0xc8, 0xb7, 0xaa, 0x7b, 0x37, 0x7c, + 0x30, 0x36, 0x2e, 0x1f, 0x88, 0x9d, 0xdf, 0x78, 0x0e, 0x33, 0x30, 0xfe, + 0xfe, 0xba, 0x3a, 0xa9, 0x7a, 0x6b, 0xb5, 0x9e, 0x1c, 0x63, 0xed, 0xa2, + 0x86, 0xe1, 0xa8, 0xdb, 0xcc, 0xfc, 0xfd, 0xf7, 0x92, 0x00, 0x00, 0x00, + 0x00, 0x8c, 0xbc, 0x2f, 0x57, 0x0f, 0xae, 0xb6, 0x6b, 0xfc, 0x8f, 0xcb, + 0xa5, 0xfe, 0xae, 0xe1, 0x33, 0x8a, 0x3d, 0xa4, 0x60, 0x8e, 0x4c, 0xcb, + 0x60, 0xc0, 0x89, 0xd5, 0x51, 0x2e, 0x37, 0xd7, 0xc4, 0x60, 0x00, 0x2b, + 0x73, 0xd5, 0xed, 0x01, 0xe3, 0xf0, 0x62, 0xea, 0x73, 0xd5, 0x15, 0x2e, + 0x1b, 0x0b, 0x68, 0xc9, 0xcc, 0x8b, 0xd3, 0xd3, 0xab, 0x07, 0xc8, 0x31, + 0xd6, 0x2e, 0x6d, 0x98, 0x46, 0xde, 0xa2, 0x61, 0x20, 0xea, 0x7c, 0x49, + 0x00, 0x00, 0x00, 0x00, 0xc6, 0xce, 0x09, 0x0d, 0xef, 0x67, 0xef, 0x92, + 0xf3, 0xb5, 0xc7, 0xdd, 0xf5, 0xaa, 0x83, 0xab, 0xe3, 0xaa, 0x9b, 0xcb, + 0xc1, 0x1c, 0x7c, 0x3f, 0x4d, 0xba, 0x4b, 0xab, 0xe7, 0xbb, 0xd4, 0x5c, + 0x1b, 0x83, 0x01, 0xcc, 0xd6, 0x19, 0xd5, 0x7d, 0xaa, 0xd7, 0x56, 0x97, + 0x8d, 0xe8, 0xd7, 0x78, 0x59, 0x75, 0xb4, 0x4b, 0xc5, 0x02, 0xba, 0xd5, + 0xcc, 0x2f, 0x1a, 0x07, 0x57, 0x1b, 0xc9, 0x31, 0xb6, 0x2e, 0xaf, 0x0e, + 0xaf, 0x6e, 0x5f, 0x3d, 0xab, 0xfa, 0xb9, 0x24, 0x00, 0x00, 0x00, 0x00, + 0x63, 0x6d, 0x79, 0x75, 0x64, 0x75, 0x87, 0x86, 0x01, 0x81, 0x1f, 0x49, + 0x32, 0xd6, 0xb6, 0x6f, 0xd8, 0x1e, 0xf0, 0x14, 0x29, 0x58, 0x03, 0xd7, + 0x9d, 0x82, 0xc7, 0xf8, 0xb6, 0xea, 0x3b, 0x2e, 0x35, 0xd7, 0xc6, 0x60, + 0x00, 0xab, 0xe2, 0xd2, 0xea, 0x9f, 0x1b, 0xa6, 0x2d, 0x4f, 0x1b, 0xa1, + 0xaf, 0xeb, 0xdb, 0x0d, 0x77, 0xf7, 0xde, 0xb2, 0xfa, 0xa0, 0xcb, 0xc4, + 0x02, 0x79, 0x46, 0xf5, 0x3f, 0xd5, 0xb6, 0x52, 0x8c, 0xad, 0x65, 0xd5, + 0x87, 0xab, 0x3b, 0x56, 0xbb, 0xf9, 0x05, 0x11, 0x00, 0x00, 0x00, 0x60, + 0xe2, 0x2c, 0x6b, 0x18, 0x10, 0xb8, 0x63, 0xf5, 0x4f, 0xd5, 0xaf, 0x24, + 0x19, 0x5b, 0x9b, 0x34, 0xdc, 0xdc, 0xf3, 0xc1, 0x99, 0x7f, 0x86, 0xd5, + 0xf9, 0x1e, 0x9a, 0x64, 0x3f, 0xaf, 0x5e, 0xe7, 0x32, 0xb3, 0x22, 0x06, + 0x03, 0x58, 0x1d, 0xff, 0x53, 0xdd, 0xab, 0xe1, 0xc3, 0xf8, 0x4b, 0x17, + 0xe9, 0x6b, 0x38, 0xbf, 0x61, 0xe5, 0xf7, 0xfd, 0xab, 0x3b, 0x35, 0x1c, + 0x77, 0xf0, 0x0b, 0x97, 0x86, 0x05, 0x70, 0xc3, 0xea, 0x3f, 0xab, 0x7f, + 0x6f, 0x3a, 0x26, 0x0c, 0x27, 0xd5, 0x09, 0xd5, 0x3d, 0xaa, 0x27, 0x56, + 0x67, 0xc9, 0x01, 0x00, 0x00, 0x00, 0x30, 0xd1, 0x2e, 0xa9, 0xde, 0x52, + 0x6d, 0x9e, 0x23, 0x24, 0xc7, 0xdd, 0x93, 0x1a, 0x6e, 0x16, 0x7c, 0xb8, + 0x14, 0xac, 0xa2, 0x49, 0x3f, 0x4a, 0xe0, 0xc5, 0xd5, 0x6f, 0x5d, 0x66, + 0x56, 0x64, 0xc9, 0xf2, 0xe5, 0xcb, 0x55, 0x60, 0x4d, 0xfc, 0x4d, 0x75, + 0x68, 0x75, 0xd7, 0x05, 0xf8, 0xdf, 0xba, 0xa2, 0x3a, 0xa9, 0x61, 0x2a, + 0xf0, 0xc8, 0xea, 0xf7, 0xf2, 0xb3, 0xc0, 0x1e, 0x5a, 0x7d, 0xa0, 0xda, + 0x4c, 0x8a, 0xb1, 0xf5, 0xe5, 0xea, 0xe5, 0xd5, 0x17, 0xa4, 0x00, 0x00, + 0x00, 0x00, 0x98, 0x5a, 0x37, 0xa8, 0x5e, 0x5a, 0xbd, 0xa0, 0xda, 0x40, + 0x8e, 0xb1, 0xb4, 0xbc, 0x3a, 0x68, 0xe6, 0x3a, 0xfe, 0x41, 0x0e, 0x66, + 0xe1, 0xd4, 0x6a, 0xeb, 0x09, 0x7d, 0x6c, 0xa7, 0x54, 0x0f, 0x98, 0xf9, + 0x73, 0x01, 0xd7, 0xca, 0x60, 0x00, 0x73, 0x61, 0x9d, 0x86, 0x35, 0x4c, + 0xaf, 0x9d, 0xf9, 0xe7, 0xb9, 0xf6, 0x9d, 0x86, 0xe1, 0x83, 0x43, 0x73, + 0xf6, 0x37, 0x8b, 0x63, 0x83, 0x86, 0xad, 0x14, 0xff, 0x58, 0x2d, 0x91, + 0x63, 0x2c, 0x9d, 0x56, 0xbd, 0xac, 0xfa, 0x8c, 0x14, 0x00, 0x00, 0x00, + 0x00, 0xcc, 0xb8, 0x79, 0xc3, 0xf1, 0xb9, 0xcf, 0xa8, 0xd6, 0x96, 0x63, + 0x2c, 0x7d, 0xb3, 0x7a, 0x4a, 0xf5, 0xbf, 0x52, 0xb0, 0x12, 0xdf, 0xaf, + 0x6e, 0x33, 0x81, 0x8f, 0xeb, 0x8a, 0x86, 0x81, 0x87, 0xd3, 0x5d, 0x62, + 0x56, 0xc6, 0x60, 0x00, 0x73, 0xe9, 0x9e, 0xd5, 0xfb, 0x1b, 0xce, 0x6b, + 0x5a, 0x53, 0xe7, 0x55, 0x47, 0x34, 0xdc, 0x9d, 0x7d, 0xaa, 0xb4, 0x2c, + 0xa2, 0x3b, 0x35, 0x9c, 0x5b, 0xf5, 0xb7, 0x52, 0x8c, 0xa5, 0x73, 0x1a, + 0x86, 0x96, 0xde, 0x3b, 0xf3, 0x02, 0x09, 0x00, 0x00, 0x00, 0x00, 0xae, + 0xee, 0x76, 0x0d, 0xef, 0x21, 0xed, 0x2c, 0xc5, 0x58, 0xba, 0xa4, 0xda, + 0xb7, 0x7a, 0x63, 0xb5, 0x4c, 0x0e, 0xae, 0xc5, 0xd9, 0xd5, 0x2d, 0x26, + 0xf0, 0x71, 0x1d, 0x58, 0xbd, 0xd0, 0xe5, 0x65, 0x36, 0x0c, 0x06, 0x30, + 0xd7, 0xd6, 0x9f, 0xf9, 0x01, 0xbc, 0x57, 0xb5, 0xd6, 0x2a, 0xfe, 0x77, + 0x97, 0x55, 0x9f, 0x6b, 0x38, 0x2a, 0xe0, 0x63, 0xd5, 0xc5, 0x72, 0xb2, + 0x98, 0xcf, 0x8f, 0x0d, 0xab, 0xc4, 0xf6, 0xaf, 0xd6, 0x93, 0x63, 0xec, + 0xfc, 0xae, 0x3a, 0x60, 0xe6, 0xfa, 0x39, 0x76, 0x04, 0x00, 0x00, 0x00, + 0x80, 0xd9, 0xb8, 0x77, 0xf5, 0xa6, 0x6a, 0x1b, 0x29, 0xc6, 0xd2, 0x09, + 0xd5, 0xee, 0xd5, 0xff, 0x49, 0xc1, 0x35, 0xf8, 0xdb, 0xea, 0xe3, 0xd5, + 0xad, 0x27, 0xe8, 0x31, 0xfd, 0xb2, 0x61, 0xb0, 0xe9, 0x7c, 0x97, 0x97, + 0xd9, 0x30, 0x18, 0xc0, 0x7c, 0xb9, 0x57, 0xc3, 0xf6, 0x80, 0x3b, 0xcc, + 0xe2, 0xdf, 0xfd, 0x6e, 0xf5, 0x91, 0x99, 0x7f, 0xff, 0x27, 0xd2, 0x31, + 0x02, 0x6e, 0x3a, 0xf3, 0xfd, 0xf8, 0x70, 0x29, 0xc6, 0xce, 0x65, 0x33, + 0xd7, 0xee, 0x55, 0x33, 0x2f, 0x8a, 0x00, 0x00, 0x00, 0x00, 0x60, 0x55, + 0x2c, 0xa9, 0x1e, 0x57, 0xfd, 0x6b, 0x93, 0xb9, 0x76, 0x7c, 0xd2, 0xfd, + 0xba, 0xfa, 0x87, 0x86, 0x0f, 0x80, 0xe1, 0xea, 0x36, 0xad, 0x3e, 0x5a, + 0x6d, 0x3b, 0x21, 0x8f, 0xe7, 0xe9, 0x0d, 0xef, 0x87, 0xc3, 0xec, 0x7e, + 0xc0, 0x19, 0x0c, 0x60, 0x1e, 0xad, 0x68, 0x7b, 0xc0, 0x05, 0x0d, 0xc3, + 0x00, 0x87, 0x57, 0xa7, 0x48, 0xc5, 0x08, 0x79, 0x5c, 0x75, 0x70, 0x75, + 0x03, 0x29, 0xc6, 0xce, 0xb1, 0xd5, 0x8b, 0x1a, 0xce, 0x8a, 0x02, 0x00, + 0x00, 0x00, 0x80, 0x35, 0xb1, 0x4e, 0xf5, 0xb4, 0xea, 0x75, 0xd5, 0x8d, + 0xe4, 0x18, 0x3b, 0x87, 0x57, 0xcf, 0x6d, 0xd8, 0x2c, 0x0a, 0x57, 0xb5, + 0xf6, 0xcc, 0x9f, 0xeb, 0xbd, 0xc7, 0xfc, 0x71, 0x9c, 0xda, 0x70, 0x93, + 0xae, 0xe3, 0x33, 0x98, 0x35, 0x83, 0x01, 0x2c, 0x84, 0xfb, 0x36, 0x4c, + 0x2c, 0xdd, 0xa6, 0xfa, 0x6c, 0xf5, 0x81, 0xea, 0xbf, 0x1a, 0xce, 0xfd, + 0x81, 0x51, 0x71, 0xdd, 0xea, 0xed, 0xd5, 0xae, 0x52, 0x8c, 0x9d, 0x53, + 0xaa, 0x97, 0x54, 0x5f, 0x95, 0x02, 0x00, 0x00, 0x00, 0x80, 0x39, 0xb6, + 0x49, 0xf5, 0xf2, 0xea, 0xf9, 0x39, 0x72, 0x74, 0xdc, 0x9c, 0x55, 0x3d, + 0xa5, 0xfa, 0x9a, 0x14, 0x5c, 0x83, 0x3d, 0xaa, 0x83, 0xaa, 0x75, 0xc7, + 0xf0, 0x6b, 0xbf, 0xa0, 0x61, 0x28, 0xe0, 0x4c, 0x97, 0x91, 0x55, 0x61, + 0x30, 0x80, 0x85, 0xb2, 0xc1, 0xcc, 0x0b, 0x28, 0x67, 0xfb, 0x30, 0x8a, + 0xee, 0x5e, 0x1d, 0x51, 0x6d, 0x21, 0xc5, 0x58, 0xf9, 0x5e, 0xf5, 0xca, + 0xea, 0x63, 0x95, 0x1f, 0x66, 0x00, 0x00, 0x00, 0x00, 0xcc, 0xa7, 0x5b, + 0x36, 0xbc, 0x17, 0xf5, 0xcc, 0x6a, 0xa9, 0x1c, 0x63, 0xe3, 0xf2, 0xea, + 0xf5, 0xd5, 0xbf, 0xe4, 0xce, 0x6a, 0xfe, 0xd2, 0xfd, 0x1a, 0xde, 0x5f, + 0xbe, 0xc9, 0x18, 0x7d, 0xcd, 0xcb, 0xaa, 0x1d, 0xab, 0xe3, 0x5c, 0x3e, + 0x56, 0x95, 0xc1, 0x00, 0x60, 0xaa, 0x9f, 0x03, 0xab, 0x17, 0x54, 0xff, + 0xd6, 0x78, 0x4e, 0x05, 0x4e, 0xab, 0x73, 0xab, 0x37, 0x56, 0x6f, 0xa9, + 0x2e, 0x95, 0x03, 0x00, 0x00, 0x00, 0x80, 0x05, 0xb4, 0x75, 0xc3, 0x7b, + 0x53, 0x0f, 0x96, 0x62, 0xac, 0x9c, 0xd8, 0xb0, 0x2d, 0xf6, 0x67, 0x52, + 0x70, 0x35, 0x9b, 0x55, 0x47, 0x57, 0xf7, 0x1c, 0x93, 0xaf, 0xf7, 0x65, + 0xd5, 0x7e, 0x2e, 0x1b, 0xab, 0xc3, 0x60, 0x00, 0x30, 0xad, 0x6e, 0xd4, + 0x70, 0xac, 0xc5, 0xf6, 0x52, 0x8c, 0x8d, 0xdf, 0x57, 0x6f, 0xae, 0xf6, + 0xaf, 0x2e, 0x94, 0x03, 0x00, 0x00, 0x00, 0x80, 0x45, 0xf4, 0xc8, 0x86, + 0xf7, 0xa9, 0xee, 0x28, 0xc5, 0xd8, 0xf8, 0x79, 0xc3, 0x70, 0xc0, 0x09, + 0x52, 0x70, 0x35, 0xeb, 0x57, 0xef, 0xae, 0x76, 0x1f, 0xf1, 0xaf, 0xf3, + 0xa8, 0x6a, 0xe7, 0x6c, 0xd0, 0x65, 0x35, 0x19, 0x0c, 0x00, 0xa6, 0xd1, + 0x83, 0xaa, 0x0f, 0x56, 0x37, 0x97, 0x62, 0x6c, 0x1c, 0xdb, 0xb0, 0xdd, + 0xe1, 0x47, 0x52, 0x00, 0x00, 0x00, 0x00, 0x30, 0x22, 0xd6, 0xae, 0x9e, + 0x5e, 0xbd, 0xae, 0xe1, 0x46, 0x24, 0x46, 0xdf, 0xf2, 0x86, 0x73, 0xe5, + 0xf7, 0xaa, 0x2e, 0x93, 0x83, 0xab, 0xd9, 0xa3, 0x7a, 0xc7, 0xcc, 0x9f, + 0xed, 0x51, 0x73, 0x7a, 0xb5, 0x4d, 0x75, 0x91, 0xcb, 0xc4, 0xea, 0x32, + 0x18, 0x00, 0x4c, 0x93, 0xb5, 0xaa, 0x57, 0x35, 0x9c, 0x05, 0xb6, 0x96, + 0x1c, 0x63, 0xe1, 0xb4, 0x6a, 0xcf, 0xea, 0x64, 0x29, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x51, 0x9b, 0x54, 0xfb, 0x56, 0xcf, 0x6d, 0x34, 0x3f, 0x50, + 0xe4, 0x2f, 0x7d, 0xad, 0x7a, 0x62, 0xf5, 0x43, 0x29, 0xb8, 0x9a, 0x87, + 0x55, 0x47, 0xcc, 0xfc, 0xb9, 0x1e, 0x15, 0xe7, 0x36, 0x1c, 0x75, 0xe0, + 0xfb, 0x95, 0x35, 0xb2, 0x54, 0x02, 0x60, 0x4a, 0xdc, 0xb2, 0x3a, 0xa9, + 0x7a, 0x75, 0x86, 0x02, 0xc6, 0xc1, 0xb9, 0x0d, 0x03, 0x01, 0xf7, 0xc8, + 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa3, 0xed, 0x37, 0xd5, 0x0b, 0xab, + 0xbb, 0x54, 0x9f, 0x92, 0x63, 0x2c, 0xdc, 0xb3, 0xe1, 0xa6, 0xa4, 0x27, + 0x48, 0xc1, 0xd5, 0x7c, 0xa6, 0xba, 0x77, 0xf5, 0x9d, 0x11, 0xf8, 0x5a, + 0x96, 0x37, 0x6c, 0x0a, 0x78, 0x4c, 0x86, 0x02, 0x98, 0x03, 0x36, 0x06, + 0x00, 0xd3, 0x60, 0xc7, 0xea, 0x7d, 0xd5, 0xa6, 0x52, 0x8c, 0xbc, 0xcb, + 0xaa, 0x77, 0x55, 0xff, 0x5c, 0x5d, 0x20, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x63, 0x68, 0x87, 0xea, 0x2d, 0xd5, 0x6d, 0xa4, 0x18, 0x0b, 0x87, 0x57, + 0xcf, 0xae, 0x2e, 0x96, 0x82, 0xab, 0xd8, 0xb8, 0x3a, 0xac, 0x7a, 0xf4, + 0x02, 0xff, 0xef, 0xfe, 0xba, 0xe1, 0x26, 0xc7, 0x13, 0xaa, 0x4f, 0x56, + 0xe7, 0xb8, 0x14, 0xcc, 0x15, 0x83, 0x01, 0xc0, 0x24, 0x5b, 0xaf, 0xfa, + 0xb7, 0xea, 0xf9, 0xd5, 0x12, 0x39, 0x46, 0xde, 0x09, 0x0d, 0x5b, 0x02, + 0xfe, 0x57, 0x0a, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xdc, 0x3a, 0x0d, 0x47, + 0x0b, 0xfc, 0x4b, 0x75, 0x5d, 0x39, 0x46, 0xde, 0xb7, 0x1b, 0xb6, 0x07, + 0x9c, 0x21, 0x05, 0x57, 0xb1, 0xa4, 0x7a, 0x69, 0xf5, 0x86, 0xe6, 0x6f, + 0x0b, 0xfb, 0xe5, 0x0d, 0x5b, 0x01, 0x8e, 0xad, 0x8e, 0x69, 0xd8, 0x64, + 0xb1, 0x4c, 0x7a, 0xe6, 0xe5, 0x1b, 0xda, 0x60, 0x00, 0x30, 0xa1, 0x6e, + 0x53, 0x1d, 0x59, 0x6d, 0x25, 0xc5, 0xc8, 0xfb, 0x6e, 0xf5, 0xa2, 0xea, + 0xd3, 0x52, 0x00, 0x00, 0x00, 0x00, 0x30, 0x61, 0x6e, 0xd6, 0xf0, 0xa1, + 0xe2, 0x6e, 0x39, 0xde, 0x79, 0xd4, 0x5d, 0x54, 0x3d, 0xa7, 0x61, 0x83, + 0x00, 0x5c, 0xd5, 0xce, 0xd5, 0xfb, 0xab, 0xeb, 0xcc, 0xd1, 0xff, 0xbf, + 0x1f, 0x36, 0xdc, 0x28, 0x77, 0x42, 0xf5, 0xd9, 0x6c, 0xcf, 0x65, 0x81, + 0x18, 0x0c, 0x00, 0x26, 0xd1, 0x0e, 0xd5, 0xa1, 0xd5, 0x26, 0x52, 0x8c, + 0xb4, 0xf3, 0xab, 0xfd, 0x1a, 0xd6, 0xaa, 0x5d, 0x2a, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x13, 0x6c, 0xeb, 0xea, 0xad, 0xd5, 0xfd, 0xa4, 0x18, 0x79, + 0x8e, 0x16, 0xe0, 0x9a, 0xfc, 0x4d, 0xf5, 0xf1, 0x6a, 0xf3, 0xd5, 0xf8, + 0xef, 0xfe, 0xae, 0xfa, 0x6a, 0xc3, 0x56, 0x80, 0x4f, 0x54, 0x3f, 0x96, + 0x93, 0xc5, 0x60, 0x30, 0x00, 0x98, 0x24, 0x6b, 0x57, 0xaf, 0xac, 0x5e, + 0x95, 0xe9, 0xdb, 0x51, 0xb6, 0xac, 0xfa, 0x60, 0xb5, 0x57, 0xf5, 0x4b, + 0x39, 0x00, 0x00, 0x00, 0x00, 0x98, 0x12, 0x4b, 0xaa, 0xc7, 0x55, 0x6f, + 0xac, 0x6e, 0x25, 0xc7, 0x48, 0x3b, 0xad, 0xe1, 0x2e, 0xf1, 0x1f, 0x48, + 0xc1, 0x55, 0x6c, 0x5a, 0x7d, 0xa4, 0x7a, 0xc8, 0x4a, 0xfe, 0xbd, 0x2b, + 0xaa, 0x6f, 0xf6, 0xa7, 0xad, 0x00, 0x5f, 0xa8, 0x2e, 0x93, 0x8f, 0x45, + 0xff, 0x21, 0x64, 0x30, 0x00, 0x98, 0x10, 0x9b, 0x55, 0x1f, 0xce, 0xc4, + 0xed, 0xa8, 0x3b, 0xa5, 0xfa, 0xc7, 0x86, 0x33, 0x93, 0x00, 0x00, 0x00, + 0x00, 0x60, 0x1a, 0x5d, 0xa7, 0x7a, 0x79, 0xf5, 0xe2, 0x6a, 0x3d, 0x39, + 0x46, 0xd6, 0xf9, 0xd5, 0x53, 0x1b, 0xee, 0xf0, 0x86, 0x2b, 0xad, 0x5d, + 0xbd, 0xae, 0xda, 0xfb, 0x6a, 0xff, 0xf7, 0x9f, 0x57, 0xc7, 0x57, 0xc7, + 0x54, 0x27, 0x56, 0xe7, 0x49, 0xc5, 0xa8, 0x31, 0x18, 0x00, 0x4c, 0x82, + 0x07, 0x55, 0x47, 0x54, 0x37, 0x95, 0x62, 0x64, 0x9d, 0x5b, 0xbd, 0xb6, + 0x3a, 0xa8, 0x61, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0xbb, 0x2d, + 0xaa, 0x03, 0xab, 0x47, 0x48, 0x31, 0xb2, 0x96, 0x37, 0xbc, 0xa7, 0xb9, + 0x57, 0xee, 0xf8, 0xe6, 0xcf, 0x3d, 0xb3, 0x7a, 0x74, 0xf5, 0xd9, 0xea, + 0x33, 0xd5, 0x99, 0x92, 0x30, 0xea, 0x0c, 0x06, 0x00, 0x63, 0xfd, 0x1c, + 0x56, 0xbd, 0xb4, 0x7a, 0x7d, 0xb5, 0x96, 0x1c, 0x23, 0xe9, 0xca, 0x63, + 0x03, 0x5e, 0xd4, 0x30, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xb9, + 0x1d, 0x1a, 0x3e, 0x7c, 0x76, 0xbc, 0xc0, 0xe8, 0xfa, 0x62, 0xf5, 0x84, + 0xea, 0xff, 0xa4, 0x00, 0xc6, 0x95, 0xc1, 0x00, 0x60, 0x5c, 0x6d, 0x5a, + 0x1d, 0x9e, 0x69, 0xda, 0x51, 0x76, 0x6a, 0xf5, 0xdc, 0xea, 0xbf, 0xa5, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x15, 0xda, 0xb0, 0xe1, 0x26, 0xa8, 0x7d, + 0x72, 0xbc, 0xc0, 0xa8, 0xfa, 0x55, 0xf5, 0x94, 0x86, 0x3b, 0xc4, 0x01, + 0xc6, 0xce, 0x52, 0x09, 0x80, 0x31, 0x74, 0xf7, 0x86, 0x0f, 0x9b, 0x0d, + 0x05, 0x8c, 0xa6, 0xf3, 0xaa, 0x3d, 0xab, 0x7b, 0x65, 0x28, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x66, 0xe3, 0xe2, 0x6a, 0xdf, 0xea, 0x2e, 0xd5, 0xa7, + 0xe5, 0x18, 0x49, 0x37, 0x9a, 0xb9, 0x36, 0xfb, 0xe5, 0xf3, 0x35, 0x60, + 0x0c, 0xd9, 0x18, 0x00, 0x8c, 0x9b, 0x17, 0x54, 0x6f, 0xac, 0xd6, 0x95, + 0x62, 0xe4, 0x5c, 0x51, 0xbd, 0xab, 0x7a, 0x55, 0x75, 0xbe, 0x1c, 0x00, + 0x00, 0x00, 0x00, 0xb0, 0xda, 0x76, 0xa9, 0x0e, 0xa8, 0x6e, 0x21, 0xc5, + 0x48, 0xfa, 0x54, 0xb5, 0x6b, 0x8e, 0x4f, 0x05, 0xc6, 0x88, 0xc1, 0x00, + 0x60, 0x5c, 0xac, 0x5f, 0xbd, 0xb3, 0x7a, 0x9a, 0x14, 0x23, 0xe9, 0xd4, + 0xea, 0x79, 0xd5, 0xd7, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x80, 0x39, 0xe1, + 0x78, 0x81, 0xd1, 0x76, 0x76, 0xf5, 0xd8, 0x86, 0xf7, 0x46, 0x01, 0x46, + 0x9e, 0xc1, 0x00, 0x60, 0x1c, 0xdc, 0xb2, 0x3a, 0xaa, 0xba, 0x87, 0x14, + 0x23, 0xe7, 0xfc, 0x86, 0x15, 0x67, 0x07, 0x55, 0xcb, 0xe4, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x39, 0x77, 0xdb, 0x86, 0x4d, 0x9d, 0xdb, 0x4a, 0x31, + 0x72, 0x2e, 0xa9, 0x9e, 0x53, 0x7d, 0x40, 0x0a, 0x60, 0xd4, 0x19, 0x0c, + 0x00, 0x46, 0xdd, 0x03, 0xab, 0x8f, 0x56, 0x37, 0x96, 0x62, 0xe4, 0x1c, + 0x5b, 0x3d, 0xbb, 0xfa, 0xa9, 0x14, 0x00, 0x00, 0x00, 0x00, 0x30, 0xaf, + 0x96, 0x34, 0xac, 0xae, 0x3f, 0xa0, 0xba, 0xa1, 0x1c, 0x23, 0xe7, 0x90, + 0xea, 0x1f, 0xab, 0xcb, 0xa4, 0x00, 0x46, 0xd5, 0x52, 0x09, 0x80, 0x11, + 0xb6, 0x47, 0x75, 0x7c, 0x86, 0x02, 0x46, 0xcd, 0x0f, 0xab, 0x87, 0x57, + 0x3b, 0x64, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc2, 0xf2, 0xea, + 0xb0, 0xea, 0xce, 0xd5, 0xe1, 0x33, 0xff, 0x99, 0xd1, 0xb1, 0x47, 0x75, + 0x62, 0x75, 0x13, 0x29, 0x80, 0x51, 0x65, 0x63, 0x00, 0x30, 0x8a, 0xd6, + 0xaf, 0x0e, 0xae, 0x76, 0x93, 0x62, 0xa4, 0x5c, 0xd6, 0xb0, 0xb2, 0xec, + 0xe5, 0xd5, 0x45, 0x72, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xa2, 0x79, 0x50, + 0xf5, 0xee, 0xea, 0x76, 0x52, 0x8c, 0x94, 0x73, 0xaa, 0x9d, 0xaa, 0xaf, + 0x49, 0x01, 0x8c, 0x1a, 0x83, 0x01, 0xc0, 0xa8, 0xf9, 0xab, 0xea, 0xe8, + 0x6a, 0x6b, 0x29, 0x46, 0xca, 0x97, 0x1a, 0x8e, 0x0d, 0xf8, 0x96, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x30, 0x12, 0x36, 0xa8, 0xf6, 0xae, 0xf6, 0xa9, + 0xd6, 0x93, 0x63, 0x64, 0xfc, 0xa1, 0x7a, 0x5e, 0xf5, 0x5e, 0x29, 0x80, + 0x51, 0x62, 0x30, 0x00, 0x18, 0x25, 0x0f, 0xab, 0x3e, 0x54, 0xdd, 0x40, + 0x8a, 0x91, 0x71, 0x7e, 0xb5, 0x6f, 0x75, 0x50, 0xb5, 0x4c, 0x0e, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x39, 0xb7, 0x6d, 0xd8, 0xf4, 0xb9, 0xad, 0x14, + 0x23, 0xe5, 0x90, 0xea, 0xf9, 0xd5, 0xa5, 0x52, 0x00, 0xa3, 0x60, 0xa9, + 0x04, 0xc0, 0x08, 0x58, 0xd2, 0x30, 0xd5, 0x7a, 0x5c, 0x86, 0x02, 0x46, + 0xc9, 0x87, 0xaa, 0xdb, 0x57, 0x6f, 0xcb, 0x50, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x8c, 0xaa, 0xef, 0x55, 0x0f, 0xad, 0x9e, 0x55, 0xfd, 0x46, 0x8e, + 0x91, 0xb1, 0x47, 0x75, 0x42, 0x75, 0x53, 0x29, 0x80, 0x51, 0x60, 0x63, + 0x00, 0xb0, 0xd8, 0x36, 0xac, 0x3e, 0x50, 0xed, 0x2c, 0xc5, 0xc8, 0x38, + 0xbb, 0xe1, 0xd8, 0x80, 0x4f, 0x4a, 0x01, 0x00, 0x00, 0x00, 0x00, 0x63, + 0xe5, 0x66, 0xd5, 0xdb, 0xab, 0xc7, 0x4a, 0x31, 0x32, 0x7e, 0x5a, 0x3d, + 0xba, 0x3a, 0x55, 0x0a, 0x60, 0x31, 0xd9, 0x18, 0x00, 0x2c, 0xa6, 0xcd, + 0xaa, 0x2f, 0x64, 0x28, 0x60, 0x54, 0x2c, 0x6f, 0x58, 0x6f, 0x75, 0xe7, + 0x0c, 0x05, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x38, 0xfa, 0x59, 0xb5, 0x53, + 0xb5, 0x63, 0xc3, 0x07, 0xd2, 0x2c, 0xbe, 0xcd, 0xaa, 0x2f, 0x56, 0xbb, + 0x4a, 0x01, 0x2c, 0x26, 0x83, 0x01, 0xc0, 0x62, 0xb9, 0x77, 0xc3, 0x84, + 0xe4, 0xdd, 0xa5, 0x18, 0x09, 0x3f, 0xe8, 0x4f, 0xeb, 0xc6, 0x7e, 0x2b, + 0x07, 0x00, 0x00, 0x00, 0x00, 0x8c, 0xb5, 0x63, 0x1a, 0x6e, 0x00, 0x3a, + 0xa4, 0xe1, 0x86, 0x20, 0x16, 0xd7, 0xfa, 0xd5, 0xa1, 0xd5, 0x7e, 0xf9, + 0x6c, 0x0e, 0x58, 0x24, 0x8e, 0x12, 0x00, 0x16, 0xc3, 0x13, 0xaa, 0xf7, + 0x55, 0x1b, 0x48, 0xb1, 0xe8, 0x2e, 0xaf, 0xde, 0x59, 0xbd, 0xbc, 0xba, + 0x48, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x98, 0x38, 0x0f, 0xa8, 0xfe, 0xbd, + 0xda, 0x52, 0x8a, 0x91, 0x70, 0x5c, 0xf5, 0xa4, 0xdc, 0xa0, 0x05, 0x2c, + 0x30, 0x53, 0x49, 0xc0, 0x42, 0x5a, 0x52, 0xed, 0x5b, 0x7d, 0x28, 0x43, + 0x01, 0xa3, 0xe0, 0x7f, 0xaa, 0xfb, 0x54, 0x2f, 0xcc, 0x50, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x4c, 0xaa, 0x93, 0xab, 0xbb, 0x56, 0xfb, 0x57, 0x57, + 0xc8, 0xb1, 0xe8, 0xfe, 0xbe, 0xe1, 0x68, 0x81, 0x5b, 0x49, 0x01, 0x2c, + 0x24, 0x1b, 0x03, 0x80, 0x85, 0xb2, 0x51, 0x75, 0x78, 0xf5, 0x68, 0x29, + 0x16, 0xdd, 0x25, 0x33, 0xbf, 0x04, 0xbc, 0xa1, 0xba, 0x54, 0x0e, 0x00, + 0x00, 0x00, 0x00, 0x98, 0x1a, 0xf7, 0x69, 0xd8, 0x1e, 0x70, 0x47, 0x29, + 0x16, 0xdd, 0xaf, 0xab, 0x9d, 0x1a, 0x06, 0x37, 0x00, 0xe6, 0x9d, 0xc1, + 0x00, 0x60, 0x21, 0x6c, 0x5e, 0x7d, 0xa2, 0xba, 0x8b, 0x14, 0x8b, 0xee, + 0x94, 0xea, 0x99, 0xd5, 0x99, 0x52, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x54, + 0x5a, 0xaf, 0x7a, 0x45, 0xb5, 0x4f, 0xb5, 0x8e, 0x1c, 0x8b, 0xea, 0x0f, + 0xd5, 0x1e, 0xd5, 0x61, 0x52, 0x00, 0xf3, 0xcd, 0x60, 0x00, 0x30, 0xdf, + 0xb6, 0xa9, 0x8e, 0xaa, 0x6e, 0x22, 0xc5, 0xa2, 0xba, 0xa4, 0xe1, 0x18, + 0x87, 0x37, 0x65, 0x5d, 0x18, 0x00, 0x00, 0x00, 0x00, 0x30, 0xdc, 0xc8, + 0x75, 0x68, 0xb5, 0x95, 0x14, 0x8b, 0xee, 0xc0, 0xea, 0x9f, 0xf2, 0xde, + 0x2d, 0x30, 0x8f, 0x0c, 0x06, 0x00, 0xf3, 0xe9, 0x19, 0xd5, 0x3b, 0xab, + 0x75, 0xa5, 0x58, 0x54, 0x5f, 0xad, 0x9e, 0x56, 0x7d, 0x57, 0x0a, 0x00, + 0x00, 0x00, 0x00, 0xe0, 0x2a, 0xd6, 0x69, 0xf8, 0x40, 0xfa, 0xb5, 0xd9, + 0x1e, 0xb0, 0xd8, 0x3e, 0x5d, 0x3d, 0xa1, 0xba, 0x40, 0x0a, 0x60, 0x3e, + 0x18, 0x0c, 0x00, 0xe6, 0xc3, 0xd2, 0x86, 0x33, 0xec, 0xf7, 0x92, 0x62, + 0x51, 0x5d, 0x52, 0xbd, 0xba, 0x3a, 0x20, 0x93, 0xa6, 0x00, 0x00, 0x00, + 0x00, 0xc0, 0xb5, 0xbb, 0x47, 0xf5, 0x81, 0xea, 0x8e, 0x52, 0x2c, 0xaa, + 0x33, 0xaa, 0xbf, 0xaf, 0xce, 0x96, 0x02, 0x98, 0x6b, 0x06, 0x03, 0x80, + 0xb9, 0xb6, 0xde, 0xcc, 0x0b, 0xc8, 0x27, 0x48, 0xb1, 0xa8, 0x4e, 0xaf, + 0x76, 0x9f, 0xf9, 0x3b, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xca, 0xac, 0xdf, + 0x70, 0x1c, 0xe9, 0x5e, 0xd5, 0x5a, 0x72, 0x2c, 0x9a, 0x9f, 0x55, 0x3b, + 0x54, 0x5f, 0x97, 0x02, 0x98, 0x4b, 0x06, 0x03, 0x80, 0xb9, 0xb4, 0x69, + 0xf5, 0xf1, 0xea, 0x7e, 0x52, 0x2c, 0x9a, 0xcb, 0xaa, 0x37, 0x57, 0xaf, + 0x9a, 0xf9, 0x67, 0x00, 0x00, 0x00, 0x00, 0x80, 0x55, 0x71, 0xef, 0xea, + 0xfd, 0xd5, 0xed, 0xa5, 0x58, 0x34, 0x17, 0x55, 0x4f, 0xac, 0x8e, 0x91, + 0x02, 0x98, 0x2b, 0x4b, 0x25, 0x00, 0xe6, 0xc8, 0x16, 0xd5, 0x97, 0x33, + 0x14, 0xb0, 0x98, 0xce, 0xa8, 0xee, 0x55, 0xed, 0x93, 0xa1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x60, 0xf5, 0x7c, 0xb5, 0xda, 0xaa, 0xe1, 0xb8, 0x58, + 0x47, 0x94, 0x2e, 0x8e, 0xeb, 0x54, 0xff, 0x59, 0x3d, 0x5f, 0x0a, 0x60, + 0xae, 0xd8, 0x18, 0x00, 0xcc, 0x85, 0x07, 0x56, 0x47, 0x57, 0x37, 0x90, + 0x62, 0x51, 0x5c, 0x56, 0xbd, 0xa1, 0x7a, 0x7d, 0x06, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x80, 0xb9, 0x73, 0xff, 0x86, 0xed, 0x01, 0xb7, 0x91, 0x62, + 0xd1, 0xbc, 0xa5, 0xe1, 0x78, 0x87, 0x65, 0x52, 0x00, 0x6b, 0xc2, 0x60, + 0x00, 0xb0, 0xa6, 0x76, 0xae, 0x0e, 0x6b, 0x38, 0x7f, 0x8a, 0x85, 0xf7, + 0xc3, 0x6a, 0xb7, 0xea, 0x4b, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf3, + 0x60, 0x83, 0x6a, 0xbf, 0xea, 0x05, 0x52, 0x2c, 0x9a, 0x8f, 0x57, 0x4f, + 0xae, 0x2e, 0x96, 0x02, 0x58, 0x5d, 0x06, 0x03, 0x80, 0x35, 0xf1, 0xc2, + 0x86, 0x69, 0xc5, 0x25, 0x52, 0x2c, 0x8a, 0xc3, 0xab, 0xe7, 0x34, 0x9c, + 0x37, 0x05, 0x00, 0x00, 0x00, 0x00, 0x30, 0x9f, 0x1e, 0x5e, 0xbd, 0xaf, + 0xba, 0x99, 0x14, 0x8b, 0xe2, 0xbf, 0xab, 0x1d, 0xaa, 0x5f, 0x48, 0x01, + 0xac, 0x0e, 0x83, 0x01, 0xc0, 0xea, 0x58, 0xbb, 0x7a, 0x7b, 0xf5, 0x2c, + 0x29, 0x16, 0xc5, 0x2f, 0xab, 0x67, 0x56, 0xc7, 0x48, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x2c, 0xa0, 0x1b, 0x57, 0xef, 0xa9, 0x76, 0x94, 0x62, 0x51, + 0xfc, 0xb8, 0xfa, 0xfb, 0xea, 0xdb, 0x52, 0x00, 0xab, 0xca, 0x60, 0x00, + 0xb0, 0xaa, 0x36, 0xae, 0x3e, 0xda, 0x30, 0x1d, 0xca, 0xc2, 0x3b, 0xba, + 0x61, 0x20, 0xe3, 0xd7, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x64, + 0xb7, 0xea, 0x1d, 0xd5, 0x46, 0x52, 0x2c, 0xb8, 0x0b, 0xab, 0x5d, 0xaa, + 0x4f, 0x4b, 0x01, 0xac, 0x0a, 0x83, 0x01, 0xc0, 0xaa, 0xb8, 0x59, 0xf5, + 0xc9, 0xea, 0xae, 0x52, 0x2c, 0xca, 0x8b, 0xbd, 0xbd, 0xaa, 0x43, 0xa4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0xc0, 0xe6, 0xd5, 0x61, 0xd5, 0xfd, + 0xa4, 0x58, 0x70, 0x97, 0x56, 0x4f, 0xad, 0x8e, 0x90, 0x02, 0x98, 0xad, + 0xa5, 0x12, 0x00, 0xb3, 0x74, 0x87, 0xea, 0xab, 0x19, 0x0a, 0x58, 0x0c, + 0x5f, 0xad, 0xee, 0x96, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x74, + 0xfc, 0xa8, 0x7a, 0x70, 0xb5, 0x4f, 0x75, 0x99, 0x1c, 0x0b, 0x6a, 0xdd, + 0xea, 0x83, 0xd5, 0x4b, 0xa4, 0x00, 0x66, 0xcb, 0x60, 0x00, 0x30, 0x1b, + 0xf7, 0xa9, 0xbe, 0x58, 0xfd, 0x95, 0x14, 0x0b, 0xea, 0xd2, 0xea, 0x65, + 0x0d, 0x13, 0xb7, 0xdf, 0x97, 0x03, 0x00, 0x00, 0x00, 0x00, 0x18, 0x31, + 0x97, 0x57, 0xfb, 0x57, 0xf7, 0xaf, 0xce, 0x92, 0x63, 0x41, 0x2d, 0xa9, + 0xfe, 0x6d, 0xa6, 0xff, 0x12, 0x39, 0x80, 0x95, 0x3e, 0x69, 0x38, 0x4a, + 0x00, 0x58, 0x89, 0x1d, 0xaa, 0x0f, 0x57, 0x1b, 0x4a, 0xb1, 0xa0, 0x7e, + 0x5c, 0x3d, 0xa9, 0xfa, 0x8a, 0x14, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x18, + 0xd8, 0xa0, 0xda, 0xaf, 0x7a, 0x81, 0x14, 0x0b, 0xee, 0x3f, 0xaa, 0xa7, + 0x67, 0x73, 0x03, 0xb0, 0x02, 0x06, 0x03, 0x80, 0x15, 0xd9, 0xbd, 0x7a, + 0x4f, 0xb5, 0x8e, 0x14, 0x0b, 0xea, 0xc8, 0x6a, 0x8f, 0xea, 0x7c, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x31, 0xb3, 0x53, 0xc3, 0xfb, 0xca, 0x9b, + 0x48, 0xb1, 0xa0, 0x4e, 0xac, 0x1e, 0x53, 0x5d, 0x28, 0x05, 0x70, 0x4d, + 0x1c, 0x25, 0x00, 0x5c, 0x9b, 0xbd, 0xab, 0xf7, 0x67, 0x28, 0x60, 0x21, + 0x5d, 0x58, 0xed, 0x5a, 0xed, 0x92, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x3c, 0x1d, 0x55, 0x6d, 0x55, 0x9d, 0x22, 0xc5, 0x82, 0x7a, 0x48, + 0xf5, 0xb9, 0xea, 0xc6, 0x52, 0x00, 0xd7, 0xc4, 0x60, 0x00, 0x70, 0x75, + 0x4b, 0xaa, 0x03, 0x1a, 0x56, 0x3e, 0x39, 0x97, 0x68, 0xe1, 0x9c, 0x5a, + 0xdd, 0xad, 0x61, 0xe5, 0x13, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x38, 0xfb, + 0x49, 0xf5, 0xe0, 0xea, 0x35, 0xd5, 0x15, 0x72, 0x2c, 0x98, 0xbb, 0x37, + 0x1c, 0x4f, 0xbb, 0x85, 0x14, 0xc0, 0xd5, 0x39, 0x4a, 0x00, 0xb8, 0xaa, + 0xf5, 0xaa, 0x43, 0xab, 0xc7, 0x4b, 0xb1, 0x60, 0x96, 0x57, 0x07, 0x55, + 0x2f, 0xa9, 0x2e, 0x95, 0x03, 0x00, 0x00, 0x00, 0x00, 0x98, 0x30, 0x0f, + 0x6a, 0xb8, 0x21, 0x6a, 0x33, 0x29, 0x16, 0xcc, 0xcf, 0xab, 0xed, 0xab, + 0xd3, 0xa4, 0x00, 0xae, 0x64, 0x30, 0x00, 0xb8, 0xd2, 0x46, 0xd5, 0xd1, + 0xd5, 0x76, 0x52, 0x2c, 0x98, 0x5f, 0x56, 0x4f, 0xad, 0x3e, 0x25, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x30, 0xc1, 0xae, 0x5f, 0x1d, 0xdc, 0x70, 0x8c, + 0x2a, 0x0b, 0xe3, 0x77, 0xd5, 0x4e, 0xd5, 0x67, 0xa5, 0x00, 0xca, 0x60, + 0x00, 0x30, 0xb8, 0x71, 0xf5, 0x99, 0xea, 0xae, 0x52, 0x2c, 0x98, 0xe3, + 0xab, 0xdd, 0x1a, 0x26, 0x37, 0x01, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xc1, + 0x6e, 0xd5, 0xbb, 0xaa, 0x0d, 0xa5, 0x58, 0x10, 0x97, 0x56, 0x4f, 0xaa, + 0x8e, 0x92, 0x02, 0x58, 0x2a, 0x01, 0x4c, 0xbd, 0x5b, 0x56, 0x27, 0x67, + 0x28, 0x60, 0xa1, 0x5c, 0x56, 0xbd, 0xb8, 0x7a, 0x58, 0x86, 0x02, 0x00, + 0x00, 0x00, 0x00, 0x80, 0xe9, 0x72, 0x58, 0x75, 0xdf, 0xea, 0x7b, 0x52, + 0x2c, 0x88, 0x75, 0xab, 0x0f, 0x57, 0xbb, 0x4a, 0x01, 0x18, 0x0c, 0x80, + 0xe9, 0xb6, 0x79, 0x75, 0x52, 0x75, 0x3b, 0x29, 0x16, 0xc4, 0xd9, 0xd5, + 0x83, 0xab, 0x37, 0x57, 0xd6, 0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, + 0xe8, 0xf4, 0xea, 0xee, 0xd5, 0x11, 0x52, 0x2c, 0x88, 0xb5, 0xab, 0x43, + 0xab, 0x3d, 0xa5, 0x80, 0xe9, 0x66, 0x30, 0x00, 0xa6, 0xd7, 0x1d, 0xaa, + 0x2f, 0x56, 0xb7, 0x91, 0x62, 0x41, 0x1c, 0x5b, 0x81, 0x90, 0x8e, 0x7d, + 0x00, 0x00, 0x1f, 0x65, 0x49, 0x44, 0x41, 0x54, 0x6d, 0x55, 0x7d, 0x49, + 0x0a, 0x00, 0x00, 0x00, 0x00, 0x60, 0xca, 0x5d, 0xd8, 0xb0, 0xe2, 0x7e, + 0xf7, 0xea, 0x62, 0x39, 0xe6, 0xdd, 0x92, 0xea, 0x2d, 0xd5, 0x7e, 0x52, + 0xc0, 0xf4, 0x32, 0x18, 0x00, 0xd3, 0x69, 0xeb, 0x86, 0xe3, 0x03, 0x36, + 0x93, 0x62, 0xde, 0x5d, 0x5e, 0xbd, 0xa6, 0x7a, 0x54, 0x75, 0xae, 0x1c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x74, 0x58, 0x75, 0xbf, 0xea, 0xfb, + 0x52, 0x2c, 0x88, 0xbd, 0x1b, 0x86, 0x03, 0x96, 0x48, 0x01, 0xd3, 0x67, + 0xc9, 0xf2, 0xe5, 0xb6, 0x59, 0xc3, 0x94, 0x79, 0x40, 0x75, 0x4c, 0x75, + 0x5d, 0x29, 0xe6, 0xdd, 0x39, 0xd5, 0x13, 0xab, 0x53, 0xa4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xb8, 0x56, 0x1b, 0x57, 0x87, 0x54, 0x4f, 0x90, 0x62, + 0x41, 0x1c, 0x5c, 0x3d, 0xb7, 0x5a, 0x26, 0x05, 0x4c, 0x0f, 0x1b, 0x03, + 0x60, 0xba, 0x6c, 0x5f, 0x7d, 0x3a, 0x43, 0x01, 0x0b, 0xe1, 0xc4, 0x86, + 0x73, 0xb2, 0x0c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xd8, 0x85, + 0x0d, 0x37, 0x59, 0xed, 0x5e, 0xfd, 0x5e, 0x8e, 0x79, 0xf7, 0xac, 0xea, + 0x3f, 0xaa, 0x75, 0xa4, 0x80, 0xe9, 0x61, 0x30, 0x00, 0xa6, 0xc7, 0xe3, + 0xab, 0x8f, 0x57, 0x1b, 0x48, 0x31, 0xaf, 0xae, 0x68, 0x38, 0x3a, 0xe0, + 0xef, 0xaa, 0x5f, 0xc8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x30, 0x6b, 0x57, + 0x1e, 0x2d, 0xf0, 0x03, 0x29, 0xe6, 0xdd, 0x13, 0xab, 0xa3, 0xf3, 0x99, + 0x01, 0x4c, 0x0d, 0x47, 0x09, 0xc0, 0x74, 0x78, 0x66, 0xf5, 0xee, 0x6a, + 0x2d, 0x29, 0xe6, 0xd5, 0xcf, 0x1a, 0x56, 0x5d, 0x9d, 0x2c, 0x05, 0x00, + 0x00, 0x00, 0x00, 0xc0, 0x6a, 0xbb, 0x5e, 0xf5, 0x81, 0xea, 0xd1, 0x52, + 0xcc, 0xbb, 0x13, 0x67, 0x3a, 0xff, 0x4e, 0x0a, 0x98, 0x6c, 0x36, 0x06, + 0xc0, 0xe4, 0x7b, 0x61, 0xc3, 0xd9, 0x4c, 0x86, 0x02, 0xe6, 0xd7, 0x29, + 0xd5, 0xd6, 0x19, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x53, 0x17, + 0x54, 0x8f, 0xad, 0x5e, 0xd6, 0xb0, 0xa5, 0x95, 0xf9, 0xf3, 0x90, 0xea, + 0xb3, 0x0d, 0xc3, 0x18, 0xc0, 0x04, 0xb3, 0x31, 0x00, 0x26, 0xdb, 0x3f, + 0x55, 0x07, 0xc8, 0x30, 0xef, 0x0e, 0xa9, 0x9e, 0x5f, 0x5d, 0x2a, 0x05, + 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9c, 0x7a, 0x60, 0xf5, 0x91, 0xea, 0x26, + 0x52, 0xcc, 0xab, 0xaf, 0x37, 0x1c, 0x91, 0x7b, 0x9e, 0x14, 0x30, 0x99, + 0x0c, 0x06, 0xc0, 0xe4, 0xda, 0xab, 0x7a, 0xa3, 0x0c, 0xf3, 0xea, 0x92, + 0xea, 0x39, 0x0d, 0x2b, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1f, + 0xb7, 0xa8, 0x8e, 0xac, 0xee, 0x2d, 0xc5, 0xbc, 0x3a, 0xad, 0xda, 0xae, + 0x3a, 0x57, 0x0a, 0x98, 0x3c, 0x8e, 0x12, 0x80, 0xc9, 0xf4, 0xd2, 0x0c, + 0x05, 0xcc, 0xb7, 0xef, 0x57, 0xf7, 0xcc, 0x50, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc0, 0x7c, 0x3b, 0xa7, 0x7a, 0x50, 0x75, 0xa0, 0x14, 0xf3, 0x6a, + 0xab, 0xea, 0x84, 0xea, 0x86, 0x52, 0xc0, 0xe4, 0xb1, 0x31, 0x00, 0x26, + 0xcf, 0xde, 0xd5, 0x7e, 0x32, 0xcc, 0xab, 0xe3, 0xaa, 0x5d, 0xab, 0xdf, + 0x48, 0x01, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xa0, 0x9e, 0x52, 0x1d, 0x5c, + 0x6d, 0x28, 0xc5, 0xbc, 0xf9, 0x4e, 0xb5, 0x6d, 0xf5, 0x73, 0x29, 0x60, + 0x72, 0xd8, 0x18, 0x00, 0x93, 0xe5, 0x35, 0x19, 0x0a, 0x98, 0x4f, 0xcb, + 0xab, 0xfd, 0xab, 0x1d, 0x33, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, + 0x18, 0xfe, 0xa3, 0xda, 0xa6, 0xfa, 0xa1, 0x14, 0xf3, 0xe6, 0x0e, 0xd5, + 0x49, 0xd5, 0xcd, 0xa4, 0x80, 0xc9, 0x61, 0x63, 0x00, 0x4c, 0x8e, 0x7f, + 0xad, 0xf6, 0x91, 0x61, 0xde, 0x9c, 0x5b, 0x3d, 0xb9, 0xfa, 0x8c, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x6e, 0xd3, 0xea, 0x83, 0xd5, 0xc3, + 0xa4, 0x98, 0x37, 0xdf, 0xae, 0x1e, 0x92, 0xcd, 0x01, 0x30, 0x11, 0x6c, + 0x0c, 0x80, 0xc9, 0xf0, 0xfa, 0x0c, 0x05, 0xcc, 0xa7, 0x33, 0xaa, 0x7b, + 0x66, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x54, 0x9c, 0x5b, 0x3d, + 0xa2, 0x61, 0x93, 0xae, 0xbb, 0x60, 0xe7, 0xc7, 0x1d, 0xab, 0x2f, 0x54, + 0x9b, 0x49, 0x01, 0xe3, 0xcf, 0xc6, 0x00, 0x18, 0xf3, 0x3f, 0xc3, 0xd5, + 0x9b, 0xab, 0x3d, 0xa5, 0x98, 0x37, 0xc7, 0x36, 0x6c, 0x0a, 0xf8, 0xad, + 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0xe9, 0xf1, 0xd5, 0xfb, 0xaa, + 0x0d, 0xa5, 0x98, 0x17, 0x67, 0x55, 0xdb, 0x56, 0xe7, 0x48, 0x01, 0xe3, + 0xcb, 0xc6, 0x00, 0x18, 0x5f, 0x4b, 0xaa, 0xb7, 0x65, 0x28, 0x60, 0xbe, + 0x2c, 0xaf, 0x5e, 0x5d, 0xed, 0x98, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x51, 0xf6, 0x91, 0xea, 0x01, 0xd5, 0xd9, 0x52, 0xcc, 0x8b, 0x2d, + 0xab, 0xcf, 0x57, 0xb7, 0x94, 0x02, 0xc6, 0x97, 0x8d, 0x01, 0x30, 0xbe, + 0xf6, 0xab, 0xf6, 0x96, 0x61, 0x5e, 0xfc, 0xae, 0xda, 0xbd, 0x3a, 0x5a, + 0x0a, 0x00, 0x00, 0x00, 0x00, 0x80, 0xb1, 0x71, 0xc3, 0xea, 0xc8, 0xea, + 0x41, 0x52, 0xcc, 0x8b, 0xef, 0x57, 0x0f, 0xac, 0xfe, 0x4f, 0x0a, 0x18, + 0x3f, 0x36, 0x06, 0xc0, 0x78, 0x7a, 0x7d, 0x86, 0x02, 0xe6, 0xcb, 0x0f, + 0xaa, 0xfb, 0x64, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xdc, 0xfc, + 0xba, 0xda, 0xae, 0x3a, 0x48, 0x8a, 0x79, 0xb1, 0x45, 0x75, 0x52, 0x75, + 0x53, 0x29, 0x60, 0xfc, 0x18, 0x0c, 0x80, 0xf1, 0xf3, 0xea, 0xea, 0xe5, + 0x32, 0xcc, 0x8b, 0x93, 0x1b, 0x86, 0x02, 0xbe, 0x25, 0x05, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0x58, 0xba, 0xbc, 0x7a, 0x41, 0xf5, 0xac, 0xea, 0x32, + 0x39, 0xe6, 0xdc, 0x6d, 0xab, 0xcf, 0x36, 0x6c, 0x67, 0x00, 0xc6, 0x88, + 0xa3, 0x04, 0x60, 0xbc, 0xbc, 0xa8, 0x7a, 0xb3, 0x0c, 0xf3, 0xe2, 0x90, + 0xea, 0x1f, 0xbd, 0x50, 0x04, 0x00, 0x00, 0x00, 0x00, 0x98, 0x18, 0xf7, + 0xab, 0x3e, 0x56, 0xdd, 0x44, 0x8a, 0x39, 0x77, 0x7a, 0xb5, 0x6d, 0x75, + 0x9e, 0x14, 0x30, 0x1e, 0x0c, 0x06, 0xc0, 0xf8, 0xd8, 0xb3, 0x7a, 0x8b, + 0x0c, 0x73, 0xee, 0x0f, 0x0d, 0x93, 0xa3, 0x87, 0x4a, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x30, 0x71, 0x6e, 0x5d, 0xfd, 0x57, 0x75, 0x17, 0x29, 0xe6, + 0xdc, 0xd7, 0x1a, 0x8e, 0x6e, 0xf8, 0xad, 0x14, 0x30, 0xfa, 0x0c, 0x06, + 0xc0, 0x78, 0x78, 0x46, 0xf5, 0x9e, 0x6a, 0x89, 0x14, 0x73, 0xea, 0xbc, + 0x6a, 0xa7, 0xea, 0xf3, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0xac, + 0x8d, 0xaa, 0x0f, 0x55, 0x3b, 0x48, 0x31, 0xe7, 0xbe, 0x52, 0x3d, 0xac, + 0xba, 0x50, 0x0a, 0x18, 0x6d, 0x4b, 0x25, 0x80, 0x91, 0xf7, 0xd4, 0x86, + 0x35, 0xf7, 0x86, 0x02, 0xe6, 0xd6, 0xf7, 0xab, 0xfb, 0x66, 0x28, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0xd2, 0xfd, 0xae, 0x7a, 0x4c, 0xb5, 0xbf, + 0x14, 0x73, 0xee, 0x3e, 0xd5, 0xa7, 0x1a, 0x86, 0x2f, 0x80, 0x11, 0x66, + 0x63, 0x00, 0x8c, 0xb6, 0x5d, 0x1a, 0xa6, 0x18, 0xd7, 0x92, 0x62, 0x4e, + 0x9d, 0x58, 0xed, 0x5c, 0xfd, 0x46, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x80, + 0xa9, 0xf2, 0x0f, 0xd5, 0x3b, 0xaa, 0x75, 0xa4, 0x98, 0x53, 0x27, 0x34, + 0x6c, 0x64, 0xb8, 0x44, 0x0a, 0x18, 0x4d, 0x36, 0x06, 0xc0, 0xe8, 0x7a, + 0x6c, 0xf5, 0xc1, 0x0c, 0x05, 0xcc, 0xb5, 0xf7, 0x56, 0x8f, 0xc8, 0x50, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x34, 0x7a, 0x4f, 0xf5, 0xf7, 0xd5, + 0xf9, 0x52, 0xcc, 0xa9, 0x87, 0x56, 0x1f, 0xaf, 0xd6, 0x93, 0x02, 0x46, + 0x93, 0xc1, 0x00, 0x18, 0x4d, 0xdb, 0x55, 0x47, 0x54, 0x6b, 0x4b, 0x31, + 0x67, 0x96, 0x57, 0xaf, 0xa9, 0x9e, 0x59, 0x5d, 0x26, 0x07, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0xd4, 0x3a, 0xbe, 0xba, 0x67, 0xf5, 0x3d, 0x29, 0xe6, + 0xd4, 0xc3, 0xaa, 0x0f, 0xe7, 0xb3, 0x0d, 0x18, 0x49, 0x8e, 0x12, 0x80, + 0xd1, 0x73, 0x9f, 0x99, 0x17, 0x25, 0xd7, 0x91, 0x62, 0xce, 0x5c, 0x54, + 0x3d, 0xb9, 0xfa, 0x84, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0xd8, + 0xb4, 0x3a, 0xba, 0x7a, 0x80, 0x14, 0x73, 0xea, 0xd0, 0xea, 0x69, 0x0d, + 0x37, 0xec, 0x01, 0x23, 0xc2, 0xc6, 0x00, 0x18, 0x2d, 0x77, 0xa9, 0x8e, + 0xcb, 0x50, 0xc0, 0x5c, 0xfa, 0xbf, 0xea, 0x81, 0x19, 0x0a, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xe0, 0xcf, 0x9d, 0x5b, 0xfd, 0x5d, 0x75, 0x98, 0x14, + 0x73, 0x6a, 0xf7, 0xea, 0xad, 0x32, 0xc0, 0x68, 0x31, 0x18, 0x00, 0xa3, + 0x63, 0x8b, 0xea, 0xb3, 0xd5, 0x26, 0x52, 0xcc, 0x99, 0x6f, 0x55, 0xf7, + 0xae, 0xbe, 0x2e, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd7, 0xe0, 0x0f, + 0xd5, 0x53, 0x1b, 0x8e, 0xa2, 0x65, 0xee, 0xbc, 0xa0, 0xda, 0x5b, 0x06, + 0x18, 0x1d, 0x8e, 0x12, 0x80, 0xd1, 0xb0, 0x59, 0x75, 0x4a, 0x75, 0x6b, + 0x29, 0xe6, 0xcc, 0x89, 0xd5, 0x4e, 0xd5, 0x05, 0x52, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x30, 0x0b, 0x4f, 0xad, 0x0e, 0xa9, 0xd6, 0x91, 0x62, 0x4e, + 0x2c, 0xaf, 0x9e, 0x3d, 0xd3, 0x14, 0x58, 0x64, 0x06, 0x03, 0x60, 0xf1, + 0x6d, 0x5a, 0x9d, 0x5c, 0xdd, 0x51, 0x8a, 0x39, 0x73, 0x58, 0xf5, 0xcc, + 0xea, 0x32, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x05, 0xdb, 0x55, + 0x1f, 0xab, 0xae, 0x2b, 0xc5, 0x9c, 0x58, 0x56, 0x3d, 0xa9, 0xfa, 0x88, + 0x14, 0xb0, 0xb8, 0x1c, 0x25, 0x00, 0x8b, 0x6b, 0xc3, 0xea, 0xbf, 0x32, + 0x14, 0x30, 0x97, 0xf6, 0x6f, 0x98, 0xea, 0x34, 0x14, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0xaa, 0x3a, 0xbe, 0xba, 0x7f, 0x75, 0x8e, 0x14, 0x73, + 0x62, 0x69, 0x75, 0x78, 0xf5, 0x08, 0x29, 0x60, 0x71, 0xd9, 0x18, 0x00, + 0x8b, 0x67, 0xdd, 0x86, 0xa1, 0x80, 0x87, 0x49, 0x31, 0x27, 0xae, 0xa8, + 0xfe, 0xb1, 0x7a, 0xb7, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xa1, + 0x5b, 0x57, 0x9f, 0xac, 0xee, 0x20, 0xc5, 0x9c, 0xb8, 0xb8, 0xe1, 0xf3, + 0x90, 0x53, 0xa4, 0x80, 0xc5, 0x61, 0x30, 0x00, 0x16, 0xc7, 0x5a, 0xd5, + 0x11, 0xd5, 0xce, 0x52, 0xcc, 0x89, 0x8b, 0xaa, 0xc7, 0x57, 0xc7, 0x49, + 0x01, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x1c, 0xd9, 0xa4, 0xfa, 0x78, 0xf5, + 0x00, 0x29, 0xe6, 0xc4, 0x05, 0xd5, 0x83, 0xaa, 0x6f, 0x4a, 0x01, 0x0b, + 0xcf, 0x51, 0x02, 0xb0, 0xf0, 0x96, 0x54, 0x87, 0x64, 0x28, 0x60, 0xae, + 0xfc, 0x6c, 0xe6, 0x45, 0x99, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xe6, 0xd2, 0x6f, 0x1a, 0xee, 0x72, 0x3f, 0x52, 0x8a, 0x39, 0x71, 0xbd, + 0x86, 0xf7, 0xf2, 0x37, 0x97, 0x02, 0x16, 0x9e, 0xc1, 0x00, 0x58, 0x78, + 0xaf, 0xa9, 0x9e, 0x2e, 0xc3, 0x9c, 0xf8, 0x4e, 0x75, 0xdf, 0xea, 0x1b, + 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x0f, 0x2e, 0xa9, 0x9e, 0x50, + 0xbd, 0x45, 0x8a, 0x39, 0x71, 0xf3, 0xea, 0x53, 0xd5, 0xa6, 0x52, 0xc0, + 0xc2, 0x72, 0x94, 0x00, 0x2c, 0xac, 0x67, 0x56, 0xef, 0x91, 0x61, 0x4e, + 0x9c, 0x5a, 0x6d, 0x5f, 0xfd, 0x4a, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x16, 0xc0, 0x0b, 0x1b, 0x06, 0x04, 0x96, 0x48, 0xb1, 0xc6, 0xbe, 0x56, + 0x3d, 0xb8, 0xba, 0x58, 0x0a, 0x58, 0x18, 0x06, 0x03, 0x60, 0xe1, 0x6c, + 0x5f, 0x7d, 0xa2, 0x5a, 0x5b, 0x8a, 0x35, 0x76, 0x52, 0xf5, 0xa8, 0xea, + 0x42, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x40, 0xbb, 0x55, 0xef, + 0xcd, 0x7b, 0xfd, 0x73, 0xe1, 0x98, 0xea, 0x31, 0xd5, 0x15, 0x52, 0xc0, + 0xfc, 0x73, 0x94, 0x00, 0x2c, 0x8c, 0xad, 0xab, 0x8f, 0x78, 0xa1, 0x30, + 0x27, 0x3e, 0xde, 0x30, 0x64, 0x61, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x85, 0x76, 0x58, 0xf5, 0xd8, 0xea, 0xf7, 0x52, 0xac, 0xb1, 0x1d, + 0xaa, 0x77, 0xc8, 0x00, 0x0b, 0xc3, 0x60, 0x00, 0xcc, 0xbf, 0xcd, 0xab, + 0xe3, 0xaa, 0x8d, 0xa4, 0x58, 0x63, 0xef, 0xaa, 0x76, 0x6a, 0x38, 0xd3, + 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc3, 0x31, 0xd5, 0x23, 0xaa, + 0x0b, 0xa4, 0x58, 0x63, 0xcf, 0xaa, 0x5e, 0x2a, 0x03, 0xcc, 0x3f, 0x47, + 0x09, 0xc0, 0xfc, 0xda, 0xb4, 0xfa, 0x52, 0x75, 0x3b, 0x29, 0xd6, 0xd8, + 0xfe, 0xd5, 0x3e, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x22, 0xee, + 0x5c, 0x7d, 0xa6, 0xba, 0xb9, 0x14, 0x6b, 0x64, 0x79, 0xf5, 0xd4, 0x86, + 0x6d, 0x0c, 0xc0, 0x3c, 0x31, 0x18, 0x00, 0xf3, 0x67, 0x83, 0xea, 0x84, + 0xea, 0xbe, 0x52, 0xac, 0xf1, 0x0b, 0x82, 0x97, 0x54, 0x07, 0x48, 0x01, + 0x00, 0x00, 0x00, 0x00, 0xc0, 0x88, 0xd9, 0xbc, 0xfa, 0x6c, 0xb5, 0x85, + 0x14, 0x6b, 0xe4, 0xb2, 0xea, 0xef, 0xab, 0xe3, 0xa5, 0x80, 0xf9, 0x61, + 0x30, 0x00, 0xe6, 0xc7, 0xd2, 0xea, 0xc8, 0x86, 0x73, 0x86, 0x58, 0x7d, + 0x97, 0x57, 0x7b, 0x54, 0xef, 0x97, 0x02, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x11, 0x75, 0xd3, 0xea, 0x53, 0xd5, 0x5d, 0xa5, 0x58, 0x23, 0xbf, 0xad, + 0x1e, 0x50, 0x9d, 0x2e, 0x05, 0xcc, 0xbd, 0xa5, 0x12, 0xc0, 0xbc, 0x38, + 0x30, 0x43, 0x01, 0x6b, 0xea, 0xe2, 0x6a, 0xc7, 0x0c, 0x05, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x30, 0xda, 0x7e, 0x5e, 0x3d, 0xb8, 0xe1, 0x68, 0x61, + 0x56, 0xdf, 0x75, 0xab, 0x63, 0xab, 0x5b, 0x48, 0x01, 0x73, 0xcf, 0x60, + 0x00, 0xcc, 0xbd, 0xbd, 0xaa, 0xe7, 0xc9, 0xb0, 0x46, 0x2e, 0xac, 0xb6, + 0x6f, 0x98, 0xb0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x80, 0x51, 0x77, 0x7e, + 0xf5, 0xb0, 0xea, 0x44, 0x29, 0xd6, 0xc8, 0x2d, 0xaa, 0x4f, 0x36, 0x0c, + 0x09, 0x00, 0x73, 0xc8, 0x51, 0x02, 0x30, 0xb7, 0xb6, 0xaf, 0xfe, 0xab, + 0x5a, 0x4b, 0x8a, 0x35, 0x7a, 0xf1, 0xb4, 0x7d, 0xf5, 0x15, 0x29, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0x33, 0xeb, 0x55, 0x1f, 0xae, 0x1e, 0x2d, + 0xc5, 0x1a, 0xf9, 0x74, 0xb5, 0x43, 0xc3, 0x91, 0xc3, 0xc0, 0x1c, 0xb0, + 0x31, 0x00, 0xe6, 0xce, 0x5d, 0xab, 0x8f, 0x64, 0x28, 0x60, 0x4d, 0xfc, + 0xb2, 0x61, 0xdd, 0x92, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, + 0xd1, 0x1f, 0xaa, 0x5d, 0xaa, 0x23, 0xa5, 0x58, 0x23, 0x0f, 0xaf, 0xde, + 0x28, 0x03, 0xcc, 0x1d, 0x1b, 0x03, 0x60, 0x6e, 0xdc, 0xb4, 0xfa, 0x5a, + 0x75, 0x4b, 0x29, 0x56, 0xdb, 0xcf, 0xab, 0xed, 0xaa, 0x6f, 0x49, 0x01, + 0x00, 0x00, 0x00, 0x00, 0xc0, 0x98, 0x5b, 0xab, 0x7a, 0x4f, 0xf5, 0x34, + 0x29, 0xd6, 0xc8, 0xf3, 0xaa, 0x77, 0xca, 0x00, 0x6b, 0xce, 0x60, 0x00, + 0xac, 0xb9, 0x0d, 0xaa, 0x93, 0xaa, 0x7b, 0x49, 0xb1, 0xda, 0x7e, 0x52, + 0x3d, 0xb4, 0xfa, 0xbe, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x88, + 0x25, 0xd5, 0x5b, 0xab, 0x17, 0x48, 0xb1, 0xda, 0x2e, 0x6f, 0x38, 0x7e, + 0xf8, 0x78, 0x29, 0x60, 0xcd, 0x38, 0x4a, 0x00, 0xd6, 0xfc, 0x87, 0xfa, + 0x7b, 0x33, 0x14, 0xb0, 0x26, 0xce, 0xac, 0xee, 0x9f, 0xa1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x26, 0xcb, 0xf2, 0x6a, 0xcf, 0xea, 0x4d, 0x52, + 0xac, 0xb6, 0xb5, 0xab, 0x8f, 0x55, 0x77, 0x92, 0x02, 0xd6, 0x8c, 0xc1, + 0x00, 0x58, 0x33, 0xaf, 0xab, 0x9e, 0x28, 0xc3, 0x6a, 0xfb, 0x76, 0xb5, + 0x6d, 0x75, 0xb6, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0xa0, 0xe5, + 0xd5, 0x4b, 0xaa, 0x7d, 0xa4, 0x58, 0x6d, 0xd7, 0xad, 0x8e, 0xa9, 0x6e, + 0x24, 0x05, 0xac, 0x3e, 0x47, 0x09, 0xc0, 0xea, 0xdb, 0xb5, 0x3a, 0xb4, + 0x61, 0x6b, 0x00, 0xab, 0xee, 0x1b, 0xd5, 0x76, 0xd5, 0x79, 0x52, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x30, 0x05, 0xf6, 0xae, 0xf6, 0x93, 0x61, 0xb5, + 0x9d, 0xdc, 0xf0, 0xb9, 0xc2, 0xa5, 0x52, 0xc0, 0xaa, 0x33, 0x18, 0x00, + 0xab, 0x67, 0x9b, 0xea, 0xc4, 0x6a, 0x3d, 0x29, 0x56, 0xcb, 0x69, 0x33, + 0x3f, 0xbc, 0xcf, 0x95, 0x02, 0x00, 0x00, 0x00, 0x00, 0x80, 0x29, 0xf2, + 0xe2, 0x1c, 0x2d, 0xb0, 0x26, 0x0e, 0xad, 0x9e, 0x2a, 0x03, 0xac, 0x3a, + 0x47, 0x09, 0xc0, 0xaa, 0xbb, 0x75, 0x75, 0x74, 0x86, 0x02, 0x56, 0x97, + 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xd5, 0x01, 0x0d, 0xc3, + 0x01, 0xac, 0x9e, 0xdd, 0x1b, 0x36, 0x2f, 0x00, 0xab, 0xc8, 0xc6, 0x00, + 0x58, 0x35, 0x1b, 0x55, 0x5f, 0xa9, 0xee, 0x2c, 0xc5, 0x6a, 0xf9, 0x7a, + 0xc3, 0x50, 0xc0, 0x6f, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x8a, + 0xed, 0x55, 0xbd, 0x51, 0x86, 0xd5, 0xb2, 0xac, 0x7a, 0x54, 0x75, 0xac, + 0x14, 0x30, 0x7b, 0x36, 0x06, 0xc0, 0xec, 0x2d, 0xa9, 0xde, 0x9b, 0xa1, + 0x80, 0xd5, 0x75, 0x5a, 0xf5, 0x77, 0x19, 0x0a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x37, 0x55, 0xff, 0x24, 0xc3, 0x6a, 0x59, 0x5a, 0x7d, 0xa8, + 0xba, 0xa3, 0x14, 0xb0, 0x6a, 0x7f, 0x70, 0x80, 0xd9, 0x79, 0x45, 0xb5, + 0x8b, 0x0c, 0xab, 0xe5, 0xb4, 0xea, 0xa1, 0xd5, 0x79, 0x52, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x40, 0x55, 0x6f, 0xc9, 0x70, 0xc0, 0xea, 0xda, 0xb8, + 0xe1, 0xd8, 0xe7, 0xeb, 0x49, 0x01, 0xb3, 0xe3, 0x28, 0x01, 0x98, 0x9d, + 0xbf, 0xab, 0x3e, 0x59, 0xad, 0x25, 0xc5, 0x2a, 0x33, 0x14, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xd7, 0xee, 0x45, 0xd5, 0x9b, 0x65, 0x58, 0x2d, + 0xff, 0x55, 0x3d, 0xa6, 0xe1, 0x78, 0x01, 0x60, 0x05, 0x6c, 0x0c, 0x80, + 0x95, 0xdb, 0xb2, 0xfa, 0x48, 0x86, 0x02, 0x56, 0xc7, 0x37, 0x32, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0xf2, 0x96, 0x86, 0xe1, 0x00, + 0x56, 0xdd, 0x8e, 0xd5, 0x3f, 0xcb, 0x00, 0x2b, 0x67, 0x63, 0x00, 0xac, + 0xd8, 0xc6, 0xd5, 0x57, 0x73, 0x4e, 0xcd, 0xea, 0xf8, 0x7a, 0xc3, 0x50, + 0xc0, 0xf9, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x4a, 0xbd, 0xb8, + 0x7a, 0x93, 0x0c, 0xab, 0x6c, 0x59, 0xf5, 0xd8, 0xea, 0x13, 0x52, 0xc0, + 0xb5, 0xb3, 0x31, 0x00, 0xae, 0xdd, 0x92, 0xea, 0x7d, 0x19, 0x0a, 0x58, + 0x1d, 0x67, 0x54, 0x0f, 0xcb, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xcc, 0xd6, 0x01, 0xb9, 0xfb, 0x7d, 0x75, 0x2c, 0xad, 0x0e, 0xaf, 0xee, + 0x24, 0x05, 0xac, 0xf8, 0x0f, 0x0a, 0x70, 0xcd, 0x5e, 0x55, 0x3d, 0x4e, + 0x86, 0x55, 0x76, 0x56, 0xc3, 0x50, 0xc0, 0xb9, 0x52, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0x2a, 0x79, 0x6d, 0xf5, 0x06, 0x19, 0x56, 0xd9, 0xc6, + 0xd5, 0xd1, 0xd5, 0xf5, 0xa5, 0x80, 0x6b, 0xe6, 0x28, 0x01, 0xb8, 0x66, + 0x0f, 0xab, 0x8e, 0xab, 0xd6, 0x92, 0x62, 0x95, 0xfc, 0x7f, 0xd5, 0x03, + 0xaa, 0x9f, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0xed, 0x8d, + 0xd5, 0x5e, 0x32, 0xac, 0xb2, 0xcf, 0x54, 0x7f, 0x5f, 0x5d, 0x21, 0x05, + 0xfc, 0x39, 0x1b, 0x03, 0xe0, 0x2f, 0xdd, 0xb6, 0xfa, 0x70, 0x86, 0x02, + 0x56, 0xd5, 0x4f, 0xab, 0x07, 0x67, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xd6, 0xd4, 0x4b, 0xab, 0x77, 0xcb, 0xb0, 0xca, 0x1e, 0x56, 0xbd, + 0x5a, 0x06, 0xf8, 0x4b, 0x36, 0x06, 0xc0, 0x9f, 0xbb, 0x4e, 0xf5, 0xb5, + 0xea, 0x8e, 0x52, 0xac, 0x92, 0x5f, 0x54, 0x0f, 0xac, 0xce, 0x94, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xc4, 0xd2, 0xea, 0xd0, 0xea, 0x29, + 0x52, 0xac, 0x92, 0xe5, 0xd5, 0xa3, 0xaa, 0x63, 0xa4, 0x80, 0x3f, 0x7f, + 0x42, 0x01, 0xfe, 0xe4, 0x9d, 0x19, 0x0a, 0x58, 0x55, 0xe7, 0x57, 0x8f, + 0xc8, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0xa5, 0x65, 0xd5, + 0x53, 0x1b, 0xb6, 0x1c, 0x33, 0x7b, 0x4b, 0x1a, 0x06, 0x2a, 0x36, 0x97, + 0x02, 0xfe, 0xc4, 0x60, 0x00, 0xfc, 0xc9, 0x1e, 0xd5, 0x6e, 0x32, 0xac, + 0x92, 0x0b, 0xaa, 0xed, 0xaa, 0xd3, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x39, 0x77, 0x45, 0xc3, 0x67, 0x17, 0xee, 0x7e, 0x5f, 0x35, 0x9b, + 0x54, 0x1f, 0xa9, 0xd6, 0x93, 0x02, 0x06, 0x8e, 0x12, 0x80, 0xc1, 0x56, + 0xd5, 0x97, 0xab, 0xf5, 0xa5, 0x98, 0xb5, 0x8b, 0x1b, 0x86, 0x02, 0xbe, + 0x2c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0xab, 0xf5, 0xab, 0xe3, + 0xaa, 0x6d, 0xa5, 0x58, 0x25, 0x6f, 0xaf, 0x9e, 0x2f, 0x03, 0x18, 0x0c, + 0x80, 0xaa, 0x8d, 0xab, 0xff, 0xae, 0x6e, 0x27, 0xc5, 0xac, 0x5d, 0x56, + 0x3d, 0xba, 0xfa, 0xa4, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x20, + 0x36, 0xae, 0x3e, 0x57, 0xdd, 0x5d, 0x8a, 0x55, 0xb2, 0x6b, 0xf5, 0x1f, + 0x32, 0x30, 0xed, 0x1c, 0x25, 0xc0, 0xb4, 0x5b, 0x52, 0xbd, 0x3f, 0x43, + 0x01, 0xab, 0x62, 0x79, 0xc3, 0xb1, 0x0b, 0x86, 0x02, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x60, 0xe1, 0x5c, 0x58, 0x3d, 0xa2, 0xfa, 0xae, 0x14, 0xab, + 0xe4, 0x5d, 0xd5, 0x1d, 0x64, 0x60, 0xda, 0x19, 0x0c, 0x60, 0xda, 0xbd, + 0xa8, 0xda, 0x49, 0x86, 0x55, 0xf2, 0xe2, 0xea, 0x03, 0x32, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc0, 0x82, 0xfb, 0x75, 0xc3, 0x31, 0xbf, 0x3f, 0x91, + 0x62, 0xd6, 0x36, 0xaa, 0x3e, 0x5a, 0x6d, 0x28, 0x05, 0xd3, 0xcc, 0x51, + 0x02, 0x4c, 0xb3, 0x7b, 0x55, 0x27, 0x57, 0xeb, 0x4a, 0x31, 0x6b, 0xaf, + 0xad, 0xfe, 0x59, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x54, 0x5b, + 0x56, 0xa7, 0x54, 0x37, 0x96, 0x62, 0xd6, 0x3e, 0x54, 0x3d, 0x59, 0x06, + 0xa6, 0x95, 0xc1, 0x00, 0xa6, 0xd5, 0x0d, 0xaa, 0x6f, 0x54, 0xb7, 0x92, + 0x62, 0xd6, 0x0e, 0xae, 0x9e, 0x2d, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x8c, 0x84, 0x7b, 0x56, 0x27, 0x36, 0xdc, 0x11, 0xcf, 0xec, 0x3c, 0xa3, + 0x7a, 0x9f, 0x0c, 0x4c, 0x23, 0x83, 0x01, 0x4c, 0xa3, 0xa5, 0xd5, 0x71, + 0xd5, 0xc3, 0xa5, 0x98, 0xb5, 0x8f, 0x57, 0x8f, 0xab, 0xae, 0x90, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0xc6, 0x43, 0x1a, 0x3e, 0xf3, 0x58, + 0x4f, 0x8a, 0x59, 0xb9, 0xa4, 0xba, 0x6f, 0x75, 0x9a, 0x14, 0x4c, 0x9b, + 0xa5, 0x12, 0x30, 0x85, 0xf6, 0xce, 0x50, 0xc0, 0xaa, 0x38, 0xb1, 0x7a, + 0x42, 0x86, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xd4, 0x9c, 0x58, + 0x3d, 0xb5, 0x5a, 0x26, 0xc5, 0xac, 0xac, 0x5f, 0x7d, 0xb8, 0xba, 0x8e, + 0x14, 0x4c, 0x1b, 0x1b, 0x03, 0x98, 0x36, 0xf7, 0xaa, 0xbe, 0x58, 0xad, + 0x23, 0xc5, 0xac, 0x7c, 0xbd, 0x7a, 0x70, 0x75, 0xa1, 0x14, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x30, 0xb2, 0x9e, 0x57, 0xbd, 0x5d, 0x86, 0x59, 0x7b, + 0x5f, 0xc3, 0xb1, 0x02, 0x30, 0x35, 0x0c, 0x06, 0x30, 0x4d, 0x36, 0x6a, + 0xf8, 0xa0, 0xfb, 0xb6, 0x52, 0xcc, 0xca, 0x8f, 0x1a, 0xd6, 0xe9, 0xfc, + 0x5c, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x79, 0xfb, 0x57, 0x2f, + 0x95, 0x61, 0xd6, 0x9e, 0x54, 0x1d, 0x21, 0x03, 0xd3, 0xc2, 0x60, 0x00, + 0xd3, 0xe4, 0xb0, 0x6a, 0x57, 0x19, 0x66, 0xe5, 0xbc, 0x6a, 0x9b, 0xea, + 0xbb, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x58, 0x58, 0x52, 0x1d, + 0x9a, 0xcf, 0x42, 0x66, 0xeb, 0xfc, 0x6a, 0xab, 0xea, 0xc7, 0x52, 0x30, + 0x15, 0x4f, 0x10, 0x06, 0x03, 0x98, 0x12, 0xbb, 0x54, 0x1f, 0x91, 0x61, + 0x56, 0x2e, 0xa9, 0xb6, 0xab, 0x4e, 0x91, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc6, 0xca, 0xba, 0xd5, 0x27, 0xab, 0x87, 0x48, 0x31, 0x2b, 0x5f, + 0xaa, 0x1e, 0x58, 0x5d, 0x21, 0x05, 0x93, 0x6e, 0xa9, 0x04, 0x4c, 0x81, + 0xcd, 0xab, 0xf7, 0xc8, 0x30, 0x2b, 0xcb, 0xab, 0x67, 0x66, 0x28, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xd1, 0xa5, 0xd5, 0x4e, 0xd5, 0x19, + 0x52, 0xcc, 0xca, 0x36, 0xd5, 0x2b, 0x65, 0x60, 0x1a, 0xd8, 0x18, 0xc0, + 0xa4, 0x5b, 0xbb, 0x3a, 0xb9, 0xba, 0x8f, 0x14, 0xb3, 0xf2, 0x4f, 0xd5, + 0x5b, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xb1, 0x76, 0x8b, 0xea, + 0x2b, 0x33, 0x7f, 0x67, 0xc5, 0x96, 0x35, 0x6c, 0x58, 0xf8, 0xbc, 0x14, + 0x4c, 0x32, 0x1b, 0x03, 0x98, 0x74, 0xfb, 0x66, 0x28, 0x60, 0xb6, 0xde, + 0x9d, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x04, 0xe7, 0x54, + 0xdb, 0x57, 0x17, 0x48, 0xb1, 0x52, 0x4b, 0xab, 0xc3, 0xaa, 0x1b, 0x48, + 0xc1, 0x24, 0xb3, 0x31, 0x80, 0x49, 0x76, 0xff, 0xea, 0xa4, 0x6a, 0x2d, + 0x29, 0x56, 0xea, 0x98, 0xea, 0x31, 0x39, 0x43, 0x07, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x26, 0xc9, 0xc3, 0x1b, 0x3e, 0x03, 0x58, 0x5b, 0x8a, 0x95, + 0x3a, 0xaa, 0x7a, 0x9c, 0x0c, 0x4c, 0x2a, 0x1b, 0x03, 0x98, 0x54, 0x37, + 0xa8, 0x3e, 0x98, 0xa1, 0x80, 0xd9, 0xf8, 0x4a, 0xf5, 0xf8, 0x0c, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xa4, 0xf9, 0x74, 0xf5, 0x1c, 0x19, + 0x66, 0x65, 0xa7, 0xea, 0xe9, 0x32, 0x30, 0xa9, 0x6c, 0x0c, 0x60, 0x52, + 0x7d, 0xb4, 0xda, 0x59, 0x86, 0x95, 0xfa, 0x49, 0x75, 0xcf, 0xea, 0x97, + 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc4, 0xfa, 0xb7, 0xea, 0x25, + 0x32, 0xac, 0xd4, 0x45, 0xd5, 0x5d, 0xab, 0xef, 0x4b, 0xc1, 0xa4, 0x31, + 0x18, 0xc0, 0x24, 0x7a, 0x52, 0xc3, 0xb6, 0x00, 0x56, 0xec, 0x77, 0xd5, + 0x36, 0xd5, 0xff, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x6d, + 0x69, 0x75, 0x74, 0xf5, 0x28, 0x29, 0x56, 0xea, 0x2b, 0x0d, 0xc7, 0x55, + 0xdb, 0xb4, 0xcc, 0xc4, 0x3d, 0x09, 0xc0, 0x24, 0xb9, 0x79, 0x75, 0x90, + 0x0c, 0x2b, 0xb5, 0xac, 0x7a, 0x72, 0x86, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x60, 0x1a, 0x2c, 0xab, 0x9e, 0x52, 0x9d, 0x2e, 0xc5, 0x4a, 0xdd, + 0xa7, 0x7a, 0xb1, 0x0c, 0x4c, 0x1a, 0x1b, 0x03, 0x98, 0x34, 0xc7, 0x55, + 0xdb, 0xcb, 0xb0, 0x52, 0x7b, 0x55, 0x07, 0xc8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x53, 0xe5, 0x56, 0xd5, 0xff, 0xab, 0x6e, 0x22, 0xc5, 0x0a, + 0xfd, 0xa1, 0xba, 0x47, 0x75, 0x86, 0x14, 0x4c, 0x0a, 0x1b, 0x03, 0x98, + 0x24, 0x7b, 0x64, 0x28, 0x60, 0x36, 0x3e, 0x90, 0xa1, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x98, 0x46, 0x3f, 0xa9, 0x1e, 0x59, 0x5d, 0x2c, 0xc5, + 0x0a, 0xad, 0x57, 0x1d, 0x56, 0xad, 0x2b, 0x05, 0x93, 0xc2, 0x60, 0x00, + 0x93, 0x62, 0xf3, 0xea, 0x4d, 0x32, 0xac, 0xd4, 0x29, 0xd5, 0xb3, 0x65, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xa9, 0x75, 0x6a, 0xf5, 0xd4, 0xca, + 0x5a, 0xf1, 0x15, 0xbb, 0x6b, 0xf5, 0x0a, 0x19, 0x98, 0x14, 0x8e, 0x12, + 0x60, 0x12, 0x2c, 0xad, 0x3e, 0x57, 0x3d, 0x50, 0x8a, 0x15, 0xfa, 0x51, + 0x75, 0xaf, 0xea, 0x57, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xd4, + 0x7b, 0x5d, 0x3e, 0xf8, 0x5e, 0x99, 0xcb, 0xab, 0x6d, 0xaa, 0xaf, 0x49, + 0xc1, 0xb8, 0xb3, 0x31, 0x80, 0x49, 0xb0, 0x67, 0x86, 0x02, 0x56, 0xe6, + 0xc2, 0x6a, 0xc7, 0x0c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x83, + 0x57, 0x55, 0x1f, 0x96, 0x61, 0x85, 0xd6, 0xae, 0x0e, 0xad, 0x36, 0x90, + 0x82, 0x71, 0x67, 0x63, 0x00, 0xe3, 0xee, 0xf6, 0xd5, 0x37, 0x3c, 0x21, + 0xaf, 0xd0, 0xb2, 0x86, 0xa1, 0x80, 0xe3, 0xa4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xae, 0x62, 0x83, 0x86, 0x63, 0x88, 0xef, 0x26, 0xc5, 0x0a, + 0x1d, 0x50, 0xed, 0x25, 0x03, 0xe3, 0xcc, 0xc6, 0x00, 0xc6, 0x99, 0x29, + 0xad, 0xd9, 0xf9, 0xe7, 0x0c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x7f, 0xe9, 0xf7, 0xd5, 0x63, 0xab, 0x5f, 0x4b, 0xb1, 0x42, 0x2f, 0xca, + 0xf6, 0x6a, 0xc6, 0x9c, 0xc1, 0x00, 0xc6, 0xd9, 0x3e, 0xd5, 0x3d, 0x65, + 0x58, 0xa1, 0xff, 0xac, 0xde, 0x20, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x70, 0x2d, 0x7e, 0x52, 0x3d, 0xb9, 0xba, 0x42, 0x8a, 0x6b, 0xb5, 0xb4, + 0x7a, 0x5f, 0x75, 0x1d, 0x29, 0x18, 0xe7, 0x6f, 0x62, 0x18, 0x47, 0xb7, + 0xab, 0x5e, 0x21, 0xc3, 0x0a, 0x9d, 0x59, 0x3d, 0xad, 0x72, 0x5e, 0x08, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x22, 0x9f, 0xcd, 0xe7, 0x2e, 0x2b, + 0xf3, 0xd7, 0xd5, 0x6b, 0x65, 0x60, 0x5c, 0x2d, 0x59, 0xbe, 0xdc, 0x67, + 0x86, 0x8c, 0x9d, 0xa5, 0xd5, 0x17, 0xaa, 0xfb, 0x49, 0x71, 0xad, 0x2e, + 0xac, 0xee, 0x5d, 0x7d, 0x5b, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, + 0x16, 0x96, 0x54, 0x47, 0x54, 0x8f, 0x97, 0xe2, 0x5a, 0x2d, 0xab, 0xee, + 0x5f, 0x7d, 0x59, 0x0a, 0xc6, 0x8d, 0x8d, 0x01, 0x8c, 0xa3, 0xe7, 0x66, + 0x28, 0x60, 0x65, 0x3f, 0x94, 0x9e, 0x94, 0xa1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x60, 0xf6, 0x96, 0x57, 0xcf, 0xe8, 0xff, 0x6f, 0xef, 0xbe, + 0x9f, 0x6c, 0x21, 0xeb, 0x3b, 0x8e, 0xbf, 0xaf, 0xb4, 0x48, 0x40, 0x11, + 0x50, 0x2c, 0x31, 0x06, 0x4b, 0x54, 0x62, 0x41, 0x1d, 0x65, 0x06, 0x0b, + 0x09, 0x88, 0xa8, 0x63, 0x8c, 0x12, 0x05, 0xec, 0x62, 0xc0, 0x06, 0x2a, + 0xa2, 0xa2, 0x63, 0xc3, 0x82, 0x2d, 0x89, 0x26, 0xb1, 0x8b, 0xc1, 0x82, + 0x0d, 0x33, 0xa8, 0x28, 0x2a, 0xa3, 0x46, 0x13, 0x8d, 0x15, 0xc7, 0xc8, + 0x80, 0x46, 0x89, 0x0d, 0xc6, 0x89, 0xd1, 0x11, 0x11, 0x47, 0x89, 0xc0, + 0xe5, 0xde, 0xcd, 0x0f, 0x47, 0x56, 0x2e, 0xbb, 0xf7, 0x72, 0xcb, 0x96, + 0xb3, 0xfb, 0xbc, 0x5e, 0xff, 0xc1, 0xf7, 0xf3, 0x7c, 0xf7, 0xec, 0x0f, + 0xe7, 0x73, 0x9e, 0xa7, 0xce, 0x13, 0xc5, 0x46, 0x5d, 0xa7, 0x7a, 0x6b, + 0xb5, 0xa3, 0x28, 0x58, 0x89, 0xcb, 0x0b, 0x2b, 0xc9, 0x4d, 0xab, 0x93, + 0xc4, 0xb0, 0x49, 0x2f, 0xa9, 0x3e, 0x2e, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x60, 0x0b, 0x5d, 0x5a, 0x3d, 0xb8, 0xba, 0x48, 0x14, 0x1b, 0x75, + 0xc7, 0xea, 0x04, 0x31, 0xb0, 0xd2, 0x78, 0x4a, 0x80, 0x95, 0xe6, 0xa3, + 0xbf, 0xfb, 0x87, 0xc4, 0xfc, 0x3e, 0x56, 0x3d, 0xb4, 0xc9, 0xad, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0xe3, 0xe0, 0xea, 0xac, 0x6a, + 0x3b, 0x51, 0xcc, 0xeb, 0xf2, 0xea, 0xae, 0xb9, 0xbd, 0x99, 0x15, 0xc4, + 0x8d, 0x01, 0xac, 0x24, 0x47, 0xa4, 0x14, 0xb0, 0x29, 0xff, 0x5d, 0x3d, + 0x26, 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xdb, 0x7c, 0xa6, + 0x3a, 0x51, 0x0c, 0x1b, 0xb5, 0x53, 0xf5, 0xb6, 0x7c, 0xd7, 0xca, 0x0a, + 0xe2, 0xc6, 0x00, 0x56, 0x8a, 0x3d, 0xaa, 0x6f, 0x57, 0x7b, 0x89, 0x62, + 0x5e, 0x97, 0x55, 0xfb, 0x57, 0xdf, 0x14, 0x05, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xb0, 0x00, 0xd6, 0x54, 0x67, 0xe4, 0x47, 0x9b, 0x9b, 0x72, 0x4c, + 0xf5, 0x66, 0x31, 0xb0, 0x12, 0x68, 0xb1, 0xb0, 0x52, 0xbc, 0x2e, 0xa5, + 0x80, 0x6b, 0xfb, 0xc7, 0xa3, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x2c, 0x94, 0x99, 0xea, 0xc8, 0xea, 0x02, 0x51, 0x6c, 0xd4, 0xab, 0xab, + 0x9b, 0x8b, 0x81, 0x95, 0x40, 0x31, 0x80, 0x95, 0xe0, 0xc0, 0x26, 0x57, + 0xe4, 0x33, 0xbf, 0xf7, 0x57, 0xef, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xb0, 0xc0, 0x2e, 0xae, 0x0e, 0xaf, 0xae, 0x10, 0xc5, 0xbc, 0x76, + 0xad, 0xde, 0x2a, 0x06, 0x56, 0x02, 0xc5, 0x00, 0xa6, 0xdd, 0xce, 0xd5, + 0xc9, 0x4d, 0xae, 0xab, 0x61, 0xae, 0x6f, 0x55, 0x47, 0x8b, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x58, 0x24, 0x67, 0x57, 0xcf, 0x13, 0xc3, 0x46, + 0x3d, 0xb0, 0x3a, 0x42, 0x0c, 0x4c, 0xbb, 0x35, 0x33, 0x33, 0x33, 0x52, + 0x60, 0x9a, 0xbd, 0xa6, 0x3a, 0x41, 0x0c, 0xf3, 0xfa, 0x4d, 0x75, 0xf7, + 0xea, 0xbb, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0xd1, 0x9a, + 0xea, 0xf4, 0xea, 0x50, 0x51, 0xcc, 0xeb, 0x67, 0xd5, 0xed, 0xaa, 0x4b, + 0x44, 0xc1, 0xb4, 0x72, 0x63, 0x00, 0xd3, 0x6c, 0x9f, 0xea, 0x99, 0x62, + 0xd8, 0xa8, 0xa7, 0xa6, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, + 0xbe, 0x99, 0xea, 0xf1, 0xd5, 0xf9, 0xa2, 0x98, 0xd7, 0x5e, 0xd5, 0xcb, + 0xc4, 0xc0, 0x34, 0x73, 0x63, 0x00, 0xd3, 0xec, 0xb3, 0xd5, 0x81, 0x62, + 0x98, 0xd7, 0x5b, 0x9a, 0x14, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x96, 0xca, 0x9d, 0xaa, 0xaf, 0x56, 0xd7, 0x15, 0xc5, 0x1c, 0xeb, 0x9a, + 0xdc, 0xf4, 0xfc, 0x4d, 0x51, 0x30, 0x8d, 0xdc, 0x18, 0xc0, 0xb4, 0x7a, + 0x44, 0x4a, 0x01, 0x1b, 0xf3, 0x9f, 0xd5, 0xf1, 0x62, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x96, 0xd8, 0xb9, 0xb9, 0xed, 0x79, 0x63, 0xb6, 0xab, + 0xde, 0x94, 0xef, 0x5f, 0x99, 0x52, 0x6e, 0x0c, 0x60, 0x1a, 0xed, 0xda, + 0xe4, 0x8a, 0xfc, 0x9b, 0x8a, 0x62, 0x8e, 0x4b, 0xab, 0xbb, 0xe5, 0xaa, + 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xf9, 0x7c, 0xa0, 0x3a, 0x42, + 0x0c, 0xf3, 0x3a, 0xaa, 0x3a, 0x45, 0x0c, 0x4c, 0x1b, 0x8d, 0x15, 0xa6, + 0xd1, 0xcb, 0x52, 0x0a, 0xd8, 0x98, 0x63, 0x53, 0x0a, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x96, 0xd7, 0x53, 0xaa, 0x0b, 0xc5, 0x30, 0xaf, 0xd7, + 0x54, 0x7b, 0x8a, 0x81, 0x69, 0xa3, 0x18, 0xc0, 0xb4, 0xb9, 0x43, 0x75, + 0x8c, 0x18, 0xe6, 0x75, 0x7a, 0xf5, 0x2e, 0x31, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xcb, 0xec, 0x92, 0xea, 0xd1, 0xd5, 0x3a, 0x51, 0xcc, 0xb1, + 0x47, 0x75, 0x92, 0x18, 0x98, 0x36, 0x8a, 0x01, 0x4c, 0x93, 0x35, 0xd5, + 0x1b, 0xab, 0x1d, 0x44, 0x31, 0xc7, 0x8f, 0xab, 0x27, 0x8a, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x98, 0x12, 0x5f, 0xac, 0x5e, 0x21, 0x86, 0x79, + 0x1d, 0x5d, 0xed, 0x27, 0x06, 0xa6, 0xc9, 0x9a, 0x99, 0x99, 0x19, 0x29, + 0x30, 0x2d, 0x1e, 0x97, 0x5f, 0xc4, 0xcf, 0xe7, 0xca, 0xea, 0x80, 0xea, + 0xcb, 0xa2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xc8, 0xf6, 0xd5, + 0xbf, 0x57, 0xf7, 0x14, 0xc5, 0x1c, 0xdf, 0x68, 0x52, 0x0e, 0x70, 0xab, + 0x02, 0x53, 0xc1, 0x8d, 0x01, 0x4c, 0x8b, 0xeb, 0x55, 0xaf, 0x12, 0xc3, + 0xbc, 0x5e, 0x9a, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x7d, + 0xae, 0xac, 0x1e, 0x51, 0x5d, 0x2c, 0x8a, 0x39, 0xee, 0xd6, 0xe4, 0xe6, + 0x00, 0x98, 0x0a, 0x6e, 0x0c, 0x60, 0x5a, 0xbc, 0xa1, 0x3a, 0x56, 0x0c, + 0x73, 0x7c, 0xbe, 0x3a, 0x28, 0x6d, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x7a, 0x1d, 0x5e, 0x9d, 0x26, 0x86, 0x39, 0x2e, 0xae, 0x6e, 0x5b, + 0x5d, 0x24, 0x0a, 0x96, 0x9b, 0x1b, 0x03, 0x98, 0x06, 0xb7, 0xaf, 0x9e, + 0x2c, 0x86, 0x39, 0x2e, 0x69, 0xf2, 0xbc, 0x82, 0x52, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x30, 0xcd, 0x3e, 0x98, 0xe7, 0xa2, 0xe7, 0xb3, 0x7b, + 0x93, 0x9b, 0xa1, 0x61, 0xd9, 0xb9, 0x31, 0x80, 0x69, 0xf0, 0xc9, 0xea, + 0x01, 0x62, 0x98, 0xe3, 0xe1, 0xd5, 0xe9, 0x62, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x56, 0x80, 0x5d, 0xaa, 0x73, 0xaa, 0x5b, 0x89, 0x62, 0x03, + 0x57, 0x56, 0x77, 0xae, 0xfe, 0x4b, 0x14, 0x2c, 0x27, 0x37, 0x06, 0xb0, + 0xdc, 0x0e, 0x4a, 0x29, 0x60, 0x3e, 0xef, 0x4b, 0x29, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x58, 0x39, 0x7e, 0x53, 0x3d, 0x36, 0x37, 0x21, 0x5f, + 0xd3, 0xf6, 0xd5, 0xeb, 0xc5, 0xc0, 0x72, 0x53, 0x0c, 0x60, 0x39, 0x6d, + 0x57, 0xfd, 0xa3, 0x18, 0xe6, 0xf8, 0x49, 0xf5, 0x74, 0x31, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x2b, 0xcc, 0x97, 0xab, 0xd7, 0x89, 0x61, 0x8e, + 0x83, 0xaa, 0xfb, 0x8b, 0x81, 0xe5, 0xa4, 0x18, 0xc0, 0x72, 0x7a, 0x62, + 0x75, 0x07, 0x31, 0x6c, 0x60, 0xa6, 0x3a, 0xba, 0xba, 0x58, 0x14, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0a, 0xf4, 0xa2, 0xea, 0x3c, 0x31, 0xcc, + 0xf1, 0xba, 0x6a, 0x07, 0x31, 0xb0, 0x5c, 0x14, 0x03, 0x58, 0x2e, 0xbb, + 0x56, 0x27, 0x8a, 0x61, 0x8e, 0x93, 0xab, 0x4f, 0x8a, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x58, 0xa1, 0x2e, 0x6f, 0xf2, 0xa4, 0xc0, 0x15, 0xa2, + 0xd8, 0xc0, 0xed, 0x9b, 0xfc, 0x38, 0x14, 0x96, 0x85, 0x62, 0x00, 0xcb, + 0xe5, 0xc5, 0xd5, 0x5e, 0x62, 0xd8, 0xc0, 0x8f, 0xaa, 0xe7, 0x88, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0xe1, 0xce, 0xa9, 0x4e, 0x12, 0xc3, + 0x1c, 0x2f, 0xaf, 0x76, 0x17, 0x03, 0xcb, 0x61, 0xcd, 0xcc, 0xcc, 0x8c, + 0x14, 0x58, 0x6a, 0x7b, 0x57, 0xdf, 0xa9, 0x76, 0x12, 0xc5, 0xac, 0xf5, + 0xd5, 0x81, 0xd5, 0xe7, 0x45, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, + 0x02, 0xdb, 0x57, 0x5f, 0xac, 0xf6, 0x13, 0xc5, 0x06, 0x5e, 0x5b, 0x3d, + 0x5b, 0x0c, 0x2c, 0x35, 0x37, 0x06, 0xb0, 0x1c, 0xfe, 0x2e, 0xa5, 0x80, + 0x6b, 0xfa, 0x87, 0x94, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xd5, + 0xe3, 0xca, 0xea, 0xf1, 0xd5, 0x6f, 0x45, 0xb1, 0x81, 0xa7, 0x55, 0xb7, + 0x11, 0x03, 0x4b, 0x4d, 0x31, 0x80, 0xa5, 0x76, 0xef, 0xea, 0xaf, 0xc5, + 0xb0, 0x81, 0xef, 0x54, 0x2f, 0x14, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xb0, 0xca, 0x7c, 0xb7, 0x7a, 0xbe, 0x18, 0x36, 0xb0, 0x63, 0xf5, 0x1a, + 0x31, 0xb0, 0xd4, 0x3c, 0x25, 0xc0, 0x92, 0xee, 0x5b, 0xf5, 0xd5, 0xea, + 0x1e, 0xa2, 0x98, 0xb5, 0xbe, 0xba, 0xe7, 0xef, 0x72, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x58, 0x6d, 0xae, 0x53, 0x7d, 0xa1, 0xc9, 0xf7, 0x21, + 0xfc, 0xde, 0xbd, 0x9b, 0x3c, 0xb5, 0x00, 0x4b, 0xf6, 0x87, 0x08, 0x4b, + 0xe5, 0xd0, 0x94, 0x02, 0xae, 0xe9, 0xf5, 0x29, 0x05, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xab, 0xd7, 0xfa, 0xea, 0x6f, 0xaa, 0xcb, 0x44, 0xb1, + 0x81, 0x57, 0x8b, 0x80, 0xa5, 0xe4, 0xc6, 0x00, 0x96, 0xca, 0x76, 0xd5, + 0xb9, 0xd5, 0x3e, 0xa2, 0x98, 0x75, 0x61, 0x75, 0x87, 0xea, 0x37, 0xa2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0xb9, 0x17, 0x56, 0x2f, 0x17, + 0xc3, 0x06, 0x1e, 0x54, 0x7d, 0x42, 0x0c, 0x2c, 0x05, 0xc5, 0x00, 0x96, + 0xca, 0x13, 0xaa, 0x53, 0xc4, 0xb0, 0x81, 0x43, 0xaa, 0x4f, 0x8b, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xc0, 0xf6, 0xd5, 0xd9, 0xd5, 0x5d, + 0x44, 0x31, 0xeb, 0xbc, 0x6a, 0xdf, 0x26, 0xb7, 0x2a, 0xc0, 0xa2, 0xf2, + 0x94, 0x00, 0x4b, 0x61, 0xc7, 0x26, 0x2d, 0x30, 0x7e, 0xef, 0x9d, 0x29, + 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0xb8, 0xb2, 0xc9, 0x0f, + 0x49, 0xd7, 0x8a, 0x62, 0xd6, 0x1d, 0xab, 0x23, 0xc4, 0xc0, 0x52, 0x50, + 0x0c, 0x60, 0x29, 0x1c, 0x53, 0xed, 0x2d, 0x86, 0x59, 0x3f, 0xad, 0x9e, + 0x2d, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x30, 0xe7, 0x54, 0xff, + 0x24, 0x86, 0x0d, 0x9c, 0xd4, 0xe4, 0x47, 0xb6, 0xb0, 0xa8, 0x3c, 0x25, + 0xc0, 0x62, 0xdb, 0xa5, 0xfa, 0x41, 0x75, 0x23, 0x51, 0xcc, 0x7a, 0x78, + 0x75, 0xba, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x01, 0x5d, 0xb7, + 0x3a, 0xb7, 0xba, 0xb5, 0x28, 0x66, 0x3d, 0xa5, 0x7a, 0xab, 0x18, 0x58, + 0x4c, 0x6e, 0x0c, 0x60, 0xb1, 0x3d, 0x2b, 0xa5, 0x80, 0xab, 0x3b, 0x33, + 0xa5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x5c, 0xbf, 0xad, 0x8e, + 0xaa, 0xfc, 0x7a, 0xf9, 0xf7, 0x5e, 0x5c, 0xed, 0x2c, 0x06, 0x16, 0x93, + 0x62, 0x00, 0x8b, 0x69, 0xcf, 0xea, 0x78, 0x31, 0xcc, 0xfa, 0x55, 0xf5, + 0x64, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x83, 0xfb, 0x7c, 0x75, + 0x8a, 0x18, 0x66, 0xdd, 0xa4, 0x7a, 0x9a, 0x18, 0x58, 0x4c, 0x8a, 0x01, + 0x2c, 0xa6, 0xe7, 0x57, 0xd7, 0x13, 0xc3, 0xac, 0x17, 0x55, 0x3f, 0x11, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xcf, 0xad, 0x7e, 0x2e, 0x86, + 0x59, 0xcf, 0xab, 0x76, 0x17, 0x03, 0x8b, 0x45, 0x31, 0x80, 0xc5, 0x72, + 0xf3, 0x26, 0xef, 0xa1, 0x30, 0xf1, 0xcd, 0xea, 0xcd, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xa8, 0xea, 0xe2, 0x26, 0x5f, 0x86, 0x33, 0xb1, + 0x5b, 0x93, 0x27, 0xba, 0x61, 0x51, 0xac, 0x99, 0x99, 0xf1, 0x7c, 0x07, + 0x8b, 0xe2, 0x2d, 0xb9, 0x36, 0xff, 0x2a, 0xeb, 0xab, 0x7b, 0x55, 0x5f, + 0x11, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xac, 0x35, 0xd5, 0xbf, + 0x55, 0x07, 0x88, 0xa2, 0xaa, 0x4b, 0xab, 0xbd, 0x73, 0x93, 0x02, 0x8b, + 0xc0, 0x8d, 0x01, 0x2c, 0x86, 0x3f, 0xaa, 0x8e, 0x14, 0xc3, 0xac, 0x7f, + 0x4e, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x9a, 0x66, 0xaa, + 0x63, 0xab, 0xb5, 0xa2, 0xa8, 0xea, 0x0f, 0xab, 0xe3, 0xc4, 0xc0, 0x62, + 0x50, 0x0c, 0x60, 0x31, 0x9c, 0x50, 0xed, 0x24, 0x86, 0x6a, 0x72, 0x0d, + 0xce, 0x0b, 0xc4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0xaf, 0x6f, + 0x55, 0x6f, 0x14, 0xc3, 0xac, 0x63, 0xab, 0xdd, 0xc5, 0xc0, 0x42, 0x53, + 0x0c, 0x60, 0xa1, 0xdd, 0xb8, 0x3a, 0x4a, 0x0c, 0xb3, 0x4e, 0xa8, 0x2e, + 0x12, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x46, 0x9d, 0x58, 0xfd, + 0x8f, 0x18, 0xaa, 0xba, 0x5e, 0xf5, 0x0c, 0x31, 0xb0, 0xd0, 0x14, 0x03, + 0x58, 0x68, 0x27, 0x54, 0xd7, 0x15, 0x43, 0x55, 0x67, 0x57, 0xef, 0x14, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x26, 0xfd, 0xba, 0x7a, 0x96, + 0x18, 0x66, 0x3d, 0xa3, 0xda, 0x4d, 0x0c, 0x2c, 0x24, 0xc5, 0x00, 0x16, + 0xd2, 0x9e, 0xd5, 0xd1, 0x62, 0xa8, 0x6a, 0x5d, 0xf5, 0xa4, 0x6a, 0xbd, + 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xd5, 0x07, 0xab, 0xb3, + 0xc4, 0x50, 0xd5, 0xf5, 0xab, 0xa7, 0x89, 0x81, 0x85, 0xa4, 0x18, 0xc0, + 0x42, 0x3a, 0xa1, 0xda, 0x45, 0x0c, 0x55, 0xbd, 0xb9, 0x3a, 0x47, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, 0xed, 0x99, 0xd5, 0x15, 0x62, + 0xa8, 0xea, 0xb8, 0x26, 0xcf, 0x0a, 0xc0, 0x82, 0x50, 0x0c, 0x60, 0xa1, + 0xec, 0x51, 0x3d, 0x59, 0x0c, 0x55, 0xfd, 0xb2, 0x7a, 0xa9, 0x18, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xb6, 0xc8, 0xf9, 0xd5, 0x9b, 0xc4, 0x50, + 0xd5, 0xee, 0xd5, 0x31, 0x62, 0x60, 0xa1, 0x28, 0x06, 0xb0, 0x50, 0x8e, + 0xaf, 0x76, 0x15, 0x43, 0x55, 0x2f, 0xae, 0x7e, 0x21, 0x06, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x2d, 0xf6, 0xb2, 0xea, 0xe7, 0x62, 0xa8, 0xea, + 0x59, 0xf9, 0xfe, 0x8d, 0x05, 0xa2, 0x18, 0xc0, 0x42, 0xd8, 0xad, 0x7a, + 0xaa, 0x18, 0xaa, 0xfa, 0x4e, 0xf5, 0x36, 0x31, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x6c, 0x95, 0x4b, 0xaa, 0x13, 0xc5, 0x50, 0xb9, 0xb1, 0x9b, + 0x05, 0xa4, 0x18, 0xc0, 0x42, 0x38, 0xae, 0x49, 0x39, 0x80, 0xc9, 0xdb, + 0x37, 0x6b, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xd5, 0x4e, + 0xae, 0xce, 0x13, 0x43, 0x35, 0xb9, 0x35, 0x60, 0x67, 0x31, 0xb0, 0xad, + 0x14, 0x03, 0xd8, 0x56, 0x3b, 0x57, 0xc7, 0x8a, 0xa1, 0xaa, 0x8f, 0x57, + 0x9f, 0x12, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x36, 0x59, 0xd7, + 0xe4, 0x87, 0xa9, 0xd4, 0x5e, 0xd5, 0xe3, 0xc5, 0xc0, 0xb6, 0x52, 0x0c, + 0x60, 0x5b, 0x1d, 0xd5, 0xe4, 0x1a, 0x93, 0xd1, 0xad, 0xad, 0x9e, 0x2d, + 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x05, 0xf1, 0xb9, 0xea, 0x63, + 0x62, 0xa8, 0x26, 0xdf, 0x41, 0x6d, 0x27, 0x06, 0xb6, 0x85, 0x62, 0x00, + 0xdb, 0x62, 0xbb, 0xea, 0xe9, 0x62, 0xa8, 0xea, 0x8d, 0xd5, 0xf9, 0x62, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x30, 0xc7, 0x57, 0x97, 0x8b, + 0xa1, 0xbd, 0xab, 0x87, 0x88, 0x81, 0x6d, 0xa1, 0x18, 0xc0, 0xb6, 0x78, + 0x58, 0x75, 0x2b, 0x31, 0x74, 0x71, 0x75, 0x92, 0x18, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x16, 0xd4, 0x0f, 0xaa, 0x37, 0x88, 0xa1, 0xaa, 0xe7, + 0x8a, 0x80, 0x6d, 0xa1, 0x18, 0xc0, 0xb6, 0x78, 0xa6, 0x08, 0xaa, 0x7a, + 0x49, 0x93, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xeb, + 0x15, 0xd5, 0x2f, 0xc4, 0xd0, 0xdd, 0xab, 0x7b, 0x89, 0x81, 0xad, 0xa5, + 0x18, 0xc0, 0xd6, 0x3a, 0xa0, 0xda, 0x4f, 0x0c, 0x5d, 0x50, 0x9d, 0x2c, + 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x45, 0x71, 0x49, 0xf5, 0x6a, + 0x31, 0x54, 0xf5, 0x6c, 0x11, 0xb0, 0xb5, 0xd6, 0xcc, 0xcc, 0xcc, 0x48, + 0x81, 0xad, 0x71, 0x66, 0xf5, 0x20, 0x31, 0xf4, 0xa8, 0xea, 0xfd, 0x62, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x34, 0x7f, 0x50, 0x9d, 0x5f, + 0xfd, 0xf1, 0xe0, 0x39, 0xcc, 0x54, 0x7f, 0x56, 0x7d, 0xc7, 0x4a, 0xb0, + 0xa5, 0xdc, 0x18, 0xc0, 0xd6, 0xb8, 0x6d, 0xf5, 0x40, 0x31, 0x74, 0x6e, + 0x75, 0x9a, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0xd5, 0x65, + 0x4d, 0x9e, 0x76, 0x1e, 0xdd, 0x9a, 0xea, 0x38, 0x31, 0xb0, 0x35, 0x14, + 0x03, 0xd8, 0x1a, 0xcf, 0xb1, 0x3b, 0x55, 0x9d, 0x50, 0xad, 0x17, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xa2, 0x3b, 0xb5, 0xfa, 0xb6, 0x18, + 0x7a, 0x5c, 0x75, 0x63, 0x31, 0xb0, 0xa5, 0x7c, 0xb9, 0xcb, 0x96, 0xba, + 0x51, 0x93, 0xeb, 0xf3, 0x47, 0xf7, 0xf9, 0xea, 0x53, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x58, 0x12, 0xeb, 0xaa, 0xe7, 0x8b, 0xa1, 0x9d, + 0xaa, 0xa7, 0x88, 0x81, 0x2d, 0xa5, 0x18, 0xc0, 0x96, 0x7a, 0x7a, 0x93, + 0x77, 0x5c, 0x46, 0x36, 0xd3, 0xe4, 0xb6, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x96, 0xce, 0xc7, 0xaa, 0x2f, 0x89, 0xa1, 0xa7, 0x56, 0x3b, + 0x8b, 0x81, 0x2d, 0xa1, 0x18, 0xc0, 0x96, 0xd8, 0xa9, 0x3a, 0x5a, 0x0c, + 0x9d, 0x5e, 0x9d, 0x2d, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x25, + 0xf7, 0xac, 0x26, 0x3f, 0xe2, 0x1c, 0xd9, 0x9e, 0xd5, 0x23, 0xad, 0x02, + 0x5b, 0x42, 0x31, 0x80, 0x2d, 0x71, 0x58, 0x93, 0xa7, 0x04, 0x46, 0x76, + 0x65, 0xf5, 0x22, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x2c, + 0xbe, 0x56, 0x9d, 0x29, 0x86, 0x8e, 0x11, 0x01, 0x5b, 0x42, 0x31, 0x80, + 0x2d, 0x71, 0xac, 0x08, 0x7a, 0x4f, 0x75, 0xbe, 0x18, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x96, 0xcd, 0x0b, 0xaa, 0xf5, 0x83, 0x67, 0xb0, 0x6f, + 0xb5, 0xbf, 0x55, 0x60, 0x73, 0x29, 0x06, 0xb0, 0xb9, 0xee, 0x52, 0xdd, + 0x63, 0xf0, 0x0c, 0xd6, 0x55, 0xaf, 0xb2, 0x0a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xcb, 0xea, 0x5b, 0xd5, 0x47, 0xc5, 0xe0, 0xd6, 0x00, 0x36, + 0x9f, 0x62, 0x00, 0x9b, 0xeb, 0xe9, 0x22, 0xe8, 0xdd, 0xd5, 0xf7, 0xc4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xec, 0x5e, 0x9c, 0x5b, 0x03, + 0x1e, 0x56, 0xed, 0x65, 0x15, 0xd8, 0x1c, 0x8a, 0x01, 0x6c, 0x8e, 0x1b, + 0x54, 0x87, 0x0d, 0x9e, 0xc1, 0xda, 0xea, 0x15, 0x56, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x60, 0x2a, 0x7c, 0xab, 0x3a, 0x63, 0xf0, 0x0c, 0x76, + 0xac, 0x8e, 0xb6, 0x0a, 0x6c, 0x0e, 0xc5, 0x00, 0x36, 0xc7, 0x51, 0xd5, + 0xce, 0x83, 0x67, 0x70, 0x6a, 0xf5, 0x43, 0xab, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x30, 0x35, 0xdc, 0x1a, 0x50, 0x4f, 0xa9, 0x76, 0xb0, 0x0a, + 0x5c, 0x1b, 0xc5, 0x00, 0xae, 0xcd, 0x9a, 0x34, 0x8d, 0xd6, 0x56, 0xaf, + 0xb4, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0xe5, 0xdb, 0xd5, + 0x47, 0x06, 0xcf, 0xe0, 0xa6, 0xd5, 0x5f, 0x5a, 0x05, 0xae, 0x8d, 0x62, + 0x00, 0xd7, 0xe6, 0x01, 0xd5, 0x6d, 0x06, 0xcf, 0xe0, 0xdd, 0xb9, 0x2d, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x1a, 0x9d, 0x98, 0x5b, 0x03, + 0x8e, 0xb1, 0x06, 0x5c, 0x1b, 0xc5, 0x00, 0x7c, 0x90, 0x6c, 0x9a, 0xdb, + 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa6, 0xd7, 0xb7, 0xab, 0x0f, + 0x0f, 0x9e, 0xc1, 0x81, 0xd5, 0x1d, 0xac, 0x02, 0x9b, 0xa2, 0x18, 0xc0, + 0xa6, 0xdc, 0xb2, 0xba, 0xff, 0xe0, 0x19, 0xbc, 0xbb, 0xfa, 0x91, 0x55, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x5a, 0x2f, 0xab, 0x66, 0x06, + 0xcf, 0xe0, 0x49, 0xd6, 0x80, 0x4d, 0x51, 0x0c, 0x60, 0x53, 0x9e, 0x30, + 0xf8, 0x8e, 0xac, 0xab, 0xfe, 0xd6, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x4c, 0xb5, 0xf3, 0xaa, 0x33, 0x07, 0xcf, 0xe0, 0x31, 0xd5, 0xce, + 0x56, 0x81, 0x8d, 0x51, 0x0c, 0x60, 0x53, 0xbb, 0xf1, 0xd8, 0xc1, 0x33, + 0xf8, 0x50, 0xf5, 0x3d, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, + 0xf5, 0x46, 0x7f, 0x1a, 0xfa, 0xfa, 0xd5, 0x43, 0xac, 0x01, 0x1b, 0xa3, + 0x18, 0xc0, 0xc6, 0x1c, 0x52, 0xdd, 0x7c, 0xf0, 0x0c, 0xdc, 0x16, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x32, 0x7c, 0xad, 0xfa, 0x8f, 0xc1, + 0x33, 0x38, 0xd2, 0x1a, 0xb0, 0x31, 0x8a, 0x01, 0xf8, 0xe0, 0x98, 0xdf, + 0xbf, 0x56, 0xdf, 0xb0, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, + 0xc6, 0x6b, 0x06, 0x9f, 0xff, 0xa0, 0xea, 0x96, 0xd6, 0x80, 0xf9, 0x28, + 0x06, 0x30, 0x9f, 0x3d, 0xaa, 0x07, 0xfb, 0xc7, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xc0, 0x0a, 0xf2, 0x89, 0xea, 0x9c, 0x81, 0xe7, 0x5f, 0x53, + 0x3d, 0xc6, 0x1a, 0x30, 0x1f, 0xc5, 0x00, 0xe6, 0xf3, 0xe8, 0x6a, 0xa7, + 0x81, 0xe7, 0x3f, 0xa7, 0xfa, 0xac, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x58, 0x71, 0x5e, 0x3b, 0xf8, 0xfc, 0x8f, 0xcf, 0x77, 0xc0, 0xcc, + 0xc3, 0x52, 0xb0, 0xb1, 0x0f, 0x8c, 0x91, 0xbd, 0xb2, 0x9a, 0xb1, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0xce, 0x69, 0xd5, 0x05, 0x03, + 0xcf, 0xff, 0x27, 0xd5, 0x5f, 0x58, 0x03, 0xae, 0x49, 0x31, 0x80, 0x6b, + 0xba, 0x6b, 0xb5, 0xef, 0xc0, 0xf3, 0xff, 0xb0, 0xfa, 0xb0, 0x35, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x91, 0xae, 0xac, 0x5e, 0x37, 0x78, + 0x06, 0x47, 0x5a, 0x03, 0xae, 0x49, 0x31, 0x00, 0x1f, 0x14, 0x1b, 0xfa, + 0xfb, 0x6a, 0x9d, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0xb1, + 0x4e, 0xa9, 0x2e, 0x1a, 0x78, 0xfe, 0x43, 0xab, 0xdd, 0xac, 0x01, 0x57, + 0xa7, 0x18, 0xc0, 0xd5, 0xed, 0x58, 0x1d, 0x31, 0xf0, 0xfc, 0xbf, 0xac, + 0x4e, 0xb5, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0xda, 0xff, + 0x55, 0x27, 0x0f, 0x3c, 0xff, 0x75, 0x1b, 0xfb, 0x3b, 0x3f, 0xe6, 0xa1, + 0x18, 0xc0, 0xd5, 0x1d, 0x5a, 0xed, 0x39, 0xf0, 0xfc, 0x27, 0x57, 0x97, + 0x5a, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x15, 0xef, 0x4d, 0xd5, + 0xda, 0x81, 0xe7, 0xf7, 0x9c, 0x00, 0x1b, 0x50, 0x0c, 0xe0, 0xea, 0x1e, + 0x33, 0xf0, 0xec, 0xeb, 0xaa, 0xb7, 0x59, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x55, 0xe1, 0x27, 0xd5, 0x87, 0x07, 0x9e, 0xff, 0x1e, 0xd5, + 0x3e, 0xd6, 0x80, 0xab, 0x28, 0x06, 0x70, 0x95, 0x1b, 0x54, 0xf7, 0x1d, + 0x78, 0xfe, 0x33, 0xaa, 0x1f, 0x59, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x55, 0xe3, 0xf5, 0x83, 0xcf, 0x7f, 0x98, 0x15, 0xe0, 0x2a, 0x8a, + 0x01, 0x5c, 0xe5, 0xe1, 0xd5, 0x8e, 0xfe, 0x31, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xb0, 0x4a, 0x7c, 0xb9, 0xfa, 0xfa, 0xc0, 0xf3, 0x3f, 0xca, + 0x0a, 0x70, 0x15, 0xc5, 0x00, 0xae, 0x72, 0xc4, 0xc0, 0xb3, 0x9f, 0x53, + 0x7d, 0xc1, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0x3a, 0x6f, + 0x18, 0x78, 0xf6, 0x5b, 0x57, 0x77, 0xb5, 0x02, 0x94, 0x62, 0x00, 0x13, + 0x37, 0xa9, 0xee, 0x33, 0xf0, 0xfc, 0x6e, 0x0b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x58, 0x9d, 0x3e, 0x58, 0xfd, 0x74, 0xe0, 0xf9, 0x8f, 0xb0, + 0x02, 0x94, 0x62, 0x00, 0x13, 0x87, 0x57, 0xdb, 0x0d, 0x3a, 0xfb, 0xcf, + 0xab, 0x0f, 0x58, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x55, 0xe9, + 0x8a, 0xea, 0x6d, 0x03, 0xcf, 0x7f, 0x44, 0xbe, 0x13, 0xc6, 0x12, 0xf0, + 0x3b, 0x87, 0x0f, 0x3c, 0xfb, 0xdb, 0xab, 0xcb, 0xac, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc0, 0xaa, 0xf5, 0xd6, 0x26, 0x05, 0x81, 0x11, 0xdd, + 0xbc, 0xda, 0xdf, 0x0a, 0xa0, 0x18, 0xc0, 0x2d, 0xaa, 0xfd, 0x06, 0x9d, + 0x7d, 0x7d, 0x93, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, + 0xd7, 0x4f, 0xab, 0x8f, 0x0d, 0x3c, 0xbf, 0xe7, 0x04, 0x50, 0x0c, 0xa0, + 0x47, 0x56, 0x6b, 0x06, 0x9d, 0xfd, 0x33, 0xd5, 0x05, 0x56, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x60, 0xd5, 0x1b, 0xf9, 0xc7, 0xa2, 0x87, 0x55, + 0xdb, 0x5b, 0x81, 0xb1, 0x29, 0x06, 0x30, 0x72, 0x43, 0xc8, 0x6d, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0xf8, 0x4c, 0xf5, 0xfd, 0x41, + 0x67, 0xbf, 0x61, 0x75, 0xa0, 0x15, 0x18, 0x9b, 0x62, 0xc0, 0xd8, 0x6e, + 0x57, 0xdd, 0x69, 0xd0, 0xd9, 0x7f, 0xd6, 0xd8, 0x57, 0xc6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x64, 0xa6, 0x7a, 0xe7, 0xc0, 0xf3, 0x7b, + 0x4e, 0x60, 0x70, 0x8a, 0x01, 0x63, 0x3b, 0x6c, 0xe0, 0xd9, 0xdf, 0x55, + 0xad, 0xb5, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x78, 0x67, + 0xe3, 0x7e, 0x3f, 0xf4, 0xd0, 0x6a, 0x07, 0x2b, 0x30, 0x2e, 0xc5, 0x80, + 0xb1, 0x3d, 0x74, 0xd0, 0xb9, 0x67, 0xaa, 0x53, 0x1c, 0x3f, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc0, 0x50, 0xfe, 0xb7, 0xfa, 0xf8, 0xa0, 0xb3, 0xef, + 0x56, 0x1d, 0x60, 0x05, 0xc6, 0xa5, 0x18, 0x30, 0xae, 0x5b, 0x54, 0x77, + 0x1e, 0x74, 0xf6, 0xcf, 0x55, 0xdf, 0xb3, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xc3, 0x79, 0xfb, 0xc0, 0xb3, 0xff, 0x95, 0xe3, 0x1f, 0x97, + 0x62, 0xc0, 0xd8, 0x7f, 0xf8, 0x6b, 0x7c, 0xe0, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x30, 0x90, 0x4f, 0x55, 0x17, 0x0e, 0x3a, 0xfb, 0x43, 0x1b, + 0xf7, 0xfb, 0xc1, 0xe1, 0x29, 0x06, 0x8c, 0xeb, 0xc1, 0x83, 0xce, 0x7d, + 0x51, 0x75, 0x86, 0xe3, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xd2, + 0xfa, 0xea, 0x1d, 0x83, 0xce, 0x7e, 0xb3, 0xea, 0xae, 0x56, 0x60, 0x4c, + 0x8a, 0x01, 0x63, 0xda, 0xad, 0xba, 0xcf, 0xa0, 0xb3, 0x9f, 0x56, 0x5d, + 0x6e, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0xf5, 0xee, 0x6a, + 0x66, 0xd0, 0xd9, 0x3d, 0x27, 0x30, 0x28, 0xc5, 0x80, 0x31, 0x3d, 0xa8, + 0xda, 0x61, 0xd0, 0xd9, 0xdf, 0xe3, 0xf8, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x86, 0x76, 0x61, 0xf5, 0xc5, 0x41, 0x67, 0x57, 0x0c, 0x18, 0x94, + 0x62, 0x80, 0x3f, 0xf8, 0x91, 0x7c, 0xbf, 0xfa, 0xba, 0xe3, 0x07, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x18, 0xde, 0x7b, 0x07, 0x9d, 0xfb, 0x4e, 0xd5, + 0x2d, 0x1d, 0xff, 0x78, 0x14, 0x03, 0xc6, 0xb3, 0x53, 0x75, 0xc8, 0xa0, + 0xb3, 0x9f, 0xda, 0xb8, 0xd7, 0xc2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xf0, 0x7b, 0x1f, 0xac, 0x7e, 0x3b, 0xe8, 0xec, 0x0f, 0x76, 0xfc, 0xe3, + 0x51, 0x0c, 0x18, 0xcf, 0x7d, 0xab, 0x5d, 0x07, 0x9c, 0x7b, 0xa6, 0x7a, + 0x9f, 0xe3, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0xfa, 0x55, 0xf5, + 0xc9, 0x41, 0x67, 0xf7, 0x9c, 0xc0, 0x80, 0x14, 0x03, 0xfc, 0xa1, 0x8f, + 0xe2, 0x4b, 0xd5, 0x0f, 0x1d, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xbf, 0xf3, 0x9e, 0x41, 0xe7, 0xbe, 0x77, 0xb5, 0xa7, 0xe3, 0x1f, 0x8b, + 0x62, 0xc0, 0x58, 0xd6, 0x54, 0x0f, 0x1a, 0x74, 0xf6, 0xf7, 0x3a, 0x7e, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0xe6, 0xac, 0xea, 0x17, 0x03, + 0xce, 0xbd, 0x5d, 0xf5, 0x40, 0xc7, 0x3f, 0x16, 0xc5, 0x80, 0xb1, 0xdc, + 0xb9, 0xba, 0xc9, 0x80, 0x73, 0x5f, 0x51, 0x9d, 0xee, 0xf8, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xb8, 0x9a, 0x2b, 0xaa, 0x7f, 0x19, 0x74, 0xf6, + 0x43, 0x1c, 0xff, 0x58, 0x14, 0x03, 0xc6, 0x72, 0xbf, 0x41, 0xe7, 0xfe, + 0x44, 0x63, 0xb6, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0xb4, + 0x51, 0x9f, 0x13, 0x38, 0x38, 0xdf, 0x15, 0x0f, 0xc5, 0x61, 0x8f, 0x65, + 0xd4, 0x62, 0xc0, 0x69, 0x8e, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x79, 0x7c, 0xb5, 0xba, 0x70, 0xc0, 0xb9, 0x6f, 0x58, 0xed, 0xeb, 0xf8, + 0xc7, 0xa1, 0x18, 0x30, 0x8e, 0x9d, 0xab, 0x7b, 0x0d, 0x38, 0xf7, 0x65, + 0x4d, 0xde, 0x87, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x6b, 0x9a, + 0xa9, 0x3e, 0x34, 0xe8, 0xec, 0x9e, 0x13, 0x18, 0x88, 0x62, 0xc0, 0x38, + 0x0e, 0xa8, 0x76, 0x1a, 0x70, 0xee, 0xb3, 0xaa, 0x5f, 0x3b, 0x7e, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x62, 0xd4, 0x62, 0xc0, 0xfd, 0x1c, + 0xfd, 0x38, 0x14, 0x03, 0xc6, 0x71, 0xb0, 0x0f, 0x72, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x98, 0xe3, 0x2b, 0xd5, 0x8f, 0x07, 0x9c, 0x7b, 0xff, + 0x6a, 0x17, 0xc7, 0x3f, 0x06, 0xc5, 0x80, 0x71, 0x8c, 0x78, 0x15, 0xc8, + 0xe5, 0xd5, 0xc7, 0x1d, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9b, + 0x30, 0x53, 0x7d, 0x64, 0xc0, 0xb9, 0x77, 0xac, 0xfe, 0xdc, 0xf1, 0x8f, + 0x41, 0x31, 0x60, 0x0c, 0x37, 0xab, 0xf6, 0x19, 0x70, 0xee, 0x4f, 0x57, + 0xbf, 0x72, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x8b, 0xd3, + 0x07, 0x9d, 0xdb, 0x73, 0x02, 0x83, 0x50, 0x0c, 0x18, 0xc3, 0x21, 0x83, + 0xce, 0xed, 0x19, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0xc7, + 0x97, 0xaa, 0x9f, 0x0c, 0x38, 0xf7, 0x21, 0x8e, 0x7e, 0x0c, 0x8a, 0x01, + 0x63, 0x38, 0x78, 0xc0, 0x99, 0xd7, 0x56, 0x67, 0x3a, 0x7a, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x36, 0xc3, 0xfa, 0xc6, 0x7c, 0x4e, 0xe0, 0x4f, + 0xab, 0xbd, 0x1d, 0xff, 0xea, 0xa7, 0x18, 0x30, 0xc6, 0x19, 0x1f, 0x34, + 0xe0, 0xdc, 0x9f, 0xad, 0x2e, 0x76, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x6c, 0xa6, 0x51, 0x6f, 0xa3, 0x3e, 0xd8, 0xd1, 0xaf, 0x7e, 0xff, + 0x0f, 0xbb, 0x82, 0xc2, 0x9a, 0x84, 0x8b, 0xd3, 0x31, 0x00, 0x00, 0x00, + 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82 +}; +unsigned int mush_machine_logo_1_svg_png_len = 99561; diff --git a/screens/mm_logo/src/mm/screens/mm_logo_screen.cpp b/screens/mm_logo/src/mm/screens/mm_logo_screen.cpp new file mode 100644 index 0000000..dfd360c --- /dev/null +++ b/screens/mm_logo/src/mm/screens/mm_logo_screen.cpp @@ -0,0 +1,171 @@ +#include "./mm_logo_screen.hpp" + +#include + +#include +#include + +#include + +#include + +#include +#include + +#include +#include +#include + +#include + +namespace MM::Screens { + +#include "../res/mush_machine_logo_1.svg.png.h" + +void create_mm_logo(MM::Engine& engine, MM::Services::ScreenDirector::Screen& screen, + const std::string next_screen, float anim_duration, float screen_duration) { + + screen.start_enable.push_back(engine.type()); + screen.start_enable.push_back(engine.type()); + + screen.start_provide.push_back({engine.type(), engine.type()}); + + screen.end_disable.push_back(engine.type()); + + screen.start_fn = [anim_duration, screen_duration, next_screen](MM::Engine& engine) { + auto& rs = engine.getService(); + + //rss->renderers.clear(); + + bool found = false; + for (auto& r_sptr : rs.render_tasks) { + if (auto* r_ptr = dynamic_cast(r_sptr.get()); r_ptr != nullptr) { + found = true; + break; + } + } + + if (!found) { + rs.addRenderTask(engine); + } + + // ================================================= + + auto& rm_t = MM::ResourceManager::ref(); + if (!rm_t.contains("mm_logo_white"_hs)) { + rm_t.load("mm_logo_white", mush_machine_logo_1_svg_png, mush_machine_logo_1_svg_png_len); + } + + // ================================================= + + engine.getService().changeSceneNow(std::make_unique()); + auto& scene = engine.getService().getScene(); + + scene.ctx_or_set(&engine); + + struct easing { + glm::vec2 start{0.f, 0.f}; + glm::vec2 end{0.f, 0.f}; + + float accumulator = 0.f; + float duration = 1.f; + }; + + struct screen_timer { + float accumulator = 0.f; + }; + + MM::AddSystemToScene(scene, [screen_duration, next_screen](MM::Scene& scene, float delta) { + auto& sc_timer = scene.ctx(); + sc_timer.accumulator += delta; + + if (sc_timer.accumulator >= screen_duration) { + scene.ctx()->getService().queueChangeScreenTo(next_screen); + } + }); + scene.set(); + + // elastic scale easing + MM::AddSystemToScene(scene, [](MM::Scene& scene, float delta) { + auto view = scene.view(); + + for (auto& e : view) { + auto& t = view.get(e); + auto& easing_comp = view.get(e); + easing_comp.accumulator += delta; + + //auto elasticOut = [](float x) -> float { + //const float c4 = (2.f * glm::pi()) / 3.f; + //return x <= 0.f ? 0.f : x >= 1.f ? 1.f // limit output to [0,1] + //: glm::pow(2.f, -10.f * x) * glm::sin((x * 10.f - 0.75f) * c4) + 1.f; + //}; + // taken from https://github.com/warrenm/AHEasing + // licensed under WTFPL + auto elasticOut = [](float x) -> float { + return glm::sin(-13.f * glm::half_pi() * (x + 1.f)) * glm::pow(2.f, -10.f * x) + 1.f; + }; + + t.scale.x = glm::mix(easing_comp.start.x, easing_comp.end.x, elasticOut(easing_comp.accumulator / easing_comp.duration)); + t.scale.y = glm::mix(easing_comp.start.y, easing_comp.end.y, elasticOut(easing_comp.accumulator / easing_comp.duration)); + + } + }); + + auto& cam = scene.set(); + cam.horizontalViewPortSize = 89.f; + cam.setOrthographic(); + cam.updateView(); + + { + auto e_logo = scene.create(); + auto& t = scene.emplace(e_logo); + t.scale = {0,0}; + + auto& easing_comp = scene.emplace(e_logo); + easing_comp.start = {0.f, 0.f}; + easing_comp.end = {50.f * 1.12609649122807017543f, 50.f}; + easing_comp.duration = anim_duration; + + auto& tex_comp = scene.emplace(e_logo); + tex_comp.tex = rm_t.get("mm_logo_white"_hs); + + //color1=ff66cc + //color2=ccff66 + //color3=66ccff + + glm::vec3 color1{ + 1.f, + 0x66/(float)0xff, + 0xcc/(float)0xff, + }; + + glm::vec3 color2{ + 0xcc/(float)0xff, + 1.f, + 0x66/(float)0xff, + }; + + glm::vec3 color3{ + 0x66/(float)0xff, + 0xcc/(float)0xff, + 1.f, + }; + + std::mt19937_64 mt{std::random_device{}()}; + + std::vector colors {color1, color2, color3}; + std::shuffle(colors.begin(), colors.end(), mt); + + auto& col = scene.emplace(e_logo); + col.color = {colors.front(), 1.f}; + } + + }; + + screen.end_fn = [](MM::Engine& engine) { + engine.getService().changeSceneNow(std::make_unique()); + }; +} + +} // MM::Screens + diff --git a/screens/mm_logo/src/mm/screens/mm_logo_screen.hpp b/screens/mm_logo/src/mm/screens/mm_logo_screen.hpp new file mode 100644 index 0000000..40c9bec --- /dev/null +++ b/screens/mm_logo/src/mm/screens/mm_logo_screen.hpp @@ -0,0 +1,10 @@ +#pragma once + +#include + +namespace MM::Screens { + +void create_mm_logo(MM::Engine& engine, MM::Services::ScreenDirector::Screen& screen, const std::string next_screen = "menu", float anim_duration = 2.f, float screen_duration = 2.f); + +} // MM::Screens + diff --git a/systems/CMakeLists.txt b/systems/CMakeLists.txt new file mode 100644 index 0000000..f1876a0 --- /dev/null +++ b/systems/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.8) +project(systems CXX) + +add_subdirectory(simple_velocity) + +if(NOT MM_HEADLESS) + add_subdirectory(player_velocity) + add_subdirectory(fast_sky_sun) +endif() + diff --git a/systems/fast_sky_sun/CMakeLists.txt b/systems/fast_sky_sun/CMakeLists.txt new file mode 100644 index 0000000..3913b5e --- /dev/null +++ b/systems/fast_sky_sun/CMakeLists.txt @@ -0,0 +1,20 @@ +cmake_minimum_required(VERSION 3.2) +project(fast_sky_sun_system CXX) + +add_library(fast_sky_sun_system + src/mm/systems/fast_sky_sun_system.hpp + src/mm/systems/fast_sky_sun_system.cpp +) + +target_include_directories(fast_sky_sun_system PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(fast_sky_sun_system + engine + fast_sky_render_task +) + +if(EMSCRIPTEN) + set_target_properties(fast_sky_sun_system PROPERTIES COMPILE_FLAGS "-s USE_SDL=2") + set_target_properties(fast_sky_sun_system PROPERTIES LINK_FLAGS "-s USE_SDL=2") +endif() + diff --git a/systems/fast_sky_sun/src/mm/systems/fast_sky_sun_system.cpp b/systems/fast_sky_sun/src/mm/systems/fast_sky_sun_system.cpp new file mode 100644 index 0000000..cd8b48d --- /dev/null +++ b/systems/fast_sky_sun/src/mm/systems/fast_sky_sun_system.cpp @@ -0,0 +1,23 @@ +#include "./fast_sky_sun_system.hpp" + +#include + +#include + +#include + +#include + +namespace MM::Systems { + +void FastSkySun(Scene& scene, float delta) { + auto& sky_ctx = scene.ctx(); + + sky_ctx.time += delta * 0.2f; + + sky_ctx.fsun.y = glm::sin(sky_ctx.time * 0.01f); + sky_ctx.fsun.z = glm::cos(sky_ctx.time * 0.01f); +} + +} // MM::Systems + diff --git a/systems/fast_sky_sun/src/mm/systems/fast_sky_sun_system.hpp b/systems/fast_sky_sun/src/mm/systems/fast_sky_sun_system.hpp new file mode 100644 index 0000000..e45a4ca --- /dev/null +++ b/systems/fast_sky_sun/src/mm/systems/fast_sky_sun_system.hpp @@ -0,0 +1,11 @@ +#pragma once + +#include + +namespace MM::Systems { + + // this system updates time and sun depending on time with the time delta + void FastSkySun(Scene& scene, float delta); + +} // MM::Systems + diff --git a/systems/player_velocity/CMakeLists.txt b/systems/player_velocity/CMakeLists.txt new file mode 100644 index 0000000..36be4fb --- /dev/null +++ b/systems/player_velocity/CMakeLists.txt @@ -0,0 +1,28 @@ +cmake_minimum_required(VERSION 3.2) +project(player_velocity_system CXX) + +add_library(player_velocity_system + src/mm/systems/player_velocity2d_system.hpp + src/mm/systems/player_velocity2d_system.cpp +) + +target_include_directories(player_velocity_system PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(player_velocity_system + entt + glm + engine + common_components + input_service +) + +if(EMSCRIPTEN) + set_target_properties(player_velocity_system PROPERTIES COMPILE_FLAGS "-s USE_SDL=2") + set_target_properties(player_velocity_system PROPERTIES LINK_FLAGS "-s USE_SDL=2") +endif() + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + + diff --git a/systems/player_velocity/src/mm/systems/player_velocity2d_system.cpp b/systems/player_velocity/src/mm/systems/player_velocity2d_system.cpp new file mode 100644 index 0000000..b5d9b74 --- /dev/null +++ b/systems/player_velocity/src/mm/systems/player_velocity2d_system.cpp @@ -0,0 +1,35 @@ +#include "./player_velocity2d_system.hpp" + +#include + +#include + +#include + +#include + +namespace MM::Systems { + void PlayerVelocity2D(Scene& scene, float) { + ZoneScopedN("MM::Systems::PlayerVelocity2D"); + + MM::Engine* engine_ptr = scene.ctx(); + auto& input_ss = engine_ptr->getService(); + + scene.view().each( + [&input_ss](const MM::Input::PlayerID p_id, MM::Components::Velocity2D& v) { + //const float movement_speed = 8.f; // apply via post processing + + auto vec_force = input_ss.getMoveForce(p_id); + + if (vec_force >= 0.01f) { + v.velocity = input_ss.getMoveVec(p_id); + v.velocity *= vec_force; + //v.velocity *= movement_speed; + } else { + v.velocity = {0.f, 0.f}; + } + } + ); + } +} + diff --git a/systems/player_velocity/src/mm/systems/player_velocity2d_system.hpp b/systems/player_velocity/src/mm/systems/player_velocity2d_system.hpp new file mode 100644 index 0000000..2be382a --- /dev/null +++ b/systems/player_velocity/src/mm/systems/player_velocity2d_system.hpp @@ -0,0 +1,13 @@ +#pragma once + +//#include +#include + +namespace MM::Systems { + + // this system transforms the input from the input_ss into velocity + // uses Components::Velocity2D, PlayerID + void PlayerVelocity2D(Scene& scene, float delta); + +} // MM::Systems + diff --git a/systems/player_velocity/test/CMakeLists.txt b/systems/player_velocity/test/CMakeLists.txt new file mode 100644 index 0000000..123b6df --- /dev/null +++ b/systems/player_velocity/test/CMakeLists.txt @@ -0,0 +1,14 @@ +add_executable(player_velocity_test + player_velocity_test.cpp +) + +target_include_directories(player_velocity_test PRIVATE ".") + +target_link_libraries(player_velocity_test + player_velocity_system + simple_scene + gtest_main +) + +add_test(NAME player_velocity_test COMMAND player_velocity_test) + diff --git a/systems/player_velocity/test/player_velocity_test.cpp b/systems/player_velocity/test/player_velocity_test.cpp new file mode 100644 index 0000000..17861a1 --- /dev/null +++ b/systems/player_velocity/test/player_velocity_test.cpp @@ -0,0 +1,45 @@ +#include + +#include +#include +#include +#include + +#include + +#include + +TEST(player_velocity, basic_run) { + float delta = 1/60.f; + MM::Engine engine(delta); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + + auto& scene = engine.tryService()->getScene(); + + // setup v system + MM::AddSystemToScene(scene, MM::Systems::PlayerVelocity2D); + + //auto [e, t, v] = scene.create(); + //t.position = { 0.f, 0.f }; + //t.rotation = 0.f; + + //v.velocity = { 1.f, 1.f }; + //v.rotation = 0.f; + + engine.fixedUpdate(); + + //ASSERT_EQ(t.position.x, 1.f * delta); + // TODO: TEST +} + diff --git a/systems/simple_velocity/CMakeLists.txt b/systems/simple_velocity/CMakeLists.txt new file mode 100644 index 0000000..8b5f35f --- /dev/null +++ b/systems/simple_velocity/CMakeLists.txt @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 3.2) +project(simple_velocity_system CXX) + +set(HPP_FILES + src/mm/systems/simple_velocity_system2d.hpp +) + +set(CPP_FILES +) + +add_library(simple_velocity_system ${CPP_FILES} ${HPP_FILES}) + +target_include_directories(simple_velocity_system PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/src") + +target_link_libraries(simple_velocity_system + entt + glm + engine + common_components +) + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + + diff --git a/systems/simple_velocity/src/mm/systems/simple_velocity_system2d.hpp b/systems/simple_velocity/src/mm/systems/simple_velocity_system2d.hpp new file mode 100644 index 0000000..a3fc291 --- /dev/null +++ b/systems/simple_velocity/src/mm/systems/simple_velocity_system2d.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include + +#include +#include + +#include + +namespace MM::Systems { + inline void SimpleVelocity(Scene& scene, float delta) { + scene.view().each([delta](auto, auto& t, auto& v) { + t.position += v.velocity * delta; + t.rotation += v.rotation * delta; + } + ); + } +} + diff --git a/systems/simple_velocity/test/CMakeLists.txt b/systems/simple_velocity/test/CMakeLists.txt new file mode 100644 index 0000000..9a233b9 --- /dev/null +++ b/systems/simple_velocity/test/CMakeLists.txt @@ -0,0 +1,14 @@ +add_executable(simple_velocity_test + simple_velocity_test.cpp +) + +target_include_directories(simple_velocity_test PRIVATE ".") + +target_link_libraries(simple_velocity_test + simple_velocity_system + simple_scene + gtest_main +) + +add_test(NAME simple_velocity_test COMMAND simple_velocity_test) + diff --git a/systems/simple_velocity/test/simple_velocity_test.cpp b/systems/simple_velocity/test/simple_velocity_test.cpp new file mode 100644 index 0000000..23977b9 --- /dev/null +++ b/systems/simple_velocity/test/simple_velocity_test.cpp @@ -0,0 +1,38 @@ +#include + +#include +#include + +#include + +#include + +TEST(simple_velocity_2d, basic_run) { + float delta = 1/60.f; + MM::Engine engine(delta); + + engine.addService(); + ASSERT_TRUE(engine.enableService()); + + bool provide_ret = engine.provide(); + ASSERT_TRUE(provide_ret); + + auto& scene = engine.tryService()->getScene(); + + // setup v system + MM::AddSystemToScene(scene, MM::Systems::SimpleVelocity); + + auto e = scene.create(); + auto& t = scene.emplace(e); + auto& v = scene.emplace(e); + t.position = { 0.f, 0.f }; + t.rotation = 0.f; + + v.velocity = { 1.f, 1.f }; + v.rotation = 0.f; + + engine.fixedUpdate(); + + ASSERT_EQ(t.position.x, 1.f * delta); +} +